index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .body {
  2. background-image: url("../img/true.png");
  3. background-position: 100%;
  4. background-color: rgba(8, 8, 8);
  5. color: white;
  6. /* text-shadow: 0 0 5px #252525; */
  7. font-size: 18px;
  8. width: 100%;
  9. height: calc(100vh - 100px);
  10. overflow: hidden;
  11. }
  12. .t_header {
  13. width: 100%;
  14. height: 80px;
  15. background: url("../img/linx.png") no-repeat;
  16. background-size: 100% 100%;
  17. position: relative;
  18. }
  19. .t_header_title{
  20. width: 400px;
  21. height: 100%;
  22. margin-left:80px;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .t_header_title span {
  28. color: #fff;
  29. font-size: 40px;
  30. }
  31. .t_main {
  32. width: 100%;
  33. height: calc(100% - 80px);
  34. margin: 0 auto;
  35. margin-top: 0px;
  36. margin-bottom: 0;
  37. }
  38. .t_main>div{
  39. width: 100%;
  40. height: 50%;
  41. display: flex;
  42. }
  43. .t_left_box {
  44. width: 18%;
  45. height: 100%;
  46. /* display: inline-block; */
  47. /* text-align: center; */
  48. }
  49. .t_left_box>div{
  50. height: 100%;
  51. }
  52. .t_l_line {
  53. position: relative;
  54. top: 0;
  55. left: 0;
  56. }
  57. .t_r_line {
  58. position: relative;
  59. bottom: 0;
  60. right: 0;
  61. }
  62. .t_center_box {
  63. width: 36.5%;
  64. height: 100%;
  65. }
  66. .t_top_box {
  67. width: 100%;
  68. height: 110px;
  69. /* height: 1.13rem; */
  70. overflow: hidden;
  71. /* margin-bottom: 0.2rem; */
  72. }
  73. .t_bottom_box {
  74. width: 100%;
  75. height: calc(100% - 110px);
  76. overflow: hidden;
  77. position: relative;
  78. }
  79. .t_right_box {
  80. display: inline-block;
  81. width: 45.5%;
  82. height: 100%;
  83. position: relative;
  84. }
  85. .b_left_box {
  86. display: inline-block;
  87. width: 31.6%;
  88. height:100%;
  89. position: relative;
  90. }
  91. .b_center_box {
  92. display: inline-block;
  93. width: 22.9%;
  94. height: 100%;
  95. position: relative;
  96. }
  97. .b_right_box {
  98. display: inline-block;
  99. width: 45.5%;
  100. height:100%;
  101. position: relative;
  102. }
  103. .component_box {
  104. width: 100%;
  105. height: calc(100% - 10px);
  106. }