| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .box {
- width: 100vw;
- box-sizing: border-box;
- margin-top: 20rpx;
- background-color: #fff;
- .content {
- border-radius: 8rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- .upload {
- display: flex;
- align-items: center;
- width: 100%;
- height: 88rpx;
- box-sizing: border-box;
- .title {
- flex: 1;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- font-weight: bold;
- }
- navigator {
- width: 100rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- padding: 0;
- }
- }
- }
- }
- .inputs {
- width: 100vw;
- padding: 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 600;
- color: #333333;
- border-bottom: 1px solid #ddd;
- .label {
- position: relative;
- margin-bottom: 20rpx;
- .Yl_VoiceInput {
- position: absolute;
- margin-left: 20rpx;
- }
- }
- textarea {
- font-size: 28rpx !important;
- font-weight: 400;
- width: 100%;
- white-space: pre-wrap;
- word-break: break-all;
- }
- }
- .footer {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: fixed;
- width: 750rpx;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- .but {
- width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-right: 30rpx;
- }
- }
|