index.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .operateData {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. padding: 32rpx;
  6. padding-bottom: 50rpx;
  7. box-sizing: border-box;
  8. .operate-box {
  9. width: 100%;
  10. padding: 4rpx 0 32rpx 0;
  11. height: 304rpx;
  12. border-radius: 16rpx;
  13. box-sizing: border-box;
  14. background: linear-gradient(115deg, #fe4b1e 0%, #fb8857 100%);
  15. @include flex(center, null);
  16. flex-wrap: wrap;
  17. .operate-item {
  18. margin-left: 32rpx;
  19. width: 310rpx;
  20. height: 104rpx;
  21. position: relative;
  22. padding-left: 48rpx;
  23. padding-top: 12rpx;
  24. box-sizing: border-box;
  25. margin-top: 32rpx;
  26. .item-icon {
  27. position: absolute;
  28. left: 4rpx;
  29. top: 8rpx;
  30. }
  31. .item-text {
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-between;
  36. text {
  37. &:nth-of-type(1) {
  38. color: rgba(255, 255, 255, 0.8);
  39. font-size: 24rpx;
  40. font-weight: 500;
  41. }
  42. &:nth-of-type(2) {
  43. color: #ffffff;
  44. font-size: 28rpx;
  45. font-weight: 900;
  46. }
  47. }
  48. }
  49. &.border {
  50. border-right: 2rpx solid rgba(255, 255, 255, 0.2);
  51. }
  52. }
  53. }
  54. .list-container {
  55. margin-top: 32rpx;
  56. .list-title {
  57. margin-bottom: 24rpx;
  58. color: rgba(0, 0, 0, 0.9);
  59. font-size: 32rpx;
  60. font-weight: 600;
  61. }
  62. .list-box {
  63. width: 100%;
  64. height: 362rpx;
  65. padding: 32rpx;
  66. box-sizing: border-box;
  67. background-color: #ffffff;
  68. border-radius: 32rpx;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. }
  73. }
  74. .custom-container {
  75. margin-top: 32rpx;
  76. .custom-title {
  77. margin-bottom: 24rpx;
  78. color: rgba(0, 0, 0, 0.9);
  79. font-size: 32rpx;
  80. font-weight: 600;
  81. }
  82. .custom-list{
  83. .item{
  84. margin-top: 16rpx;
  85. width: 100%;
  86. height: 484rpx;
  87. padding: 0 32rpx;
  88. box-sizing: border-box;
  89. background-color: #FFFFFF;
  90. border-radius: 16rpx;
  91. .item-top{
  92. padding: 24rpx 0;
  93. display: flex;
  94. justify-content: center;
  95. flex-direction: column;
  96. gap: 16rpx;
  97. border-bottom: 2rpx solid #EEEEEE;
  98. text{
  99. height: 44rpx;
  100. line-height: 44rpx;
  101. &:nth-of-type(1){
  102. font-size: 32rpx;
  103. color: rgba(0, 0, 0, 0.9);
  104. font-weight: 600;
  105. }
  106. &:nth-of-type(2){
  107. font-size: 28rpx;
  108. color: rgba(0, 0, 0, 0.26);
  109. }
  110. }
  111. }
  112. .item-bottom{
  113. width: 100%;
  114. padding-top: 8rpx;
  115. padding-bottom: 32rpx;
  116. box-sizing: border-box;
  117. .text-box{
  118. height: 44rpx;
  119. line-height: 44rpx;
  120. margin-top: 16rpx;
  121. @include flex(flex-start,null,32rpx);
  122. text{
  123. &:nth-of-type(1){
  124. width: 176rpx;
  125. font-size: 28rpx;
  126. color: rgba(0, 0, 0, 0.4);
  127. }
  128. &:nth-of-type(2){
  129. font-size: 28rpx;
  130. color: rgba(0, 0, 0, 0.9);
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }
  138. }