1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* pages/sorting/choice.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F6F6F6;
- }
- .contioner {
- padding: 24rpx;
- }
- .contioner .boxs {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 32rpx;
- }
- .contioner .boxs .le {
- font-size: 26rpx;
- color: #999999;
- }
- .contioner .boxs .le .tit {
- font-size: 32rpx;
- font-weight: 500;
- color: #333333;
- }
- .contioner .boxs .icon {
- width: 80rpx;
- height: 80rpx;
- }
- .contioner .boxs2 {
- flex-direction: column;
- }
- .boxs2 .input {
- width: 450rpx;
- height: 80rpx;
- background: #F6F6F6;
- border-radius: 8rpx;
- padding: 0rpx 30rpx;
- font-size: 28rpx;
- color: #999999;
- }
- .boxs2 .btn {
- width: 164rpx;
- height: 80rpx;
- background: #52A1FF;
- border-radius: 8rpx;
- line-height: 80rpx;
- }
- .tips {
- position: absolute;
- left: 50%;
- bottom: 5%;
- transform: translate(-50%, 0);
- font-size: 28rpx;
- color: #999999;
- }
|