123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .box {
- width: 100vw;
- box-sizing: border-box;
- .label {
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- line-height: 40rpx;
- margin-top: 40rpx;
- margin-left: 30rpx;
- text {
- color: #FF3B30;
- margin-right: 8rpx;
- }
- }
- .input-class {
- width: 690rpx;
- height: 90rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- border: 1px solid #CCCCCC;
- padding: 0 30rpx;
- }
- }
- /* 选择器样式 */
- .selector {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 690rpx;
- height: 90rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- border: 1px solid #CCCCCC;
- margin: 0 auto;
- margin-top: 20rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .selector,
- .input-class,
- .textarea {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- }
- .textarea {
- display: block;
- height: 300rpx;
- padding: 26rpx 30rpx;
- }
- .button-box {
- width: 100vw;
- text-align: center;
- margin-top: 60rpx;
- padding-bottom: 150rpx;
- .button {
- width: 500rpx !important;
- height: 90rpx !important;
- background: #3874F6 !important;
- border-radius: 45rpx !important;
- font-size: 28rpx !important;
- font-family: PingFang SC-Bold, PingFang SC !important;
- font-weight: bold !important;
- color: #FFFFFF !important;
- }
- }
|