team.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. .main {
  2. float: left;
  3. width: 100%;
  4. height: 100%;
  5. background-color: #f6f6f6;
  6. }
  7. .main .one {
  8. position: fixed;
  9. z-index: 999;
  10. width: 100%;
  11. height: 80rpx;
  12. line-height: 80rpx;
  13. background-color: #409eff;
  14. color: #ffffff;
  15. text-align: center;
  16. }
  17. .main .two {
  18. position: absolute;
  19. top: 80rpx;
  20. width: 100%;
  21. background-color: #f6f6f6;
  22. }
  23. .main .two .top {
  24. float: left;
  25. width: 100%;
  26. background-color: #ffffff;
  27. }
  28. .main .two .top .topOne {
  29. float: left;
  30. width: 94%;
  31. height: 78rpx;
  32. line-height: 78rpx;
  33. border-bottom: 1px solid #ccc;
  34. padding: 0 20rpx;
  35. }
  36. .main .two .top .topOne .topView {
  37. float: left;
  38. width: 50%;
  39. }
  40. .main .two .top .topOne .topView:nth-child(2) {
  41. text-align: right;
  42. }
  43. .van-icon {
  44. top: 3px;
  45. }
  46. .main .two .top .topTwo {
  47. float: left;
  48. width: 94%;
  49. height: 78rpx;
  50. line-height: 78rpx;
  51. padding: 0 20rpx;
  52. }
  53. .main .two .top .topTwo .topTwoView {
  54. float: left;
  55. width: 33%;
  56. text-align: center;
  57. }
  58. .main .two .top .topTwo .topTwoView .picker {
  59. float: left;
  60. width: 100%;
  61. font-size: 25rpx;
  62. }
  63. .main .two .down {
  64. float: left;
  65. width: 95%;
  66. padding: 0 20rpx;
  67. margin: 10rpx 0;
  68. }
  69. .main .two .down .list {
  70. float: left;
  71. width: 98%;
  72. background-color: #ffffff;
  73. padding: 20rpx 10rpx;
  74. margin: 0 0 15rpx 0;
  75. border-radius: 10rpx;
  76. }
  77. .main .two .down .list .name {
  78. float: left;
  79. width: 18%;
  80. }
  81. .main .two .down .list .name text {
  82. float: left;
  83. background-color: red;
  84. border-radius: 360rpx;
  85. width: 100rpx;
  86. height: 100rpx;
  87. text-align: center;
  88. line-height: 100rpx;
  89. font-size: 40rpx;
  90. font-weight: bold;
  91. color: #fff;
  92. }
  93. .main .two .down .list .message {
  94. float: left;
  95. width: 82%;
  96. }
  97. .main .two .down .list .message .messageTop {
  98. float: left;
  99. width: 100%;
  100. }
  101. .main .two .down .list .message .messageTop text:nth-child(1) {
  102. font-weight: bold;
  103. margin: 0 20rpx 0 0;
  104. }
  105. .main .two .down .list .message .messageTop text:nth-child(2) {
  106. border: 1px solid #ff0000;
  107. color: #ff0000;
  108. padding: 0 10rpx;
  109. border-radius: 10rpx;
  110. font-size: 30rpx;
  111. }
  112. .main .two .down .list .message .messageDown {
  113. float: left;
  114. width: 100%;
  115. float: left;
  116. width: 100%;
  117. font-size: 30rpx;
  118. color: #666;
  119. margin: 20rpx 0 0 0;
  120. }
  121. .main .two .down .list .message .messageDown text:nth-child(1) {
  122. float: left;
  123. width: 50%;
  124. }
  125. .main .two .down .list .message .messageDown text:nth-child(2) {
  126. float: right;
  127. width: 50%;
  128. text-align: right;
  129. }
  130. .popup {
  131. float: left;
  132. width: 94%;
  133. padding: 80rpx 20rpx 15rpx 20rpx;
  134. }
  135. .popup .one {
  136. float: left;
  137. width: 100%;
  138. margin: 0 0 20rpx 0;
  139. }
  140. .popup .one .title {
  141. float: left;
  142. width: 100%;
  143. font-weight: bold;
  144. font-size: 30rpx;
  145. padding: 10rpx 0;
  146. margin: 0 0 10rpx 0;
  147. }
  148. .popup .one .radio label {
  149. float: left;
  150. margin: 0 25rpx 15rpx 0;
  151. font-size: 25rpx;
  152. }
  153. .popup .one .dateAuto {
  154. float: left;
  155. width: 100%;
  156. background-color: #cccccc5f;
  157. border-radius: 10rpx;
  158. padding: 10rpx 0;
  159. }
  160. .popup .one .dateAuto .datePar {
  161. float: left;
  162. width: 45%;
  163. text-align: center;
  164. }
  165. .popup .one .dateAuto .datePar:nth-child(2) {
  166. width: 10%;
  167. }
  168. .popup .btn {
  169. float: left;
  170. width: 90%;
  171. position: absolute;
  172. bottom: 10rpx;
  173. background-color: #f1f1f1;
  174. padding: 15rpx;
  175. }
  176. .popup .btn button {
  177. float: left;
  178. width: 28%;
  179. margin: 0 50rpx 0 0;
  180. border-radius: 50rpx;
  181. line-height: 77rpx;
  182. }
  183. .popup .btn button:nth-child(1) {
  184. background-color: #ffffff;
  185. }
  186. .popup .btn button:nth-child(2) {
  187. border: 1px solid #ff0000;
  188. color: #ff0000;
  189. }
  190. .popup .btn button:nth-child(3) {
  191. background-color: #ff0000;
  192. color: #fff;
  193. margin: 0;
  194. }