/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

/* 资讯动态背景图样式 */
.news-update {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 607px;

}
/* 合作机构背景图整体样式 */
.row-a3 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 1000px;
}
.footer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 543px;
    padding: 50px 0px 0px; /* 关键：顶部50px、左右20px、底部10px（实现子元素与容器的距离） */
    display: flex; /* 开启flex布局 */
    flex-direction: column; /* 子元素垂直排列（上下） */
    justify-content: space-between; /* 子元素分别靠顶部和底部，中间自动留白 */
    gap: 20px; /* 可选：强制设置两个div之间的固定间距（优先级高于space-between的自动间距） */
}
/* 更多项目 */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}
.more-btn {
    font-size: 1.2rem;
    font-weight: 500;
    color: #176987;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 140, 200, 0.08);
    padding: 0.6rem 1.5rem 0.6rem 1.8rem;
    border-radius: 60px;
    border: 1px solid rgba(50, 160, 220, 0.3);
    transition: 0.2s;
    width: 190px;
    height: 56px;
}

.more-btn:hover {
    background: #13387F;
    border-color: #13387F;
    color: #ffffff;
    gap: 12px;
}

.more-btn span {
    font-size: 1.7rem;
    transition: transform 0.15s;
}

.more-btn:hover span {
    transform: translateX(6px);
}
/* 容器整体样式 */
.carousel-container {
    display: flex;
    /*width: 1200px;*/
    margin: 50px auto;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 278px;
}

/* 左侧轮播图区域 */
.carousel-left {
    width: 417px;
    position: relative;
    height: 278px;
}

.carousel-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* 右侧列表区域 */
.carousel-right {
    flex: 1;
    padding: 10px;
    /*background: #f8f9fa;*/
    height: 278px;
}

