/*头部样式*/
.bannerList{
    background-image: url(https://www.dgylec.com/static/web/images/Awards.jpg);
    background-size: 100% 100%;
}
.bannerList .titleBox .tw_title,.bannerList .titleBox .en_title {
    color: #ffffff;
    text-shadow: 0 0 0 white;
    -webkit-text-stroke: 0 white;
}
.bannerList .titleBox:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    background-color: transparent;
    margin-top: 30px;
}

/*主体*/
.awards-introduction {
    font-size: 20px;
    color: #000f23;
    text-align: left;
    padding-bottom: 32px;
}
.subtitle{
    margin-bottom: 50px;
}
.awardsCat-title{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.awardsCat-title:after {
    display: block;
    content: "";
    width: 94px;
    height: 3px;
    background-color: #00378E;
    margin-top: 15px;
}

/*经营绩效轮播展示列表*/
.subtitle-carousel-container {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 实际滚动的内部容器 */
.carousel-content {
    display: flex;
    gap: 25px;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    padding: 20px;
}
.carousel-content .subtitle-img{
    border: 1px solid #CECECE;
}
.carousel-content .subtitle-title{
    margin-top: 10px;
}


/* 小div样式 */
.item {
    flex-shrink: 0;
    width: 240px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.item:hover {
    transform: translateY(-5px);
    color: #00378E;
    font-weight: 600;
}
.item.active {
    transform: translateY(-8px);
    color: #00378E;
    font-weight: 600;
}
.item-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.item-text {
    font-size: 18px;
    color: #555;
    text-align: center;
    padding: 0 15px;
    font-weight: 500;
}

/* 小圆点指示器容器 */
.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

/* 小圆点 */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d1d1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.dot:hover {
    transform: scale(1.3);
    background-color: #9e9e9e;
}
.dot.active {
    background-color: #4d96ff;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(77, 150, 255, 0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 响应式设计 */
@media (max-width: 768px) {

    h1 {
        font-size: 26px;
    }

    .carousel-container {
        height: 260px;
    }

    .item {
        width: 220px;
    }

    .item-number {
        font-size: 40px;
    }
}
@media (max-width: 480px) {
    .carousel-container {
        height: 220px;
    }

    .item {
        width: 180px;
    }

    .item-number {
        font-size: 32px;
    }

    .item-text {
        font-size: 16px;
    }

    .dots-container {
        gap: 10px;
    }

    .dot {
        width: 14px;
        height: 14px;
    }
}
/*经营绩效轮播展示列表*/

/*轮播展示列表样式*/
.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}
.carousel-list {
    position: absolute;
    width: 350px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.carousel-list .solutionArea-img img{
    width: 100%;
}
.carousel-list .solutionArea-title{
    padding-top: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* 选中状态 - 居中放大 */
.carousel-list.active {
    z-index: 20;
    transform: translateX(0) scale(1);
}

/* 左侧上一个项 - 隐藏一半 */
.carousel-list.prev {
    transform: translateX(100px) scale(0.85);
    z-index: 10;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    left: 0;
}

/* 右侧下一个项 - 隐藏一半 */
.carousel-list.next {
    transform: translateX(-100px) scale(0.85);
    z-index: 10;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    right: 0;
}

/* 隐藏其他项 */
.carousel-list.hidden {
    display: none;
}

/* 修改导航按钮 - 无圆边和底色，只有箭头，放在选中项旁边 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    color: #003F93;
    font-size: 60px;
    font-weight: 600;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: none;
    background: none;
    opacity: 0.8;
}
.nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}
.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.prev-btn {
    left: calc(0%);
}
.next-btn {
    right: calc(0%);
}

@media (max-width: 1024px) {
    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 380px;
    }

    .carousel-list {
        width: 220px;
        height: 300px;
    }

    .carousel-list.active {
        width: 350px;
        height: 340px;
    }

    .carousel-list.prev {
        width: 175px;
        height: 270px;
        transform: translateX(-60px) scale(0.85);
    }

    .carousel-list.next {
        width: 175px;
        height: 270px;
        transform: translateX(60px) scale(0.85);
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 36px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 320px;
    }

    .carousel-list {
        width: 180px;
        height: 250px;
    }

    .carousel-list.active {
        width: 280px;
        height: 280px;
    }

    .carousel-list.prev {
        width: 140px;
        height: 220px;
        transform: translateX(-45px) scale(0.85);
    }

    .carousel-list.next {
        width: 140px;
        height: 220px;
        transform: translateX(45px) scale(0.85);
    }
}
/*客户肯定轮播展示列表*/







