home.less 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. .home {
  2. background: url("../../assets/home/top-bg.png") repeat-x;
  3. background-size: 50% 200px;
  4. background-attachment: fixed;
  5. background-position: 0px 59px;
  6. padding:0 20px 20px 20px;
  7. .ant-col {
  8. width: auto;
  9. }
  10. .top-title {
  11. margin-bottom: 15px;
  12. .t1 {
  13. color: #fff;
  14. font-size: 18px;
  15. margin-right: 5px
  16. }
  17. .t2 {
  18. font-size: 15px;
  19. text-decoration: underline;
  20. margin-left: 5px;
  21. }
  22. .ant-select {
  23. color: #fff;
  24. /deep/ .ant-select-selection {
  25. background-color: transparent;
  26. }
  27. /deep/ .ant-select-arrow {
  28. color: #fff;
  29. }
  30. }
  31. }
  32. .r2 {
  33. .c1 .wrap {
  34. background: url("../../../assets/home/left.svg") no-repeat #fff;
  35. background-position: right top;
  36. }
  37. .c2 .wrap {
  38. background: url("../../../assets/home/right.svg") no-repeat #fff;
  39. background-position: left top;
  40. }
  41. .wrap {
  42. border-radius: 10px;
  43. background: #fff;
  44. padding: 20px 30px;
  45. box-shadow: 0px 0px 15px 0px #544beb17;
  46. height: 145px;
  47. display: flex;
  48. flex-direction: column;
  49. justify-content: center;
  50. .mb {
  51. margin-bottom: 20px;
  52. }
  53. p {
  54. margin-bottom: 5px;
  55. color: #000;
  56. font-size: 13px;
  57. }
  58. .big {
  59. font-size: 16px;
  60. }
  61. .btn_self {
  62. font-size: 14px;
  63. border-radius: 0;
  64. height: auto;
  65. padding: 3px 30px;
  66. margin-top: 6%;
  67. width: 120px;
  68. }
  69. img {
  70. display: block;
  71. width: 50%;
  72. }
  73. .imgtitle {
  74. margin-bottom: 0;
  75. margin-top: 8%;
  76. }
  77. }
  78. }
  79. .r3 {
  80. margin: 20px 0 10px;
  81. .detail_link {
  82. float: right;
  83. font-size: 14px;
  84. }
  85. }
  86. .r4 {
  87. background: #fff;
  88. padding: 20px 20px 0 20px;
  89. border-radius: 10px;
  90. .title {
  91. font-size: 15px;
  92. margin: 0;
  93. }
  94. .wrap {
  95. display: block;
  96. overflow: hidden;
  97. .left {
  98. float: left;
  99. width: 20%;
  100. p {
  101. margin-bottom: 15px;
  102. }
  103. }
  104. .right {
  105. float: right;
  106. width: 80%;
  107. span {
  108. width: 33.33%;
  109. display: block;
  110. float: left;
  111. margin-bottom: 15px;
  112. }
  113. }
  114. }
  115. .c2 {
  116. position: relative;
  117. &:before {
  118. content: '';
  119. display: block;
  120. width: 1px;
  121. height: 70%;
  122. background: #efefef;
  123. position: absolute;
  124. left: -25px;
  125. top: 15%;
  126. }
  127. &:after {
  128. content: '';
  129. display: block;
  130. width: 1px;
  131. height: 70%;
  132. background: #efefef;
  133. position: absolute;
  134. right: 25px;
  135. top: 15%;
  136. }
  137. }
  138. }
  139. .r5 {
  140. background: #fff;
  141. padding: 10px;
  142. border-radius: 10px;
  143. margin: 0 !important;
  144. .wrap {
  145. box-shadow: 0px 2px 4px 0px rgba(84, 75, 235, .3);
  146. padding: 15px;
  147. border-radius: 10px;
  148. overflow: hidden;
  149. background: #fff;
  150. transition: all .3s;
  151. &.blue {
  152. box-shadow: 0px 2px 4px 0px rgba(88, 203, 168, .3);
  153. }
  154. &.effect:hover {
  155. box-shadow: none;
  156. background: rgb(241, 248, 255);
  157. }
  158. img {
  159. width: 15px;
  160. }
  161. .fr {
  162. float: right;
  163. width: calc(100% - 15px);
  164. text-align: center;
  165. p:last-child {
  166. font-size: 30px;
  167. text-align: center;
  168. margin-top: 10px;
  169. }
  170. }
  171. }
  172. /deep/ .ant-table-thead > tr > th {
  173. background: rgb(241, 248, 255);
  174. border: none;
  175. color: #000;
  176. padding: 10px;
  177. }
  178. /deep/ .ant-table-tbody .ant-table-row td {
  179. padding: 10px;
  180. color: #000;
  181. }
  182. .r5-1 {
  183. display: flex;
  184. width: 100%;
  185. margin-top: 30px;
  186. .fl {
  187. float: left;
  188. position: relative;
  189. .ant-btn {
  190. border-radius: 0;
  191. border: none;
  192. margin-right: 10px;
  193. }
  194. }
  195. .fr {
  196. float: right;
  197. line-height: 2;
  198. span {
  199. margin-right: 30px;
  200. i {
  201. display: inline-block;
  202. width: 25px;
  203. height: 3px;
  204. background: #544BEB;
  205. position: relative;
  206. top: -4px;
  207. margin-right: 20px;
  208. }
  209. &:last-child i {
  210. background: #F0B358;
  211. }
  212. }
  213. }
  214. }
  215. .box {
  216. border-radius: 10px;
  217. text-align: center;
  218. min-height: 180px;
  219. display: flex;
  220. flex-direction: column;
  221. justify-content: center;
  222. p {
  223. color: #fff;
  224. img {
  225. width: 19px;
  226. margin: -5px 10px 0 0;
  227. }
  228. }
  229. .num {
  230. font-size: 30px;
  231. margin-bottom: 10px;
  232. }
  233. &.b1 {
  234. background: rgb(233, 107, 95);
  235. }
  236. &.b2 {
  237. background: rgb(88, 204, 168);
  238. }
  239. &.b3 {
  240. background: rgb(124, 152, 252);
  241. }
  242. &.b4 {
  243. background: #F0B358;
  244. }
  245. }
  246. }
  247. .r6 {
  248. background: #fff;
  249. padding: 10px 5px;
  250. border-radius: 10px;
  251. margin: 0 !important;
  252. .ant-col:not(:last-child) .wrap:after {
  253. content: '';
  254. display: block;
  255. position: absolute;
  256. right: 0;
  257. top: 10%;
  258. height: 70%;
  259. width: 2px;
  260. background: #f1f1f1;
  261. }
  262. .wrap {
  263. padding: 45px 60px;
  264. background: #fff;
  265. transition: all .3s;
  266. cursor: pointer;
  267. border-radius: 10px;
  268. &:hover {
  269. background: #f1f8ff;
  270. }
  271. p {
  272. line-height: 30px;
  273. font-size: 18px;
  274. img {
  275. width: 30px;
  276. float: right;
  277. }
  278. }
  279. }
  280. }
  281. .r7 {
  282. background: #fff;
  283. padding: 15px 5px;
  284. border-radius: 10px;
  285. margin: 0 !important;
  286. .ant-col {
  287. padding: 20px 0 20px 30px;
  288. }
  289. .wrap {
  290. display: flex;
  291. span:first-child {
  292. background: #f1f8ff;
  293. float: left;
  294. padding: 0px 20px;
  295. border-radius: 50%;
  296. width: 70px;
  297. height: 70px;
  298. text-align: center;
  299. font-size: 15px;
  300. display: flex;
  301. justify-content: center;
  302. align-items: center;
  303. }
  304. span:last-child {
  305. display: flex;
  306. align-items: center;
  307. padding-left: 50px;
  308. }
  309. }
  310. }
  311. }
  312. @media (max-width: 1600px) {
  313. .home .r2 .wrap .imgtitle {
  314. margin-top: 1%;
  315. }
  316. .home .r2 .wrap .btn_self {
  317. font-size: 12px;
  318. margin-top: 4%;
  319. width: auto;
  320. }
  321. }
  322. @media (min-width: 2000px) {
  323. .home .r2 .wrap img {
  324. display: block;
  325. width: 45%;
  326. }
  327. .home .r2 .wrap .imgtitle {
  328. margin-top: 7%;
  329. }
  330. }