tagging.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. body{
  2. color: var(--text-color);
  3. /* background: #101010; */
  4. padding: 20px;
  5. }
  6. .s1{
  7. padding-bottom: 10px;
  8. }
  9. .s1,.s2{
  10. display: flex;
  11. justify-content: space-between;
  12. flex-wrap: wrap;
  13. margin: 0px auto 10px;
  14. }
  15. .s-title{
  16. display: flex;
  17. justify-content: space-between;
  18. width: 100%;
  19. }
  20. .s-title .tag{
  21. color: var(--sub-text-color);
  22. font-size: 14px;
  23. padding: 2px;
  24. border: 1px solid var(--sub-text-color);
  25. }
  26. .s1 .s1-title{
  27. margin-top: 15px;
  28. font-size: 16px;
  29. }
  30. .s1 .s1-title span{
  31. color: #fd8f0f;
  32. font-weight: bold;
  33. }
  34. .s1 .tag{
  35. width: 100%;
  36. }
  37. .drow-bar{
  38. height: 50px;
  39. width: 100%;
  40. margin-top: 10px;
  41. display: flex;
  42. align-items: center;
  43. padding: 0 25px;
  44. justify-content: space-between;
  45. position: relative;
  46. }
  47. .drow-bar .d-title{
  48. font-size: 18px;
  49. font-weight: bold;
  50. color: #00B5EE;
  51. z-index: 999;
  52. }
  53. .d-arrow{
  54. width: 20px;
  55. z-index: 999;
  56. }
  57. .d-arrow img{
  58. width: 100%;
  59. }
  60. .drow-bar .d-mask{
  61. width: 100%;
  62. height: 100%;
  63. position: absolute;
  64. top: 0;
  65. left: 0;
  66. background: rgba(0, 0, 0, 0.3);
  67. z-index: 0;
  68. }
  69. .b1{
  70. background: url("../images/b1.jpg") top center no-repeat;
  71. }
  72. .b2{
  73. background: url("../images/b2.jpg") top center no-repeat;
  74. }
  75. .b3{
  76. background: url("../images/b3.jpg") top center no-repeat;
  77. }
  78. .b4{
  79. background: url("../images/b4.jpg") top center no-repeat;
  80. }
  81. .b5{
  82. background: url("../images/b5.jpg") top center no-repeat;
  83. }
  84. .b6{
  85. background: url("../images/b6.jpg") top center no-repeat;
  86. }
  87. .b1,.b2,.b3,.b4,.b5,.b6{
  88. background-size: 100% 100%;
  89. }
  90. .drow-show{
  91. /* height: 600px; */
  92. /* overflow-y: scroll; */
  93. display: flex;
  94. flex-wrap: wrap;
  95. background: rgba(0, 0, 0, 0.3);
  96. }
  97. .d-show{
  98. width: 50%;
  99. }
  100. .d-show .d-img{
  101. width: 100%;
  102. padding: 10px;
  103. }
  104. .d-show .d-img img{
  105. width: 100%;
  106. }
  107. .d-show .d-show-title{
  108. display: flex;
  109. justify-content: space-between;
  110. align-items: center;
  111. }
  112. .d-show .d-show-title .d-show-l div:first-child{
  113. font-size: 16px;
  114. font-weight: bold;
  115. margin: 10px 0;
  116. }
  117. .d-show .d-show-title .d-show-l div:last-child{
  118. font-size: 14px;
  119. }
  120. .d-show .d-show-title .d-show-r span{
  121. background: #00B5EE;
  122. font-size: 14px;
  123. padding: 5px 20px;
  124. border-radius: 4px;
  125. }