* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

/*---------------------------header---------------------------*/
.header {
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #153763 0%, #1D5B93 50%, #3A79A2 77%, #2D749C 100%);
    border-radius: 0px 0px 0px 0px;
    height: 56px;
}

.header .contain {
    width: 100%;
    color: white;
    display: grid;
    grid-template-columns: 44px auto 128px;
    position: relative;
}

.header .contain .menu {
    padding: 16px 20px;
    width:24px;
}

.header .contain .menu > img {
    width: 24px;
    height: 24px;
    border:1px dashed #9B9B9B;
    display: block;
}
.header .contain .menu img.icon-close{
    display: none;
}
.header .contain .menu.show img.icon-close{
    display: block;
    border:none;
}
.header .contain .menu.show img.icon-menu{
    display: none;
}

.header .contain .menu .nav{
    display: none;
    position: absolute;
    top:56px;
    left:0;
    right:0;
    z-index: 99999;
    background: linear-gradient(90deg, #153763 0%, #1D5B93 50%, #3A79A2 77%, #2D749C 100%);
    border-radius: 0px 0px 0px 0px;
    padding-bottom: 24px;
}
.header .contain .menu.show .nav {
    display: block;
}

.header .contain .menu .line{
    margin:0 20px;
    height: 1px;
    background: linear-gradient( 270deg, rgba(255,255,255,0.6) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.6) 100%);
    border-radius: 0px 0px 0px 0px;
    opacity: 0.1;
    margin-bottom: 24px;
}

.header .contain .menu .nav .nav-item {
    color: white;
    margin: 0 24px;
    font-size: 17px;
    display: block;
    line-height: 40px;
}
.header .contain .menu .nav .nav-item ~ .nav-item{
    margin-top: 8px;
}
.header .contain .menu .nav .nav-item.active{
    color:#47F9FF;
}
.header .contain .menu .nav .nav-item .nav-text {
    overflow: hidden;
    cursor: pointer;
}
.header .contain .menu .nav .nav-item .nav-text .txt {
    float:left;
}
.header .contain .menu .nav .nav-item .nav-text .icon {
    float:right;
    margin-top: 10px;
}
.header .contain .menu .nav .nav-item .nav-text .icon img{
    width: 20px;
    height: 20px;
    border:1px dashed #9B9B9B;
    display: block;
}
.header .contain .menu .nav .nav-item .sub-nav-list{
    display: none;
}

.header .contain .lang {
    text-align: right;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    margin:20px;
}

.header .contain .lang .current {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 16px;
}

.header .contain .lang .current .txt {}

.header .contain .lang .current .icon {
    height: 16px;
    border: 1px dashed #69818F;
    margin-left: 2px;
}

.header .contain .lang .lang-list {
    display: none;
    position: absolute;
    top: 26px;
    width: 88px;
    background: rgba(1,35,71,0.6);
    border-radius: 12px 12px 12px 12px;
    z-index:99999;
    padding:4px;
    right: 4px;
}

.header .contain .lang.show .lang-list {
    display: block;
}

.header .contain .lang .lang-list .txt {
    text-align: center;
    line-height: 32px;
}

.header .contain .lang .lang-list .txt.active {
    height: 32px;
    background: #032143;
    border-radius: 8px 8px 8px 8px;
}

/*---------------------------banner---------------------------*/
.banner {
}

.banner .contain {
    width: 100%;
    overflow: hidden;
}

.banner .contain .banner-list {
    position: relative;
}

.banner .contain .swiper {
    width: 100%;
    height: 60vw;
    overflow: hidden;
}

.banner .contain .swiper .swiper-wrapper {}

.banner .contain .swiper .swiper-wrapper .swiper-slide {}

.banner .contain .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 60vw;
}

.banner .contain .swiper-pagination {
    left:20px;
    bottom:16px;
    text-align: unset;
}

.banner .contain .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: unset;
    background: white;
}

.banner .contain .swiper-pagination .swiper-pagination-bullet-active {
    background: #4FDFFF;
}


/*---------------------------notice---------------------------*/
.notice {
    background: #EAF7FE;
}

.notice .contain {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px auto;
}

.notice .icon {
    padding: 12px 20px;
    width:16px;
}

.notice .icon img {
    width: 16px;
    height: 16px;
    display: block;
}

