@charset "utf-8";
/* CSS Document */

body {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif, "微软雅黑";
    background: #f3f3f3;
}

a {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    border: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cb {
    clear: both;
    height: 0;
}

li {
    list-style: none;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
label,
input,
textarea,
img,
ul,
li,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

.img_scale {
    overflow: hidden;
}

.img_scale img {
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
}

.img_scale:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.wrapper{
    width: 1200px;
    margin: 0 auto;
}

.hide {
    display: none;
}
.dis_flex {
    display: flex;
}
.justify_space_between {
    justify-content: space-between;
}
.justify_left {
    justify-content: left;
}
.relative{
    position: relative;
}
.bg01{
    background: url(../images/bg01.png) top center no-repeat;
    height: 104px;
}
.bg02{
    background: url(../images/bg02.png) top center no-repeat #ffffff;
}
.bg03{
    background: url(../images/bg03.png) top center no-repeat;
    height: 417px;
    padding-top: 50px;
}
.bg04{
    background: url(../images/bg04.png) top center no-repeat;
    height: 331px;
}
.ny_bg{
    background: url(../images/ny_bg.png) bottom center no-repeat #eef2fa;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* 头部右侧 */
.header-right {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    height: 50px;
    width: 250px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.search-box input {
    width: 250px;
    height: 50px;
    padding: 0 40px 0 15px;
    font-size: 14px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}
.search-box input::placeholder {
    color: #fff;
}

.search-box .search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.index_top_link{
    color: #fff;
    font-size: 16px;
    line-height: 104px;
}
.index_top_link a{
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
}

/* Banner区域 */
.banner {
    height: 700px;
    position: relative;
    overflow: hidden;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-pagination {
    position: absolute;
    bottom: 80px !important;
    right: 30px;
    left: auto;
    width: auto;
    z-index: 10;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
    width: 12px;
    height: 12px;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    color: #fff;
    font-size: 16px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    font-size: 24px !important;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* 主导航样式 */
.header-nav{
    position: absolute;
    z-index: 2;
    left: 0;
    top: -37px;
}
.main-nav {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    height: 74px;
    background: linear-gradient(to bottom, #206ae7 0%, #154ba6 100%);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    line-height: 74px;
}

.nav-link:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 74px;
    left: -40px;
    background: #d0e0f2;
    width: 188px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0 0 0 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 24px;
    color: #373737;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.dropdown-item:hover {
    color: #fff;
    background: linear-gradient(to bottom, #416cba 0%, #1f3c73 100%);
    text-decoration: none;
}

/* 首页特殊处理，没有下拉菜单 */
.nav-item:first-child .nav-link {
    color: #fff;
}

.news_notice{
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 54px;
    padding-bottom: 10px;
}

.index_news{
    width: 821px;
    height: 360px;
    background: url(../images/index02.png) repeat-x;
    border: 1px solid #e1e4e8;
}
.index_news .t{
    display: flex;
    justify-content: space-between;
}
.index_news .con{
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}
.index_news .con .news_pic{
    width: 360px;
    height: 270px;
    overflow: hidden;
    position: relative;

}
.index_news .con .news_pic .swiper-slide{
    width: 100%;
}
.index_news .con .news_pic .item{
    width: 100%;
}
.index_news .con .news_pic img{
    width: 360px;
    height: 270px;
object-fit:cover;
}
.index_news .con .news_pic .txt{
    font-size: 16px;
    line-height: 30px;
    color: #373737;
    padding: 10px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
z-index:9999;
}
.index_news .con .news_list{
    width: 500px;
}
.index_news .con .news_list .item{
    height: 45px;
    line-height: 45px;
    border-bottom: 1px dashed #eaeced;
}
.index_news .con .news_list .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #6a6a6a;
    text-decoration: none;
    padding-left: 12px;
}
.index_news .con .news_list .item a p{
    width: 330px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_news .con .news_list .item a::before{
    content: '';
    width: 6px;
    height: 6px;
    background-color: #1a5ac7;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}
.index_news .con .news_list .item a:hover{
    color: #154ba9;
}
.index_news .con .news_list .item a:hover span{
    color: #6a6a6a;
}
.index_news .con .news_list .item a span{
    font-size: 12px;
}

.index_notice{
    width: 360px;
    height: 360px;
    background: url(../images/index02.png) repeat-x;
    border: 1px solid #e1e4e8;
}
.index_notice .con{
    padding: 0 10px;
}
.index_notice .con .item{
    height: 45px;
    line-height: 45px;
    border-bottom: 1px dashed #eaeced;
}
.index_notice .con .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #6a6a6a;
    text-decoration: none;
}
.index_notice .con .item a p{
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_notice .con .item a:hover{
    color: #154ba9;
}
.index_notice .con .item a:hover span{
    color: #6a6a6a;
}
.index_notice .con .item a span{
    font-size: 12px;
}

.guide_download_link{
    display: flex;
    justify-content: space-between;
}
.index_guide{
    width: 447px;
    height: 326px;
    background: url(../images/index06.png) no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.index_guide .con{
    padding: 0 20px;
}
.index_guide .con .item_list{
    border-top: 3px solid #206ae7;
    background: rgba(228, 232, 249, 0.4);
    height: 216px;
    padding-top: 10px;
}
.index_guide .con .item_list .item{
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #e7e9ef;
}
.index_guide .con .item_list .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #6a6a6a;
    text-decoration: none;
    padding: 0 10px;
}
.index_guide .con .item_list .item a p{
    width: 330px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_guide .con .item_list .item a span{
    font-size: 12px;
}
.index_guide .con .item_list .item a:hover{
    color: #154ba9;
}
.index_guide .con .item_list .item a:hover span{
    color: #6a6a6a;
}
.index_guide .con .item_list .item_list .item a span{
    font-size: 12px;
}

.index_download{
    width: 447px;
    height: 326px;
    background: url(../images/index07.png) no-repeat;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.index_download .con{
    padding: 0 20px;
}
.index_download .con .item_list{
    border-top: 3px solid #206ae7;
    background: rgba(228, 232, 249, 0.4);
    height: 216px;
    padding-top: 10px;
}
.index_download .con .item_list .item{
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #e7e9ef;
}
.index_download .con .item_list .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #6a6a6a;
    text-decoration: none;
    padding: 0 10px;
}
.index_download .con .item_list .item a p{  
    width: 330px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_download .con .item_list .item a span{
    font-size: 12px;
}
.index_download .con .item_list .item a:hover{
    color: #154ba9;
}
.index_download .con .item_list .item a:hover span{
    color: #6a6a6a;
}
.index_download .con .item_list .item_list .item a span{
    font-size: 12px;
}

.index_link{
    width: 270px;
    height: 326px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.index_link img{
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);

}

.web_link{
    height: 330px;
}
.web_link .t{
    padding-top: 60px;
    padding-bottom: 60px;
}
.web_link .con{
    display: flex;
    justify-content: space-between;
}
.web_link .con img{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 379px;
    height: 113px;
}

.footer{
    background: #1a59c4;
    color: #fff;
    line-height: 30px;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
}
.footer a{
    color: #fff;
}

.ny_banner{
    height: 700px;
}

.ny_left{
    width: 228px;
}
.ny_left .t{
    background: url(../images/ny01.png) no-repeat;
    height: 86px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    width: 100%;
    line-height: 86px;
}
.ny_left .con{
    background: url(../images/ny02.png) bottom center no-repeat #f4f6ff;
    padding-bottom: 100px;
    border-left: 4px solid #1f67e0;
}
.ny_left .con a{
    display: block;
    position: relative;
    height: 58px;
    line-height: 58px;
    text-align: center;
    width: 100%;
    font-size: 24px;
    color: #373737;
    text-decoration: none;
}
.ny_left .con a:hover,
.ny_left .con a.active{
    color: #fff;
    background: linear-gradient(to bottom, #2069e6 0%, #154aa6 100%);
}
.ny_left .con a i{
    position: absolute;
    width: 9px;
    height: 64px;
    bottom: 0;
    left: -9px;
    background: url(../images/ny03.png) no-repeat;
    display: none;
}
.ny_left .con a:hover i,
.ny_left .con a.active i{
    display: block;
}

.ny_right{
    width: 862px;
    border-top: 3px solid #1a5ac6;
    background: linear-gradient(to bottom, rgba(250, 251, 255, 1) 0%, rgba(250, 251, 255, .4) 100%);
    padding: 20px 35px;
}
.ny_right .t{
    color: #154ba7;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
}
.ny_right .t .ny_pos{
    font-size: 16px;
    color: #333333;
}
.ny_right .t .ny_pos a{
    color: #333333;
    text-decoration: none;
    padding: 0 10px;
}
.ny_right .t .ny_pos a:hover{
    color: #154ba9;
}
.ny_right .t .ny_pos i{
    color: #3c63ce;
}

.ny_right .list01{
    padding: 20px 0;
}
.ny_right .list01 .item{
    height: 56px;
    line-height: 56px;
    border-bottom: 1px dashed #e7e9ef;
}
.ny_right .list01 .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #6a6a6a;
    text-decoration: none;
    padding: 0 10px;
}
.ny_right .list01 .item a p{  
    width: 700px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ny_right .list01 .item a span{
    font-size: 18px;
}
.ny_right .list01 .item a:hover{
    color: #154ba9;
}
.ny_right .list01 .item a:hover span{
    color: #6a6a6a;
}

.ny_right .page_detail{
    padding: 20px 0;
    font-size: 16px;
    color: #333333;
    line-height: 2;
}
.ny_right .page_detail .table td,.ny_right .page_detail .table th{
    border: 1px solid #bababa;
}
.ny_right .page_detail .table td{
    padding: 10px;
}
.ny_right .ny_header{
    border-bottom: 1px solid #cccccc;
    text-align: center;
    padding: 20px 0;
}
.ny_right .ny_header h2{
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}
.ny_right .ny_header p{
    font-size: 16px;
    color: #6a6a6a;
}
.ny_right .ny_header p i{
    color: #164aa7;
}

.ny_right .list02{
    padding: 20px 0;
}
.ny_right .list02 .item{
    height: 157px;
    background: #fff;
    border: 1px solid #edeef1;
}
.ny_right .list02 .item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.ny_right .list02 .item a .pic,.ny_right .list02 .item a .pic img{
    width: 277px;
    height: 157px;
}
.ny_right .list02 .item a .info{
    width: 520px;
    margin-right: 20px;
}
.ny_right .list02 .item a .info h2{
    font-size: 24px;
    color: #585858;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ny_right .list02 .item a .info .date{
    font-size: 12px;
    color: #164cab;
    padding: 10px 0;
}
.ny_right .list02 .item a .info p{
    font-size: 12px;
    color: #c4c3c3;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ny_right .list02 .item:hover{
    background: linear-gradient(to bottom, #206ae7 0%, #2254aa 100%);
}
.ny_right .list02 .item:hover .info h2,.ny_right .list02 .item:hover .info .date,.ny_right .list02 .item:hover .info p{
    color: #fff;
}

.ny_right .user_manage{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.ny_right .user_manage img{
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    margin: 0 30px;
}
.ny_right .page_downlaod a{
    display: block;
    padding: 10px 20px;
    color: #164baa;
    text-decoration: none;
    font-size: 16px;
}






/* 主导航样式 */
.header-nav-ny{
    position: absolute;
    z-index: 1;
    left: 0;
    top: -100px;
}
.main-nav {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    height: 74px;
    background: linear-gradient(to bottom, #206ae7 0%, #154ba6 100%);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    line-height: 74px;
}

.nav-link:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: 74px;
    left: -40px;
    background: #d0e0f2;
    width: 188px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0 0 0 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 24px;
    color: #373737;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.dropdown-item:hover {
    color: #fff;
    background: linear-gradient(to bottom, #416cba 0%, #1f3c73 100%);
    text-decoration: none;
}

/* 首页特殊处理，没有下拉菜单 */
.nav-item:first-child .nav-link {
    color: #fff;
}