﻿@import url(anim.css);
/* @import url(lrtk3.css); */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: #fff;
    overflow: auto;
    color: #333;
    font-size: 12px;
    font-family: "微软雅黑", "Arial", "Microsoft YaHei", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
}

a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    /*-webkit-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
      -moz-transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;
      transition: transform 0.3s ease, text-decoration 0.3s ease, color 0.3s, background 0.3s ease, text-indent 0.3s ease;*/
}

a:hover {
    opacity: 0.8;
}
.header-map{
    cursor: pointer;
}
img {
    /*width: 100%;*/
    height: 100%;
    transition: all 0.4s;
    transform: scale(1);
}

img:hover {
    transform: scale(1.06);
}

input,
select,
img {
    vertical-align: middle;
}

ul,
li {
    list-style: none;
}

em,
cite,
th {
    font-style: normal;
    font-weight: normal;
    font-style: normal;
}

.wrap {
    clear: both;
    width: 1300px;
    /*max-width: 1300px;*/
    margin: 0 auto;
    /*overflow: hidden;*/
}

.search-box-wrap {
    background: #fff;
    padding: 0 20px;
}

.search-form {
    border-bottom: 2px solid #2e74c4;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-input {
    font-weight: 400;
    font-size: 26px;
    color: #3FA6E9;
    display: flex;
    flex: 1;
}

.search-input::placeholder {
    font-weight: 400;
    font-size: 26px;
    color: #3FA6E9;
    opacity: 0.8;
}

.search-input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 26px;
    color: #3FA6E9;
    opacity: 0.8;
}

.search-input::-moz-placeholder {
    font-weight: 400;
    font-size: 26px;
    color: #3FA6E9;
    opacity: 0.8;
}

.search-input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 26px;
    color: #3FA6E9;
    opacity: 0.8;
}

.search-btn {
    width: 40px;
    height: 40px;
}

.search-high {
    display: flex;
    font-size: 16px;
    padding: 20px;
    font-weight: 400;
}

.search-span {
    color: #999999;
}

.search-title {
    margin-left: 20px;
    cursor: pointer;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;

}

.nav-title {
    font-weight: 400;
}

.nav-title .en {
    font-size: 16px;
    color: #888;

}

.nav-title .zh {
    font-size: 32px;
    color: #222;
    margin-top: 2px;
}

.nav-more {
    color: #3fa6e9;
    font-size: 16px;
    text-decoration: none;
    margin-right: 12px;
    transition: opacity 0.2s;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.nav-more::after {
    content: "";
    display: block;
    width: 95px;
    height: 33px;
    background: url('../images/icon4.png') no-repeat center;
    background-size: 100% 100%;
    /* 让图片拉伸填满容器 */
    position: absolute;
    left: -9px;
    top: 7px;
}


.line-1 {
    white-space: nowrap;
    /* 确保文本不会换行 */
    overflow: hidden;
    /* 隐藏溢出的内容 */
    text-overflow: ellipsis;
    /* 显示省略符号来代表被修剪的文本 */
    width: 95%;
    /* 设置一个宽度限制，以便触发文本溢出 */
}

.line-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 95%;
}

.line-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 95%;
}


.banner-box {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 1300px;
}

.banner-box-img{
    width:100%;
    height:375px;
    object-fit:cover;
}
.banner-box-title {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
}

.banner-box-h1 {
    font-weight: 500;
    font-size: 34px;
    color: #FFFFFF;
    width: 1300px;
    margin: auto;
}

.banner-box-des {
    width: 1300px;
    margin:20px auto 0;
    font-weight: 400;
    font-size: 18px;
    color: #ffffffe6;
    padding-right:20%;
}

.tab-wrap {
    display: flex;
    align-items: flex-start;
}

.nav-tabs {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #3EA5EC;
    width: 240px;
    margin-right: 20px;
}

.nav-tabs li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
}

.nav-tabs-on a {
    display: block;
    color: #3EA5EC !important;

}

.nav-tabs a {
    display: block;
    font-size: 18px;
    /* color: #666666; */
}

.nav-tabs-on::after {
    content: "";
    display: block;
    width: 36px;
    height: 28px;
    background: url('../images/icon4.png') no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 6px;
    right: 10px;
}

.tab-content-box {
    flex: 1;
    box-sizing: border-box;
}

/* .tab-content{
    display: none;
} */




