index.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. .website-wrap {
  2. width: 100%;
  3. height: auto;
  4. overflow: hidden;
  5. background-color: #F5FAFF;
  6. }
  7. /* 导航 */
  8. .website-wrap .header .nav {
  9. width: 100%;
  10. height: 3.9vh;
  11. display: flex;
  12. align-items: center;
  13. padding-left: 18.4%;
  14. background: rgba(255, 255, 255, .4);
  15. }
  16. /* logo */
  17. .website-wrap .header .nav img {
  18. height: 2.4vh;
  19. }
  20. /* 背景 */
  21. .website-wrap .header {
  22. width: 100%;
  23. height: 43.7vh;
  24. background-image: url(../images/banner.png);
  25. background-size: 100% 100%;
  26. background-repeat: no-repeat;
  27. }
  28. .website-wrap main {
  29. width: 100%;
  30. height: calc(100% - 43.7vh - 11.788vh);
  31. }
  32. .main h1 {
  33. font-family: PingFang SC, PingFang SC;
  34. font-weight: 500;
  35. font-size: 2.25rem;
  36. color: #0D2E6F;
  37. line-height: 2.625rem;
  38. text-align: center;
  39. font-style: normal;
  40. text-transform: none;
  41. margin-top: 5.9vh;
  42. }
  43. .main h2 {
  44. font-family: PingFang SC, PingFang SC;
  45. font-weight: 500;
  46. font-size: 1rem;
  47. color: #0D2E6F;
  48. line-height: 1.19rem;
  49. text-align: center;
  50. font-style: normal;
  51. text-transform: none;
  52. margin-top: 20px;
  53. }
  54. .main .area-wrap {
  55. width: 100%;
  56. height: 340px;
  57. margin-top: 50px;
  58. position: relative;
  59. display: flex;
  60. }
  61. .main .area-wrap .pic {
  62. width: 21.77vw;
  63. height: 100%;
  64. background-image: url(../images/area.png);
  65. background-repeat: no-repeat;
  66. background-size: 60% 100%;
  67. background-position: right 16vh;
  68. }
  69. .main .area-wrap .wrap {
  70. width: 63.07vw;
  71. height: 100%;
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. }
  76. .main .area-wrap .wrap .item {
  77. width: 14.25vw;
  78. height: 100%;
  79. background-image: url(../images/bj.png);
  80. background-repeat: no-repeat;
  81. background-size: 100% 110%;
  82. background-color: #fff;
  83. box-shadow: 0px 0px 16px 0px rgba(45,109,255,0.1);
  84. border-radius: 0px 0px 0px 0px;
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. }
  89. .main .area-wrap .wrap .item dl {
  90. display: flex;
  91. align-items: center;
  92. flex-direction: column;
  93. }
  94. .main .area-wrap .wrap .item dl dt img{
  95. height: 6.35vh;
  96. }
  97. .main .area-wrap .wrap .item dl dd h6:nth-child(1) {
  98. font-family: PingFang SC, PingFang SC;
  99. font-weight: 500;
  100. font-size: 20px;
  101. color: #0D2E6F;
  102. line-height: 23px;
  103. text-align: center;
  104. font-style: normal;
  105. text-transform: none;
  106. margin-top: 41px;
  107. }
  108. .main .area-wrap .wrap .item dl dd h6:nth-child(2) {
  109. font-family: PingFang SC, PingFang SC;
  110. font-weight: 400;
  111. font-size: 14px;
  112. color: #0D2E6F;
  113. line-height: 16px;
  114. font-style: normal;
  115. text-transform: none;
  116. text-align: center;
  117. margin-top: 10px;
  118. }
  119. .footer {
  120. width: 100%;
  121. height: 11.788vh;
  122. background-color: #04163C;
  123. margin-top: 100px;
  124. }
  125. .footer .content {
  126. width: 400px;
  127. height: 100%;
  128. margin: auto;
  129. display: flex;
  130. align-items: center;
  131. justify-content: center;
  132. flex-direction: column;
  133. }
  134. .footer .content h2 {
  135. font-family: PingFang SC, PingFang SC;
  136. font-weight: 400;
  137. font-size: 14px;
  138. color: #FFFFFF;
  139. text-align: center;
  140. font-style: normal;
  141. text-transform: none;
  142. line-height: 1.5;
  143. }