index.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. page {
  2. height: 100vh !important;
  3. overflow: hidden !important;
  4. }
  5. .linear {
  6. width: 750rpx;
  7. height: 2rpx;
  8. background: #DDDDDD;
  9. }
  10. .insert-group {
  11. width: 100vw;
  12. height: 100rpx;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. padding: 0 30rpx;
  17. background: #FFFFFF;
  18. overflow: hidden;
  19. box-sizing: border-box;
  20. .title {
  21. display: flex;
  22. align-items: center;
  23. .iconfont {
  24. color: #52C41A;
  25. font-size: 44rpx;
  26. }
  27. .text {
  28. font-size: 28rpx;
  29. font-family: PingFang SC, PingFang SC;
  30. color: #333333;
  31. margin-left: 30rpx;
  32. }
  33. }
  34. }
  35. .group-label {
  36. font-size: 30rpx;
  37. font-weight: bold;
  38. color: #333333;
  39. padding: 24rpx 30rpx;
  40. }
  41. .group-box {
  42. display: flex;
  43. align-items: center;
  44. width: 750rpx;
  45. height: 120rpx;
  46. padding: 20rpx 30rpx;
  47. background: #FFFFFF;
  48. box-sizing: border-box;
  49. .icon-box {
  50. width: 80rpx;
  51. height: 80rpx;
  52. border-radius: 16rpx;
  53. text-align: center;
  54. line-height: 80rpx;
  55. flex-shrink: 0;
  56. margin-right: 20rpx;
  57. .iconfont {
  58. font-size: 38rpx;
  59. color: #fff;
  60. }
  61. }
  62. .text-box {
  63. width: 0;
  64. flex: 1;
  65. height: 80rpx;
  66. .title {
  67. line-height: 40rpx;
  68. font-size: 28rpx;
  69. color: #333333;
  70. }
  71. .count {
  72. line-height: 34rpx;
  73. font-size: 24rpx;
  74. color: #999999;
  75. margin-top: 6rpx;
  76. }
  77. }
  78. }
  79. .van-swipe-cell__right {
  80. display: flex;
  81. height: 120rpx;
  82. navigator {
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. width: 120rpx;
  87. height: 120rpx;
  88. font-size: 28rpx;
  89. font-family: PingFang SC, PingFang SC;
  90. color: #FFFFFF;
  91. }
  92. }
  93. .dialog {
  94. display: flex;
  95. flex-direction: column;
  96. align-items: center;
  97. .dialog-title {
  98. margin-top: 30rpx;
  99. font-size: 32rpx;
  100. color: #333333;
  101. }
  102. .dialog-input {
  103. width: 520rpx;
  104. height: 90rpx;
  105. background: #FAFAFA;
  106. border-radius: 8rpx;
  107. border: 1rpx solid #CCCCCC;
  108. margin-top: 30rpx;
  109. margin-bottom: 30rpx;
  110. box-sizing: border-box;
  111. padding: 0 30rpx;
  112. }
  113. }
  114. .tab-active {
  115. font-size: 28rpx !important;
  116. font-family: PingFang SC, PingFang SC !important;
  117. font-weight: bold !important;
  118. color: #3874F6 !important;
  119. }