index.wxss 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. ._a {
  12. text-decoration: none;
  13. color: #5f5f5f;
  14. }
  15. .content {
  16. background-color: #FFABAB;
  17. }
  18. .popup_row {
  19. width: 100%;
  20. height: 500rpx;
  21. background-color: #ffffff;
  22. -webkit-border-radius: 20rpx;
  23. border-radius: 20rpx;
  24. display: -webkit-box;
  25. display: -webkit-flex;
  26. display: flex;
  27. -webkit-box-pack: center;
  28. -webkit-justify-content: center;
  29. justify-content: center;
  30. -webkit-box-align: center;
  31. -webkit-align-items: center;
  32. align-items: center;
  33. }
  34. .popup_row .rows {
  35. width: 100%;
  36. padding: 0 24rpx;
  37. }
  38. .popup_row .rows .rows-item {
  39. height: 80rpx;
  40. line-height: 80rpx;
  41. text-align: center;
  42. width: 100%;
  43. font-size: 32rpx;
  44. color: #303133;
  45. }
  46. .content {
  47. background-color: #f8f8f8;
  48. height: 100%;
  49. /* 头部 轮播图 */
  50. }
  51. .content .carousel-section {
  52. overflow: hidden;
  53. }
  54. .content .carousel-section .carousel {
  55. width: 100%;
  56. height: 398rpx;
  57. }
  58. .content .carousel-section .carousel .carousel-item {
  59. width: 100%;
  60. height: 100%;
  61. padding-left: 30rpx;
  62. padding-right: 30rpx;
  63. overflow: hidden;
  64. }
  65. .content .carousel-section .carousel image {
  66. width: 100%;
  67. height: 398rpx;
  68. }
  69. .content .cate-section {
  70. display: -webkit-box;
  71. display: -webkit-flex;
  72. display: flex;
  73. justify-items: center;
  74. -webkit-box-align: center;
  75. -webkit-align-items: center;
  76. align-items: center;
  77. -webkit-justify-content: space-around;
  78. justify-content: space-around;
  79. height: 214rpx;
  80. width: 750rpx;
  81. background-color: #ffffff;
  82. }
  83. .content .cate-section .cate-item {
  84. display: -webkit-box;
  85. display: -webkit-flex;
  86. display: flex;
  87. -webkit-box-orient: vertical;
  88. -webkit-box-direction: normal;
  89. -webkit-flex-direction: column;
  90. flex-direction: column;
  91. -webkit-box-pack: center;
  92. -webkit-justify-content: center;
  93. justify-content: center;
  94. -webkit-box-align: center;
  95. -webkit-align-items: center;
  96. align-items: center;
  97. color: #5f5f5f;
  98. font-size: 26rpx;
  99. }
  100. .content .cate-section .cate-item image {
  101. height: 88rpx;
  102. width: 88rpx;
  103. margin-bottom: 14rpx;
  104. -webkit-border-radius: 50%;
  105. border-radius: 50%;
  106. opacity: 0.7;
  107. }
  108. .content .science-section {
  109. width: 100%;
  110. background-color: #ffffff;
  111. margin-top: 18rpx;
  112. padding-top: 30rpx;
  113. }
  114. .content .science-section .science-title {
  115. display: -webkit-box;
  116. display: -webkit-flex;
  117. display: flex;
  118. -webkit-box-pack: center;
  119. -webkit-justify-content: center;
  120. justify-content: center;
  121. -webkit-box-align: center;
  122. -webkit-align-items: center;
  123. align-items: center;
  124. padding-bottom: 22rpx;
  125. }
  126. .content .science-section .science-title .title {
  127. width: 285rpx;
  128. height: 64rpx;
  129. background-color: #ca121e;
  130. -webkit-border-radius: 32rpx;
  131. border-radius: 32rpx;
  132. color: #ffffff;
  133. font-size: 32rpx;
  134. line-height: 64rpx;
  135. text-align: center;
  136. }
  137. .content .science-section .science-title image {
  138. width: 68rpx;
  139. height: 43rpx;
  140. margin-left: 16rpx;
  141. margin-right: 16rpx;
  142. }
  143. .content .science-section .science-box {
  144. padding-left: 15rpx;
  145. padding-right: 15rpx;
  146. padding-bottom: 20rpx;
  147. border-bottom: 1rpx solid #f0f0f0;
  148. white-space: nowrap;
  149. display: -webkit-box;
  150. display: -webkit-flex;
  151. display: flex;
  152. width: 100%;
  153. }
  154. .content .science-section .science-box .science-content {
  155. display: -webkit-box;
  156. }
  157. .content .science-section .science-box .science-content .science-item {
  158. margin-right: 24rpx;
  159. width: 198rpx;
  160. display: -webkit-box;
  161. display: -webkit-flex;
  162. display: flex;
  163. -webkit-box-orient: vertical;
  164. -webkit-box-direction: normal;
  165. -webkit-flex-direction: column;
  166. flex-direction: column;
  167. -webkit-box-align: center;
  168. -webkit-align-items: center;
  169. align-items: center;
  170. text-align: center;
  171. }
  172. .content .science-section .science-box .science-content .science-item image {
  173. width: 100%;
  174. height: 145rpx;
  175. }
  176. .content .science-section .science-box .science-content .science-item .article-title {
  177. width: 198rpx;
  178. color: #333;
  179. font-size: 25rpx;
  180. padding-top: 20rpx;
  181. padding-bottom: 16rpx;
  182. font-weight: 900;
  183. }
  184. .content .science-section .science-box .science-content .science-item .article-content {
  185. width: 198rpx;
  186. color: #999999;
  187. font-size: 18rpx;
  188. overflow: hidden;
  189. text-overflow: ellipsis;
  190. display: -webkit-box;
  191. word-break: break-all;
  192. -webkit-box-orient: vertical;
  193. -webkit-line-clamp: 2;
  194. }
  195. .content .science-section .science-more {
  196. display: -webkit-box;
  197. display: -webkit-flex;
  198. display: flex;
  199. -webkit-box-pack: center;
  200. -webkit-justify-content: center;
  201. justify-content: center;
  202. -webkit-box-align: center;
  203. -webkit-align-items: center;
  204. align-items: center;
  205. color: #cb131c;
  206. font-size: 30rpx;
  207. padding-top: 18rpx;
  208. padding-bottom: 18rpx;
  209. }
  210. .content .science-section .science-more image {
  211. width: 20rpx;
  212. height: 27rpx;
  213. }
  214. .content .system {
  215. width: 100%;
  216. background-color: #ffffff;
  217. margin-top: 18rpx;
  218. padding-top: 40rpx;
  219. }
  220. .content .system .system-title {
  221. display: -webkit-box;
  222. display: -webkit-flex;
  223. display: flex;
  224. -webkit-box-pack: center;
  225. -webkit-justify-content: center;
  226. justify-content: center;
  227. -webkit-box-align: center;
  228. -webkit-align-items: center;
  229. align-items: center;
  230. padding-bottom: 22rpx;
  231. }
  232. .content .system .system-title .title {
  233. width: 285rpx;
  234. height: 64rpx;
  235. background-color: #ca121e;
  236. -webkit-border-radius: 32rpx;
  237. border-radius: 32rpx;
  238. color: #ffffff;
  239. font-size: 32rpx;
  240. line-height: 64rpx;
  241. text-align: center;
  242. }
  243. .content .system .system-title .img {
  244. width: 68rpx;
  245. height: 43rpx;
  246. margin-left: 16rpx;
  247. margin-right: 16rpx;
  248. }
  249. .content .system .system-title .img image {
  250. width: 68rpx;
  251. height: 43rpx;
  252. }
  253. .content .system .system-map {
  254. width: 750rpx;
  255. height: 500rpx;
  256. background-color: #ffffff;
  257. padding: 0 24rpx;
  258. padding-bottom: 45rpx;
  259. }
  260. .content .system .system-map .map-box {
  261. width: 100%;
  262. height: 500rpx;
  263. background-color: #f8f8f8;
  264. }
  265. .content .system .system-map .map-box image {
  266. width: 100%;
  267. height: 500rpx;
  268. }
  269. .content .list-box {
  270. padding: 0rpx 25rpx 24rpx;
  271. }
  272. .content .list-box .system-title {
  273. display: -webkit-box;
  274. display: -webkit-flex;
  275. display: flex;
  276. -webkit-box-pack: center;
  277. -webkit-justify-content: center;
  278. justify-content: center;
  279. -webkit-box-align: center;
  280. -webkit-align-items: center;
  281. align-items: center;
  282. height: 130rpx;
  283. background-color: #FFFFFF;
  284. }
  285. .content .list-box .system-title .title {
  286. width: 285rpx;
  287. height: 64rpx;
  288. background-color: #ca121e;
  289. -webkit-border-radius: 32rpx;
  290. border-radius: 32rpx;
  291. color: #ffffff;
  292. font-size: 32rpx;
  293. line-height: 64rpx;
  294. text-align: center;
  295. }
  296. .content .list-box .system-title .img {
  297. width: 68rpx;
  298. height: 43rpx;
  299. margin-left: 16rpx;
  300. margin-right: 16rpx;
  301. }
  302. .content .list-box .system-title .img image {
  303. width: 68rpx;
  304. height: 43rpx;
  305. }
  306. .content .map-box {
  307. width: 100%;
  308. height: 366rpx;
  309. -webkit-box-shadow: 5px 15px 15px 5px #F2F2F2;
  310. box-shadow: 5px 15px 15px 5px #F2F2F2;
  311. }
  312. .content .list-tpl {
  313. background-color: #FFFFFF;
  314. margin: 25rpx 0rpx;
  315. padding: 25rpx 25rpx;
  316. font-size: 28rpx;
  317. -webkit-border-radius: 15rpx;
  318. border-radius: 15rpx;
  319. display: -webkit-box;
  320. display: -webkit-flex;
  321. display: flex;
  322. -webkit-box-pack: justify;
  323. -webkit-justify-content: space-between;
  324. justify-content: space-between;
  325. }
  326. .content .list-tpl .list-left {
  327. display: -webkit-box;
  328. display: -webkit-flex;
  329. display: flex;
  330. width: 100%;
  331. }
  332. .content .list-tpl .list-left .number {
  333. font-size: 32rpx;
  334. margin-right: 14rpx;
  335. }
  336. .content .list-tpl .list-left .info {
  337. width: 100%;
  338. }
  339. .content .list-tpl .list-left .info .title {
  340. font-size: 32rpx;
  341. color: #222222;
  342. font-weight: 500;
  343. }
  344. .content .list-tpl .list-left .info .addr {
  345. margin-top: 20rpx;
  346. }
  347. .content .list-tpl .image {
  348. width: 10%;
  349. text-align: center;
  350. }
  351. .content .list-tpl .image image {
  352. width: 50rpx;
  353. height: 50rpx;
  354. }
  355. .content .list-tpl .image .tip {
  356. color: #7F7F7F;
  357. font-size: 21rpx;
  358. }