.carousel-list {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.list-item {
    padding: 12px 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #50504F;
}
/* 列表容器 - 核心布局样式 */
.list-item {
    /* 两端对齐布局 */
    display: flex;
    justify-content: space-between;
    /* 垂直居中，保证文字高度对齐 */
    align-items: center;
    /* 左右间距：左34px 右30px */
    padding-left: 34px;
    padding-right: 30px;
    /* 基础样式（可根据需求调整） */
    width: 100%;
    height: 60px; /* 列表项高度，可自定义 */
    box-sizing: border-box; /* 防止padding撑大容器 */
    border-bottom: 1px solid #eee; /* 分隔线，可选 */
}

/* 统一左右元素的文字样式 - 关键：保证高度一致 */
.list-item span,
.list-item div {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #50504F;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    /* 确保文字基线对齐（可选，兜底） */
    vertical-align: middle;
}

/* 选中项高亮样式 */
.list-item.active {
    background: #13387F !important;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(19,56,127,0.3);
    transform: translateX(2px);
    border-left: 3px solid #0d2a5c;
}

/* 选中状态下子元素文字变白色 */
.list-item.active span,
.list-item.active div {
    color: #fff !important;
}

.list-item:hover {
    background: #13387F !important;
    font-weight: bold;
    transform: translateX(3px);
    box-shadow: 0 3px 6px rgba(19,56,127,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 3;
}

/* 悬停状态下子元素文字变白色 */
.list-item:hover span,
.list-item:hover div {
    color: #fff !important;
}

/* 确保非选中且非悬停项没有残留样式 */
.list-item:not(.active):not(:hover) {
    background: transparent;
    color: #50504F;
    font-weight: normal;
    box-shadow: none;
    transform: translateX(0);
    border-left: none;
}

/* 滚动条美化 */
.carousel-list::-webkit-scrollbar {
    width: 8px;
}

.carousel-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.carousel-list::-webkit-scrollbar-thumb {
    background: #13387F;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

.carousel-list::-webkit-scrollbar-thumb:hover {
    background: #0d2a5c;
}
.news-titile{
    width: 400px;
    height: 43px;
    font-family: CorsivaHebrew,CorsivaHebrew;
    font-size: 40px;
    color: #E5E5E5;
    line-height: 37px;
    text-align: left;
    font-style: italic;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.g-t1 {
    /* 重点：控制元素自身上下距离 */
    margin-top: 56px;     /* 顶部距离上一个元素30px */
    margin-bottom: 0px;  /* 底部距离下一个元素10px */
}

.g-t1 > h2 {
    width: 136px;
    height: 48px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 34px;
    color: #13387F;
    line-height: 48px;
    text-align: left;
    font-style: normal;
}
.g-t1 > div {
    height: 64px;
    font-family: PingFangSC, PingFang SC;
    margin-top: 14px;
    font-weight: 400;
    font-size: 16px;
    color: #50504F;
    line-height: 22px;
    text-align: left;
}
.g-t3 {
    /* 重点：控制元素自身上下距离 */
    margin-top: 101px;     /* 顶部距离上一个元素30px */
    margin-bottom: 56px;  /* 底部距离下一个元素10px */
}

.g-t3 > h2 {
    width: 136px;
    height: 48px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 34px;
    color: #13387F;
    line-height: 48px;
    text-align: left;
    font-style: normal;
}
.g-t3 > div {
    height: 64px;
    font-family: PingFangSC, PingFang SC;
    margin-top: 14px;
    font-weight: 400;
    font-size: 16px;
    color: #50504F;
    line-height: 22px;
    text-align: left;
}
@font-face {
    font-family: 'PingFangSC-Regular-ttf';
    src: url('/public/static/cms/default/fonts/PingFangSC-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'CorsivaHebrew';
    src: url('/public/static/cms/default/fonts/corsiva-hebrew.ttf') format('truetype');
}

/* 合作伙伴优化 */
/*.cooperative-item {*/
/*    margin: 0 15px;*/
/*}*/

/* slick分页点样式 - 改为居中横杠 */
.slick-dots {
    position: absolute;
    bottom: -20px; /* 修改为20px，增加与轮播图的间距 */
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    /*margin: 0;*/
    display: flex;
    align-items: center;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 140px;
    height: 5px;
    background-color: #ccc;
    border: none;
    border-radius: 1px;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    /* 隐藏任何可能的文本内容 */
    font-size: 0;
    text-indent: -9999px;
    line-height: 0;
    overflow: hidden;
}

.slick-dots li.slick-active button {
    background-color: #13387F;
    width: 140px;
}

/* 确保父容器有相对定位 */
/*.m-slider-brand{margin: 2.604vw 0 2.864vw;}*/
/*.m-slider-brand .slider .con{height: 38.12vw;}*/
/*.m-slider-brand .slider  .tips{left: 0.781vw;right: 0.781vw;font-size: 1.25vw;}*/
/*.m-slider-brand .slider  .txt{top: 6.25vw;left: 4.479vw;}*/
/*.m-slider-brand .slider  h3{font-size: 2.5vw;margin-bottom: 2.031vw;}*/
/*.m-slider-brand .slider  .desc{font-size: 1.041vw;margin-bottom: 5.468vw;}*/
/*.m-slider-brand .slider  .btn{width: 10vw;height: 3.125vw;*/
/*    font-size: 1.145vw;line-height: 3.125vw;*/
/*}*/
/*.m-slider-brand{margin: 25px 0;}*/
/*.m-slider-brand .slider li{width: auto;float: none;margin-bottom: 10px;}*/
/*.m-slider-brand .slider li.open{width: auto;}*/
/*.m-slider-brand .slider .tips{font-size: 16px;}*/
/*.m-slider-brand .slider .desc{font-size: 14px;margin-bottom: 20px;}*/
/*.m-slider-brand .slider h3{font-size: 20px;margin-bottom: 15px;}*/
/*.m-slider-brand .slider .txt{top: 20px;left: 15px;right: 15px;}*/
/*.m-slider-brand .slider .btn{width: 150px;height: 40px;line-height: 40px;font-size: 14px;}*/
/*.m-slider-brand .slider .con{height: 300px;}*/
/*.m-slider-brand .slider{overflow: hidden;margin: 50px 0 55px;}*/
/*.m-slider-brand .slider li{float: left;width: 13%;*/
/*    transition: .5s;*/
/*    -ms-transition: .5s;*/
/*    -moz-transition: .5s;*/
/*    -webkit-transition: .5s;*/
/*    -o-transition: .5s;*/
/*}*/
/*.m-slider-brand .slider .con{display: block;width: 332px;*/

/*    height: 400px;*/

/*    background: #D8D8D8;*/

/*    border: 1px solid #979797;position: relative;color: #fff;*/
/*    background-position: center;background-repeat: no-repeat;*/
/*    -o-background-size: cover;*/
/*    -ms-background-size: cover;*/
/*    -moz-background-size: cover;*/
/*    -webkit-background-size: cover;*/
/*    background-size: cover;*/
/*}*/
/*.m-slider-brand .slider .tips{position: absolute;top: 50%;left: 15px;right: 15px;opacity: 1;*/
/*    text-align: center;font-size: 24px;line-height: 1.8;*/
/*    -webkit-transform: translateY(-50%);*/
/*    -moz-transform: translateY(-50%);*/
/*    -o-transform: translateY(-50%);*/
/*    -ms-transform: translateY(-50%);*/
/*    transform: translateY(-50%);*/
/*    transition: .5s;*/
/*    -ms-transition: .5s;*/
/*    -moz-transition: .5s;*/
/*    -webkit-transition: .5s;*/
/*    -o-transition: .5s;*/
/*}*/
/*.m-slider-brand .slider .txt{position: absolute;top: 120px;left: 86px;opacity: 0;*/
/*    transition: .5s;*/
/*    -ms-transition: .5s;*/
/*    -moz-transition: .5s;*/
/*    -webkit-transition: .5s;*/
/*    -o-transition: .5s;*/
/*}*/
/*.m-slider-brand .slider h3{font-size: 48px;line-height: 1.25;font-family: "SourceHanSerifCN-Regular";*/
/*    margin-bottom: 39px;*/
/*}*/
/*.m-slider-brand .slider .desc{font-size: 20px;line-height: 2.2;max-height: 8.8em;margin-bottom: 105px;*/
/*    display: -webkit-box;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-line-clamp: 4;*/
/*    overflow: hidden;*/
/*}*/
/*.m-slider-brand .slider .btn{display: block;width: 192px;height: 60px;text-align: center;*/
/*    font-size: 22px;color: #fff;line-height: 60px;*/
/*    background: #13387F;*/
/*}*/
/*.m-slider-brand .slider li.open{width: 48%;}*/
/*.m-slider-brand .slider li.open .txt{opacity: 1;}*/
/*.m-slider-brand .slider li.open .tips{opacity: 0;}*/