@charset "UTF-8";
body {
    font-family: Arial, "微软雅黑", "Microsoft YaHei", sans-serif;
    font-size: 1rem;
    color: #333333;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
hr,
input,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
}

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: #1151af;
}

a:focus {
    border: none;
    outline: none;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    border: none;
    outline: none;
}

.container {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1080px) {
    .container {
        width: 1000px;
    }
}

@media (min-width: 1280px) {
    .container {
        width: 1200px;
    }
}

@media (min-width: 1366px) {
    .container {
        width: 1280px;
    }
}

img {
    max-width: 100%;
    border: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.wrapper {
    position: relative;
    overflow: hidden;
}

@keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-ms-keyframes circleAnim {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}


/* header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 9999;
}

.header .logo {
    float: left;
}

.header .goback {
    float: left;
    width: 105px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #3b71bf;
    font-size: 1rem;
    color: #fff;
    border-radius: 20px;
    margin-left: 15px;
    margin-top: 10px;
    transition: .5s;
}

.header .goback:hover {
    background: #1151af;
}

.header .toplink {
    float: right;
    margin-top: 12px;
}

.header .toplink li {
    float: left;
    font-size: .875rem;
    color: #333;
    padding: 0 8px;
    position: relative;
}

.header .toplink li:last-child {
    padding-right: 0;
}

.header .toplink li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #97bef7;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.header .toplink li:first-child:after,
.header .toplink li:last-child:after {
    display: none;
}

.header .toplink a {
    color: #1151af;
    display: block;
    padding: 0 8px;
    border-radius: 12px;
    text-align: center;
    transition: .5s;
}

.header .toplink a:hover {
    background: #1151af;
    color: #fff;
}


/* header */


/* 底部 */

.footer {
    position: relative;
    background: url(../images/footer-bg.png) center top no-repeat #1151af;
}

.foot-link .link-list {
    width: calc(100% - 120px);
    margin: 0 auto;
    position: relative;
}

.foot-link .link-list .box {
    float: left;
    width: 25%;
    position: relative;
}

.foot-link .link-list .tit {
    line-height: 70px;
    text-align: center;
    cursor: pointer;
}

.foot-link .link-list .tit p {
    display: inline-block;
    padding-right: 20px;
    font-size: 1rem;
    background: url(../images/select-ico.png) right center no-repeat;
    color: #fff;
}

.foot-link .link-list ul {
    position: absolute;
    width: 100%;
    max-height: 390px;
    left: 0;
    bottom: 100%;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    overflow-y: auto;
    display: none;
}

.foot-link .link-list ul li {
    padding: 5px 0;
}

.foot-link .link-list ul li a {
    display: block;
    font-size: .875rem;
    color: #333;
}

.foot-link .link-list ul li:hover a {
    color: #1151af;
}

.foot-link .link-list ul::-webkit-scrollbar {
    width: 4px;
}

.foot-link .link-list ul::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 5px;
}

.foot-link .link-list ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: linear-gradient(45deg, #1151af 0%, #1151af 100%);
}

.foot-info {
    padding: 35px 0 25px;
}

.foot-info .lf {
    float: left;
    padding-top: 25px;
}

.foot-info .lf a {
    float: left;
    margin-right: 28px;
}

.foot-info .lf img {
    vertical-align: middle;
}

.foot-info .mid {
    float: left;
}

