index.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /**index.wxss**/
  2. .banner{
  3. margin: 20rpx 0;
  4. width: 100%;
  5. box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.08);
  6. height: 240rpx;
  7. }
  8. .banner swiper-item{
  9. border-radius: 20rpx;
  10. /* border: 1px solid red; */
  11. overflow: hidden;
  12. }
  13. .banner swiper-item image{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .banner .wx-swiper-dots{position:relative;left: unset!important;right: 0;}
  18. .wx-swiper-dots.wx-swiper-dots-horizontal{
  19. /* margin-bottom: rpx; */
  20. }
  21. .banner .swiper-item{
  22. position: absolute;
  23. z-index: 9;
  24. bottom: 15rpx;
  25. left: 0;
  26. color: #fff;
  27. background: #1934FD;
  28. opacity: 0.37;
  29. line-height: 58rpx;
  30. padding: 0 30rpx;
  31. }
  32. .tab{
  33. display: flex;
  34. justify-content: space-between;
  35. margin-bottom: 20rpx;
  36. }
  37. .tab text{
  38. font-size: 30rpx;
  39. color: #666;
  40. }
  41. .tab .active{
  42. color: #3780CD;
  43. }
  44. scroll-view{
  45. height: 100%;
  46. }
  47. .content{
  48. background: #fff;
  49. border-radius: 20rpx;
  50. /* padding: 20rpx 0rpx; */
  51. position: relative;
  52. }
  53. .zm{
  54. position: fixed;
  55. right: 12rpx;
  56. top: 480rpx;
  57. bottom:40rpx;
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: space-between;
  61. /* line-height: 12px; */
  62. text-align: center;
  63. z-index: 999;
  64. }
  65. .zm view{
  66. color: #3780CD;
  67. font-size: 20rpx;
  68. line-height: 12px;
  69. /* border: 1px solid red; */
  70. /* width: 60rpx; */
  71. }
  72. .tt{
  73. margin: 20rpx;
  74. font-size: 24rpx;
  75. color: #999999;
  76. }
  77. .list{
  78. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  79. border-radius: 20rpx;
  80. display: flex;
  81. padding: 20rpx;
  82. box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2);
  83. margin: 0 20rpx 40rpx;
  84. }
  85. .list image{
  86. width: 20%;
  87. max-height: 100px;
  88. }
  89. .list>view{
  90. width: 80%;
  91. padding-left: 20rpx;
  92. vertical-align: middle;
  93. }
  94. .list .title{
  95. margin-bottom: 20rpx;
  96. text-overflow: ellipsis;
  97. overflow: hidden;
  98. white-space: nowrap;
  99. }
  100. .list text{
  101. color: #999;
  102. display: block;
  103. text-overflow: ellipsis;
  104. overflow: hidden;
  105. white-space: nowrap;
  106. font-size: 26rpx;
  107. }
  108. .list .company{
  109. overflow: visible;
  110. white-space: pre-wrap;
  111. margin-top: 40rpx;
  112. font-size: 28rpx;
  113. }
  114. @media(max-height:667px){
  115. .zm{
  116. top: 425rpx;
  117. }
  118. }
  119. .hint_bok{
  120. position:fixed;
  121. top:50%;
  122. left:50%;
  123. transform:translate(-50%,-50%);
  124. background:rgba(0,0,0,.5);
  125. color:#fff;
  126. width:100rpx;
  127. border-radius:10rpx;
  128. text-align:center;
  129. padding:15rpx 0;
  130. font-size:54rpx;
  131. }
  132. .nav{
  133. position: fixed;
  134. top: 430rpx;
  135. right: 0rpx;
  136. width:30rpx;
  137. z-index:99;
  138. }
  139. .nav.touchmove{
  140. background:#ddd;
  141. }
  142. .nav view{
  143. font-size: 20rpx;
  144. color: #4A80C7;
  145. text-align: center;
  146. line-height: 26rpx;
  147. }
  148. .dw{
  149. border-radius: 20rpx;
  150. overflow: hidden;
  151. margin-bottom: 60rpx;
  152. }
  153. .dw_title{
  154. background: #D9E5F1;
  155. padding: 20rpx 30rpx;
  156. font-size: 32rpx;
  157. color: #666;
  158. }
  159. .dw_title text{
  160. float: right;
  161. font-size: 30rpx;
  162. }
  163. .dw_list{
  164. background: #fff;
  165. padding: 0 30rpx;
  166. }
  167. .dw_list navigator{
  168. padding: 20rpx 0;
  169. border-bottom: 1px solid #E4E4E4;
  170. }
  171. .dw_list navigator view{
  172. font-size: 32rpx;
  173. color: #666;
  174. margin-bottom: 15rpx;
  175. }
  176. .dw_list text{
  177. font-size: 26rpx;
  178. color: #999;
  179. }
  180. .top{
  181. color: #666;
  182. font-size: 30rpx;
  183. text-align: right;
  184. padding: 20rpx 0;
  185. }
  186. .cancel{
  187. color: #1682DA;
  188. }
  189. .dw_title image{
  190. width: 20rpx;
  191. float: right;
  192. position: relative;
  193. top: 12rpx;
  194. }
  195. .thead{
  196. display: flex;
  197. justify-content: space-between;
  198. margin-bottom: 20rpx;
  199. }
  200. .thead text{
  201. font-size: 30rpx;
  202. color: #999;
  203. }
  204. .tbody{
  205. background: #fff;
  206. border-radius: 14rpx;
  207. padding: 20rpx 20rpx 1rpx;
  208. margin-bottom: 20rpx;
  209. }
  210. .tr{
  211. display: flex;
  212. justify-content: space-between;
  213. margin-bottom: 20rpx;
  214. }
  215. .tr text{
  216. font-size: 32rpx;
  217. color: #666;
  218. }
  219. .tr .per{
  220. color: #DF4E2E;
  221. font-size: 30rpx;
  222. position: relative;
  223. padding-right: 25rpx;
  224. }
  225. .up{
  226. width: 0;
  227. height: 0;
  228. border: 10rpx solid transparent;
  229. border-bottom: 16rpx solid #DF4E2E;
  230. position: absolute;
  231. right: 0;
  232. top: 2rpx;
  233. }