| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .Z1titie {
- padding-top: 30px;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- z-index: 99;
- :global {
- .Z1_1 {
- width: auto;
- height: 34px;
- }
- .Z1txt {
- margin: 0 10px;
- font-size: 22px;
- background-size: 130% 130%;
- background-position: center center;
- color: var(--themeColor);
- letter-spacing: 2px;
- }
- .Z1_2 {
- position: absolute;
- top: 30px;
- left: 15px;
- z-index: 10;
- height: 34px;
- width: auto;
- }
- .Z1menu {
- position: absolute;
- top: 30px;
- right: 15px;
- z-index: 10;
- img {
- width: 30px;
- height: auto;
- }
- }
- .Z1menuList {
- position: absolute;
- top: 36px;
- right: 0;
- padding: 0 5px;
- border-radius: 3px;
- background: rgba(182,139,60,0.8);
- border: 1px solid #FFFDDC;
- opacity: 0;
- visibility: hidden;
- transform: translateY(-10px);
- transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
- &.Z1menuListShow {
- opacity: 1;
- visibility: visible;
- transform: translateY(0);
- }
- li {
- position: relative;
- height: 41px;
- color: #FFFDDC;
- line-height: 12px;
- text-align: center;
- white-space: nowrap;
- line-height: 40px;
- &:not(:last-child)::after {
- content: '';
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 0;
- width: 49px;
- height: 1px;
- background: url('../../assets/img/bd.png') no-repeat center / contain;
- }
- }
- }
- }
- }
|