body{
    font-family: serif;
}


/*分页*/
.pagination {
    color: black;
}
.pagination li{
    text-align: center;
    display: inline-block;
    padding: 4px 12px;
}

.pagination li a,.pagination li span{
    
}

.pagination .active{
    border-radius: 999px;
    border:1px solid black; 
}



.bg-gold {
    background-color: #cdb494;
}

.hover-gold:hover {
    color: white;
    background-color: #cdb494;
}

.text-gold {
    color: #cdb494;
}




/* 汉堡菜单动画 */
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 全屏菜单样式 */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #938626 0%, #b2ad45 50%, #517caf 100%);;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.fullscreen-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

/* 延迟动画 */
.fullscreen-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-menu.active li:nth-child(6) { transition-delay: 0.35s; }

.fullscreen-menu a {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid transparent;
}

.fullscreen-menu a:hover {
    color: #e94560;
    border-color: #e94560;
    transform: scale(1.05);
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
}

.close-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.close-btn:hover span {
    background-color: #e94560;
}

.close-btn span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.close-btn span:nth-child(2) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo 在菜单中 */
.menu-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}