body {
    color: #2b2e2e;
    font-size: 16px;
}

a {
    color: #2b2e2e;
    text-decoration: none;
}

a:hover {
    color: #194ac3;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

[v-cloak] {
    display: none;
}

/* 头部 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    line-height: 72px;
}

.header .wrap {
    display: flex;
}

.header-item {
    flex: auto;
    height: 100%;
}

.logo {
    /* flex-grow: 2; */
}

.logo img {
    height: 40px;
    vertical-align: middle;
}

.nav {
    width: 40%;
    font-size: 16px;
}

.nav>ul {
    display: flex;
    height: 100%;
}

.nav>ul>li {
    flex: 1;
    text-align: center;
    position: relative;
}

.nav li a {
    display: block;
    font-size: 18px;
    line-height: 72px;
    color: #fff;
}

.nav>ul>li:hover:after {
    width: calc(100% - 40px);
}

.nav>ul>li:after {
    content: "";
    display: block;
    height: 4px;
    width: 0px;
    transition: all 0.2s ease-out;
    margin: -20px auto 0;
    background-color: #fff;
}

.nav .nav-current:after {
    width: calc(100% - 40px);
}

.nav-current>a {
    color: #2d3d8c;
    font-weight: bold;
}

.nav>ul>li:hover .nav-second {
    display: block;
}

/* 二级导航 */
.nav-second {
    background-color: #fff;
    position: absolute;
    top: 72px;
    left: 0;
    width: calc(100% + 40px);
    transition: all .3s;
    display: none;
}

.nav-second li {
    height: 48px;
    line-height: 48px;
    text-align: left;
    padding-right: 10px;
}

.nav-second li a {
    display: block;
    padding-left: 15px;
    font-size: 14px;
    line-height: 48px;
    color: #2b2e2e;
    opacity: .7;
}

.nav-second li:hover {
    background-color: #f6f6f6;
}

.nav-second li:hover a {
    opacity: 1;
}

.nav-second .has-sublevel>a,
.mobile-nav-bar-wrap .has-sublevel>a {
    background: url(../images/icon/arrow.png) no-repeat right center;
    background-size: 10px;
}

.nav-second .has-sublevel:hover>a,
.mobile-nav-bar-wrap .has-sublevel:hover>a {
    background-image: url(../images/icon/arrow-hover.png);
}

.nav-second li:hover .nav-third {
    display: block;
}

/* 三级 */
.nav-third {
    width: 100%;
    min-height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    background-color: #f6f6f6;
    transition: all .3s;
    display: none;
}

.nav-second .nav-third li a {
    background: none;
}

.nav-second .nav-third li:hover a {
    color: #194ac3;
}

.search {
    text-align: right;
    position: relative;
}

.search-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.search-wrap input {
    box-sizing: border-box;
    width: calc(100% - 20px);
    border: 1px solid #fff;
    outline: none;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    border-radius: 50px;
    padding: 0 40px 0 20px;
    background-color: transparent;
    color: #fff;
}

.search-wrap button {
    position: absolute;
    top: 21px;
    right: 6px;
    width: 32px;
    height: 32px;
    border: 0;
    background: url(../images/icon/search.png) no-repeat center;
    background-size: 24px;
    outline: none;
    cursor: pointer;
}

.search-wrap button:hover {
    background-image: url(../images/icon/search-blue.png);
}

/* 白色header */
.header {
    transition: all .2s;
}

.header-fixed {
    background-color: #fff;
}

.header-fixed .nav>ul>li:after {
    background-color: #194ac3;
}

.header-fixed .nav li a {
    color: #2b2e2e;
}

.header-fixed .search-wrap input {
    border-color: #194ac3;
    color: #2b2e2e;
}

.header-fixed .search-wrap button {
    background-image: url(../images/icon/search-blue.png);
}

.logo-blue {
    display: none;
}

.header-fixed .logo img {
    display: none;
}

.header-fixed .logo .logo-blue {
    display: inline-block;
}


