join-hands-with-partners.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. position: relative;
  6. padding: 20rpx 36rpx;
  7. box-sizing: border-box;
  8. }
  9. .wrap::after {
  10. content: "";
  11. position: absolute;
  12. left: 0;
  13. top: 0;
  14. width: 100%;
  15. height: 300rpx;
  16. background-color: #F2501A;
  17. border-radius: 0 0 60rpx 60rpx;
  18. }
  19. .module {
  20. width: 100%;
  21. background-color: #FFFFFF;
  22. border-radius: 20rpx;
  23. position: relative;
  24. padding: 40rpx 36rpx 24rpx;
  25. box-sizing: border-box;
  26. margin-bottom: 20rpx;
  27. }
  28. .module::after {
  29. content: "";
  30. width: calc(100% - 80rpx);
  31. height: 100rpx;
  32. position: absolute;
  33. top: -20rpx;
  34. left: 40rpx;
  35. background-color: #FFB39A;
  36. border-radius: 20rpx;
  37. z-index: -1;
  38. }
  39. .coumn {
  40. display: flex;
  41. flex-direction: column;
  42. z-index: 100;
  43. }
  44. .head {
  45. width: 100%;
  46. display: flex;
  47. flex-direction: column;
  48. margin-bottom: 60rpx;
  49. }
  50. .font-1 {
  51. color: #FFFFFF;
  52. font-size: 45rpx;
  53. margin-bottom: 3rpx;
  54. }
  55. .font-2 {
  56. color: #FFFFFF;
  57. font-size: 28rpx;
  58. }
  59. .module-row {
  60. width: 100%;
  61. padding: 14rpx 0;
  62. border-bottom: 1px solid #F2F2F2;
  63. box-sizing: border-box;
  64. margin-bottom: 20rpx;
  65. }
  66. .module-row:last-child {
  67. border-bottom: none;
  68. margin-bottom: 0;
  69. }
  70. .module-label {
  71. width: 100%;
  72. color: #333333;
  73. font-size: 30rpx;
  74. position: relative;
  75. padding: 0 40rpx;
  76. box-sizing: border-box;
  77. margin-bottom: 15rpx;
  78. }
  79. .module-label::after {
  80. content: "";
  81. width: 10rpx;
  82. height: 28rpx;
  83. background-color: #F2501A;
  84. border-radius: 16rpx;
  85. position: absolute;
  86. left: 0;
  87. top: 50%;
  88. transform: translate(0, -50%);
  89. }
  90. .bottom-row {
  91. width: 100%;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. padding: 0 0 0 38rpx;
  96. box-sizing: border-box;
  97. }
  98. .placeholder {
  99. color: #BFBFBF;
  100. }
  101. .input {
  102. flex: 1;
  103. font-size: 30rpx;
  104. }
  105. .gray {
  106. flex: 1;
  107. font-size: 30rpx;
  108. color: #BFBFBF;
  109. }
  110. .selected {
  111. flex: 1;
  112. font-size: 30rpx;
  113. }
  114. .back-icon {
  115. width: 20rpx;
  116. }
  117. .textarea-box {
  118. width: 100%;
  119. background-color: #FFFFFF;
  120. border-radius: 20rpx;
  121. padding: 20rpx 28rpx;
  122. box-sizing: border-box;
  123. margin-bottom: 20rpx;
  124. }
  125. .textarea-label {
  126. width: 100%;
  127. color: #333333;
  128. font-size: 30rpx;
  129. margin-bottom: 10rpx;
  130. }
  131. .textarea {
  132. width: 100%;
  133. height: 310rpx;
  134. font-size: 30rpx;
  135. }
  136. .btn-box {
  137. width: 100%;
  138. display: flex;
  139. justify-content: center;
  140. align-items: center;
  141. padding: 46rpx 0;
  142. }
  143. .btn-box button {
  144. width: 100%;
  145. height: 90rpx;
  146. line-height: 90rpx;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. background-color: #E0E0E0;
  151. color: #919191;
  152. font-size: 34rpx;
  153. border-radius: 100rpx;
  154. }
  155. .active {
  156. background-color: #F2501A !important;
  157. color: #fff !important;
  158. }
  159. .bottom-row-between {
  160. width: 100%;
  161. display: flex;
  162. justify-content: space-between;
  163. align-items: center;
  164. }
  165. .customer-service {
  166. display: flex;
  167. align-items: center;
  168. font-size: 26rpx;
  169. color: #F2501A;
  170. }
  171. .customer-service image {
  172. width: 28rpx;
  173. margin-right: 6rpx;
  174. }
  175. .select-btn {
  176. display: flex;
  177. align-items: center;
  178. border-radius: initial;
  179. background-color: initial;
  180. margin: 20rpx 0;
  181. color: #202020;
  182. font-size: 26rpx;
  183. }
  184. .select-btn image {
  185. width: 28rpx;
  186. height: 28rpx;
  187. margin-right: 20rpx;
  188. }