insert.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .box {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. .label {
  5. height: 40rpx;
  6. font-size: 28rpx;
  7. font-family: PingFang SC-Regular, PingFang SC;
  8. color: #333333;
  9. line-height: 40rpx;
  10. margin-top: 40rpx;
  11. margin-left: 30rpx;
  12. text {
  13. color: #FF3B30;
  14. margin-right: 8rpx;
  15. }
  16. }
  17. .input-class {
  18. width: 690rpx;
  19. height: 90rpx;
  20. background: #FFFFFF;
  21. border-radius: 16rpx;
  22. border: 1px solid #CCCCCC;
  23. padding: 0 30rpx;
  24. }
  25. }
  26. /* 选择器样式 */
  27. .selector {
  28. display: flex;
  29. align-items: center;
  30. justify-content: space-between;
  31. width: 690rpx;
  32. height: 90rpx;
  33. background: #FFFFFF;
  34. border-radius: 16rpx;
  35. border: 1px solid #CCCCCC;
  36. margin: 0 auto;
  37. margin-top: 20rpx;
  38. padding: 0 30rpx;
  39. box-sizing: border-box;
  40. }
  41. .selector,
  42. .input-class,
  43. .textarea {
  44. font-size: 28rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #666666;
  47. }
  48. .textarea {
  49. display: block;
  50. height: 300rpx;
  51. padding: 26rpx 30rpx;
  52. }
  53. .button-box {
  54. width: 100vw;
  55. text-align: center;
  56. margin-top: 60rpx;
  57. padding-bottom: 150rpx;
  58. .button {
  59. width: 500rpx !important;
  60. height: 90rpx !important;
  61. background: #3874F6 !important;
  62. border-radius: 45rpx !important;
  63. font-size: 28rpx !important;
  64. font-family: PingFang SC-Bold, PingFang SC !important;
  65. font-weight: bold !important;
  66. color: #FFFFFF !important;
  67. }
  68. }