| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- @import "./insert.skeleton.wxss";
- .header {
- width: 100vw;
- padding: 20rpx 30rpx;
- background-color: #fff;
- font-size: 24rpx;
- color: #999999;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- .title {
- font-size: 36rpx;
- font-weight: 600;
- color: #333333;
- margin-bottom: 10rpx;
- }
- }
- .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 {
- margin-bottom: 40rpx;
- display: flex;
- align-items: center;
- .Yl_VoiceInput {
- margin-left: 20rpx;
- }
- }
- textarea {
- font-size: 28rpx !important;
- font-weight: 400;
- width: 100%;
- white-space: pre-wrap;
- word-break: break-all;
- }
- }
- .disabled {
- color: #999;
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 136rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 9999;
- padding-top: 10rpx;
- .but-box {
- .but {
- min-width: 156rpx;
- height: 90rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- }
- .submit1 {
- margin-left: 20rpx;
- color: #FFFFFF;
- }
- }
- }
- .files-box {
- display: flex;
- justify-content: space-between;
- >view {
- display: flex;
- justify-content: space-between;
- width: 110rpx;
- font-size: 40rpx !important;
- }
- }
|