.notice .notice-list {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    position: relative;
    border-left:1px solid #D4E4F1;
    margin:13px 0;
    padding-left: 16px;
}

.notice .notice-list .notice-item {
    font-size: 12px;
    line-height: 14px;
    overflow: hidden;
}

.notice .notice-list .notice-item .icon-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0862BB;
    float:left;
    margin:3px 0;
}

.notice .notice-list .notice-item .txt {
    margin-left: 10px;
    font-size: 12px;
    display: -webkit-box; /* 必须设置为弹性盒模型 */
    -webkit-box-orient: vertical; /* 设置盒子内元素垂直排列 */
    -webkit-line-clamp: 1; /* 控制显示的行数 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出显示省略号（兜底） */
    padding-left: 6px;

}

.notice .notice-list .item-bg {
    width: 128px;
    height: 40px;
    background: linear-gradient(270deg, #EAF7FE 0%, rgba(234, 247, 254, 0) 100%);
    border-radius: 0px 0px 0px 0px;
    position: absolute;
    right: 10px;
    z-index: 2;
}


/*---------------------------services---------------------------*/
.services {
    padding: 40px 20px 40px;
}

.services .title {
    text-align: center;
    font-size: 26px;
    line-height: 36px;
}

.services .desc {
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    color: #979797;
    padding: 8px 0 0;
}

.services .service-list {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: url(../images/service-item-bg3.png) no-repeat;
    background-size:100% auto;
    margin-top: 20px;
    padding-bottom: 32px;
    border:1px solid #8EC0DA;
}

.services .service-list .service-item {
    text-align: center;
}
.services .service-list .service-item .icon {
    height: 24px;
    width: 24px;
    padding: 12px;
    background: #E0EEF8;
    border-radius: 10px;
    margin:32px auto 12px;
}

.services .service-list .service-item .icon img {
    height: 24px;
    width: 24px;
    border: 1px dashed #B9BDC0;
    display: block;
}

.services .service-list .service-item .item-title {
    margin: 15px 0 8px;
    font-size: 17px;
}

.services .service-list .service-item .txt {
    margin: 0 24px;
    font-size: 13px;
    line-height: 20px;
    color:#8F9597;
}


/*---------------------------reasons---------------------------*/
.reason {
    padding:40px 20px 40px;
    background: #EAF7FE;;
}

.reason .contain {
    width: 100%;
    overflow: visible;
}

.reason .more-reason {
    position: relative;
    padding: 0 0 28px;
    background: transparent;
    color: #1f2937;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.reason .more-reason::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 36px;
    background: linear-gradient(180deg, #0c2f78 0%, #0f3480 55%, #1648a8 100%);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(15, 84, 200, 0.2);
    z-index: 0;
}

.reason .more-reason .more-reason-head {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 18px 16px 12px;
    text-align: center;
}

.reason .more-reason .title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    padding: 0;
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.reason .more-reason .more-reason-body {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 24px 18px 28px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(8, 35, 90, 0.16);
}

.reason .more-reason .reason-points {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.reason .more-reason .reason-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #1f2937;
    line-height: 1.4;
    font-weight: 500;
    padding-left: 0;
    margin-bottom: 20px;
    white-space: nowrap;
}

.reason .more-reason .reason-points li:last-child {
    margin-bottom: 0;
}

.reason .more-reason .reason-points li::before {
    display: none;
}

.reason .more-reason .circle-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1677ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason .more-reason .point-text {
    flex: 1;
    min-width: 0;
    color: #1f2937;
    font-weight: 500;
}

.reason .more-reason .point-text .point-label {
    font-weight: 700;
}

.reason .more-reason .point-text .point-desc {
    font-weight: 500;
}

.reason .more-reason .wave-line {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 160px;
    height: 160px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.reason .more-reason .desc {
    display: none;
}
.reason .more-reason .desc ~ .desc{
    margin-top: 12px;
}

.reason .reason-list {
    margin-top: 12px;
    width: 100%;
}

.reason .reason-list .reason-item {
    padding: 16px;
    border: 1px solid #E0E9EE;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 48px auto;
    box-shadow: #eee 0 0 10px;
    background: white;
}

.reason .reason-list .reason-item~.reason-item {
    margin-top: 12px;
}

.reason .reason-list .reason-item .icon {}

.reason .reason-list .reason-item .icon img {
    width: 32px;
    height: 32px;
}

.reason .reason-list .reason-item .content {}

.reason .reason-list .reason-item .content .item-title {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 8px;
    color: black;
}

.reason .reason-list .reason-item .content .txt {
    font-size: 13px;
    line-height: 20px;
    color: #838383;
}


/*---------------------------tool-bar---------------------------*/
.tool-bar {
    position: fixed;
    right: 16px;
    bottom: 200px;
}

.tool-bar .tool-list{
    width: 18px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 16px 40px -10px rgba(8, 52, 119, 0.1);
    border-radius: 8px 8px 8px 8px;
    border: 1px solid rgba(6, 56, 81, 0.1);
    text-align: center;
    padding: 2px 10px;
}
.tool-bar .tool-list ~ .tool-list{
    margin-top: 4px;
}
.tool-bar .tool-item {
    padding:8px 0;
    position: relative;
}
.tool-bar .tool-item ~ .tool-item{
    border-top:1px solid #E7ECEE;
}

.tool-bar .tool-item .icon {
    width: 20px;
    height: 20px;
}

.tool-bar .tool-item .icon img {
    width: 18px;
    height: 18px;
    display: block;
    border: 1px dashed #9B9B9B;
    background: white;
}

.tool-bar .tool-item .media-qrcode{
    position: absolute;
    top: -25px;
    left:-120px;
    display: none;
    width: 90px;
    height: 90px;
    z-index: 99999;
    padding: 5px;
    background:rgba(255,255,255,.5);
}
 .tool-bar .tool-item .media-qrcode.show{
    display: block;
 }


/*---------------------------footer---------------------------*/
.footer {
    background: #1F457D;
    padding:0 16px;
}

.footer .contain {
    margin: 0 auto;
}

.footer .contain .footer-top {
    padding:24px 0 32px;
}

.footer .contain .footer-top .footer-logo {
    display: grid;
    grid-template-columns: 110px auto;
}

.footer .contain .footer-top .footer-logo .logo {
    height: 59px;
}

.footer .contain .footer-top .media-box {
}
.footer .contain .footer-top .media-box h5{
    font-size:13px;
    margin-bottom: 16px;
    color:#A4B4CA;
    font-weight: 400;
}
.footer .contain .footer-top .media-box .media-list {
    display: grid;
    grid-template-columns: repeat(3, 40px);
}

.footer .contain .footer-top .media-box .media-list .media-item {
    width: 24px;
    height: 24px;
    position: relative;
}

.footer .contain .footer-top .media-box .media-list .media-item .media-qrcode{
    position: absolute;
    top: -85px;
    left:-25px;
    display: none;
    width: 70px;
    height: 70px;
    z-index: 99999;
    padding: 5px;
    background:rgba(255,255,255,.5);
}

.footer .contain .footer-top .media-box .media-list .media-icon {
    width: 14px;
    height: 14px;
    padding: 5px;
    background: white;
    border-radius: 50%;
    display: block;
}


.footer .contain .footer-links {
    color: white;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
}

.footer .contain .footer-links .link-item {
    margin-bottom: 20px;
}

.footer .contain .footer-links .link-item h5 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
    
    display: -webkit-box; /* 必须设置为弹性盒模型 */
    -webkit-box-orient: vertical; /* 设置盒子内元素垂直排列 */
    -webkit-line-clamp: 1; /* 控制显示的行数 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出显示省略号（兜底） */
}

.footer .contain .footer-links .link-item ul {}

.footer .contain .footer-links .link-item ul li~li {
    padding-top: 8px;
}

.footer .contain .footer-links .link-item ul li a {
    color: #6C85A9;
    font-size: 14px;
    line-height: 20px;
}

.footer .contain .social-icons {
    margin-top: 20px;
}

.footer .contain .social-icons p {
    font-size: 13px;
    line-height: 24px;
    color: white;
    padding-bottom: 12px;
    border-bottom: 1px solid #35578A;
}

.footer .contain .social-icons .img-list{
    margin-top: 20px;
    margin-bottom: 32px;
}
.footer .contain .social-icons img {
    height: 6.4vw;
}

.footer .contain .social-icons img~img {
    margin-left: 12px;
}

.footer .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #35578A;
}

.footer .footer-bottom p {
    line-height: 20px;
    font-size: 12px;
    color: #6A82A7;
}

.footer .footer-bottom p a {
    color: #39B8D0;
}
