/* */
.slides-container {
    position: relative;
    width: 978px;
    height: 550px;
    overflow: hidden;
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/*  */
.slide-title {
    position: absolute;
    bottom: 50px !important; /*  */
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFD700 !important;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 0;
    font-size: 24px !important;
    font-weight: bold;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-family: Arial, "Microsoft YaHei", sans-serif;
    letter-spacing: 1px;
    border-top: 1px solid #FFD700;
    border-bottom: 1px solid #FFD700;
}

/*  */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slide-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-control.prev {
    left: 10px;
}

.slide-control.next {
    right: 10px;
}

/*  */
.slide-indicators {
    position: absolute;
    bottom: 15px !important; /*  */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.indicator {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/*  */
.banner {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.conbox {
    position: relative;
    height: 550px;
}