/* banner */
.banner,
.banner img {
    width: 100%;
}




/* 返回顶部 */
.top {
    width: 66px;
    height: 66px;
    line-height: 60px;
    position: fixed;
    bottom: 40px;
    right: 39px;
    z-index: 1000000;
    text-align: center;
    display: none;
    cursor: pointer;
    border: 1px solid #3982f7;
    border-radius: 100%;
    background-image: url('../images/icon/to-top.png');
    background-repeat: no-repeat;
    background-size: 60% 60%;
    background-position: center;
}

.top:hover {
    background-color: #194ac3;
    background-image: url('../images/icon/to-top-hover.png');
}

.top img {
    width: 58%;
    vertical-align: middle;
}

/* 轮播 */
.banner .swiper-slide {
    height: 720px;
    position: relative;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 10;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 54px;
    left: 50%;
    bottom: 150px;
    top: auto;
    transform: translateX(calc(-50% - 600px + 27px));
}

.banner .swiper-button-next {
    transform: translateX(calc(-50% - 600px + 108px));
}

.banner .swiper-button-prev {

    transform: translateX(calc(-50% - 600px + 27px)) scaleX(-1);
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 0;
    width: 54px;
    height: 54px;
    background: url(../images/icon/icon_arrow_r.png) no-repeat center left;
    background-size: contain;
}

.banner-text {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 11;
    margin: 0 auto;
}

.banner-text h2 {
    font-size: 44px;
    font-weight: normal;
    line-height: 66px;
    margin-bottom: 10px;
    opacity: 0;
    transition: ease all 0.5s;
    transform: translate(120px);
    transition-delay: 0.2s;
}

.swiper-slide-active .banner-text h2 {
    opacity: 1;
    transform: translate(0px);
}

.banner-text p {
    max-width: 720px;
    font-size: 18px;
    line-height: 32px;
    opacity: 0;
    transition: ease all 0.5s;
    transform: translate(120px);
    transition-delay: 0.4s;
}

.swiper-slide-active .banner-text p {
    opacity: 1;
    transform: translate(0px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 0;
    transition: ease all 0.3s;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets {
    width: 1200px;
    text-align: right;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid #fff;
    line-height: 44px;
    padding-bottom: 24px;
}

.banner .swiper-pagination-bullet-active {
    background: #194ac3;
    width: 30px;
}


/* 模块1 */
.section-title {
    color: #fff;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    margin: 12px 0;
    line-height: 46px;
}

.section1 {
    background-color: #f0f4fd;
}

.section1 .wrap {
    margin-top: -120px;
    position: relative;
    z-index: 1;
}

.section1-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.section1-item {
    width: 32%;
    background-color: #fff;
    margin-bottom: 24px;
    padding-bottom: 14px;
}

.section1-item:hover {
    transform: translateY(-4px);
    transition: ease all 0.3s;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
}

.section1-item:hover img {
    transform: scale(1.05);
    transition: ease all 0.3s;
}


.section1-item:first-child {
    width: 66%;
}

.section1-item:nth-child(2),
.section1-item:nth-child(3),
.section1-item:nth-child(8) {
    background-color: #194ac3;
}

.section1-item:nth-child(2) a,
.section1-item:nth-child(3) a,
.section1-item:nth-child(8) a {
    color: #fff;
}

.section1-item:first-child img {
    height: 306px;
    object-fit: cover;
}

.section1-item-pic {
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.section1-item-pic,
.section1-item-pic img {
    display: block;
    width: 100%;
}

.section1-item-text {
    padding: 36px 24px;
}

.section1-item-time {
    color: #194ac3;
    overflow: hidden;
    font-size: 14px;
    line-height: 28px;
    height: 30px;
    display: inline-block;
    position: relative;
    border-top: 1px solid rgba(25, 74, 195, 1);
    padding: 0px 30px;
    left: -24px;
}

.section1-item-time:before {
    content: "";
    display: block;
    position: absolute;
    left: calc(100% - 12px);
    bottom: 0px;
    width: 100%;
    border-top: 1px solid #194ac3;
    transform: rotate(-69deg) translate(-1px, 0px);
    transform-origin: 0px 0px;
}

.section1-item-time:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: calc(100% - 12px);
    border-top: 1px solid rgba(25, 74, 195, 1);
}

.section1-item:nth-child(2) .section1-item-time,
.section1-item:nth-child(3) .section1-item-time,
.section1-item:nth-child(8) .section1-item-time {
    color: #ffff;
    border-top-color: #fff;
}

.section1-item:nth-child(2) .section1-item-time:before,
.section1-item:nth-child(2) .section1-item-time:after,
.section1-item:nth-child(3) .section1-item-time:before,
.section1-item:nth-child(3) .section1-item-time:after,
.section1-item:nth-child(8) .section1-item-time:before,
.section1-item:nth-child(8) .section1-item-time:after {
    border-color: #ffff;
}


.section1-item-text h3 {
    margin: 24px 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
}

.section1-item-text p {
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 模块2 */
.section2-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
}

.section2-item {
    width: 32%;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
}

.section2-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.section2-item a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.section2-item img {
    width: 100%;
}

.section2-item h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    font-size: 30px;
    font-weight: 500;
}

.section2-item h2:after {
    content: "";
    display: block;
    margin: 12px 0px 0px 0px;
    width: 1%;
    height: 2px;
    background: #FFF;
    opacity: 0;
}

.section2-item:hover a:after {
    background: rgba(25, 74, 195, 0.8);
    transition: ease all 0.3s;
}

.section2-item:hover h2:after {
    width: 100%;
    opacity: 1;
    transition: ease all 0.3s;
}

.section2-item:hover img {
    transform: scale(1.1);
    transition: ease all 0.3s;
}

/* 模块3 */
.section3 {
    background-color: #1B1F25;
}

.section3-list {
    display: flex;
    flex-wrap: wrap;
}

.section3-item {
    width: 50%;
    overflow: hidden;
}

.section3-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.section3-item a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}

