indexquality.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #index {
  2. color: #d3d6dd;
  3. width: 1920px;
  4. height: 1080px;
  5. overflow: hidden;
  6. position:fixed;
  7. left:0;
  8. top:0;
  9. bottom:0;
  10. right:0;
  11. .bg {
  12. width: 100%;
  13. height: 100%;
  14. padding: 16px 16px 0 16px;
  15. background-image: url("../../assets/pageBg.png");
  16. background-size: cover;
  17. background-position: center center;
  18. }
  19. .host-body {
  20. .dv-dec-10,
  21. .dv-dec-10-s {
  22. width: 33.3%;
  23. height: 5px;
  24. }
  25. .dv-dec-10-s {
  26. transform: rotateY(180deg);
  27. }
  28. .dv-dec-8 {
  29. width: 200px;
  30. height: 50px;
  31. }
  32. .title {
  33. position: relative;
  34. width: 500px;
  35. text-align: center;
  36. background-size: cover;
  37. background-repeat: no-repeat;
  38. .title-text {
  39. font-size: 26px;
  40. position: absolute;
  41. bottom: 0;
  42. left: 50%;
  43. transform: translate(-50%);
  44. }
  45. .dv-dec-6 {
  46. position: absolute;
  47. bottom: -30px;
  48. left: 50%;
  49. width: 250px;
  50. height: 8px;
  51. transform: translate(-50%);
  52. }
  53. }
  54. // 第二行
  55. .aside-width {
  56. width: 40%;
  57. }
  58. .react-r-s,
  59. .react-l-s {
  60. background-color: #0f1325;
  61. }
  62. // 平行四边形
  63. .react-right {
  64. &.react-l-s {
  65. text-align: right;
  66. width: 500px;
  67. }
  68. font-size: 18px;
  69. width: 300px;
  70. line-height: 50px;
  71. text-align: center;
  72. transform: skewX(-45deg);
  73. .react-after {
  74. position: absolute;
  75. right: -25px;
  76. top: 0;
  77. height: 50px;
  78. width: 50px;
  79. background-color: #0f1325;
  80. transform: skewX(45deg);
  81. }
  82. .text {
  83. display: inline-block;
  84. transform: skewX(45deg);
  85. }
  86. }
  87. .react-left {
  88. &.react-l-s {
  89. width: 500px;
  90. text-align: left;
  91. }
  92. font-size: 20px;
  93. width: 300px;
  94. height: 50px;
  95. line-height: 50px;
  96. text-align: center;
  97. transform: skewX(45deg);
  98. background-color: #0f1325;
  99. .react-left {
  100. position: absolute;
  101. left: -25px;
  102. top: 0;
  103. height: 50px;
  104. width: 50px;
  105. background-color: #1a5cd7;
  106. transform: skewX(-45deg);
  107. }
  108. .text {
  109. display: inline-block;
  110. transform: skewX(-45deg);
  111. }
  112. }
  113. .body-box {
  114. margin-top: 6px;
  115. display: flex;
  116. flex-direction: column;
  117. //下方区域的布局
  118. .content-box {
  119. display: grid;
  120. grid-template-columns: 1fr;
  121. }
  122. // 底部数据
  123. .bottom-box {
  124. display: grid;
  125. grid-template-columns: 1fr 2fr;
  126. }
  127. }
  128. }
  129. }