@charset "utf-8";
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h2,
h3,
i,
em {
    font-style: normal;
}

html,
body {
    position: relative;
    font-family: "微软雅黑";
    min-width: 1600px;
}

input,
img,
a,
button {
    outline: none;
    border: 0;
}

.clear {
    clear: both;
}

.pic {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.pic:hover img {
    transform: scale(1.2);
}

.l1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.l2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.l3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wp {
    width: 1400px;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-top {
    left: 0;
    top: 0;
    z-index: 9;
    right: 0;
    position: absolute;
    background: url(../images/head-bg.jpg) no-repeat center center;
    background-size: cover;
}

.header {
    border-bottom: 1px solid #FFFFFF;
}

.head {
    display: flex;
    padding: 23px 0;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
}

.logo span {
    position: relative;
    padding: 0 10px;
}

.logo span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 42px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.logo a img {
    display: block;
}

.head-r {
    position: relative;
}

.sousuo {
    cursor: pointer;
}


/* 弹窗搜索 */


/* 弹窗搜索 */

.search-dialog-box {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease 0s;
}

.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}

.search-dialog-box a {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 10;
    right: 25px;
    top: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
}

.search-dialog-box a i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background: url(../images/close.png) no-repeat center center;
    background-size: 20px auto;
    transition: all 0.6s ease 0s;
}

.search-dialog-box a i:hover {
    transform: rotate(180deg);
}

.search-dialog-box.on .search-bg {
    height: 100vh;
}

.search-dialog-box .search-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0px;
    margin: 0px;
    background: 0% 0% / cover no-repeat rgba(0, 0, 0, 0.7);
    transform-origin: center center;
    transition: height 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.search-dialog {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 0px;
}

.search {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding-right: 100px;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
}

.search input[type="text"] {
    width: 100%;
    height: 70px;
    background-color: rgb(255, 255, 255);
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease 0s;
    padding: 0px 20px;
    box-sizing: border-box;
}

.search span {
    position: absolute;
    width: 100px;
    top: 0;
    bottom: 0;
    right: 0;
    background: #043FA5;
}

.search span input[type="image"] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
}
.ch_sy{padding:5px 10px;margin-bottom:10px;}
.lt-r{text-align:center;}
.lt-r a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    vertical-align: middle;
}

.lt-r span {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 0 15px;
    vertical-align: middle;
}

.lt-r a:hover {
    text-decoration: underline;
}

#nav {
    position: relative;
    line-height: 52px;
    z-index: 9;
}

.nav>ul>li {
    position: relative;
}

.nav>ul>li>a {
    font-size: 24px;
    color: #fff;
    display: block;
    position: relative;
    transition: all .6s;
}

.nav>ul>li.on>a {
    font-weight: bold;
    color: #81F2FF;
}

.nav>ul>li:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #025bbf;
    border-radius: 5px;
    transition: all .3s;
    bottom: 5px;
}

.nav>ul>li.on:after {
    width: 18px;
}

.nav>ul>li>ul {
    position: absolute;
    width: 150px;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 0 5px #aaa8a8;
    overflow: hidden;
    padding: 10px 0;
    z-index: 999;
    display: none;
}

.nav>ul>li>ul>li {
    text-align: center;
    position: relative;
    background: #fff;
}

.nav>ul>li>ul>li>a {
    display: block;
    font-size: 14px;
    padding: 0 13px;
    margin-bottom: 1px;
    background: #fff;
    color: #333;
    white-space: nowrap;
    line-height: 40px;
}

.nav>ul>li>ul>li:hover>a {
    background: #025bbf;
    color: #fff;
}

.banner {
    position: relative;
}

.banner a {
    position: relative;
    display: block;
}

.banner a img {
    display: block;
    width: 100%;
}

.banner a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: url(../images/ban-tc.png) no-repeat center bottom;
    background-size: 100% 100%;
}

.banner a .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding-bottom: 15px;
    background: url(../images/banner-xx.png) no-repeat left bottom;
}

.banner a .text p {
    width: 55%;
    font-size: 48px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    background: linear-gradient(180deg, #2996E8 0%, #0F5DE4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.banner .slick-dots {
    bottom: 160px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.banner .slick-dots li {
    width: 80px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    transition: all .6s;
}

.banner .slick-dots li.slick-active {
    background: #fff;
}

#ft-link {
    position: relative;
    z-index: 6;
}

#ft-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36%;
    background: #fff;
}

.ft-link {
    position: relative;

    background-size: cover;
    padding: 20px 0;
    line-height: 30px;
    padding-left: 60px;
    z-index: 6;
}

.ft-link span:first-child {
    padding-left: 30px;

    font-size: 16px;
    color: #546761;
}

.ft-link span:first-child:after {
    display: none;
}

.ft-link a {
    display: inline-block;
    font-size: 16px;
    color: #353535;
    margin-right: 30px;
}

.ft-link a:hover {
    text-decoration: underline;
    color: #ab0529;
}

.ft-link span {
    position: relative;
    padding: 0 20px;
}

.ft-link span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 20px;
    transform: translate(-50%, -50%);
    border-right: 0.01rem dashed #DCDCDC;
}


/* 底部 */

.footer {
    background: #043FA5;
}

.foot {
    position: relative;
    padding-top: 50px;
    padding-bottom: 35px;
    align-items: center;
    z-index: 999;
}

.foot-l {
    position: relative;
}

.ftl-b {
    margin-top: 20px;
}

.ftl-b p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 10px;
}

.foot-m>ul {
    display: flex;
    width: 535px;
    flex-wrap: wrap;
}

.foot-m>ul>li {
    position: relative;
    width: 239px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 14px;
}

.foot-m>ul>li p {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 45px;
    padding-left: 18px;
    padding-right: 45px;
    font-size: 16px;
    color: #fff;
}

.foot-m>ul>li:hover p {
    background: #fff;
    color: #043FA5;
}

.foot-m>ul>li p span {
    position: absolute;
    right: 15px;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/lj-jt.png) no-repeat center center;
}

.foot-m>ul>li:hover p span {
    background: url(../images/lj-jt-other.png) no-repeat center center;
}

.foot-m>ul>li>ul {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    background: #fff;
    z-index: 99;
    display: none;
    border: 1px solid #eee;
}

.foot-m>ul>li:hover>ul {
    display: block;
}

.foot-m>ul>li>ul>li {
    line-height: 45px;
}

.foot-m>ul>li>ul>li a {
    padding: 0 10px;
    display: block;
    font-size: 16px;
    color: #333;
}

.foot-m>ul>li>ul>li:hover a {
    background: #043FA5;
    color: #fff;
}

.foot-r {
    text-align: center;
}

.foot-r p {
    font-size: 16px;
    color: #fff;
}

.ft-down {
    border-top: 1px solid #FFFFFF;
    padding: 15px 0;
    text-align: center;
}

.ft-down p {
    line-height: 24px;
    font-size: 16px;
    color: #fff;
}