problemAdd.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. .title{
  2. text-align: center;
  3. margin: 20rpx 0;
  4. font-size: 42rpx;
  5. color: #333;
  6. }
  7. .top-img{
  8. width:100%;
  9. }
  10. .form-wrapper{
  11. padding:10rpx 20rpx 0;
  12. }
  13. .form-item{
  14. display: flex;
  15. height: 68rpx;
  16. margin:0 0 32rpx;
  17. }
  18. .item-left{
  19. width:130rpx;
  20. color:#2a2a2a;
  21. font-size: 30rpx;
  22. text-align: justify;
  23. margin: auto 0;
  24. }
  25. .item-right{
  26. border-radius:10rpx;
  27. border: 2rpx solid #DCDCDC;
  28. flex:1;
  29. padding:0 20rpx 0;
  30. text-align: left;
  31. color:#85868A;
  32. font-size: 28rpx;
  33. margin: auto;
  34. height: 66rpx;
  35. }
  36. .city-select{
  37. display: flex;
  38. justify-content: flex-end;
  39. align-items: center;
  40. }
  41. .city{
  42. color:#85868A;
  43. }
  44. .arrow-down{
  45. width:0rpx;
  46. height:0;
  47. border-left: 14rpx solid transparent;
  48. border-right: 14rpx solid transparent;
  49. border-top: 16rpx solid #85868A;
  50. /* margin-left:8rpx; */
  51. margin-top: -35rpx;
  52. position: absolute;
  53. right: 40rpx;
  54. }
  55. .register-btn{
  56. background: #0099ff;
  57. border-radius: 10px;
  58. background-size: 100%;
  59. width:592rpx;
  60. height: 114rpx;
  61. margin:50rpx auto 80rpx;
  62. color:#fff;
  63. font-size: 36rpx;
  64. line-height:114rpx;
  65. text-align: center;
  66. font-weight:bold;
  67. }
  68. .name-input{
  69. color: #333;
  70. /* //#85868A; */
  71. font-size: 32rpx;
  72. line-height: 66rpx;
  73. height: 66rpx;
  74. text-align: left;
  75. }
  76. .weui-uploader {
  77. margin-top: 50rpx;
  78. }
  79. .weui-uploader__hd {
  80. display: -webkit-box;
  81. display: -webkit-flex;
  82. display: flex;
  83. padding-bottom: 10px;
  84. -webkit-box-align: center;
  85. -webkit-align-items: center;
  86. align-items: center;
  87. }
  88. .weui-uploader__title {
  89. -webkit-box-flex: 1;
  90. -webkit-flex: 1;
  91. flex: 1;
  92. color: #333;
  93. }
  94. .weui-uploader__info {
  95. color: #b2b2b2;
  96. }
  97. .weui-uploader__bd {
  98. margin-bottom: -4px;
  99. margin-right: -9px;
  100. overflow: hidden;
  101. }
  102. .weui-uploader__file {
  103. float: left;
  104. margin-right: 9px;
  105. margin-bottom: 9px;
  106. }
  107. .weui-uploader__img {
  108. display: block;
  109. width: 79px;
  110. height: 79px;
  111. }
  112. .weui-uploader__file_status {
  113. position: relative;
  114. }
  115. .weui-uploader__file_status:before {
  116. content: " ";
  117. position: absolute;
  118. top: 0;
  119. right: 0;
  120. bottom: 0;
  121. left: 0;
  122. background-color: rgba(0, 0, 0, 0.5);
  123. }
  124. .weui-uploader__file-content {
  125. position: absolute;
  126. top: 50%;
  127. left: 50%;
  128. -webkit-transform: translate(-50%, -50%);
  129. transform: translate(-50%, -50%);
  130. color: #fff;
  131. }
  132. .weui-uploader__input-box {
  133. float: left;
  134. position: relative;
  135. margin-right: 9px;
  136. margin-bottom: 9px;
  137. width: 77px;
  138. height: 77px;
  139. border: 1px solid #d9d9d9;
  140. }
  141. .weui-uploader__input-box:after, .weui-uploader__input-box:before {
  142. content: " ";
  143. position: absolute;
  144. top: 50%;
  145. left: 50%;
  146. -webkit-transform: translate(-50%, -50%);
  147. transform: translate(-50%, -50%);
  148. background-color: #d9d9d9;
  149. }
  150. .weui-uploader__input-box:before {
  151. width: 2px;
  152. height: 39.5px;
  153. }
  154. .weui-uploader__input-box:after {
  155. width: 39.5px;
  156. height: 2px;
  157. }
  158. .weui-uploader__input-box:active {
  159. border-color: #999;
  160. }
  161. .weui-uploader__input-box:active:after, .weui-uploader__input-box:active:before {
  162. background-color: #999;
  163. }
  164. .weui-uploader__input {
  165. position: absolute;
  166. z-index: 1;
  167. top: 0;
  168. left: 0;
  169. width: 100%;
  170. height: 100%;
  171. opacity: 0;
  172. }