home.less 6.3 KB

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