No Description

index.css 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .b {
  2. display: none;
  3. }
  4. .a {
  5. display: block;
  6. position: fixed;
  7. bottom: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 70%;
  11. z-index: 1000;
  12. background: #fff;
  13. }
  14. .title {
  15. height: 4rem;
  16. line-height: 4rem;
  17. text-align: center;
  18. color: #999;
  19. }
  20. .header {
  21. overflow: hidden;
  22. overflow-x: auto;
  23. }
  24. .hul {
  25. width: auto;
  26. height: 40px;
  27. float: left;
  28. overflow-y: hidden;
  29. overflow-x: auto;
  30. white-space: nowrap;
  31. background-color: #fff;
  32. }
  33. .hul li {
  34. width: 100px;
  35. height: 40px;
  36. line-height: 40px;
  37. position: relative;
  38. text-align: center;
  39. display: inline-block;
  40. }
  41. .header::-webkit-scrollbar {
  42. display: none;
  43. }
  44. .cur {
  45. border-bottom: 1px solid #5F97F6;
  46. }
  47. .treeLi {
  48. line-height: 4rem;
  49. height: 4rem;
  50. padding: 0 1rem;
  51. }
  52.  
  53. // common.css样式
  54. * {
  55. -webkit-box-sizing:border-box; /* Safari */
  56. box-sizing: border-box;
  57. padding: 0;
  58. margin: 0;
  59. outline: none;
  60. font-size:1.4rem;
  61. }
  62. /*html{font-size:62.5%;} */
  63. html{font-size:12px;} 
  64. body{
  65. font-size:1.2rem;
  66. color: #333333;
  67. background-color: #f1f1f1;
  68. p{font-size:14px;font-size:1.4rem;}
  69. input[type=button], input[type=submit], input[type=file], button { cursor: pointer; -webkit-appearance: none; } 
  70. article,
  71. aside,
  72. details,
  73. figcaption,
  74. figure,
  75. footer,
  76. header,
  77. hgroup,
  78. menu,
  79. main,
  80. nav,
  81. section,
  82. summary {
  83. display: block;
  84. }
  85. ul, ol {
  86. list-style: none;
  87. }
  88. .left {
  89. float: left;
  90. }
  91. .right {
  92. float: right;
  93. }
  94. .text-left {
  95. text-align: left;
  96. }
  97. .text-right {
  98. text-align: right;
  99. }
  100. .text-center {
  101. text-align: center;
  102. }
  103. .text-justify {
  104. text-align: justify;
  105. }
  106. .text-nowrap {
  107. white-space: nowrap;
  108. }
  109. .text-lowercase {
  110. text-transform: lowercase;
  111. }
  112. .text-uppercase {
  113. text-transform: uppercase;
  114. }
  115. .text-capitalize {
  116. text-transform: capitalize;
  117. }