.section3-item img {
    display: block;
    width: 100%;
}

.section3-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 24px;
    z-index: 10;
    transition: all .2s;
}

.section3-item:hover .section3-text {
    bottom: 0;
}

.section3-item:hover .section3-text p {
    display: block;
}

.section3-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.section3-text h2::after {
    content: "";
    display: block;
    position: absolute;
    width: 36px;
    height: 24px;
    opacity: 0;
    top: calc(50% - 12px);
    right: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url(../images/icon/icon_arrow_r.png);
    transition: ease all 0.3s;
}

.section3-item:hover .section3-text h2:after {
    right: 0px;
    opacity: 1;
}

.section3-text p {
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #f0f0f0;
    display: none;
}

/* 栏目4 */

.section4 {
    padding: 72px 0;
}

.section4 .wrap {
    display: flex;
    align-items: center;
}

.section4 .swiper-container {
    width: 50%;
}

.section4 .swiper-slide {
    width: 600px;
    height: 600px;
}

.section4 .swiper-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section4 .swiper-container a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.section4 .swiper-container a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/i_tri.png) no-repeat right bottom;
    background-size: contain;
    z-index: 11;
}

.section4-text {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 48px 96px 48px 48px;
    z-index: 10;
}

.section4-text h2 {
    line-height: 34px;
}

.section4-text p {
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #f0f0f0;
    margin-top: 20px;
    margin-bottom: 12px;
    font-style: italic;
}

