index.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .bananer {
  2. display: flex;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .bananer > img {
  7. display: flex;
  8. width: 100%;
  9. height: 110vw;
  10. max-height: 400px;
  11. }
  12. .content {
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. width: 100%;
  17. background-color: #ffffff;
  18. }
  19. .content > .video {
  20. display: flex;
  21. width: 80%;
  22. padding: 30px 0;
  23. display: none;
  24. }
  25. .content > div.company-type {
  26. width: 100%;
  27. display: flex;
  28. flex-direction: row;
  29. padding: 10px 0;
  30. }
  31. .content > div.company-type>a {
  32. display: flex;
  33. flex: 1;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. .content > div.company-type>a > img {
  38. display: flex;
  39. width: 100px;
  40. /* height: 100px; */
  41. }
  42. .introduce {
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: center;
  46. align-items: center;
  47. padding: 0 10%;
  48. }
  49. .introduce > h2 {
  50. font-weight: bold;
  51. }
  52. .introduce > p {
  53. font-family: "微软雅黑";
  54. font-size: 14px;
  55. color: #333333;
  56. }
  57. .mall {
  58. display: flex;
  59. flex-direction: column;
  60. justify-content: center;
  61. align-items: center;
  62. width: 100%;
  63. padding-bottom: 20px;
  64. }
  65. .shopping-mall {
  66. display: flex;
  67. flex-direction: column;
  68. justify-content: center;
  69. align-items: center;
  70. padding: 20px 0;
  71. }
  72. .shopping-mall > h5 {
  73. font-size: 26px;
  74. font-weight: bold;
  75. }
  76. .mall > ul {
  77. display: flex;
  78. flex-direction: row;
  79. width: 95%;
  80. }
  81. .mall > ul > li {
  82. display: flex;
  83. flex: 1;
  84. flex-direction: column;
  85. justify-content: center;
  86. align-items: center;
  87. }
  88. .mall > ul > li > span {
  89. line-height: 46px;
  90. }
  91. .goway {
  92. display: flex;
  93. flex-direction: column;
  94. justify-content: center;
  95. align-items: center;
  96. position: relative;
  97. width: 100%;
  98. height: 140px;
  99. }
  100. .goway > img {
  101. position: absolute;
  102. top: 0;
  103. left: 0;
  104. display: flex;
  105. width: 100%;
  106. height: 100%;
  107. }
  108. .goway > p {
  109. font-size: 21px;
  110. font-weight: bold;
  111. display: flex;
  112. color: #ffffff;
  113. margin-bottom: 6px;
  114. z-index: 3;
  115. }
  116. .goway > span {
  117. font-size: 16px;
  118. border: 1px solid #ffffff;
  119. z-index: 3;
  120. color: #ffffff;
  121. padding: 6px 13px;
  122. border-radius: 6px;
  123. }