index.acss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. .reason-form {
  2. width: 100%;
  3. min-height: 892rpx;
  4. background-color: #ffffff;
  5. border-radius: 16rpx 16rpx 0 0;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: space-between;
  9. }
  10. .reason-form .title {
  11. margin: 40rpx 0;
  12. text-align: center;
  13. font-size: 36rpx;
  14. font-weight: 600;
  15. color: #333;
  16. line-height: 36rpx;
  17. }
  18. .reason-form .button-container {
  19. width: 100%;
  20. }
  21. .reason-form .button-container .btn {
  22. width: calc(100% - 48rpx);
  23. margin: 24rpx;
  24. }
  25. .block-center {
  26. display: block;
  27. margin-left: auto;
  28. margin-right: auto;
  29. }
  30. .two-level-menu .back-icon {
  31. position: absolute;
  32. width: 100rpx;
  33. height: 50rpx;
  34. color: #1677ff;
  35. }
  36. .two-level-menu .reason-container {
  37. justify-content: center;
  38. margin-top: 40rpx;
  39. padding: 24rpx;
  40. position: relative;
  41. }
  42. .two-level-menu .reason-container::before {
  43. top: 0;
  44. position: absolute;
  45. content: '';
  46. display: block;
  47. left: 0;
  48. right: 0;
  49. height: 2rpx;
  50. -webkit-transform: scaleY(0.5);
  51. transform: scaleY(0.5);
  52. background-color: #eee;
  53. }
  54. .two-level-menu .reason-container::after {
  55. bottom: 0;
  56. position: absolute;
  57. content: '';
  58. display: block;
  59. left: 0;
  60. right: 0;
  61. height: 2rpx;
  62. -webkit-transform: scaleY(0.5);
  63. transform: scaleY(0.5);
  64. background-color: #eee;
  65. }
  66. .two-level-menu .reason-container.flex-grid {
  67. display: flex;
  68. flex-wrap: wrap;
  69. justify-content: space-between;
  70. }
  71. .two-level-menu .reason-container.column3{
  72. justify-content: start;
  73. }
  74. .two-level-menu .reason-container.column3 .btn-box {
  75. width: 218rpx;
  76. height: 150rpx;
  77. margin-bottom: 24rpx;
  78. margin-right: 24rpx;
  79. }
  80. .two-level-menu .reason-container.column3 .line1 {
  81. width: 100%;
  82. }
  83. .two-level-menu .reason-container.column3 .line2 {
  84. width: 48%;
  85. }
  86. .two-level-menu .reason-container.column3 .line1:nth-of-type(n) {
  87. margin-right: 0;
  88. }
  89. .two-level-menu .reason-container.column3 .line2:nth-of-type(2n) {
  90. margin-right: 0;
  91. }
  92. .two-level-menu .reason-container.column3 .line2:nth-of-type(n+5) {
  93. margin-bottom: 0;
  94. }
  95. .two-level-menu .reason-container.column3 .line3:nth-of-type(3n) {
  96. margin-right: 0;
  97. }
  98. .two-level-menu .reason-container.column3 .line3:nth-of-type(n + 7) {
  99. margin-bottom: 0;
  100. }
  101. .two-level-menu .reason-container.column4 .btn-box {
  102. width: 158rpx;
  103. height: 161rpx;
  104. margin-bottom: 24rpx;
  105. display: flex;
  106. flex-direction: column;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. .two-level-menu .reason-container.column4 .btn-box:nth-of-type(4n) {
  111. margin-right: 0;
  112. }
  113. .two-level-menu .reason-container.column4 .btn-box:nth-of-type(n + 9) {
  114. margin-bottom: 0;
  115. }
  116. .two-level-menu .reason-container.column4 .btn-box .logo {
  117. width: 56rpx;
  118. height: 56rpx;
  119. margin-bottom: 15rpx;
  120. }
  121. .two-level-menu .reason-container .btn-box {
  122. display: flex;
  123. align-items: center;
  124. justify-content: center;
  125. background-color: #f5f5f5;
  126. border-radius: 8rpx;
  127. }
  128. .two-level-menu .reason-container .active {
  129. background-size: 214rpx 100%;
  130. color: #1677ff;
  131. background-color: #E7F1FF;
  132. background-position-x: right;
  133. background-repeat: no-repeat;
  134. background-image: url('https://gw.alipayobjects.com/mdn/rms_091500/afts/img/A*Bk_FTYWWfwwAAAAAAAAAAAAAARQnAQ');
  135. }
  136. .two-level-menu .text-container {
  137. margin-top: 40rpx;
  138. padding: 24rpx 24rpx;
  139. box-shadow: inset 0 -1rpx 0 0 #EEEEEE, inset 0 1rpx 0 0 #EEEEEE;
  140. }
  141. .two-level-menu .text-container textarea {
  142. height: 200rpx;
  143. }