group.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background-color: #fdcbc2;
  13. height: 100%;
  14. }
  15. .content {
  16. max-height: 100%;
  17. padding-top: 44rpx;
  18. background-color: #fdcbc2;
  19. }
  20. .content .buttom-ts {
  21. height: 120rpx;
  22. }
  23. .content .buttom {
  24. margin: 60rpx auto 0;
  25. width: 600rpx;
  26. height: 100rpx;
  27. border-radius: 50rpx;
  28. background: #FA7E67;
  29. font-size: 34rpx;
  30. font-family: PingFang SC;
  31. font-weight: 500;
  32. color: #FFFFFF;
  33. line-height: 100rpx;
  34. text-align: center;
  35. }
  36. .content .buttom.action {
  37. background: #999999;
  38. }
  39. .content .box {
  40. width: 690rpx;
  41. margin: 20rpx auto 0;
  42. background-color: #ffffff;
  43. border-radius: 20rpx;
  44. position: relative;
  45. }
  46. .content .box .red-box {
  47. width: 405rpx;
  48. line-height: 66rpx;
  49. text-align: center;
  50. background: -webkit-linear-gradient(bottom, #c90f1b, #f14d33);
  51. background: linear-gradient(0deg, #c90f1b, #f14d33);
  52. border-radius: 10rpx;
  53. font-size: 30rpx;
  54. font-weight: 500;
  55. color: #ffffff;
  56. position: absolute;
  57. top: -36rpx;
  58. left: 50%;
  59. -webkit-transform: translateX(-50%);
  60. transform: translateX(-50%);
  61. z-index: 1;
  62. }
  63. .content .box .box-check {
  64. font-size: 28rpx;
  65. font-weight: 500;
  66. color: #666666;
  67. line-height: 100rpx;
  68. }
  69. .content .box .imp {
  70. color: red;
  71. margin-left: 5rpx;
  72. }
  73. .content .box .box-1 {
  74. height: 98rpx;
  75. padding: 0 20rpx;
  76. display: -webkit-box;
  77. display: -webkit-flex;
  78. display: flex;
  79. -webkit-box-pack: justify;
  80. -webkit-justify-content: space-between;
  81. justify-content: space-between;
  82. border-bottom: 1px solid #f0f0f0;
  83. line-height: 98rpx;
  84. -webkit-box-align: center;
  85. -webkit-align-items: center;
  86. align-items: center;
  87. font-size: 28rpx;
  88. font-family: PingFang SC;
  89. font-weight: 500;
  90. color: #333333;
  91. }
  92. .content .box .box-1 .list-input {
  93. width: 440rpx;
  94. font-size: 28rpx;
  95. font-family: PingFang SC;
  96. font-weight: 500;
  97. color: #000;
  98. }
  99. .content .box .box-1 .placeholder {
  100. color: #999999;
  101. }
  102. .content .box .box-1 .box-right {
  103. width: 440rpx;
  104. }
  105. .upload-box {
  106. background: #ffffff;
  107. border-radius: 27rpx;
  108. display: -webkit-box;
  109. display: -webkit-flex;
  110. display: flex;
  111. -webkit-box-orient: vertical;
  112. -webkit-box-direction: normal;
  113. -webkit-flex-direction: column;
  114. flex-direction: column;
  115. padding: 30rpx 40rpx 30rpx 0;
  116. margin: 15rpx auto 30rpx;
  117. width: 690rpx;
  118. background: #ffffff;
  119. border-radius: 10rpx;
  120. }
  121. .upload-box .upload-left {
  122. padding-left: 20rpx;
  123. font-weight: 400;
  124. color: #000;
  125. }
  126. .upload-box .upload-right {
  127. -webkit-box-flex: 1;
  128. -webkit-flex: 1;
  129. flex: 1;
  130. display: -webkit-box;
  131. display: -webkit-flex;
  132. display: flex;
  133. -webkit-box-align: center;
  134. -webkit-align-items: center;
  135. align-items: center;
  136. -webkit-box-pack: center;
  137. -webkit-justify-content: center;
  138. justify-content: center;
  139. }
  140. .upload-box .upload-right .upload-img {
  141. width: 160rpx;
  142. height: 160rpx;
  143. margin-top: 24rpx;
  144. }
  145. .top-box {
  146. height: 58rpx;
  147. font-size: 38rpx;
  148. line-height: 58rpx;
  149. font-family: PingFang SC;
  150. font-weight: bold;
  151. color: #FA7E67;
  152. text-align: center;
  153. position: relative;
  154. }
  155. .top-box::before {
  156. content: '';
  157. width: 215rpx;
  158. height: 17rpx;
  159. background: #fff;
  160. opacity: 0.26;
  161. position: absolute;
  162. left: 0;
  163. right: 0;
  164. bottom: 0;
  165. margin: 0 auto;
  166. }