Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .select-title {
  2. padding-left: 10px;
  3. width: calc(100%-10px);
  4. height: 30px;
  5. line-height: 30px;
  6. color: #fff;
  7. border-bottom: solid 1px #5B5B5B;
  8. }
  9. .select-title::after{
  10. content: "";
  11. display: block;
  12. float: right;
  13. width: 20px;
  14. height: 100%;
  15. /* background-color: aqua; */
  16. background-image: url("./icon.svg");
  17. background-repeat: no-repeat;
  18. background-size: contain;
  19. background-position: 50% 50%;
  20. }
  21. .select-title-open::after{
  22. transform: scaleY(-1);
  23. }
  24. .select-dropList {
  25. position: absolute;
  26. top: 40px;
  27. margin-top: 1px;
  28. padding-top: 10px;
  29. padding-bottom: 10px;
  30. width: 100%;
  31. height: 250px;
  32. max-height: 400px;
  33. overflow: hidden;
  34. overflow-y: auto;
  35. background-color: #181818;
  36. z-index: 99;
  37. transition: all 0.3s ease 0s;
  38. }
  39. .select-dropList::-webkit-scrollbar {
  40. width: 3px;
  41. /* background-color: #666; */
  42. }
  43. .select-dropList::-webkit-scrollbar-thumb {
  44. background-color: #b5b5b5;
  45. }
  46. .select-dropList-close {
  47. visibility: hidden;
  48. opacity: 0;
  49. transform: translateY(-40px);
  50. }
  51. .select-dropList-open {
  52. visibility: visible;
  53. opacity: 1;
  54. transform: translateY(0px);
  55. }
  56. .select-listItem {
  57. margin-left: 20px;
  58. color: #999999;
  59. font-size: 16px;
  60. line-height: 30px;
  61. cursor: pointer;
  62. }
  63. .select-listItem:hover {
  64. color: #fff;
  65. }
  66. @media screen and (max-width:800px) {
  67. .select-listItem{
  68. font-size:12px;
  69. }
  70. }