choice.wxss 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* pages/sorting/choice.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F6F6F6;
  6. }
  7. .contioner {
  8. padding: 24rpx;
  9. }
  10. .contioner .boxs {
  11. width: 702rpx;
  12. background: #FFFFFF;
  13. border-radius: 16rpx;
  14. padding: 32rpx;
  15. }
  16. .contioner .boxs .le {
  17. font-size: 26rpx;
  18. color: #999999;
  19. }
  20. .contioner .boxs .le .tit {
  21. font-size: 32rpx;
  22. font-weight: 500;
  23. color: #333333;
  24. }
  25. .contioner .boxs .icon {
  26. width: 80rpx;
  27. height: 80rpx;
  28. }
  29. .contioner .boxs2 {
  30. flex-direction: column;
  31. }
  32. .boxs2 .input {
  33. width: 450rpx;
  34. height: 80rpx;
  35. background: #F6F6F6;
  36. border-radius: 8rpx;
  37. padding: 0rpx 30rpx;
  38. font-size: 28rpx;
  39. color: #999999;
  40. }
  41. .boxs2 .btn {
  42. width: 164rpx;
  43. height: 80rpx;
  44. background: #52A1FF;
  45. border-radius: 8rpx;
  46. line-height: 80rpx;
  47. }
  48. .tips {
  49. position: absolute;
  50. left: 50%;
  51. bottom: 5%;
  52. transform: translate(-50%, 0);
  53. font-size: 28rpx;
  54. color: #999999;
  55. }