index.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*简单初始化*/
  2. html{
  3. font-size: 100px;/*设置html字体大小以便rem*/
  4. }
  5. html,body{
  6. margin: 0;
  7. padding: 0;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. ul{
  12. list-style: none;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. a{
  17. text-decoration: none;
  18. }
  19. /*正文内容*/
  20. .t_container{
  21. width: 100%;
  22. height: 100%;
  23. background: url('../img/bg.png') no-repeat;
  24. background-size: 100% 100%;
  25. }
  26. .t_h_bg{
  27. width: 100%;
  28. height: 80px;
  29. line-height: 80px;
  30. background: url('../img/t_header.png') no-repeat;
  31. background-size: 100% 100%;
  32. text-align: center;
  33. }
  34. .t_h_bg span{
  35. font-size: 32px;
  36. color: #fff;
  37. display: inherit;
  38. }
  39. .t_main{
  40. text-align: center;
  41. }
  42. .t_box{
  43. width: 8rem;
  44. height: 4rem;
  45. background: url('../img/t_bg.png') no-repeat;
  46. background-size: 100% 100%;
  47. display: inline-block;
  48. float: left;
  49. position: relative;
  50. margin-left: 1.06rem;
  51. margin-top: 0.31rem;
  52. }
  53. .t_title{
  54. text-align: center;
  55. font-size: 0.16rem;
  56. color: #fff;
  57. font-weight: bold;
  58. height: 0.4rem;
  59. line-height: 0.4rem;
  60. width: 100%;
  61. margin-top: 0.4rem;
  62. }
  63. .t_list{
  64. width: 100%;
  65. text-align: center;
  66. line-height: 0rem;
  67. height: 0.6rem;
  68. }
  69. .t_min{
  70. display: inline-block;
  71. width: 1.4rem;
  72. height: 0.4rem;
  73. line-height: 0.4rem;
  74. background: url('../img/t_border.png') no-repeat;
  75. background-size: 100% 100%;
  76. font-size: 0.16rem;
  77. color: #fff;
  78. position: relative;
  79. }
  80. .t_min i{
  81. position: absolute;
  82. display: inline-block;
  83. width: 0.20rem;
  84. height: 0.28rem;
  85. background: url('../img/top.png') no-repeat;
  86. background-size: 100% 100%;
  87. top: 0;
  88. bottom: 0;
  89. margin: auto;
  90. right: 0.05rem;
  91. }
  92. .t_min i.down{
  93. background: url('../img/down.png') no-repeat;
  94. background-size: 100% 100%;
  95. }
  96. .t_number{
  97. font-size: 0.24rem;
  98. }
  99. .main_table{
  100. font-size: 16px;
  101. }
  102. .main_table tr{
  103. height: 42px;
  104. }
  105. .main_table{
  106. width: 88%;
  107. margin-top: 25px;
  108. margin: 0 auto;
  109. }
  110. .main_table table{
  111. width: 100%;
  112. }
  113. .main_table thead tr{
  114. height: 42px;
  115. }
  116. .main_table th{
  117. font-size: 14px;
  118. font-weight: 600;
  119. color:#61d2f7;
  120. text-align: center;
  121. }
  122. .main_table td{
  123. color:#fff;
  124. font-size: 14px;
  125. text-align: center;
  126. }
  127. .main_table tbody tr:nth-child(1),
  128. .main_table tbody tr:nth-child(3),
  129. .main_table tbody tr:nth-child(5){
  130. width: 98%;
  131. background-color: #2B3AA8;
  132. box-shadow:-10px 0px 15px #2C58A6 inset, /*左边阴影*/
  133. 10px 0px 15px #2C58A6 inset; /*右边阴影*/
  134. }