You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
1.9 KiB

10 months ago
10 months ago
  1. .bod_box {
  2. width: 100%;
  3. }
  4. .bod_box video {
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. height: 100%;
  10. object-fit: fill;
  11. }
  12. .cen_box {
  13. width: 100%;
  14. height: 100vh;
  15. display: grid;
  16. grid-template-rows: 100px 1fr;
  17. box-sizing: border-box;
  18. }
  19. .head {
  20. position: relative;
  21. }
  22. .head1_1 {
  23. text-align: center;
  24. position: absolute;
  25. left: 0;
  26. right: 0;
  27. top: 16px;
  28. margin: auto;
  29. font-weight: bold;
  30. font-size: 26px;
  31. letter-spacing: 4px;
  32. color: transparent;
  33. background: linear-gradient(to bottom, #98F5FF, #0EC0FF);
  34. -webkit-background-clip: text;
  35. background-clip: text;
  36. overflow: hidden;
  37. white-space: nowrap;
  38. animation: move 5s steps(60) forwards;
  39. }
  40. @keyframes move {
  41. from {
  42. width: 0;
  43. }
  44. to {
  45. width: 100%;
  46. }
  47. }
  48. .head2 {
  49. position: absolute;
  50. display: flex;
  51. right: 10%;
  52. top: 35px;
  53. bottom: 0;
  54. font-weight: bold;
  55. color: #fff;
  56. }
  57. .head2 div:nth-child(1) {
  58. font-size: 26px;
  59. }
  60. .head2 div:nth-child(2) {
  61. margin: 0 20px;
  62. margin-top: 14px;
  63. }
  64. .head2 div:nth-child(3) {
  65. margin-top: 14px;
  66. }
  67. .head img {
  68. width: 100%;
  69. background-size: 100% 100%;
  70. }
  71. .matter {
  72. width: 100%;
  73. top: 0;
  74. bottom: 0;
  75. margin: auto;
  76. }
  77. .lunType {
  78. width: 100%;
  79. }
  80. .lunType1_1 {
  81. display: grid;
  82. grid-template-columns: 1fr 1fr 1fr 1fr;
  83. row-gap: 100px;
  84. justify-items: center;
  85. }
  86. .lunType2 {
  87. width: 20vw;
  88. height: 15vw;
  89. background-image: url('./img/233.png');
  90. background-size: 100% 100%;
  91. color: #fff;
  92. font-size: 26px;
  93. }
  94. .lunType2 div {
  95. text-align: center;
  96. margin: 30px 0 20px;
  97. font-family: '思源宋体 Light' !important;
  98. }
  99. .lunType2 img {
  100. width: 110px;
  101. height: 132px;
  102. margin: 0 auto;
  103. }
  104. .lunType2:hover {
  105. color: #00f8b0;
  106. background-image: url('./img/11.png');
  107. }