.banner {
    width: 100%;
    position: relative;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 14px 60px;
    z-index: 999;
}

.header::before {
    content: '';
    width: 100%;
    height: 324px;
    height: 220px;
    display: inline-block;
    background: url(../img/mark.png) center top no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.header .con {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.header .con h1 {
    width: 25%;
}

.header .con h1 img {
    height: 62px;
    /* max-width: 100%; */
}

.topLink {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topLink a {
    font-size: 13px;
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, .3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1000px;
    width: 66px;
    height: 25px;
    line-height: 25px;
    text-align: center;
}


.topLink .ss {
    margin-left: 15px;
    width: 36px;
    height: 25px;
    box-sizing: border-box;
    border: 0.5px solid rgba(255, 255, 255, .3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navgation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navgation ul {
    height: 100%;
    height: 45px;
    display: flex;
    align-items: center;
}

.navgation ul .nli {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex: 1; */
    padding: 0 21px;
}

.navgation ul .nli.li6 {
    width: 74px;
    flex: auto;
}

.navgation ul .nli::before {
    content: '';
    width: 50%;
    height: 0;
    border-bottom: 2px solid #fff;
    border-radius: 3px;
    display: inline-block;
    position: absolute;
    left: 25%;
    bottom: -3px;
    opacity: 0;
}

.navgation ul .nli.on::before,
.navgation ul .nli:hover:before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.navgation ul li h3 a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.navgation ul li.on h3 a,
.navgation ul li:hover h3 a {
    font-weight: bold;
}

.navgation ul .sub {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 999;
    border-top: 3px solid #EE9640;
    padding: 10px 0;
}

.navgation ul li:hover .sub {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
}

.navgation ul .sub li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: relative;
}

.navgation ul .sub li:last-of-type {
    border: none;
}

.navgation ul .sub li a {
    color: #2E2E2E;
    font-size: 16px;
}

.navgation ul .sub li:hover a {
    color: #0077CA;
    font-weight: bold;
}

.navgation ul .sub2 {
    width: 130%;
    position: absolute;
    left: 100%;
    top: 40%;
    flex-direction: column;
    background: #fff;
    z-index: 99;
    height: auto;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
    display: none !important;
}

.navgation ul .sub li:hover .sub2 {
    display: flex !important;
}

.navgation ul .sub2 li {
    height: 35px;
    line-height: 35px;
}

.navgation ul .sub2 li a {
    color: #404040;
}

.navgation ul .sub li:hover .sub2 li a {
    color: #404040;
}

.navgation ul .sub li .sub2 li:hover a {
    color: #005492;
}

.banlist {
    width: 100%;
    position: relative;
}

.banlist .swiper-slide a,
.banlist .swiper-slide img {
    width: 100%;
}

.banlist .swiper-pagination {
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 10000px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    bottom: 30px;
    padding: 0 15px;
    left: 48%;
}

.banlist .swiper-pagination-bullet {
    width: 10.8px;
    height: 10.8px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    margin: 0 4px;
}

.banlist .swiper-pagination-bullet-active {
    background: #EE9640;
}

.banlist .swiper-prev,
.banlist .swiper-next {
    width: 50px;
    height: 50px;
    border-radius: 10000px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 63px;
    top: calc((100% - 50px) / 2);
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.banlist .swiper-prev {
    right: auto;
    left: 63px;
}

.banlist .swiper-prev:hover,
.banlist .swiper-next:hover {
    background: rgba(25, 104, 252, 0.5);
    box-sizing: border-box;
    border: 1px solid #fff;
}

.banlist:hover .swiper-prev,
.banlist:hover .swiper-next {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 85px 0 40px 0;
}

.column .title {
    font-size: 30px;
    font-weight: bold;
    color: #242424;
}

.column .more {
    font-size: 16px;
    color: #999;
    display: flex;
    align-items: center;
}

.column .more::after {
    content: '';
    width: 30px;
    height: 19px;
    display: inline-block;
    background: url(../img/column-more-ico.png) center no-repeat;
    margin-left: 5px;
}

.column .more:hover {
    color: #CD1F00;
}

.column .more:hover::after {
    background: url(../img/column-more-ico2.png) center no-repeat;
}

.zxdt {
    width: 100%;
    padding-bottom: 100px;
    position: relative;
}

.zxdt::before {
    content: '';
    width: 148px;
    height: 243px;
    display: inline-block;
    background: url(../img/yinxing-ico1.png) center no-repeat;
    position: absolute;
    left: 55px;
    top: 180px;
}

.zxdt::after {
    content: '';
    width: 182px;
    height: 166px;
    display: inline-block;
    background: url(../img/yinxing-ico2.png) center no-repeat;
    position: absolute;
    right: 0;
    bottom: 120px;
}

.zxdtBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newSlide {
    width: 685px;
    position: relative;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}

.newSlide .swiper-slide .img {
    overflow: hidden;
}

.newSlide .swiper-slide .img img {
    width: 100%;
    height: 370px;
}

.newSlide .swiper-slide .text {
    width: 100%;
    height: 170px;
    background: linear-gradient(180deg, #FFFBEF 0%, #FFFFFF 100%);
    box-sizing: border-box;
    padding: 20px 25px;
}

.newSlide .swiper-slide .title {
    font-weight: bold;
    color: #2C2C2C;
}

.newSlide .swiper-slide .desc {
    line-height: 25px;
    height: 50px;
    text-align: justify;
    color: #9E9E9E;
    margin: 10px 0 15px 0;
}

.newSlide .swiper-slide .dete {
    color: #999;
    display: flex;
    align-items: center;
}

.newSlide .swiper-slide .dete::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/dete.png) center no-repeat;
    margin-right: 5px;
}

.newSlide .swiper-pagination {
    right: 25px;
    bottom: 28px;
}

.newSlide .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #D8D8D8;
    opacity: 1;
    margin: 0 3px;
}

.newSlide .swiper-pagination-bullet-active {
    background: #EE9640;
}

.newlist {
    width: calc(100% - 685px - 40px);
}

.newlist li {
    width: 100%;
}

.newlist li.f a {
    width: 100%;
    display: flex;
    align-items: center;
}

.newlist li.f .dete {
    width: 72px;
    height: 66px;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #EE9640;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newlist li.f .d {
    font-size: 24px;
    color: #1968FC;
    line-height: 38px;
    height: 38px;
}

.newlist li.f .y {
    width: 100%;
    height: 28px;
    line-height: 28px;
    border-radius: 5px;
    background: #EE9640;
    text-align: center;
    color: #fff;
}

.newlist li.f .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 20px;
}

.newlist li.f .title {
    line-height: 32px;
    height: 64px;
    text-align: justify;
    color: #2E2E2E;
}

.newlist li.f:hover .title {
    color: #1968FC;
    font-weight: bold;
}

.newlist li.n {
    width: 100%;
    padding: 23px 0 17px 0;
    border-bottom: 1px solid #EDEDED;
    position: relative;
}

.newlist li.n::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #EE9640;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.newlist li.n .title {
    color: #333;
    line-height: 25px;
    height: 25px;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding-left: 15px;
    position: relative;
}

.newlist li.n .title::before {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border: 0.7px solid #EE9640;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.newlist li.n .dete {
    color: #AFAFAF;
    display: flex;
    align-items: center;
}

.newlist li.n .dete::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/dete.png) center no-repeat;
    margin-right: 5px;
}

