12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- @import "../../details/modules/handOver/index.scss";
- .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;
- }
|