.section4 .banner-shade {
    background: linear-gradient(30deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
    z-index: 9;
}

.section4 .swiper-button-next:after,
.section4 .swiper-button-prev:after {
    font-size: 20px;
}

.section4 .swiper-button-next,
.section4 .swiper-button-prev {
    top: auto;
    bottom: 12px;
    opacity: 0;
    transition: all .2s;
}

.section4 .swiper-container:hover .swiper-button-next,
.section4 .swiper-container:hover .swiper-button-prev {
    opacity: 1;
}

.section4 .swiper-button-next {
    right: 60px;
}

.section4 .swiper-button-prev {
    left: auto;
    right: 100px;
}

/* 模块4，右边 */
.section4-right {
    width: 50%;
    padding-left: 72px;
}

.section4-right h2 {
    font-size: 30px;
    font-style: italic;
    line-height: 38px;
}

.section4-right p {
    line-height: 30px;
    margin: 15px 0;
    font-size: 18px;
    color: #666;
}

.section4-right img {
    width: 48px;
}

/* 分页 */
.list-page {
    /* padding: 20px 0; */
    text-align: center;
}

/* 底部 */
.footer {
    background-color: #fbfbfb;
    padding: 30px 0;
    color: #5f6464;
}

.footer h2 {
    padding-bottom: 20px;
    font-size: 22px;
}

.footer p {
    line-height: 40px;
}

.footer a {
    color: #5f6464;
}

.footer-bottom {
    text-align: center;
    background: rgba(41, 42, 44, .9);
    line-height: 26px;
    color: #b7c0c6;
    padding: 10px 0;
}

.footer-bottom a {
    color: #fff;
}

.footer .wrap {
    overflow: hidden;
}

.footer-left {
    float: left;
}

.footer-right {
    float: right;
    padding-right: 100px;
    padding-top: 60px;
}

.footer-right img {
    max-width: 166px;
}


.no-data img {
    max-width: 100%;
}

.no-data p {
    padding-top: 20px;
}

.nav-arrow {
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0px;
}

/* 列表页 */
.banner-list {
    padding-top: 72px;
    position: relative;
    margin-bottom: 20px;
}

.banner-list h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% + 36px);
    color: #fff;
    font-size: 28px;
    font-weight: 400;
}

/* 面包屑 */
.crumbs {
    line-height: 56px;
    /* background-color: #f2f3f5; */
}

.crumbs span {
    padding: 0 5px;
}

/* 列表 */

.list ul {
    margin-top: 20px;
}

.list li {
    overflow: hidden;
    margin-bottom: 20px;
    padding: 20px 20px 40px;
    border-bottom: 1px solid #f4f4f4;
}

.list-left {
    float: left;
}

.list-left img {
    width: 250px;
    margin-right: 30px;
}

.list-right p {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0 20px;
}

.list-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 24px;
    min-height: 48px;
}

.list-time {
    margin-top: 13px;
    overflow: hidden;
    font-size: 14px;
    line-height: 28px;
    height: 30px;
    display: inline-block;
    position: relative;
    border-top: 1px solid rgba(25, 74, 195, 1);
    padding: 0px 30px;
    color: rgba(25, 74, 195, 1);
    border-left: 1px solid rgba(25, 74, 195, 1);
}

.list-time:before {
    content: "";
    display: block;
    position: absolute;
    left: calc(100% - 12px);
    bottom: 0px;
    width: 100%;
    border-top: 1px solid rgba(25, 74, 195, 1);
    transform: rotate(-69deg) translate(-1px, 0px);
    transform-origin: 0px 0px;
}

.list-time:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: calc(100% - 12px);
    border-top: 1px solid rgba(25, 74, 195, 1);
}

.list-page {
    padding: 20px 0;
}

/* 正文页 */
.article {
    background-color: #fff;
    margin: 10px auto 20px;
    padding: 0 20px 20px;
}

.article-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    line-height: 34px;
    padding: 20px 0;
}

.article-msg {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #D8D9DC;
    color: #5F6464;
}

.article-msg span {
    margin: 0 10px;
}

.article-content {
    padding: 25px 10px;
    line-height: 36px;
    font-size: 16px;
    word-break: break-all;
}

.article-content img {
    max-width: 100%;
}

.qrcode-warp {
    text-align: center;
    font-size: 14px;
    margin: 20px auto;
}

.qrcode-warp canvas {
    max-width: 130px;
    max-height: 130px;
}

.qrcode-warp-desc {
    margin-top: 6px;
}