.newlist li.n:hover .title {
    color: #1968FC;
}

.newlist li.n:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.fwzn_zlxz {
    width: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/fwznBg.jpg);
    padding-bottom: 80px;
}

.fwzn_zlxz .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fwzn,
.zlxz {
    width: calc((100% - 45px) / 2);
}

.fwzn .infolist {
    background: linear-gradient(0deg, #FFFFF7 0%, #FAF9FF 60%, #FFFFFF 100%);
}

.zlxz .infolist {
    background: linear-gradient(180deg, #FFFAF7 0%, #FAF9FF 60%, #FFFFFF 100%);
}

.infolist {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 30px 32px 30px;
}

.infolist li {
    width: 100%;
    padding: 30px 0 17px 0;
    border-bottom: 1px dashed rgba(238, 150, 64, .3);
    position: relative;
}

.infolist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #1968FC;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.infolist li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.infolist li .title {
    color: #333;
    box-sizing: border-box;
    padding-left: 15px;
    position: relative;
}

.infolist li .title::before {
    content: '';
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    border: 0.7px solid #EE9640;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.infolist li .dete {
    color: #999;
    display: flex;
    align-items: center;
}

.infolist li .dete::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/dete.png) center no-repeat;
    margin-right: 5px;
}

.infolist li:hover .title {
    color: #1968FC;
}

