.top-banner {
    height: 200px;
}

.top-banner h1 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.header {
    height: 240px;
    margin-bottom: 10px;
}

.header .container {
    height: 100%;
}

.headerSwiper {
    width: 100%;
    height: 100%;
}

.headerSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-swiper-pagination {
    position: absolute;
    left: auto;
    right: 20px;
    bottom: 15px;
    text-align: right;
}

.header-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.header-swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

.nav-bar {
    height: 33px;
    background: transparent;
}

.nav-bar .container {
    width: var(--width);
}

.nav-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: relative;
    background-color: #fff;
}

.nav-list>li {
    width: 144px;
    height: 33px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/bg_nav.png') no-repeat center;
    background-size: 100% 100%;
    position: static;
}

.nav-list>li>a {
    color: var(--mainColor);
    font-size: 16px;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 33px;
}

.nav-list>li.active,
.nav-list>li:hover {
    background: url('../images/bg_nav_selected.png') no-repeat center;
    background-size: 100% 100%;
}

.nav-list>li.active>a,
.nav-list>li:hover>a {
    color: #fff;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 33px;
    left: 0;
    width: 100%;
    background-color: #fff4e1;
    border: none;
    border-radius: 0;
    padding: 5px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    white-space: normal;
    box-sizing: border-box;
}

.nav-list>li:hover .sub-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.sub-menu li {
    display: inline-block;
    background: none !important;
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    border-right: 1px solid #eee;
    padding-right: 15px;
}

.sub-menu li:last-child {
    border-right: none;
    padding-right: 0;
}

.sub-menu li a {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 30px !important;
    display: inline-block;
    width: auto !important;
    height: auto !important;
    background: none !important;
}

.sub-menu li:hover {
    background: none !important;
    background-image: none !important;
}

.sub-menu li a:hover {
    color: var(--mainColor) !important;
    background: none !important;
}