* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: url("../images/topbg.png") no-repeat top center;
    color: #333;
}

.header {
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header h1 {
    color: #FFD700;
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1;
    letter-spacing: 2px;
}

.container1 {
    max-width: 1200px;
    margin: 40px auto;

}
/* 主区域：左右布局 */
.main-box {
    display: flex;
    gap: 20px;

    margin-bottom: 30px;
}

.carousel-wrapper {
    flex: 0 0 600px; /* 轮播图宽度固定，占比小 */
    height: 440px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-panel-section {
    flex: 1;
    
}

.section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.section-item {
    flex: 1;
    min-width: 590px;
    min-height: 326px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #c30000;
}

.section-title {
    color: #d42c2c;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 5px 10px;
    background: #d42c2c;
    color: white;
    border-radius: 4px 0 0 4px;
}

.more-link {
    color: #c30000;
    text-decoration: none;
    font-size: 14px;
}

.list li {
    width: 100%;
    font-size: 21px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding: 0 0px 0 40px;
    box-sizing: border-box;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    background: url(../images/spot_06.jpg) no-repeat 10px center;
}

/* 轮播图样式 */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.prev { left: 8px; }
.next { right: 8px; }

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-slide {
    position: relative;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.caption-title {
    flex: 1;
    text-align: left;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.caption-counter {
    flex-shrink: 0;
    margin-left: 8px;
}


.swiper-container {
    width: 100%;
    height: 440px;
}
.slide-img {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;;
    position: relative;
    overflow: hidden;
}
.slide-img img{
    display: block;
    width: 100%;
    height: 100%;;
}
.slide-img .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    line-height: 50px;
    color: #ffffff;
    text-indent: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}
.slide-img .text:hover {
    text-decoration: underline;
}
.slide-img.shadow {
    position: relative;
}
.slide-img.shadow:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    bottom: 0;
    background: -webkit-linear-gradient(top, transparent, #000);
    opacity: 0.4;
    z-index: 9;
}
.top-banner-wrapper {
    position: relative;
    width:600px;
}
.top-banner-wrapper .banner-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(245, 40, 30, 0.8);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    position: absolute;
    left: -40px;
    top: 50%;
    z-index: 99999;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
}
.carousel-wrapper:hover .top-banner-wrapper .banner-button-prev {
    left: 0px;
    transition: 1s ease all;
}
.carousel-wrapper:hover .top-banner-wrapper .banner-button-next {
    right: 0px;
    transition: 1s ease all;
}
.top-banner-wrapper .banner-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(245, 40, 30, 0.8);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    position: absolute;
    right: -40px;
    top: 50%;
    z-index: 99999;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
}
.swiper-pagination{
    text-align: right;
}
.swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    background: #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: rgba(245, 40, 30, 0.8);
}