.infolist li:hover .title::before {
    border: 0.7px solid #1968FC;
}

.infolist li:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.footer {
    width: 100%;
    background: url(../img/footerBg.jpg) center no-repeat;
    background-size: cover;
}

.banq {
    width: 100%;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.banq p {
    color: rgba(255, 255, 255, .8);
    text-align: center;
    line-height: 25px;
}

.banq p a {
    color: rgba(255, 255, 255, .8);
}

.foot .container {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-phone {
    width: 41%;
    display: flex;
    flex-wrap: wrap;
}

.ft-phone p {
    width: 50%;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.ft-phone p::before {
    content: '';
    width: 20px;
    height: 22px;
    display: inline-block;
    background: url(../img/phone.png) center no-repeat;
    margin-right: 5px;
}

.contact {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.contact .place {
    font-size: 16px;
    color: #fff;
    margin-right: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.contact .place::before {
    content: '';
    width: 23px;
    height: 23px;
    display: inline-block;
    background: url(../img/place.png) center no-repeat;
    background-size: cover;
}

.yqlj .box {
    width: 260px;
    height: 45px;
    border-radius: 10000px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .8);
    position: relative;
}

.yqlj .box h3 {
    width: 100%;
    line-height: 45px;
    height: 45px;
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    box-sizing: border-box;
    padding: 0 18px;
    position: relative;
    cursor: pointer;
}

.yqlj .box h3::before {
    content: '';
    width: 16px;
    height: 7px;
    display: inline-block;
    background: url(../img/yqlj-jt.png) center no-repeat;
    position: absolute;
    right: 18px;
    top: 18px;
}

.yqlj ul {
    background: #fff;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
    display: none;
}

.yqlj ul li {
    width: 100%;
    text-align: center;
    line-height: 30px;
}

.yqlj ul li a {
    color: #333;
    font-size: 16px;
}

.yqlj ul li:hover a {
    color: #1968FC;
}

.yqlj .box:hover ul {
    display: block;
}

.spdb {
    width: 100%;
    padding-bottom: 80px;
    background: url(../img/spdbBg.jpg) center no-repeat;
    background-size: cover;
}

.spdbSlide {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 35px;
}

.spdbSlide .swiper-wrapper {
    position: relative;
    left: 21.3%;
}

.spdbSlide .swiper-slide {
    width: 803.28px;
}

.spdbSlide .swiper-slide .img {
    overflow: hidden;

}

.spdbSlide .swiper-slide .img img {
    width: 100%;
    height: 443px;
    border-radius: 15px;
}

.spdbSlide .swiper-slide .title {
    width: 100%;
    height: 67px;
    line-height: 67px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px 0px 15px 15px;
    color: #fff;
    box-sizing: border-box;
    padding: 0 15px;
    position: absolute;
    bottom: 0;
    opacity: 0;
}

.spdbSlide .swiper-slide .video {
    width: 57px;
    height: 57px;
    background: url(../img/video.svg) center no-repeat rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    border: 0.45px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    left: calc((100% - 57px) / 2);
    top: calc((100% - 57px) / 2);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.spdbSlide .swiper-slide-active .title {
    opacity: 1;
}

.spdbSlide .swiper-slide:hover .video {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.spdbSlide .swiper-next,
.spdbSlide .swiper-prev {
    width: 64px;
    height: 64px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: calc((100% - 64px) / 2);
    cursor: pointer;
    z-index: 99;
}

.spdbSlide .swiper-next {
    left: auto;
    right: 0;
}

.spdbSlide .swiper-next img,
.spdbSlide .swiper-prev img {
    width: 100%;
}


.tzgg-aqjy {
    width: 100%;
    background: url(../img/tzggBg.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 80px;
}

.tzgg-aqjy .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tzgg,
.aqjy {
    width: calc((100% - 45px) / 2);
}

.aqjy .infolist {
    background: linear-gradient(180deg, #FFFFF7 0%, #FAF9FF 60%, #FFFFFF 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
}

.tzgglist {
    width: 100%;
    background: linear-gradient(180deg, #FFFEF8 0%, #FFF9FF 100%);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    padding: 0 30px;
}

.tzgglist li {
    width: 100%;
    height: 70px;
    padding: 20px 0 24px 0;
    border-bottom: 1px dashed rgba(238, 150, 64, .25);
}

.tzgglist li:last-of-type {
    border: none;
}

.tzgglist li a {
    display: flex;
}

.tzgglist li .dete {
    width: 80px;
    height: 70px;
    background: #FFF7EE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tzgglist li .d {
    text-align: center;
    font-size: 24px;
    color: #1968FC;
}

.tzgglist li .y {
    text-align: center;
    color: #9E9E9E;
}

.tzgglist li .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tzgglist li .title {
    color: #0B0B0B;
    line-height: 25px;
    height: 25px;
    margin-bottom: 5px;
}

.tzgglist li .desc {
    color: #0B0B0B;
    opacity: 0.5;
    line-height: 21px;
    height: 21px;
}

.tzgglist li:hover .dete {
    background: #EFF5FF;
}

.tzgglist li:hover .title {
    color: #1968FC;
}

.tabHead {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 85px 0 40px 0;
}

.tabHead .title {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 40px;
    position: relative;
}

.tabHead .title::before {
    content: '';
    width: 32px;
    height: 38px;
    display: inline-block;
    background: url(../img/column-ico4.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.tabHead .title .name {
    font-size: 30px;
    color: #242424;
    opacity: 0.5;
    margin-right: 40px;
    cursor: pointer;
}

.tabHead .title .name.on {
    opacity: 1;
    font-weight: bold;
}

.tabHead .more a {
    display: none;
    font-size: 16px;
    color: #999;
}

.tabHead .more a.on {
    display: flex;
    align-items: center;
}

.tabHead .more a.on::after {
    content: '';
    width: 30px;
    height: 19px;
    display: inline-block;
    background: url(../img/column-more-ico.png) center no-repeat;
    margin-left: 5px;
}

.tabHead .more a:hover {
    color: #CD1F00;
}

.tabHead .more a:hover::after {
    background: url(../img/column-more-ico2.png) center no-repeat;
}

.tabCount .item {
    display: none;
}

.tabCount .item.on {
    display: block;
}

.nydt {
    width: 100%;
    position: relative;
}

.nydt .img img {
    width: 100%;
}

.crumbs {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding-bottom: 40px;
    background: url(../img/nydt-mark.png) center bottom no-repeat;
    background-size: 100% 100%;
}

.crumbs .name {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
}

.crumbs .list,
.crumbs .list a {
    color: #fff;
    font-size: 18px;
}

.crumbs .list span:last-of-type {
    display: none;
}



.subNav {
    width: 100%;
    background: linear-gradient(270deg, #FDF7EC 0%, #EBF7FF 100%);
    margin-bottom: 30px;
}

.subNav ul {
    display: flex;
    align-items: center;
}

.subNav ul li {
    height: 60px;
    line-height: 60px;
    margin-right: 45px;
}

.subNav ul li a {
    font-size: 18px;
    color: #2C2C2C;
}

.subNav ul li.on,
.subNav ul li:hover {
    box-sizing: border-box;
    border-bottom: 2px solid #EE9640;
}

.subNav ul li.on a,
.subNav ul li:hover a {
    font-weight: bold;
    color: #1968FC;
}

.textlist .info li {
    width: 100%;
    margin-bottom: 30px;
    /* border: 1px solid #f2f2f2; */
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    padding: 30px;
}

.textlist .info li a {
    display: flex;
    align-items: center;
}

.textlist .info li .dete {
    width: 80px;
    height: 70px;
    background: #FFF7EE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.textlist .info li .d {
    font-size: 24px;
    color: #1968FC;
}

.textlist .info li .y {
    color: #9E9E9E;
}

.textlist .info li .text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 15px;
}

.textlist .info li .title {
    color: #0B0B0B;
    line-height: 25px;
    height: 25px;
    margin-bottom: 5px;
}

.textlist .info li .desc {
    color: #0B0B0B;
    opacity: .5;
    line-height: 21px;
    height: 21px;
}

.textlist .info li:hover .dete {
    background: #EFF5FF;
}

.textlist .info li:hover .y {
    color: #1968FC;
}

.textlist .info li:hover {
    background: linear-gradient(180deg, #FFFEF8 0%, #FFF9FF 100%);
}

.textlist .info li:hover .title {
    color: #1968FC;
}

.textlist .info li:hover .desc {
    color: #0B0B0B;
    opacity: .5;
}

.piclist .info li {
    width: 100%;
    margin-bottom: 30px;
    /* border: 1px solid #f2f2f2; */
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.03);
}

.piclist .info li a {
    display: flex;
    align-items: center;
}

.piclist .info li .img {
    overflow: hidden;
    width: 334px;
}

.piclist .info li .img img {
    width: 100%;
    height: 180px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.piclist .info li .text {
    flex: 1;
    box-sizing: border-box;
    padding: 25px 30px;
}

.piclist .info li .title {
    font-size: 20px;
    color: #2C2C2C;
    line-height: 30px;
    height: 30px;
}

.piclist .info li .desc {
    line-height: 25px;
    text-align: justify;
    color: #9E9E9E;
    margin: 10px 0 20px 0;
}

.piclist .info li .dete {
    color: #999;
    display: flex;
    align-items: center;
}

.piclist .info li .dete::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/dete.png) center no-repeat;
    margin-right: 5px;
}

.piclist .info li:hover {
    background: linear-gradient(180deg, #FFFEF8 0%, #FFF9FF 100%);
}

.piclist .info li:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.piclist .info li:hover .title {
    color: #1968FC;
}

.picture .info {
    display: flex;
    flex-wrap: wrap;
}

.picture li {
    width: calc((100% - 91px) / 3);
    margin-right: 30px;
    margin-bottom: 40px;
}

.picture li:nth-child(3n) {
    margin-right: 0;
}

.picture li .img {
    overflow: hidden;
}

.picture li .img img {
    width: 100%;
    height: 234px;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.picture li .title {
    width: 100%;
    line-height: 70px;
    height: 70px;
    box-sizing: border-box;
    padding: 0 15px;
    color: #2C2C2C;
    text-align: center;
}

.picture li:hover {
    background: linear-gradient(180deg, #FFFEF8 0%, #FFF9FF 100%);
}

.picture li:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.picture li:hover .title {
    color: #1968FC;
}

.detail {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    box-sizing: border-box;
    padding: 65px 142px 70px 142px;
}

.detail .title {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    color: #373737;
}

.detail .timer {
    width: 100%;
    border-bottom: 1px solid rgba(216, 216, 216, .5);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 10px 0;
}

.detail .timer .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #9C9C9C;
}

.detail .timer .left>div {
    margin-right: 20px;
}

.detail .dtl {
    box-sizing: border-box;
    padding: 25px 0;
}

.danye .dtl {
    padding: 0;
}

.detail .dtl p,
.detail .dtl p span {
    font-size: 22px !important;
    line-height: 50px !important;
    color: #0A0A0A;
    text-align: justify;
    margin:10px 0
}

.detail .dtl.big p,
.detail .dtl.big p span {
    font-size: 28px !important;
    line-height: 55px !important;
}

.detail .dtl.large p,
.detail .dtl.large p span {
    font-size: 32px !important;
    line-height: 60px !important;
}

.detail .dtl img,
.detail .dtl video {
    max-width: 100% !important;
    height: auto;
}

.detail-page {
    width: 100%;
}

.detail-page .box {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    margin-top: 27px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 0 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.detail-page .box a {
    color: #9E9E9E;
    font-size: 16px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;

}

.detail-page .box:hover {
    background: linear-gradient(90deg, #EBF7FF 0%, #FDF7EC 100%);
}

.detail-page .box:hover a {
    color: #1968FC;
    font-weight: bold;
}

.detail-page .box::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 1px solid #E5A72A;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

.detail-page .box:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.share {
    zoom: 1;
}

.share:after {
    content: "";
    display: block;
    clear: both;
}

.share a {
    float: left;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-left: 13px;
    cursor: pointer;
    display: block;
}

.share a i {
    display: block;
    width: 26px;
    height: 26px;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -ms-transition: .4s all;
    transition: .4s all;
}

.share a:hover i {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.share #share-icon {
    width: 26px;
    height: 26px;
    float: left;
    display: none;
}

.share #share-icon img {
    width: 100%;
    height: 100%;
}

.share .share-qqzone {
    background: none
}

.share .share-qqzone i {
    background: url("../img/shareqqzone.png") center center no-repeat;
    background-size: 80%;
}

.share .share-qqzone:hover {
    background-color: none;
}

.share .share-wechat {
    position: relative;
    background-color: none;
}

.share .share-wechat i {
    background: url("../img/sharewechat.png") center center no-repeat;
    background-size: 80%;
}

.share .share-wechat:hover {
    background-color: none;
}

.share .share-weibo {
    background: none;
}

.share .share-weibo i {
    background: url("../img/shareweibo.png") center center no-repeat;
    background-size: 80%;
}

.share .share-weibo:hover {
    background-color: none;
}

.share .bg-code {
    left: -36px;
    z-index: 10;
}

.share .qrcode {
    position: absolute;
    top: 36px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    display: none;
    width: 100px;
    left: -130%;
    z-index: 11;
    text-align: center;
}

.share .close-btn {
    position: absolute;
    background: #fff;
    color: #000;
    font-size: 12px;
    z-index: 12;
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    right: -39px;
    top: 50px;
    display: none;
    cursor: pointer;
}

.detail .timer .right {
    display: flex;
    align-items: center;
}

.fenxiang {
    display: flex;
    align-items: center;
    color: #9C9C9C;
    margin-left: 30px;
}

.fontSize {
    display: flex;
    align-items: center;
    color: #9C9C9C;
}

.fontSize span {
    margin-right: 15px;
    cursor: pointer;
}

.fontSize .on {
    color: #0073C3;
    font-weight: bold;
}

.danye .dtl {
    padding: 0;
}

#newskeycode249397 {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #aaa;
    box-sizing: border-box;
    padding-left: 20px;
    position: relative;
    border: none;
    outline-color: #1968FC;
    background: #eee;
}

.list-page {
    margin-bottom: 40px;
}

.searchlist .box {
    width: 100%;
    border: 1px solid #DBDBDB;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;
}


.searchlist .box .title {
    color: #3D3D3D;
    line-height: 25px;
}

.searchlist .box .desc {
    color: #666;
    line-height: 21px;
    height: 42px;
    margin: 10px 0;
}

.searchlist .box .dete {
    color: #666;
    margin-top: 10px;
}

.searchlist .box:hover {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.searchBox {
    width: 100%;
    padding-bottom: 40px;
}

/* --------------- */

.head h1 img{max-width:100%}

.header_active,
.header_active1 {
    width: 100%;
    background: #fff;
    height: 100px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1);
}

.header_active1::before,
.header_active::before {
    display: none;
}

.header_active1 .con h1 .img1,
.header_active .con h1 .img1 {
    display: none;
}

.header_active1 .con h1 .img2,
.header_active .con h1 .img2 {
    display: block !important;
}

.header_active1 .navgation ul li h3 a,
.header_active .navgation ul li h3 a {
    color: #2E2E2E;
}

.header_active1 .topLink a,
.header_active .topLink a {
    color: #2E2E2E;
    background: none;
    border: 0.5px solid #E2E2E2;
}

.header_active1 .topLink .ss,
.header_active .topLink .ss {
    background: none;
    border: 0.5px solid #E2E2E2;
}


.topLink .ss .img2 {
    display: none;
}

.header_active1 .topLink .ss .img1,
.header_active .topLink .ss .img1 {
    display: none;
}

.header_active1 .topLink .ss .img2,
.header_active .topLink .ss .img2 {
    display: block;
}

.header_active .navgation ul li.on h3 a,
.header_active .navgation ul li:hover h3 a {
    color: #1968FC;
}

.header_active1 .navgation ul li.on h3 a,
.header_active1 .navgation ul li:hover h3 a {
    color: #1968FC;
}


/* --------------------- */

.header_new {
    width: 100%;
}

.head {
    width: 100%;
    background: url(../img/headBg.jpg) center no-repeat;
    background-size: cover;
}

.head .container {
    height: 171px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search {
    width: 300px;
    position: relative;
    float: right;
}

.search input {
    border: none;
}

.search input.search-in {
    width: 300px;
    height: 52px;
    border-radius: 10px;
    line-height: 30px;
    box-sizing: border-box;
    color: #999;
    padding-left: 15px;
    outline: none;
    border: 1px solid #1269CA;
    font-size: 16px;
}

.search input.search-btn {
    position: absolute;
    right: 20px;
    top: 14px;
    border: none;
    width: 25px;
    height: 24px;
    background: url(../img/bw_ss.png) center no-repeat;
}

/* Safari，Chrome WebKit browsers */
.search input::-webkit-input-placeholder {
    color: #999;
}

/* 火狐 Mozilla Firefox 4 to 18 */
.search input:-moz-placeholder {
    color: #999;
}

/* 火狐 Mozilla Firefox 19+ */
.search input::-moz-placeholder {
    color: #999;
}

/* Internet Explorer 10+ */
.search input:-ms-input-placeholder {
    color: #999;
}

.toplink {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
}

.toplink a {
    color: #9E9E9E;
}

.toplink span {
    display: inline-block;
    margin: 0 10px;
    color: #9E9E9E;
}

.navigation {
    width: 100%;
    position: relative;
    z-index: 99;
    background: #1968FC;
}

.nav {
    width: 100%;
    height: 68px;
    line-height: 68px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.nav a {
    color: #fff;
}

.nav .nLi {
    float: left;
    display: inline;
    text-align: center;
    position: relative;
    margin-left: 55px;
}


.nav .nLi h3 {
    height: 68px;
    font-weight: normal;
    position: relative;
}

.nav .nLi h3::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 9px;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
}

.nheader .nav .nLi h3::before {
    background: #0B5D98;
}

.nav .nLi.on h3::before,
.nav .nLi:hover h3::before {
    opacity: 1;
}

.nav .nLi h3 a {
    display: inline-block;
    font-size: 20px;
    text-align: center;
}

.nav .sub {
    display: none;
    width: 140px;
    top: 100%;
    position: absolute;
    left: -35px;
    border-radius: 0px 10px 0px 10px;
    background: rgba(0, 83, 163, 0.83);
    border: 0.5px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(4px);
}

.nav .sub li {
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    zoom: 1;
    float: left;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.nav .sub li:last-of-type {
    border: none;
}

.nav .sub a {
    display: block;
    color: #fff;
    font-size: 16px;
}

.nav .sub a:hover {
    color: #fff;
    font-weight: bold;
}

.nav .on h3 a,
.nav .nLi:hover h3 a {
    font-weight: bold;
    color: #fff;
}

.nheader .nav .on h3 a,
.nheader .nav .nLi:hover h3 a {
    color: #0B5D98;
}

.nav .nLi.on,
.nav .nLi:hover {
    position: relative;
}

.nav .sub li .three-nav {
    position: absolute;
    left: 100%;
    display: none;
    top: 0;
    width: 200%;
    background: rgba(0, 0, 0, .7);
}

.nav .sub li .three-nav a {
    color: #fff;
}

.nav .sub li:hover .three-nav {
    display: block;
}

.nav .nLi:hover .sub {
    display: block;
}