personal.wxss 3.3 KB

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