index.module.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .Z1titie {
  2. padding-top: 30px;
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. position: relative;
  7. z-index: 99;
  8. :global {
  9. .Z1_1 {
  10. width: auto;
  11. height: 34px;
  12. }
  13. .Z1txt {
  14. margin: 0 10px;
  15. font-size: 22px;
  16. background-size: 130% 130%;
  17. background-position: center center;
  18. color: var(--themeColor);
  19. letter-spacing: 2px;
  20. }
  21. .Z1_2 {
  22. position: absolute;
  23. top: 30px;
  24. left: 15px;
  25. z-index: 10;
  26. height: 34px;
  27. width: auto;
  28. }
  29. .Z1menu {
  30. position: absolute;
  31. top: 30px;
  32. right: 15px;
  33. z-index: 10;
  34. img {
  35. width: 30px;
  36. height: auto;
  37. }
  38. }
  39. .Z1menuList {
  40. position: absolute;
  41. top: 36px;
  42. right: 0;
  43. padding: 0 5px;
  44. border-radius: 3px;
  45. background: rgba(182,139,60,0.8);
  46. border: 1px solid #FFFDDC;
  47. opacity: 0;
  48. visibility: hidden;
  49. transform: translateY(-10px);
  50. transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  51. &.Z1menuListShow {
  52. opacity: 1;
  53. visibility: visible;
  54. transform: translateY(0);
  55. }
  56. li {
  57. position: relative;
  58. height: 41px;
  59. color: #FFFDDC;
  60. line-height: 12px;
  61. text-align: center;
  62. white-space: nowrap;
  63. line-height: 40px;
  64. &:not(:last-child)::after {
  65. content: '';
  66. position: absolute;
  67. left: 50%;
  68. transform: translateX(-50%);
  69. bottom: 0;
  70. width: 49px;
  71. height: 1px;
  72. background: url('../../assets/img/bd.png') no-repeat center / contain;
  73. }
  74. }
  75. }
  76. }
  77. }