.nav-list-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px 0;
    /* 行间距24px，列间距4% */
}

.nav-list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 16px;
    flex: 1;
    box-sizing: border-box;
}

.nav-list-item a {
    cursor: pointer;
}

.nav-list-date {
    min-width: 60px;
    text-align: center;
    margin-right: 18px;
}

.nav-list-date .day {
    display: block;
    font-size: 32px;
    color: #3fa6e9;
    font-weight: 400;
    line-height: 1;
}

.nav-list-date .month {
    display: block;
    font-size: 12px;
    color: #3fa6e9;
    margin: 2px 0 0;
}

.nav-list-text {
    font-size: 18px;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 95%;
}
.nav-list-text:hover{
    color: #3fa6e9;
}

.leader-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.leader-card {
    border-radius: 8px;
    padding: 24px;
    flex: 1 1 45%;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #222;
}

.leader-card:last-child {
    margin-right: 0;
}

.leader-card-img {
    width: 130px;
    height: 170px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 24px;
}

.leader-card-title {
    font-size: 26px;
    margin-bottom: 8px;
    color: #2196f3;
}

.leader-card-zhiwu {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2196f3;
}

.leader-card-jianjie {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #666;
}

.leader-card.leader-card-main .leader-card-title,
.leader-card.leader-card-main .leader-card-zhiwu {
    color: #3EA5EC;
}

.leader-card.leader-card-main .leader-card-jianjie {
    color: #999999;
}

.leader-card:hover {
    background: #3FB7F9 !important;
    color: #fff !important;
}

.leader-card:hover .leader-card-title,
.leader-card:hover .leader-card-zhiwu,
.leader-card:hover .leader-card-jianjie {
    color: #fff !important;
}

.article-section {
    background: #fff;
    margin: 0 auto 60px auto;
}

.article-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.article-left {
    display: flex;
    flex: 1;
}

.article-title-en {
    font-size: 16px;
    color: #888;
    margin-bottom: 2px;
}

.article-title-zh {
    font-size: 32px;
    color: #222;
    font-weight: 400;
    margin-bottom: 24px;
}

.article-main-img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 0;
    height: 405px;
}

.article-left a:hover {
    opacity: 1;
}

.article-right {
   width: 48%;
    display: flex;
    flex-direction: column;
}

.article-right-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}

.article-more {
    color: #3fa6e9;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.article-main-news {
    margin: 15px 0 0;
    border-bottom: 1px solid #eaeaea;
}

.article-main-title {
    font-size: 20px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.article-main-title:hover{
    color: #3fa6e9;
}

.article-main-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 18px 0;
   height: 108px;
   overflow: hidden;
}

.article-detail-link {
    color: #3fa6e9;
    margin-left: 10px;
    font-size: 15px;
    text-decoration: none;
}

.article-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding: 24px 0;
    font-size: 16px;
}

.article-news-title {
    color: #222;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-news-date {
    color: #999;
    font-size: 15px;
    margin-left: 20px;
    flex-shrink: 0;
}

.article-more {
    color: #3fa6e9;
    font-size: 16px;
    text-decoration: none;
    margin-top: 2px;
    transition: opacity 0.2s;
}

.article-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0 0 0;
    padding: 0;
    list-style: none;
    justify-content: flex-start;
}

.article-nav li {
    width: calc(16.66% - 20px);
    /* 6列布局，减去gap */
    min-width: 160px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    margin: 0;
    transition: background 0.2s;
    height: 64px;
    background: #E8F3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.article-nav li.active,
.article-nav li:hover {
    background: #3fa6e9;
}

.article-nav li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #222;

    text-decoration: none;
    line-height: 64px;
    font-size: 16px;
    border-radius: 8px;
    transition: color 0.2s;
}

.article-nav li.active a,
.article-nav li:hover a {
    color: #fff !important;
}

.news-list-box {
    display: flex;
    gap: 0 50px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.news-list {
    display: flex;
    flex-direction: column;
    min-width: 48%;
    flex: 1;
    margin-top: 80px;
}

.news-list-boder {
    border-top: 3px solid #3EA5EC;
    height: 360px;
}

.article-news-list li:hover a {
    color: #3EA5EC;
}

.article-news-list li:hover .article-news-date {
    color: #3EA5EC;
}

@media screen and (max-width: 767px) {}