index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .index-hd {
  2. padding: 40px;
  3. text-align: center;
  4. }
  5. .index-bd {
  6. padding: 0 15px 20px;
  7. }
  8. .index-ft {
  9. padding-bottom: 10px;
  10. text-align: center;
  11. }
  12. .index-logo {
  13. width: 43px;
  14. height: 43px;
  15. }
  16. .index-desc {
  17. margin-top: 10px;
  18. color: #888888;
  19. font-size: 14px;
  20. }
  21. .navigator-box {
  22. opacity: 0;
  23. position: relative;
  24. background-color: #FFFFFF;
  25. line-height: 1.41176471;
  26. font-size: 32px;
  27. transform: translateY(-50%);
  28. transition: .3s;
  29. }
  30. .navigator-box-show {
  31. opacity: 1;
  32. transform: translateY(0);
  33. }
  34. .navigator {
  35. padding: 10px 15px;
  36. position: relative;
  37. display: flex;
  38. align-items: center;
  39. }
  40. .navigator:before {
  41. content: " ";
  42. position: absolute;
  43. left: 15px;
  44. top: 0;
  45. right: 15px;
  46. height: 1px;
  47. border-top: 1px solid #D8D8D8;
  48. color: #D8D8D8;
  49. }
  50. .navigator:first-child:before {
  51. display: none;
  52. }
  53. .navigator-text {
  54. flex: 1;
  55. }
  56. .navigator-arrow {
  57. padding-right: 13px;
  58. position: relative;
  59. }
  60. .navigator-arrow:after {
  61. content: " ";
  62. display: inline-block;
  63. height: 9px;
  64. width: 9px;
  65. border-width: 1px 1px 0 0;
  66. border-color: #888888;
  67. border-style: solid;
  68. transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  69. position: absolute;
  70. top: 50%;
  71. margin-top: -4px;
  72. right: 14px;
  73. }
  74. .kind-list-item {
  75. margin: 10px 0;
  76. background-color: #FFFFFF;
  77. border-radius: 2px;
  78. overflow: hidden;
  79. }
  80. .kind-list-item:first-child {
  81. margin-top: 0;
  82. }
  83. .kind-list-text{
  84. flex: 1;
  85. }
  86. .kind-list-img {
  87. width: 30px;
  88. height: 30px;
  89. }
  90. .kind-list-item-hd {
  91. padding: 15px;
  92. display: flex;
  93. align-items: center;
  94. transition: opacity .3s;
  95. }
  96. .kind-list-item-hd-show {
  97. opacity: .2;
  98. }
  99. .kind-list-item-bd {
  100. height: 0;
  101. overflow: hidden;
  102. }
  103. .kind-list-item-bd-show {
  104. height: auto;
  105. }