.foot-info .mid p {
    font-size: .875rem;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.foot-info .rt {
    float: right;
    margin-top: 0px;
}

.foot-info .rt li {
    float: left;
    margin-left: 25px;
}

.foot-info .rt li h2 {
    height: 80px;
    width: 22px;
    line-height: 22px;
    float: left;
    text-align: center;
    background: url(../images/ewm-bg.png) top no-repeat;
    font-size: .75rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: tb-rl;
    letter-spacing: 1px;
}

.foot-info .rt li img {
    width: 100px;
    height: 100px;
}

.cory {
    padding: 10px 0;
    text-align: center;
    background: #0b49a5;
}

.cory * {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cory img {
    vertical-align: middle;
}


/* 底部 */


/* 右侧导航 */

.page-right {
    position: fixed;
    z-index: 999;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.page-right li {
    width: 106px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 30px;
}

.page-right li a {
    display: block;
    position: relative;
    font-size: 1rem;
    color: #fff;
    overflow: hidden;
    background: #255eb2;
    border-radius: 20px;
}

.page-right li a:before {
    content: "";
    width: 90%;
    height: 80%;
    border: 1px dashed #fff;
    position: absolute;
    top: 8%;
    left: 5%;
    border-radius: 20px;
}

.page-right li:last-child {
    margin-bottom: 0;
}

.page-right li.active a {
 
    background-size: 100% 100%;
}

#fp-nav {
    display: none !important;
}


/* 右侧导航 */


/* 主体 */

.row {
    overflow: hidden;
    padding-top: 10px;
    margin-bottom: 30px;
}

.policy {
    background: url(../images/banner.jpg)no-repeat center top;
}

.policy .container {
    padding-left: 45px;
    padding-right: 45px;
    background-color: #FFF;
}

.banner {
    height: 406px;
}

.title-con {
    border-bottom: 2px #ddd4af solid;
    height: 46px;
    line-height: 46px;
    position: relative;
    width: 100%;
}

.title-con h3 {
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 44px;
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
    padding: 0 20px;
    background-color: #1151af;
    line-height: 44px;
}

.title-con h3::after {
    content: '';
    position: absolute;
    right: -32px;
    width: 32px;
    height: 100%;
    background: url(../images/t-bg.png)no-repeat center;
}

.title-con a {
    float: right;
    font-size: 14px;
    color: #739ad2;
}

.title-con a:hover {
    color: #1151af;
}

.text-list {
    background-color: #FFF;
    padding-top: 50px;
    position: relative;
}
.text-list2{
    padding-top:0;
}

.text-list::after {
     content: ''; 
    position: absolute;
    left: 50%;
    top: 0;
    width: 67px;
    height: 26px;
    background: url(../images/arrow.jpg)no-repeat center top;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.text-list2::after{
    display:none;
}

.text-list .card {
    width: 47.5%;
    float: left;
    margin-right: 5%;
}
.text-list2 .card{
    width:100%;
    float:none;
    margin-right:0;
}

.text-list .card:last-child {
    margin-right: 0;
}

.text-list li {
    line-height: 58px;
    overflow: hidden;
    border-bottom: 2px solid #e1e9f5;
    position: relative;
}

.text-list li * {
    transition: .5s;
}

.text-list li h2 {
    float: left;
    width: calc(100% - 90px);
    font-size: 1rem;
    color: #333333;
    padding-left: 15px;
    position: relative;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-list li h2:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #4e91f4;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
}

.text-list li .date {
    float: right;
    font-size: .875rem;
    color: #999999;
}

.text-list li:before {
    content: "";
    background: #1151af;
    width: 0;
    transition: width .5s;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.text-list li:hover:before {
    width: 100%;
}

.text-list li:hover h2 {
    color: #1151af;
}

.text-list li:hover .date {
    color: #1151af;
}

.pic-list .swiper-container {
    margin-top: 30px;
    padding-bottom: 30px;
}

.pic-list .pic {
    overflow: hidden;
    height: 160px;
}

.pic-list .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pic-list .swiper-slide {
    background-color: #e8f2ff;
}

.pic-list .tit {
    padding: 20px 20px;

}
.pic-list .tit p{
        display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    height: 60px;
    overflow: hidden;
}

.pic-list .swiper-slide:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.pic-list .swiper-slide:hover .tit {
    color: #1151af;
}

.pic-list .swiper-pagination {
    bottom: 0;
}

.pic-list .swiper-pagination-bullet {
    opacity: 1;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 3px;
    width: 30px;
    background-color: #5f9efa;
}

.pic-list .swiper-pagination-bullet-active {
    background-color: #d6b347;
}

.sp a {
    display: block;
    float: left;
    width: 23.5%;
    margin-right: 2%;
    overflow: hidden;
}

.sp a:last-child {
    margin-right: 0;
}

.sp a:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.video {
    margin-bottom: 30px;
}

.video .content {
    position: relative;
}

.video .swiper-container {
    margin-top: 30px;
}

.video .pic {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.video .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video .pic span {
    position: absolute;
    left: 50%;
    top: 50%;
    background: url(../images/play.png)no-repeat center;
    width: 41px;
    height: 41px;
    margin-top: -20px;
    margin-left: -20px;
}

.video .swiper-slide {
    border-bottom: 4px #f1f5fa solid;
}

.video .tit {
    padding: 15px 15px;
}
.video .tit p{
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    height: 60px;
    overflow: hidden;
}

.video .swiper-slide:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.video .swiper-button-next {
    right: -40px;
    /* background-size: 16px; */
    top:32%;
}

.video .swiper-button-prev {
    left: -40px;
    background-size: 16px;
    top:32%;
}
.video .swiper-button-prev:after, .video .swiper-container-rtl .swiper-button-next:after{
    /* width:20px; */
    /* height:20px; */
}

.jiedu {
    padding: 20px;
    border: 1px #e1e9f5 solid;
    border-top: 0;
    overflow: hidden;
}

.jiedu .con .pic {
    width: 32.65%;
    height: 215px;
    overflow: hidden;
    float: left;
    margin-right: 1%;
}

.jiedu .con .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jiedu .con:hover .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.jiedu .con .text-content {
    padding: 10px 20px;
    float: left;
    width: 66.3%;
}

.jiedu .con h4 {
    font-size: 18px;
    line-height: 1.8;
}
.jiedu .con h4 .tit{
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    color: #333333;
    line-height: 31px;
    height: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.jiedu .con .text-con {
    overflow: hidden;
}

.jiedu .con .text-con .text {
    color: #666;
    float: left;
    margin-right: 40px;
    margin-top: 15px;
    line-height: 1.8;
}

.jiedu .con .text-con .text:last-child {
    margin-right: 0;
}

.jiedu .con .text-con span,
.jiedu .con .info span {
    display: inline-block;
    background-color: #e8f1fe;
    color: #333;
    padding: 0 10px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    font-size: 14px;
    margin-right: 10px;
}

.jiedu .con .info {
    margin-top: 15px;
    color: #666;
    position: relative;
    padding-left: 60px;
    line-height: 1.8;
}

.jiedu .con .info span {
    position: absolute;
    left: 0;
    top: 0;
}
.jiedu .con .info p{
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;


}

.jiedu li {
    width: 32.65%;
    margin-right: 1%;
    border: 1px #e1e9f5 solid;
    padding: 20px 30px;
    position: relative;
    float: left;
    margin-top: 20px;
    height: 160px;
    background: url(../images/bg2.png)no-repeat center bottom;
    background-size: 100%;
}

.jiedu li:last-child {
    margin-right: 0;
}

.jiedu li a {
    display: block;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
}

.jiedu li .date {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 14px;
    background-color: #8cafed;
    color: #FFF;
    line-height: 2;
    padding: 0 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.jiedu li:hover {
    background-color: #1151af;
    color: #FFF;
}

.jiedu li:hover a {
    color: #FFF;
}


.weizhi {
    font-size: 1rem;
    color: #666666;margin-bottom:15px;
}

.weizhi a {
     font-size: 1rem;
    color: #666666;
}
/* 主体 */