public.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. .header{
  2. height: 60px;
  3. box-shadow: 2px 2px 6px 0 rgba(5, 37, 63, 0.4);
  4. padding-bottom: 2px;
  5. }
  6. .header .nav{
  7. padding:0 10px;
  8. height: 60px;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. flex-wrap: wrap;
  13. }
  14. .logo-wrap{
  15. display: flex;
  16. align-items: center;
  17. }
  18. .header .nav .logo-wrap img{
  19. display: block;
  20. height: 40px;
  21. }
  22. .logo-wrap .rt{
  23. padding: 10px;
  24. }
  25. .logo-wrap .title{
  26. color: #333;
  27. font-size: 18px;
  28. font-weight: 600;
  29. }
  30. .logo-wrap .sub-title{
  31. color: #666;
  32. font-size: 14px;
  33. padding-top: 4px;
  34. }
  35. .header .nav .right-warp{
  36. width: 50%;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. }
  41. .statistics-card{
  42. height: 50px;
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .statistics-card .item{
  48. padding: 0 15px;
  49. }
  50. .statistics-card .item .number{
  51. font-size: 26px;
  52. color: #F18101;
  53. font-weight: bold;
  54. text-align: center;
  55. }
  56. .statistics-card .item .name{
  57. font-size: 14px;
  58. color: #424242;
  59. text-align: center;
  60. }
  61. .case .swiper-slide:nth-child(n+4){
  62. display: none;
  63. }
  64. .banner-footer-pic{
  65. height: 420px;
  66. padding:10px 0;
  67. background-size: 50% 100%;
  68. background-image: url(/static/banner.png);
  69. background-repeat: no-repeat;
  70. background-position: top 0 right 0;
  71. background-color: #2a6fcf;
  72. }
  73. .banner-footer-pic-wrap{
  74. width: 50%;
  75. color: #fff;
  76. padding:20px 0 0 30px;
  77. box-sizing: border-box;
  78. margin-top: 30px;
  79. }
  80. .banner-footer-pic-wrap .banner-title{
  81. font-size: 26px;
  82. line-height: 1.5;
  83. }
  84. .banner-footer-pic h2{
  85. font-size: 48px;
  86. font-weight: 600;
  87. letter-spacing: 3px;
  88. line-height: 1.8;
  89. }
  90. .banner-footer-pic-wrap .banner-feature{
  91. font-size: 18px;
  92. line-height: 1.8;
  93. }
  94. /* 企业应用 */
  95. .company-app{
  96. max-width: 1200px;
  97. margin: 0 auto;
  98. }
  99. .company-app img{
  100. width: 90%;
  101. display: block;
  102. margin: 0 auto;
  103. }
  104. @media screen and (max-width: 750px) {
  105. .header{
  106. height: 140px;
  107. }
  108. #tel-box{
  109. top:unset;
  110. bottom: 10px;
  111. }
  112. .statistics-card .item{
  113. padding: 0 10px;
  114. }
  115. .header .nav .right-warp{
  116. width: 100%;
  117. }
  118. .banner-footer-pic{
  119. height: 380px;
  120. padding: 10px 0;
  121. background-size: 98% 68%;
  122. background-image: url(/static/banner.png);
  123. background-repeat: no-repeat;
  124. background-position: top 120px center;
  125. }
  126. .banner-footer-pic-wrap{
  127. width: 100%;
  128. margin-top: 0px;
  129. }
  130. .banner-footer-pic-wrap .banner-title{
  131. font-size: 16px;
  132. }
  133. .banner-footer-pic h2{
  134. font-size: 20px;
  135. }
  136. .banner-footer-pic-wrap .banner-feature{
  137. font-size: 12px;
  138. }
  139. .company-app .subtitle-box .subtitle{
  140. font-size: 20px;
  141. }
  142. .company-app .subtitle-box .el-divider__text{
  143. font-size: 12px;
  144. width: 100%;
  145. text-align: center;
  146. }
  147. }