index.scss 2.5 KB

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