/*
头部 header
**/
.fiexd {
    position: fixed;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    transition: top 0.3s ease;
    /* 添加过渡动画 */
}

.fiexd1 {
    -webkit-box-shadow: 10px 0px 10px 10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.header {
    width: 100%;
    height: 57px;
    padding: 15px 0;
    background-color: var(--background);
    position: relative;
}

.header .content {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header .content .logo {
    width: 45%;
    height: auto;
    display: none
}

.header .content .logo.wd {
    width: 0;
}

.header .content .logo img {
    width: 100%;
}

.header .content .header__links.active .hamburger-wrap,
.header .content .header__links.active .lang,
.header .content .header__links.active .holder {
    display: none;
}

.header .content .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: stretch;
    flex-wrap: stretch;
    position: relative;
}

.header .content .links .lang {
    color: var(--color);
    font-size: 16px;
    -webkit-transition: color 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    font-family: "RobotoCondensedRegular";
}

.header .content .links .lang::after {
    background: currentColor;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
}

.header .content .links .lang:hover:after {
    height: 2px;
    opacity: 1;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.header .content .links .holder {
    margin: 0 0.9em;
    font-size: 16px;
    color: var(--color);
}

.header .content .links .hamburger-wrap {
    color: var(--color);
    font-size: 16px;
    -webkit-transition: color 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    font-family: "RobotoCondensedRegular";
}

.header .content .links .hamburger-wrap::after {
    background: currentColor;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
}

.header .content .links .hamburger-wrap:hover:after {
    height: 2px;
    opacity: 1;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.header .content .links .retrieval {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1em;
    position: relative;
}

.header .content .links .retrieval .retrieval-from {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    opacity: 0;
    position: relative;
    -webkit-transform: translateX(180deg);
    transform: translateX(180deg);
    -webkit-transition: width 0.35s, -webkit-transform 0.35s;
    transition: width 0.35s, -webkit-transform 0.35s;
    transition: transform 0.35s, width 0.35s;
    transition: transform 0.35s, width 0.35s, -webkit-transform 0.35s;
}

.header .content .links .retrieval .retrieval-from.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

.header .content .links .retrieval .retrieval-from.show button {
    width: 0.19rem;
    margin-left: 0;
    margin-right: 0.5em;
}

.header .content .links .retrieval .retrieval-from.show input {
    width: 3rem;
    padding: 0 0.5em 0px;
}

.header .content .links .retrieval .retrieval-from.show:after {
    left: 0;
}

.header .content .links .retrieval .retrieval-from button {
    background-color: transparent;
    border: none;
    width: 0;
}

.header .content .links .retrieval .retrieval-from input {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    width: 0;
}

.header .content .links .retrieval .retrieval-from:after {
    background-color: #fff;
    border-radius: 2px;
    bottom: -5px;
    content: " ";
    height: 2px;
    left: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header .content .links .retrieval .search {
    background: url(../images/search.png) no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 19px;
    margin-left: 1em;
    width: 19px;
}

.header .content .links .retrieval .search.active {
    background-image: url(../images/20230714154629.png);
}

.header .content .links .link {
    width: 2.5em;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.625em auto;
    margin-left: 0.4em;
    line-height: 1.025em;
}

.header .content .links .icon-hamburger {
    overflow: hidden;
    text-align: center;
    display: none;
}

.header .content .links .icon-hamburger .inner {
    width: 24px;
    display: inline-block;
    overflow: hidden;
}

.header .content .links .icon-hamburger .line {
    width: 100%;
    height: 2px;
    display: block;
    background: #ffffff;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.header .content .links .icon-hamburger .line:nth-child(2) {
    margin: 6px 0;
}

.header .content .links .icon-hamburger.on .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.header .content .links .icon-hamburger.on .line:nth-child(2) {
    opacity: 0;
}

.header .content .links .icon-hamburger.on .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.header .content .links .icon-close {
    display: none;
    position: absolute;
    right: 0;
    top: 1px;
    background-color: var(--background);
}

.header .pop-ph-nav {
    width: 100%;
    display: none;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 200;
    background: rgba(0, 0, 0, 0.3);
}

.header .pop-ph-nav .ph-nav-list {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 100;
    background: #fff;
    -webkit-box-shadow: inset 0 5px 5px -5px #ccc;
    box-shadow: inset 0 5px 5px -5px #ccc;
}

.header .pop-ph-nav .ph-nav-list a {
    display: block;
    font-family: "RobotoRegular";
}

.header .pop-ph-nav .ph-nav-list>li {
    position: relative;
    border-bottom: solid 1px #ececec;
}

.header .pop-ph-nav .ph-nav-list li:last-child {
    border-bottom: none;
}

.header .pop-ph-nav .ph-nav-list>li.on .nav-level1 .arrow {
    background: url(../images/icon2.png) no-repeat center center;
}

.header .pop-ph-nav .ph-nav-list>li.has-subnav .nav-level1 .arrow {
    display: block;
}

.header .pop-ph-nav .ph-nav-list .nav-level1 {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 0 4%;
    font-size: 1.125em;
    line-height: 3.5em;
    position: relative;
}

.header .pop-ph-nav .ph-nav-list .nav-level1 a {
    float: left;
    color: #003f88;
}

.header .pop-ph-nav .ph-nav-list .nav-level1 .arrow {
    width: 0.8em;
    height: 0.8em;
    display: none;
    overflow: hidden;
    background: url(../images/icon1.png) no-repeat center center;
    position: absolute;
    right: 0.937em;
    top: 1.3em;
}

.header .pop-ph-nav .pop-links {
    background-color: var(--background);
}

.header .pop-ph-nav .pop-links ul {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    padding: 10px 0;
}

.header .pop-ph-nav .pop-links ul .icons {
    width: 26px;
    height: 26px;
    position: relative;
    margin: 0 9px;
}

.header .pop-ph-nav .pop-links ul .icons:first-child {
    margin-left: 0;
}

.header .pop-ph-nav .pop-links ul .icons:first-child .icon {
    background-image: url(../images/bilibili-line.png);
}

.header .pop-ph-nav .pop-links ul .icons:first-child:hover .icon {
    background-image: url(../images/bilibili-line_hover.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(2) .icon {
    background-image: url(../images/20230714153729.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(2):hover .icon {
    background-image: url(../images/20230714153829.png);
}

/*.header .pop-ph-nav .pop-links ul .icons:nth-child(3) .icon {
    background-image: url(../images/20230714153129.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(3):hover .icon {
    background-image: url(../images/20230714153429.png);
}*/

.header .pop-ph-nav .pop-links ul .icons:nth-child(3) .icon {
    background-image: url(../images/20230714153929.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(3):hover .icon {
    background-image: url(../images/20230714154029.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(4) .icon {
    background-image: url(../images/20230714154129.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(4):hover .icon {
    background-image: url(../images/20230714154229.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(5) .icon {
    background-image: url(../images/20230714154329.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(5):hover .icon {
    background-image: url(../images/20230714154429.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(6) .icon {
    background-image: url(../images/douyin.png);
}

.header .pop-ph-nav .pop-links ul .icons:nth-child(6):hover .icon {
    background-image: url(../images/douyin_hover.png);
}

.header .pop-ph-nav .pop-links ul .icons .icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    border: 1px solid var(--color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    width: 26px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 9999;
}

.header .pop-ph-nav .pop-links ul .icons .icon__bg {
    background-color: #fff;
    border-radius: 50%;
    content: " ";
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 2px;
    position: absolute;
    top: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s, -webkit-transform 0.2s;
    width: 100%;
    z-index: 0;
}

.header .pop-ph-nav .pop-links ul .icons:hover .icon__bg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.header .pop-ph-nav .pop-links .logo {
    width: 100%;
}

.header .pop-ph-nav .pop-links .icon__nav1 {
    display: none;
    padding: 20px 0 20px;
}

.header .pop-ph-nav .pop-links .icon__nav1 .lang {
    color: var(--color);
    font-size: 16px;
    -webkit-transition: color 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.header .pop-ph-nav .pop-links .icon__nav1 .lang::after {
    background: currentColor;
    content: "";
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
}

.header .pop-ph-nav .pop-links .icon__nav1 .lang:hover:after {
    height: 2px;
    opacity: 1;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.header .pop-ph-nav .pop-links .icon__nav1 .holder {
    margin: 0 0.1em;
    font-size: 16px;
    color: var(--color);
}

.header .pop-ph-nav .pop-links .icon__nav1 .hamburger-wrap {
    color: var(--color);
    font-size: 16px;
    -webkit-transition: color 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.header .ph-nav-level2 {
    width: 100%;
    display: none;
    background: #e6edf3;
    padding: 0.75em 4% 1.5em 4%;
}

.header .ph-nav-level2 .nav-level2 {
    font-size: 1em;
    line-height: 2em;
    color: #333333;
}

@media screen and (max-width: 900px) {
    .header .content {
        /* -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; */
    }

    .header .content ul {
        display: none;
    }

    .header .pop-ph-nav .pop-links ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .pop-ph-nav .pop-links ul .icons {
        margin: 0;
    }

    .header .content .links .icon-close {
        top: 1px;
    }
}

@media screen and (max-width: 580px) {
    .icon__nav {
        display: none;
    }

    .header .pop-ph-nav .pop-links .icon__nav1 {
        display: block;
    }

    .header .content .logo {
        display: block;
    }
}

@media screen and (max-width: 530px) {
    .header .pop-ph-nav .pop-links .logo {
        width: 100%;
    }

    .header .pop-ph-nav .pop-links .logo img {
        max-width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .header .pop-ph-nav .pop-links ul {
        width: 100%;
    }
}

/*
  导航 nav
  **/
.nav {
    width: 100%;
    height: 100%;
    padding: 0.2rem 0 0.22rem;
}

.nav .nav__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.nav .nav__box .logo {
    width: 4.43rem;
    /*height: 0.51rem;*/
    overflow: hidden;
}

.nav .nav__box .logo img {
    width: 100%;
    height: 100%;
}

.nav .nav__box .nav-items .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.nav .nav__box .nav-items .nav__list .nav__item {
    padding: 0 0.1rem;
    position: relative;
    -webkit-transform: var(--transition);
    transform: var(--transition);
}

.nav .nav__box .nav-items .nav__list .nav__item:last-child .drow_down {
    right: 0;
    left: auto;
}

.nav .nav__box .nav-items .nav__list .nav__item>a {
    color: var(--dark);
    font-size: 18px;
    line-height: 0.6rem;
    -webkit-transform: var(--transition);
    transform: var(--transition);
    font-family: "RobotoCondensedBold";
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down {
    position: absolute;
    opacity: 0;
    z-index: -1;
    height: 0;
    top: 0.6rem;
    width: 1.97rem;
    left: 0;
    overflow: hidden;
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li {
    padding-left: 19px;
    padding-right: 19px;
    background-color: #fff;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li:last-child a {
    border-bottom: none;
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li:hover {
    background-color: var(--background);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li:hover a {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li:hover a::after {
    opacity: 1;
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li a {
    display: block;
    line-height: 58px;
    padding-left: 6px;
    font-size: 16px;
    color: var(--dark);
    border-bottom: 1px solid #a6a6a6;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
    font-family: "RobotoCondensedBold";
}

.nav .nav__box .nav-items .nav__list .nav__item .drow_down li a::after {
    content: "";
    opacity: 0;
    width: 8px;
    height: 13px;
    background: url(../images/20230717095501.png) no-repeat left center;
    background-size: 8px 13px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav .nav__box .nav-items .nav__list .nav__item.active {
    background: #c11d43;
    -webkit-transform: var(--transition);
    transform: var(--transition);
}

.nav .nav__box .nav-items .nav__list .nav__item.active a {
    color: var(--color);
}

@media screen and (max-width: 1450px) {
    .nav .nav__box .nav-items .nav__list .nav__item>a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1232px) {
    .nav .nav__box .nav-items .nav__list .nav__item>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1080px) {
    .nav .nav__box .nav-items .nav__list .nav__item {
        padding: 0 0.10rem;
    }

    .nav .nav__box .nav-items .nav__list .nav__item>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 925px) {
    .nav .nav__box .nav-items .nav__list .nav__item {
        padding: 0 .10rem;
    }
}

@media screen and (max-width:1100px) {
    .header {
        position: fixed;
        z-index: 999;
    }

    .header .content .links .icon-hamburger {
        display: block;
    }

    .nav {
        display: none;
    }
}

/*
  轮播图  banner
  **/
.banner {
    width: 100%;
    height: 5.2rem;
    box-sizing: content-box;
}

.banner .swiper-container {
    width: 100%;
    height: 5.2rem;
    position: relative;
}

.banner .swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner {
    width: 100%;
    height: 100%;
    background: no-repeat center center / cover;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .layout {
    width: 100%;
    height: 100%;
    position: relative;
}
/*.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text {
width: 3.56rem;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-top: 0.45rem;
padding-bottom: 0.7rem;
background-color: var(--background);
position: relative;
left: 0;
right: auto;
top: 50%;
-webkit-transform: translateY(-50%) !important;
z-index: 2;
} */
.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text{
/* width: 51%; */max-width: 50%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-top: 8px;
padding-bottom: 8px;
background-color: var(--background);
position: absolute;
left: 0;
right: auto;
bottom: 37px;
/* -webkit-transform: translateY(-50%) !important; */
z-index: 2;
}
.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .title {
font-size: .2rem;
line-height: 0.48rem;
color: var(--color);
text-align: left;
padding: 0 .91rem 0 .57rem;
font-weight: bold;
overflow: hidden;
-webkit-line-clamp: 2;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
display: block;
max-width: 100%;
background: url(../images/banner-button.png) no-repeat right 20px center;background-size: 0.32rem 0.12rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/*
.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .title {
font-size: 0.33rem;
line-height: 0.48rem;
color: var(--color);
text-align: center;
padding: 0 0.57rem;
font-weight: bold;
overflow: hidden;
-webkit-line-clamp: 2;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
display: block;
}*/

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .content {
    font-size: 0.16rem;
    text-align: center;
    color: var(--color);
    padding: 0.26rem 0.12rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .button {
    background: url(../images/banner-button.png) no-repeat center center;
    width: 0.32rem;
    height: 0.12rem;
    background-size: 0.32rem 0.12rem;
    margin: 0 auto;
    display: block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .button:hover {
    transform: translateX(10px);
    -webkit-transition: var(--transition);
    transition: var(--transition);

}

.banner .swiper-container .swiper-wrapper .swiper-slide .slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.11);
}

.banner .swiper-container .layout {
    position: relative;
}

.banner .swiper-container .layout .btn {
    width: 100%;
    position: absolute;
    height: 13px;
    right: 0;
    bottom: 0.55rem;
    padding: 0;
    z-index: 3;
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.banner .swiper-container .layout .btn .dots {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.banner .swiper-container .layout .btn .dots .swiper-pagination-bullet {
    float: left;
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background: #fff;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid #dbdbdb;
    margin-right: 10px;
}

.banner .swiper-container .layout .btn .dots .swiper-pagination-bullet-active {
    background-color: #aa0d32;
    border: 1px solid #aa0d32;
    width: 30px;
    border-radius: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.banner .swiper-container .layout .btn .dots .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.banner .swiper-container .swiper-button-prev {
    left: 5%;
    width: 0.84rem;
    height: 0.5rem;
    border-top-right: none;
    background: url(../images/banner-prev.png) no-repeat left center;
    background-size: 0.84rem 0.5rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.banner .swiper-container .swiper-button-next {
    right: 5%;
    width: 0.84rem;
    height: 0.5rem;
    background: url(../images/banner-next.png) no-repeat left center;
    background-size: 0.84rem 0.5rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media screen and (max-width: 1833px) {
    .banner .swiper-container .swiper-button-prev {
        left: 2%;
    }

    .banner .swiper-container .swiper-button-next {
        right: 2%;
    }

   /* .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text {
        left: 4%;
    }

    .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text {
        width: 3.86rem;
    }
*/
    .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .content {
        padding: 0.36rem 0.1rem;
    }
}

@media screen and (max-width: 1589px) {
/*    .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text {
        left: 10%;
    }*/
}

@media screen and (max-width: 1450px) {
    .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text .content {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
   /* .banner .swiper-container .swiper-wrapper .swiper-slide .slide-inner .text {
        display: none;
    }*/
}

/*
  新闻 index__news
  **/
.index__news {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.46rem 0 0.49rem;
}

.index__news .content {
    padding-top: 0.46rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.index__news .content .left {
    width: 62%;
}

.index__news .content .left .left_box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.index__news .content .left .left__items {
    width: 48%;
    height: 100%;
}

.index__news .content .left .left__items .items_box a .img1 {
    width: 100%;
    height: 2.51rem;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .left .left__items .items_box a .img1 img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.index__news .content .left .left__items .items_box a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .left .left__items .items_box a:hover .text {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-image: url(../images/left__items-h.png);
}

.index__news .content .left .left__items .items_box a:hover .text .title {
    color: var(--background);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .left .left__items .items_box a:hover .text .keys {
    color: #999999;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .left .left__items .items_box a:hover .text .date span {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: #999999;
    background-image: url(../images/20230717155303-h.png);
}

.index__news .content .left .left__items .items_box a .text {
    width: 100%;
    padding-top: 0.4rem;
    padding-bottom: 0.37rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0.4rem;
    padding-right: 0.32rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .left .left__items .items_box a .text .title {
    font-size: var(--fontsize);
    color: #fefefe;
    line-height: 0.3rem;
    font-weight: bold;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 0.6rem;
    margin-bottom: 0.24rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-family: "RobotoCondensedRegular";
}

.index__news .content .left .left__items .items_box a .text .keys {
    font-size: 0.16rem;
    color: var(--color);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-orient: vertical;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 0.38rem;
    margin-bottom: 0.24rem;
    font-family: "RobotoCondensedRegular";
}

.index__news .content .left .left__items .items_box a .text .date span {
    font-size: 0.16rem;
    color: var(--color);
    line-height: 0.3rem;
    padding-left: 0.3rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: -5px;
}

.index__news .content .left .left__items1 .items_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.index__news .content .left .left__items1 .items_box a .text {
    background: url(../images/left__items1.png) no-repeat center center / cover;
}

.index__news .content .left .left__items1 .items_box a .text .date span {
    background: url(../images/20230717155303.png) no-repeat left center;
}

.index__news .content .left .left__items2 .items_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.index__news .content .left .left__items2 .items_box .text {
    background: url(../images/left__items2.png) no-repeat center center / cover;
}

.index__news .content .left .left__items2 .items_box .text .date span {
    background: url(../images/20230717155303.png) no-repeat left center;
}

.index__news .content .right {
    width: calc(100% - 64%);
}

.index__news .content .right .right__box {
    width: 100%;
    height: 100%;
}

.index__news .content .right .right__box .list__box {
    width: 100%;
    height: 100%;
}

.index__news .content .right .right__box .list__box li {
    border-bottom: 1px dashed rgba(0, 0, 0, 24%);
    padding-bottom: 0.085rem;
    margin-bottom: 0.1rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .right .right__box .list__box li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.index__news .content .right .right__box .list__box li a .date {
    display: table-row;
    border: 1px solid #dcdcdc;
    width: 0.82rem;
    height: 0.66rem;
    text-align: center;
}

.index__news .content .right .right__box .list__box li a .date .dd {
    display: block;
    font-size: 0.24rem;
    color: var(--background);
    font-weight: bold;
    line-height: 0.3rem;
    padding-top: 0.02rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .right .right__box .list__box li a .date .yy {
    display: block;
    font-size: 0.16rem;
    color: var(--dark);
    line-height: 0.3rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-family: "RobotoCondensedRegular";
}

.index__news .content .right .right__box .list__box li a .list__content {
    padding-left: 0.2rem;
    padding-right: 6px;
    width: 85%;
}

.index__news .content .right .right__box .list__box li a .list__content .title {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 0.18rem;
    color: var(--dark);
    line-height: 0.3rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-family: "RobotoCondensedRegular";
}

.index__news .content .right .right__box .list__box li:last-child {
    margin-bottom: 0;
}

.index__news .content .right .right__box .list__box li:hover {
    padding-left: 10px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .right .right__box .list__box li:hover .date {
    background-color: var(--background);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__news .content .right .right__box .list__box li:hover .date .dd {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--color);
}

.index__news .content .right .right__box .list__box li:hover .date .yy {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--color);
}

.index__news .content .right .right__box .list__box li:hover .list__content .title {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--background);
}

@media screen and (max-width: 1210px) {
    .index__news .content .left .left__items .items_box a .text .keys {
        max-height: calc(16px * 2);
    }
}

@media screen and (max-width: 980px) {
    .index__news .content .right .right__box .list__box li {
        margin-bottom: 0.15rem;
    }
}

@media screen and (max-width: 830px) {

    .index__news .content .left,
    .index__news .content .right {
        width: 100%;
    }

    .index__news .content .right {
        margin-top: 20px;
    }

    .index__news .content .left .left__items .items_box a .text .title {
        font-size: 18px;

        line-height: 30px;
    }

    .index__news .content .left .left__items .items_box a .text .keys {
        font-size: 14px;
        max-height: calc(16px * 3);
    }

    .index__news .content .left .left__items .items_box a .text .date span {
        font-size: 16px;
    }

    .index__news .content .right .right__box .list__box li a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .index__news .content .right .right__box .list__box li a .list__content {
        width: 91%;
    }

    .index__news .content .right .right__box .list__box li a .list__content .title {
        font-size: 18px;
        line-height: 30px;
    }

    .index__news .content .right .right__box .list__box li a .date {
        width: 62px;
        height: 62px;
    }

    .index__news .content .right .right__box .list__box li a .date .dd {
        font-size: 18px;
        line-height: 30px;
    }

    .index__news .content .right .right__box .list__box li a .date .yy {
        font-size: 16px;
        line-height: 30px;
    }
}

@media screen and (max-width: 650px) {
    .index__news .content .left .left__items {
        width: 50%;
    }
}

@media screen and (max-width: 520px) {
    .index__news .content .left .left__items {
        width: 100%;
        margin-bottom: 10px;
    }

    .index__news .content .left .left__items2 .items_box a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .index__news .content .left .left__items .items_box a .img1 {
        height: 218px;
    }

    .index__news .content .left .left__items .items_box a .text .keys {
        max-height: 40px;
        margin-bottom: 24px;
    }

    .index__news .content .left .left__items .items_box a .text .title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .index__news .content .left .left__items .items_box a .text .keys {
        font-size: 16px;
    }

    .index__news .content .left .left__items .items_box a .text .date span {
        padding-left: 0.45rem;
        font-size: 16px;
    }
}

/*
  活动预告 index__events
  **/
.index__events {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.55rem 0 0.59rem;
    background: #f2f3f4;
}

.index__events .content {
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.index__events .content .left {
    width: 50.8%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.index__events .content .left .events__items {
    width: 48.3%;
    height: 100%;
}

.index__events .content .left .events__items .items__box {
    width: 100%;
    height: 100%;
}

.index__events .content .left .events__items .items__box .img1 {
    width: 100%;
    height: 2rem;
    overflow: hidden;
    position: relative;
}

.index__events .content .left .events__items .items__box .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .left .events__items .items__box .img1:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .left .events__items .items__box .img1 .vbs {
    padding: 0 0.17rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--background);
    line-height: 0.33rem;
    text-align: center;
    color: var(--color);
    font-size: 0.14rem;
}

.index__events .content .left .events__items .items__box .text {
    background-color: var(--color);
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.31rem 0.33rem 0.29rem 0.24rem;
}

.index__events .content .left .events__items .items__box .text .title {
    position: relative;
}

.index__events .content .left .events__items .items__box .text .title span {
    display: block;
    color: var(--dark);
    font-weight: bold;
    line-height: 0.3rem;
    font-size: 0.18rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0.2rem;
    min-height: 0.6rem;
    font-family: "RobotoCondensedBold";
}

.index__events .content .left .events__items .items__box .text .title::before {
    content: "";
    width: 0;
    height: 3px;
    display: block;
    position: absolute;
    bottom: -8px;
    left: 0;
    background-color: #003f88;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.index__events .content .left .events__items .items__box .text p {
    margin-bottom: 0.07rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "RobotoCondensedRegular";
}

.index__events .content .left .events__items .items__box .text p i {
    font-size: 0.16rem;
    color: #666666;
    font-style: normal;
    padding-left: 0.36rem;
    background: no-repeat left 0.07rem center;
}

.index__events .content .left .events__items .items__box .text p span {
    padding-left: 0.08rem;
    font-size: 0.16rem;
    color: #666666;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index__events .content .left .events__items .items__box .text p:last-child {
    margin-bottom: 0;
}

.index__events .content .left .events__items .items__box .text .days i {
    background-image: url(../images/days.png);
    background-size: 0.14rem 0.14rem;
}

.index__events .content .left .events__items .items__box .text .dates i {
    background-image: url(../images/dates.png);
    background-size: 0.14rem 0.14rem;
}

.index__events .content .left .events__items .items__box .text .place i {
    background-image: url(../images/place.png);
    background-size: 0.16rem 0.17rem;
}

.index__events .content .left .events__items .items__box .text .events-lik {
    text-align: right;
    margin-top: 0.27rem;
}

.index__events .content .left .events__items .items__box .text .events-lik span {
    font-size: 0.14rem;
    color: #666;
    line-height: 0.3rem;
    padding-right: 0.26rem;
    background: url(../images/events-herf.png) no-repeat right center;
    background-size: 0.21rem 0.07rem;
    vertical-align: -5px;
}

.index__events .content .left .events__items .items__box:hover .img1 img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .left .events__items .items__box:hover .title span {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--background);
}

.index__events .content .left .events__items .items__box:hover .events-lik span {
    color: var(--background);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .left .events__items .items__box:hover .title::before {
    width: 73px;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.index__events .content .left .events__items:last-child .items__box .img1 .vbs {
    background-color: #c11d43;
}

.index__events .content .right {
    width: 47.3%;
    height: 100%;
    background: url(../images/events-right.png) no-repeat right bottom / cover;
}

.index__events .content .right .events__list {
    width: 100%;
    height: 100%;
}

.index__events .content .right .events__list .events__items {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 0.177rem;
    padding-top: 0.17rem;
    padding-left: 0.23rem;
    padding-right: 0.23rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.index__events .content .right .events__list .events__items a .date {
    border-right: 1px solid #002e5f;
    padding-right: 0.21rem;
}

.index__events .content .right .events__list .events__items a .date .year {
    font-size: 0.16rem;
    color: #999999;
    line-height: 0.3rem;
}

.index__events .content .right .events__list .events__items a .date .dd {
    color: var(--background);
    font-size: var(--fontsize);
    line-height: 0.3rem;
}

.index__events .content .right .events__list .events__items a .text {
    width: 77%;
    padding-left: 0.19rem;
}

.index__events .content .right .events__list .events__items a .text .title {
    color: var(--dark);
    font-size: 0.18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "RobotoCondensedBold";
}

.index__events .content .right .events__list .events__items a .text .place {
    font-size: 0.14rem;
    color: #666666;
    padding-left: 0.18rem;
    background: url(../images/events-place.png) no-repeat left center;
    background-size: 0.11rem 0.15rem;
    margin-top: 0.13rem;
    font-family: "RobotoCondensedRegular";
}

.index__events .content .right .events__list .events__items:last-child {
    border: none;
}

.index__events .content .right .events__list .events__items:hover {
    background-color: var(--background);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items:hover a .date {
    border-right-color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items:hover a .date .year {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items:hover a .date .dd {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items:hover a .text .title {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__events .content .right .events__list .events__items:hover a .text .place {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-image: url(../images/events-place-bai.png);
}

@media screen and (max-width: 1450px) {
    .index__events .content .right .events__list .events__items a .date {
        padding-right: 0.11rem;
    }
}

@media screen and (max-width: 1145px) {
    .index__events .content .left .events__items .items__box .text {
        padding: 0.25rem 0.33rem 0.25rem 0.24rem;
    }

    .index__events .content .left .events__items .items__box .text .events-lik {
        margin-top: 0.1rem;
    }
}

@media screen and (max-width: 870px) {
    .index__events .content .left .events__items .items__box .text .events-lik {
        margin-top: 0.17rem;
    }

    .index__events .content .right .events__list .events__items a .text {
        width: 75%;
    }
}


@media screen and (max-width: 840px) {
    .index__events .content .left {
        width: 100%;
    }

    .index__events .content .left .events__items .items__box .img1 {
        height: 4rem
    }

    .index__events .content .left .events__items .items__box .img1 .vbs {
        padding: 0 17px;
        line-height: 33px;
        font-size: 14px;
    }

    .index__events .content .left .events__items .items__box .text .title span {
        line-height: 30px;
        font-size: 18px;
        margin-bottom: 20px;
        min-height: 60px;
    }

    .index__events .content .left .events__items .items__box .text p {
        margin-bottom: 7px;
    }

    .index__events .content .left .events__items .items__box .text p i {
        font-size: 16px;
        padding-left: 36px;
    }

    .index__events .content .left .events__items .items__box .text p span {
        padding-left: 8px;
        font-size: 16px;
    }

    .index__events .content .left .events__items .items__box .text .days i,
    .index__events .content .left .events__items .items__box .text .dates i {
        background-size: 14px;
    }

    .index__events .content .left .events__items .items__box .text .place i {
        background-size: 16px 17px;
    }

    .index__events .content .left .events__items .items__box .text .events-lik span {
        font-size: 14px;
        line-height: 30px;
        padding-right: 26px;
        background-size: 21px 7px;
    }

    .index__events .content .right {
        width: 100%;
        margin-top: 10px;
        background: url(../images/events-right.png) no-repeat center / cover;
    }

    .index__events .content .right .events__list .events__items a .date .year {
        font-size: 16px;
    }

    .index__events .content .right .events__list .events__items a .date .dd {
        font-size: 18px;
        line-height: 30px;
    }

    .index__events .content .right .events__list .events__items {
        padding-bottom: 17.7px;
        padding-top: 17px;
        padding-left: 23px;
        padding-right: 23px;
    }

    .index__events .content .right .events__list .events__items a .text .title {
        font-size: 18px;
    }

    .index__events .content .right .events__list .events__items a .text .place {
        font-style: 14px;
        padding-left: 18px;
        background-size: 11px 15px;
        margin-top: 13px;
    }
}

@media screen and (max-width: 700px) {
    .index__events .content .left {
        width: 100%;
    }

    .index__events .content .left .events__items .items__box .img1 {
        height: 2.5rem
    }
}

@media screen and (max-width: 600px) {
    .index__events .content .right .events__list .events__items a .date {
        border: none;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .index__events .content .right .events__list .events__items a .text {
        padding-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .index__events .content .right .events__list .events__items a .date .year {
        color: var(--background);
        font-size: 18px;
        font-weight: bold;
    }

    .index__events .content .right .events__list .events__items a .text .title {
        white-space: inherit;
        overflow: initial;
        text-overflow: initial;
    }

    .index__events .content .right .events__list .events__items a .date .dd {
        padding-left: 10px;
        font-size: 14px
    }
}

@media screen and (max-width: 480px) {
    .index__events .content .left .events__items {
        width: 100%;
        margin-bottom: 10px;
    }

    .index__events .content .right {
        margin-top: 0;
    }
}

/*
  为什么选择ZJE index__zje
  **/
.index__zje {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.68rem 0 1.04rem;
    background: url(../images/index__zje.png) center center / cover;
}

.index__zje .title {
    width: 100%;
    height: 100%;
    text-align: center;
}

.index__zje .title span {
    font-size: 0.3rem;
    color: var(--color);
    position: relative;
    font-family: "RobotoCondensedBold";
}

.index__zje .title span::after {
    content: "";
    width: 0.51rem;
    height: 0.03rem;
    background-color: #c11d43;
    position: absolute;
    left: 50%;
    bottom: -0.23rem;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.index__zje .content {
    padding-top: 1.09rem;
    width: 100%;
    height: 100%;
}

.index__zje .content .zje__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.index__zje .content .zje__box li {
    width: 24%;
}

.index__zje .content .zje__box li .img1 {
    width: 1.22rem;
    height: 1.22rem;
    position: relative;
    margin: 0 auto;
}

.index__zje .content .zje__box li .img1 .icon {
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid var(--color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1.22rem;
    width: 1.22rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 9999;

    background-size: 92%;
}

.index__zje .content .zje__box li .img1 .icon__bg {
    background-color: #fff;
    border-radius: 50%;
    content: " ";
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 2px;
    position: absolute;
    top: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s, -webkit-transform 0.2s;
    width: 100%;
    z-index: 0;
}

.index__zje .content .zje__box li:hover .icon__bg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.index__zje .content .zje__box li p {
    text-align: center;
    color: var(--color);
    font-size: 0.24rem;
    margin-top: 0.31rem;
    font-family: "RobotoCondensedBold";
}

.index__zje .content .zje__box li span {
    color: var(--color);
    font-size: 0.16rem;
    padding-top: 0.21rem;
    display: block;
    line-height: 1.5;
    font-family: "RobotoCondensedRegular";
}

.index__zje .content .zje__box li.zje__knowledge .img1 .icon {
    background-image: url(../images/knowledge.png);
}

.index__zje .content .zje__box li.zje__knowledge:hover .img1 .icon {
    background-image: url(../images/knowledge__h.png);
}

.index__zje .content .zje__box li.zje__capacity .img1 .icon {
    background-image: url(../images/capacity.png);
}

.index__zje .content .zje__box li.zje__capacity:hover .img1 .icon {
    background-image: url(../images/capacity__h.png);
}

.index__zje .content .zje__box li.zje__humanity .img1 .icon {
    background-image: url(../images/humanity.png);
}

.index__zje .content .zje__box li.zje__humanity:hover .img1 .icon {
    background-image: url(../images/humanity__h.png);
}

.index__zje .content .zje__box li.zje__views .img1 .icon {
    background-image: url(../images/views.png);
}

.index__zje .content .zje__box li.zje__views:hover .img1 .icon {
    background-image: url(../images/views__h.png);
}

.index__zje .content .zje__box li.zje__major .img1 .icon {
    background-image: url(../images/major.png);
}

.index__zje .content .zje__box li.zje__major:hover .img1 .icon {
    background-image: url(../images/major__h.png);
}

.index__zje .content .zje__box li.zje__environment .img1 .icon {
    background-image: url(../images/environment.png);
    background-size: 60%;
}

.index__zje .content .zje__box li.zje__environment:hover .img1 .icon {
    background-image: url(../images/environment__h.png);
}

@media screen and (max-width: 980px) {
    .index__zje .title span {
        font-size: 24px;
    }

    .index__zje .title span::after {
        width: 51px;
        height: 3px;
    }
}

@media screen and (max-width: 800px) {
    .index__zje .content .zje__box {
        justify-content: space-between;

    }

    .index__zje .content .zje__box li {
        width: 47%;
        margin-bottom: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 25px;
        flex-direction: column;
    }

    .index__zje .content .zje__box li p {
        font-size: 22px;
    }

    .index__zje .content .zje__box li span {
        font-size: 16px;
    }

}

/*
  人物 index__people
  **/
.index__people {
    width: 100%;
    height: 100%;
    padding: 0.55rem 0 0;
    position: relative;
}

.index__people::before {
    content: "";
    width: 100%;
    height: 4.72rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--background);
}

.index__people .content {
    padding-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 1560px;
    margin: 0 auto;
}

.index__people .content .left {
    width: 6.04rem;
    height: 7.73rem;
    position: relative;
    z-index: 6;
    background: url(../images/index__people.png) no-repeat center bottom / cover;
}

.index__people .content .right {
    width: 9.56rem;
    height: 100%;
    position: relative;
    z-index: 0;
    left: -1px;
    top: 4px;
}

.index__people .content .right .swiper-1 {
    width: 100%;
    height: 3.16rem;
}

.index__people .content .right .swiper-1 .swiper-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.index__people .content .right .swiper-1 .swiper-slide a .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #e4e4e4;
    padding-top: 0.51rem;
    padding-left: 0.51rem;
    padding-bottom: 0.67rem;
    padding-right: 0.42rem;
}

.index__people .content .right .swiper-1 .swiper-slide a .text .title {
    font-size: var(--fontsize);
    color: var(--dark);
    font-weight: bold;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "RobotoCondensedBold";
}

.index__people .content .right .swiper-1 .swiper-slide a:hover .text .title {
    color: #002e5f;
}

.index__people .content .right .swiper-1 .swiper-slide a .text .keyword {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #666666;
    font-size: 0.16rem;
    line-height: 0.3rem;
    font-family: "RobotoCondensedRegular";
    max-height: 0.9rem;
}

.index__people .content .right .swiper-1 .swiper-slide a .text .more {
    display: inline-block;
    padding-left: 0.17rem;
    padding-right: 0.35rem;
    vertical-align: -5px;
    border-radius: 0.15rem;
    font-size: 0.14rem;
    line-height: 0.29rem;
    color: #666666;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid #b6b5b5;
    background: url(../images/events-herf.png) no-repeat right 0.1rem center;
    background-size: 0.21rem 0.07rem;
    margin-top: 0.21rem;
    font-family: "RobotoCondensedRegular";
}

.index__people .content .right .swiper-1 .swiper-slide a:hover .text .more {
    color: #fff;
    background: #002e5f url(../images/events-herf_h.png) no-repeat right 0.1rem center;
    ;
    border-color: #002e5f;
}

.index__people .content .right .swiper-1 .swiper-slide a .img1 {
    width: 2.24rem;
    height: 3.16rem;
    overflow: hidden;
}

.index__people .content .right .swiper-1 .swiper-slide a .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .5s ease;
}

.index__people .content .right .swiper-1 .swiper-slide a:hover .img1 img,
.index__people .content .right .swiper-2 .swiper-slide:hover .img1 img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.index__people .content .right .swiper-2 {
    margin-left: 0.46rem;
    margin-top: 0.44rem;
}

.index__people .content .right .swiper-2 .swiper-slide .img1 {
    width: 2.19rem;
    height: 3.09rem;
    overflow: hidden;
    border: 3px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__people .content .right .swiper-2 .swiper-slide .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    transition: all .5s ease;
    object-fit: cover;
}

.index__people .content .right .swiper-2 .swiper-slide .title {
    font-size: 0.18rem;
    line-height: 0.28rem;
    color: var(--color);
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-height: 0.56rem;
    margin-top: 0.22rem;
}

.index__people .content .right .swiper-2 .swiper-slide.swiper-slide-active .img1 {
    border-color: #c11d43;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.index__people .content .right .swiper-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    /*margin: 0.25rem 0;*/
}

.index__people .content .right .swiper-button .swiper-button-prev {
    height: 0.44rem;
    background: url(../images/people-prev.png) no-repeat right center;
    background-size: 0.25rem 0.11rem;
    position: static;
}

.index__people .content .right .swiper-button .swiper-button-next {
    height: 0.44rem;
    background: url(../images/people-next.png) no-repeat right center;
    background-size: 0.25rem 0.11rem;
    position: static;
}

.index__people .content .right .swiper-button .swiper-button-next,
.index__people .content .right .swiper-button .swiper-button-prev {
    margin-top: 0;
}

.index__people .content .right .swiper-button .btn {
    height: 0.44rem;
    margin: 0 0.8rem;
}

.index__people .content .right .swiper-button .btn .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.index__people .content .right .swiper-button .btn .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    background-color: var(--color);
    opacity: 1;
    margin-right: 0.18rem;
}

.index__people .content .right .swiper-button .btn .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.index__people .content .right .swiper-button .btn .swiper-pagination-bullet-active {
    background-color: #c11d43;
}

.index__people .content .right .swiper-3 {
    width: 100%;
    display: none;
}

.index__people .content .right .swiper-3 .swiper-slide {
    margin-bottom: 10px;
}

.index__people .content .right .swiper-3 .swiper-slide a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #e4e4e4;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    flex-direction: row;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.index__people .content .right .swiper-3 .swiper-slide a .text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    background-color: #e4e4e4;
    padding-top: 0.51rem;
    padding-left: 0.51rem;
    padding-bottom: 0.27rem;
    padding-right: 0.42rem;
}

.index__people .content .right .swiper-3 .swiper-slide a .text .title {
    font-size: 18px;
    color: var(--dark);
    font-weight: bold;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index__people .content .right .swiper-3 .swiper-slide a .text .keyword {
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #666666;
    font-size: 16px;
    line-height: 30px;
    max-height: 90px;
}

.index__people .content .right .swiper-3 .swiper-slide a .text .more {
    display: inline-block;
    padding-left: 0.17rem;
    padding-right: 35px;
    border-radius: 0.15rem;
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid #b6b5b5;
    background: url(../images/events-herf.png) no-repeat right 10px top 10px;
    background-size: 21px 7px;
    margin-top: 0.21rem;
}

.index__people .content .right .swiper-3 .swiper-slide a .text .more:hover {
    color: #002e5f;
    border-color: #002e5f;
}

.index__people .content .right .swiper-3 .swiper-slide a .img1 {
    width: 3.01rem;
    height: 4.2rem;
    overflow: hidden;
}

.index__people .content .right .swiper-3 .swiper-slide a .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.index__people .content .right .swiper-3 .btn .dots {
    text-align: center;
}

.index__people .content .right .swiper-3 .btn .dots .swiper-pagination-bullet {
    margin: 0 5px;
}

@media screen and (max-width: 1561px) {
    .index__people .content {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .index__people .content .left {
        width: 38.69314542%;

    }

    .index__people .content .right {
        width: 61.24279308%;
        left: -2px;
    }

    .index__people .content .right .swiper-2 .swiper-slide .img1 {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .index__people .content .left {
        display: none;
    }

    .index__people .content .right {
        width: 100%;
    }

    .index__people .content .right .swiper-2 {
        margin-left: 0;
    }
}

@media screen and (max-width: 580px) {

    .index__people .content .right .swiper-1,
    .index__people .content .right .swiper-2,
    .index__people .content .right .swiper-button {
        display: none;
    }

    .index__people::before {
        background-color: var(--color);
    }

    .index__people .content .right .swiper-3 {
        display: block;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 450px) {
    .index__people .content .right .swiper-3 .swiper-slide1 a {
        flex-direction: column-reverse;
        align-items: center;
    }
}

/*
  探索 index__discover
  **/
.index__discover {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.65rem 0 0.66rem;
}

.index__discover .content {
    padding-top: 0.74rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 8.15rem;
}

.index__discover .content .left {
    width: 62%;
}

.index__discover .content .left .video {
    width: 100%;
    height: 4.46rem;
    position: relative;
}

.index__discover .content .left .video .video-js {
    width: 100%;
    height: 100%;
}

.index__discover .content .left .video .video-js .vjs-tech {
    -o-object-fit: cover;
    object-fit: cover;
}

.index__discover .content .left .video .video-js .vjs-big-play-button {
    width: 1.01rem;
    height: 1.01rem;
    border-radius: 50%;
    background: url(../images/poster.png) no-repeat center center;
    background-size: 1.01rem 1.01rem;
    border: none;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.index__discover .content .left .video .video-js .vjs-big-play-button:before {
    display: none;
}

.index__discover .content .left .video .video-button {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 0.26rem;
    padding-bottom: 0.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-right: 0.24rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background: linear-gradient(transparent, #000);
}

.index__discover .content .left .video .video-button .title {
    color: var(--color);
    font-size: 0.3rem;
    font-family: "RobotoCondensedBold";
}

.index__discover .content .left .video .video-button .keywords {
    font-size: 0.16rem;
    color: var(--color);
    padding-top: 0.11rem;
    font-family: "RobotoCondensedRegular";
}

.index__discover .content .left .video .video-button .more {
    font-size: 0.16rem;
    color: var(--color);
    position: absolute;
    right: 0.24rem;
    bottom: 0.24rem;
    background: url(../images/video-2.png) no-repeat right center;
    background-size: 0.25rem 0.12rem;
    padding-right: 0.36rem;
    font-family: "RobotoCondensedBold";
}

.index__discover .content .left .video .vjs-poster {
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.11);
}

.index__discover .content .left .discover_lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.index__discover .content .left .discover_lists li {
    width: 33.34%;
    height: 2.95rem;
    background: no-repeat center center / cover;
}

.index__discover .content .left .discover_lists li a {
    color: var(--color);
    text-align: center;
    line-height: 2.95rem;
    display: block;
    width: 100%;
    font-size: 0.26rem;
    height: 100%;
    font-family: "RobotoCondensedRegular";
}

.index__discover .content .left .discover_lists li.aizheren {
    background-image: url(../images/aizheren.png);
}

.index__discover .content .left .discover_lists li.jibao {
    background-image: url(../images/jibao.png);
}

.index__discover .content .left .discover_lists li.nianbao {
    background-image: url(../images/nianbao.png);
}

.index__discover .content .right {
    width: 38%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.index__discover .content .right .r_list {
    width: 62%;
    height: 100%;
}

.index__discover .content .right .r_list li {
    position: relative;
    display: block;
    width: 100%;
}

.index__discover .content .right .r_list li .img1 {
    width: 100%;
    height: 2.47rem;
    overflow: hidden;
}

.index__discover .content .right .r_list li .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.index__discover .content .right .r_list li .title {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;

    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    padding-top: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index__discover .content .right .r_list li .title span {
    font-size: 0.24rem;
    color: var(--color);
    text-align: center;
    display: block;
    padding-bottom: 0.10rem;
}

.index__discover .content .right .r_list li .title p {
    padding: 0 .2rem;
}

.index__discover .content .right .r_list li .title p a {
    display: block;
    font-size: .16rem;
    color: #fff;
    line-height: .44rem;
    border-bottom: 1px dashed rgba(255, 255, 255, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}


.index__discover .content .right .text {
    width: 38%;
    height: 100%;
    background: url(../images/hangning-bg.png) no-repeat center center / cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0.5rem 0 0.67rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.index__discover .content .right .text .title {
    position: relative;
    width: 100%;
}

.index__discover .content .right .text .title .test {
    font-size: 0.36rem;
    color: var(--color);
    width: 0.36rem;
    float: right;
    padding-right: .48rem;
    box-sizing: initial;
    writing-mode: vertical-rl;
    font-family: "RobotoRegular";
}

.index__discover .content .right .text .title .subhead {
    display: inline-block;
    font-size: 0.16rem;
    color: var(--color);
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -moz-transform: rotate(90deg);
    /* Firefox */
    -webkit-transform: rotate(90deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(90deg);
    /* Opera */
    position: absolute;
    font-family: "RobotoRegular";
    left: -19px;
    top: 2.86rem;
}

.index__discover .content .right .text .title .subhead::after {
    content: "";
    width: 0.45rem;
    height: 2px;
    background-color: var(--color);
    position: absolute;
    left: -0.63rem;
    top: 0.11rem;
    display: block;
}

.index__discover .content .right .text .but {
    width: 100%;
    height: 0.39rem;
    text-align: center;
}

.index__discover .content .right .text .but .more {
    font-size: 0.14rem;
    color: var(--color);
    border: 1px solid #df6d88;
    border-radius: 0.2rem;
    padding: 0.09rem 0.4rem 0.09rem 0.14rem;
    background: url(../images/haining-more.png) no-repeat right 0.12rem center;
    background-size: 0.21rem 0.07rem;
    display: inline
}

@media screen and (max-width: 800px) {
    .index__discover .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        height: 100%;
    }

    .index__discover .content .left {
        width: 100%;
    }

    .index__discover .content .right {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .index__discover .content .right .r_list {
        width: 62%;
    }

    .index__discover .content .right .text {
        width: 38%;
        height: auto;
    }

    .index__discover .content .right .r_list li .img1 {
        height: 3.26rem;
    }

    .index__discover .content .right .r_list li .title span {
        font-size: .36rem;
    }

    .index__discover .content .right .r_list li .title p a {
        font-size: 16px;
        line-height: 32px;
    }
}

/*
  了解更多 index__learn
  **/
.index__learn {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.68rem 1.04rem;
    background: url(../images/index__learn.png) center center / cover;
}

.index__learn .title {
    width: 100%;
    height: 100%;
    text-align: center;
}

.index__learn .title span {
    font-size: 0.3rem;
    color: var(--color);
    position: relative;
}

.index__learn .title span::after {
    content: "";
    width: 0.74rem;
    height: 0.03rem;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: -0.23rem;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.index__learn .content {
    /*padding-top: 0.52rem;*/
    width: 100%;
    height: 100%;
}

.index__learn .content h3 {
    font-size: 0.36rem;
    color: var(--color);
    text-align: center;
}

.index__learn .content .more {
    text-align: center;
}

.index__learn .content .more a {
    display: block;
    width: 2.6rem;
    height: 0.57rem;
    line-height: 0.57rem;
    margin: 0.33rem auto 0;
    font-size: 0.24rem;
    color: var(--color);
    background: #c11d43 no-repeat right center;
    transition: all .5s ease;
}

.index__learn .content .more a:hover {
    padding-right: 14px;
    background: #c11d43 url(../images/learn_more.png) no-repeat right .34rem center;
    transition: all .5s ease;
}

/*
  公共底部 footer 
  **/
.footer {
    width: 100%;
    height: 100%;
    background-color: var(--background);
}

.footer .footer_top .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 0.38rem;
    padding-bottom: 0.18rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer_top .layout .wechat {
    float: left;
    /* -webkit-box-flex: 0;
    -ms-flex: 0 0 0.97rem;
    flex: 0 0 0.97rem; */
    width: 15%;
    background: url(../images/footer_line.png) no-repeat right center;
    padding-right: 0.3rem;
    margin-right: 0.5rem;
}

.footer .wechat ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    /* margin: -1em; */
    padding-left: 0.1rem;
}

.footer .wechat ul .icons {
    width: 35px;
    height: 26px;
    position: relative;
    /* margin: 0 9px; */
    margin-bottom: 9px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer .wechat ul .icons:first-child {
    margin-left: 0;
}

.footer .wechat ul .icons:first-child .icon {
    background-image: url(../images/bilibili-line.png);
}

.footer .wechat ul .icons:first-child:hover .icon {
    background-image: url(../images/bilibili-line_hover.png);
}

.footer .wechat ul .icons:nth-child(2) .icon {
    background-image: url(../images/20230714153729.png);
}

.footer .wechat ul .icons:nth-child(2):hover .icon {
    background-image: url(../images/20230714153829.png);
}

.footer .wechat ul .icons:nth-child(3) .icon {
    background-image: url(../images/20230714153929.png);
}

.footer .wechat ul .icons:nth-child(3):hover .icon {
    background-image: url(../images/20230714154029.png);
}

.footer .wechat ul .icons:nth-child(4) .icon {
    background-image: url(../images/20230714154129.png);
}

.footer .wechat ul .icons:nth-child(4):hover .icon {
    background-image: url(../images/20230714154229.png);
}

.footer .wechat ul .icons:nth-child(5) .icon {
    background-image: url(../images/20230714154329.png);
}

.footer .wechat ul .icons:nth-child(5):hover .icon {
    background-image: url(../images/20230714154429.png);
}

.footer .wechat ul .icons:nth-child(6) .icon {
    background-image: url(../images/douyin.png);
}

.footer .wechat ul .icons:nth-child(6):hover .icon {
    background-image: url(../images/douyin_hover.png);
}




.footer .wechat ul .icons .icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    border: 1px solid var(--color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    width: 26px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 1;
}

.footer .wechat ul .icons .icon__bg {
    background-color: #fff;
    border-radius: 50%;
    content: " ";
    height: 100%;
    /* left: 0; */
    opacity: 0;
    padding: 2px;
    position: absolute;
    top: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: opacity 0.3s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.3s;
    transition: transform 0.2s, opacity 0.3s, -webkit-transform 0.2s;
    width: 26px;
    z-index: 0;
}

.footer .wechat ul .icons:hover .icon__bg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer .footer_top .layout .wechat .title {
    font-size: 0.22rem;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 0.19rem;
}

/* 修改完要进行注释的 开始 */

.footer .footer_top .layout .wechat .img1 {
    width: 97px;
    height: 97px;
    overflow: hidden;
    float: left;
}

.footer .footer_top .layout .wechat .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer .footer_top .layout .wechat .wechat_text {
    text-align: center;
    font-size: 0.12rem;
    margin-top: 0.15rem;
    color: var(--color);
}

/* 修改完要进行注释 结束 */


.footer .footer_top .layout .abouts {
    background: url(../images/footer_line.png) no-repeat right center;
    padding-right: .56rem;
}

.footer .footer_top .layout .abouts .title {
    font-size: 0.22rem;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer .footer_top .layout .abouts .abouts_text p {
    font-size: 0.16rem;
    color: var(--color);
    margin-bottom: 0.13rem;
}

.footer .footer_top .layout .abouts .abouts_text p:nth-child(2) i {
    visibility: hidden;
}

.footer .footer_top .layout .abouts .abouts_text p i {
    font-style: normal;
}

.footer .footer_top .layout .links {
    background: url(../images/footer_line.png) no-repeat right center;
    padding-right: .5rem;
    padding-left: .5rem;
}

.footer .footer_top .layout .links .title {
    font-size: 0.22rem;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer .footer_top .layout .links ul li {
    padding-left: 0.21rem;
    background: url(../images/footer-icon.png) no-repeat left center;
    margin-bottom: 0.27rem;
}

.footer .footer_top .layout .links ul li a {
    font-size: 0.16rem;
    color: var(--color);
}

.footer .footer_top .layout .letter {
    padding-left: 0.5rem;
}

.footer .footer_top .layout .letter .title {
    font-size: 0.22rem;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer .footer_top .layout .letter ul {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.footer .footer_top .layout .letter ul li {
    margin-bottom: 0.17rem;
}

.footer .footer_top .layout .letter ul li a {
    border: 1px solid #6c9cf5;
    width: 1.97rem;
    height: 0.42rem;
    display: block;
    text-align: center;
    font-size: 0.16rem;
    line-height: 0.42rem;
    color: var(--color);
    padding-left: 0.37rem;
    background: no-repeat left 0.46rem center;
}

.footer .footer_top .layout .letter ul li:nth-child(1) a {
    background-image: url(../images/footer-xinxiang.png);
}

.footer .footer_top .layout .letter ul li:nth-child(2) a {
    background-image: url(../images/footer-zaixian.png);
}

.footer .copyright {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(244, 244, 244, 0.1);
}

.footer .copyright .layout {
    text-align: center;
    color: #fff;
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
    line-height: 31px;
}

.footer .copyright .layout a {
    color: #fff;
}

.footer .copyright .layout i {
    font-style: normal;
}

@media screen and (max-width: 1413px) {
    .footer .footer_top .layout .wechat {
        width: 17%
    }
}

@media screen and (max-width: 1400px) {
    .footer .footer_top .layout .abouts {
        padding-right: .5rem;
    }

    .footer .footer_top .layout .links {
        /* padding-left: .5rem; */
        /* padding-right: .5rem; */
    }
}

@media screen and (max-width: 1305px) {

    .footer .footer_top .layout .wechat .title,
    .footer .footer_top .layout .abouts .title,
    .footer .footer_top .layout .links .title,
    .footer .footer_top .layout .letter .title {
        font-size: 18px;
    }

    .footer .footer_top .layout .abouts .abouts_text p,
    .footer .footer_top .layout .links ul li a {
        font-size: 14px;
    }

    .footer .footer_top .layout .letter ul li a {
        width: 172px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
    }

    .footer .footer_top .layout .wechat {
        padding-right: 0.37rem;
        width: 19%;
    }
}

@media screen and (max-width: 1180px) {
    .footer .footer_top .layout .links {
        background: none;
    }

    .footer .footer_top .layout .letter {
        padding-left: 0;
    }
}

@media screen and (max-width: 1150px) {
    .footer .footer_top .layout .wechat {
        width: 22%;
        padding-right: .17rem;
    }
}

@media screen and (max-width: 995px) {

    .footer .footer_top .layout .wechat .title,
    .footer .footer_top .layout .abouts .title,
    .footer .footer_top .layout .links .title,
    .footer .footer_top .layout .letter .title {
        font-size: 22px;
    }

    .footer .footer_top .layout .abouts .abouts_text p,
    .footer .footer_top .layout .links ul li a {
        font-size: 16px;
    }

    .footer .footer_top .layout .wechat .img1 {
        width: 97px;
        height: 97px;
    }

    .footer .footer_top .layout .wechat {
        width: 27%;
        /* padding-right: 87px; */
        margin-right: 59px;
    }

    .footer .footer_top .layout .wechat .wechat_text {
        font-size: 12px;
    }

    .footer .footer_top .layout .links {
        background: none;
    }

    .footer .footer_top .layout .letter,
    .footer .footer_top .layout .links,
    .footer .footer_top .layout .abouts,
    .footer .footer_top .layout .wechat {
        margin-bottom: 20px;
    }

    .footer .footer_top .layout .letter ul {
        padding-left: 0;
    }

    .footer .footer_top .layout .letter ul li a {
        width: 197px;
        height: 42px;
        font-size: 16px;
        line-height: 42px;
        padding-left: 37px;
        background: no-repeat left 46px center;
    }
}

@media screen and (max-width: 850px) {
    .footer .footer_top .layout .links {
        padding-left: 0;
        background: url(../images/footer_line.png) no-repeat right center;
    }

    .footer .footer_top .layout .wechat .img1 {
        float: none;
        margin-bottom: 40px;
    }



    .footer .footer_top .layout .letter {
        padding-left: 0.86rem;
    }

    .footer .footer_top .layout .wechat,
    .footer .footer_top .layout .abouts,
    .footer .footer_top .layout .links {
        background: none;
        width: 100%;
    }
}

@media screen and (max-width: 831px) {



    .footer .footer_top .layout .links {
        padding-left: 0;
    }

    .footer .footer_top .layout .abouts {
        padding-right: 112px;
        background: none;
    }

    .footer .footer_top .layout .letter {
        padding-left: 0;
    }
}

@media screen and (max-width: 580px) {
    .footer .footer_top .layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer .footer_top .layout .abouts,
    .footer .footer_top .layout .wechat,
    .footer .footer_top .layout .letter {
        padding-right: 0;
    }

    .footer .footer_top .layout .wechat {
        background: none;
    }

    .footer .footer_top .layout .letter {
        padding-left: 0;
    }
}

/*
  公共头部使用 index__title
  **/
.index__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.index__title .title span {
    font-size: 0.36rem;
    line-height: 0.36rem;
    color: var(--dark);
    position: relative;
    font-family: "RobotoCondensedBold";
}

.index__title .title span::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 100%;
    height: 5px;
    background-color: var(--background);
    left: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.index__title .title i {
    font-family: "RobotoRegular";
    font-size: 0.18rem;
    padding-left: 0.13rem;
    color: #002e5f;
    font-style: normal;
}

.index__title .more {
    padding-left: 0.17rem;
    padding-right: 0.35rem;
    vertical-align: -5px;
    border-radius: 0.15rem;
    font-size: 0.14rem;
    line-height: 0.29rem;
    color: #b6b5b5;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid #b6b5b5;
    background: url(../images/index-top.png) no-repeat right 0.1rem center;
    background-size: 0.19rem 0.11rem;
    font-family: "RobotoCondensedBold";
}

.index__title .more:hover {
    background-image: url(../images/index-top-h.png);
    color: #002e5f;
    border-color: #002e5f;
}

@media screen and (max-width: 980px) {
    .index__title .title span {
        font-size: 24px;
    }

    .index__title .title i {
        font-size: 18px;
    }

    .index__title .more {
        padding-left: 17px;
        padding-right: 35px;
        border-radius: 15px;
        font-size: 14px;
        line-height: 29px;
        background-size: 19px 11px;
        background: url(../images/index-top.png) no-repeat right 10px center;
    }
}

/*
  video 控件
  **/
.video-js .vjs-progress-control {
    display: none !important;
}

/* 隐藏观看当前时间和剩余时间 */
.video-js .vjs-time-control {
    display: none !important;
}

/* 隐藏音量按钮 */
.video-js .vjs-volume-control {
    display: none !important;
}

/* 隐藏音量控制条 */
.video-js .vjs-volume-panel {
    display: none !important;
}

/*
  
  详情页 displayinfo_banner
  **/
.displayinfo_banner {
    width: 100%;
    height: 260px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    box-sizing: content-box;
}

.displayinfo_banner .img1 {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
    background: no-repeat center center / cover;
    background-image: url(../images/list_banner.png);
}

.displayinfo_banner .left_top {
    width: 626px;
    height: 116px;
    background: url(../images/left_top.png) no-repeat right bottom;
    background-size: 626px 116px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.displayinfo_banner .left_top h3 {
    color: var(--color);
    font-size: 36px;
    position: absolute;
    right: 202px;
    top: 0.54rem;
}

.displayinfo_content {
    width: 100%;
    background-color: #fff;

    display: block;
}

.displayinfo_content .layout {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
/*position: relative;
    z-index: 1;*/
}
.box-container-bg {
    position: absolute;
    content: '';
    width: 30.2%;
    height: 100%;
    background-color: #f3f2ef;
    background: url(../images/list_admissin_left_bg.png) no-repeat right bottom /cover;
}
.displayinfo_content .left_box {
    width: 264px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: #f3f2ef;
    padding-bottom: 40px;
}

.displayinfo_content .left_box .left {
    width: 264px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
}

.displayinfo_content .left_box .left .menu-header {
    width: 100%;
    height: 105px;
    position: relative;
    background-color: var(--background);
    display: none;
}

.displayinfo_content .left_box .left .menu-header h3 {
    font-size: 24px;
    color: var(--color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.displayinfo_content .left_box .left .menu1 {
    padding-left: 5px;
    padding-bottom: 5px;
    background-color: #c11d43;
}

.displayinfo_content .left_box .left .menu1 .menu-item {
    background-color: #f3f2ef;
}

.displayinfo_content .left_box .left .menu1 .menu-item>a {
    display: block;
    line-height: 35px;
    color: var(--dark);
    padding: 15px 46px 15px 38px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    background: url(../images/arrow_black_right.png) no-repeat right 22px center;
}

.displayinfo_content .left_box .left .menu1 .menu-item>a p {

    font-size: 20px;
}

.displayinfo_content .left_box .left .menu1 .menu-item>a::before {
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left-color: #c11d43;
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down {
    display: none;
    background-color: #f3f2ef;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent .menu-down {
    background: #dfe9f3
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent .menu-down .down-item {
    background: transparent
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent .menu-down .down-item>a {
    padding: 15px 34px 15px 70px
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent .menu-down .down-item.selected>a {
    border-bottom: 1px solid #fff;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent .menu-down .down-item.selected>a p {
    font-weight: bold;
    color: #00305b;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item>a {
    display: block;
    line-height: 32px;

    padding: 15px 34px 15px 59px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #d9d9d9;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item>a p {
    font-size: 18px;
    color: var(--dark);
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent {
    background-color: var(--color);
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.selected {
    background-color: var(--color);
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.selected a {
    border-color: transparent;

}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent>a {
    border-color: transparent;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.selected a p {
    color: #c11d43;
}

.displayinfo_content .left_box .left .menu1 .menu-item .menu-down .down-item.parent>a p {
    color: #c11d43;
}

.displayinfo_content .left_box .left .menu1 .menu-item.selected {
    background-color: #c11d43;
}

.displayinfo_content .left_box .left .menu1 .menu-item.parent {
    background-color: #c11d43;
}

.displayinfo_content .left_box .left .menu1 .menu-item.parent>a {
    color: var(--color);
    background: url(../images/arrow_right.png) no-repeat right 22px center;
}

.displayinfo_content .left_box .left .menu1 .menu-item.parent>a p {}

.displayinfo_content .left_box .left .menu1 .menu-item.parent>a::before {
    display: block;
}

.displayinfo_content .left_box .left .menu1 .menu-item.parent .menu-down {
    display: block;
}

.displayinfo_content .left_box .left .menu1 .menu-item.selected>a {
    color: var(--color);
    border-color: transparent;
    background: url(../images/arrow_right.png) no-repeat right 22px center;
}

.displayinfo_content .left_box .left .menu1 .menu-item.selected>a p {}

.displayinfo_content .left_box .left .menu1 .menu-item.selected>a::before {
    display: block;
}

.displayinfo_content .left_box .left .menu1 .menu-item.selected .menu-down {
    display: block;
}

.displayinfo_content .right_box {
    width: calc(1450px - 264px);
    position: relative;
    background-color: var(--color);
}

.displayinfo_content .right_box .displayinfo_layout {
    max-width: 1125px;
    padding-left: 65px;
}

.displayinfo_content .right_box .displayinfo_layout .position {
    padding-top: 34px;
    padding-bottom: 14px;
}

.displayinfo_content .right_box .displayinfo_layout .position .breadcrumb {
    background: url(../images/positon.png) no-repeat left top 2px;
    background-size: 15px 17px;
    background-color: #fff;
    padding: 0 0 0 35px;
    margin-bottom: 0;
    float: right;
}

.displayinfo_content .right_box .displayinfo_layout .position .breadcrumb>li {
    display: inline-block;
}

.displayinfo_content .right_box .displayinfo_layout .position .breadcrumb a {
    font-size: 16px;
    color: #666666;
}

.displayinfo_content .right_box .displayinfo_layout .position .breadcrumb>li+li:before {
    content: "\003e";
    font-family: "宋体 SimSun";
    padding: 0 5px;
    color: #666666;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-title {
    margin-top: 12px;
    text-align: center;
    padding: 0 33px;
    border-bottom: 3px solid #be1139;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-title h3 {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-title p {
    display: inline-block;
    padding-top: 28px;
    padding-bottom: 35px;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-title p span {
    font-size: 16px;
    color: #999999;
    margin-right: 20px;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-content {
    margin-top: 25px;
    margin-bottom: 60px;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-content p {
    line-height: 36px;
    font-size: 18px;
    color: #333333;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-content p img,
.displayinfo_content .right_box .displayinfo_layout .right-list .wp_articlecontent p img {
    max-width: 700px;
}

.displayinfo_content .right_box .displayinfo_layout .article .article-content p span img,
.displayinfo_content .right_box .displayinfo_layout .right-list .wp_articlecontent p span img {
    display: inline-block;
    width: auto !important;
    margin: auto;
}

.displayinfo_content .right_box .displayinfo_layout .article .share {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.displayinfo_content .right_box .displayinfo_layout .article .share a {
    display: inline-block;
    width: 26px;
    height: 26px;
}

.displayinfo_content .right_box .displayinfo_layout .article .share a img {
    width: 100%;
    height: 100%;
}

.displayinfo_content .right_box .list {
    margin-bottom: 10px;
}

.displayinfo_content .right_box .list .right-list {
    width: 100%;
}

.displayinfo_content .right_box .list .right-list .right-list-item {
    height: 38px;
    line-height: 38px;
    padding: 0.22rem 0;
    border-bottom: 1px dashed #c9c9c9;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.displayinfo_content .right_box .list .right-list .right-list-item a {
    height: 100%;
    display: block;
}

.displayinfo_content .right_box .list .right-list .right-list-item .time {
    float: left;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 16px;
}

.displayinfo_content .right_box .list .right-list .right-list-item .time span {
    height: 100%;
    text-align: center;
}

.displayinfo_content .right_box .list .right-list .right-list-item .time .d {
    color: #fff;
    font-size: 18px;
    width: 38px;
    background-color: #003f88;
}

.displayinfo_content .right_box .list .right-list .right-list-item .time .y {
    color: #666;
    width: 85px;
    background-color: #e5f2fc;
}

.displayinfo_content .right_box .list .right-list .right-list-item p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 18px;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 15px;
}

@media screen and (max-width: 1587px) {
    .displayinfo_content .right_box .displayinfo_layout {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1200px) {
    .displayinfo_content .right__box .displayinfo_layout .article .article-title p {
        display: inline-block;
        padding-top: 20px;
        padding-bottom: 26px;
    }

    .displayinfo_content .right__box .displayinfo_layout .article .article-content p {
        line-height: 30px;
        font-size: 16px;
        color: #333333;
    }

    .displayinfo_content .right__box .displayinfo_layout .article .article-title h3 {
        font-size: 24px;
    }

    .displayinfo_content .right_box .displayinfo_layout .article .article-content p img {
        max-width: 100% !important;
        height: auto !important;
    }

    .displayinfo_content .right_box .displayinfo_layout .right-list .wp_articlecontent p img {
        max-width: 100% !important;
        height: auto !important;
    }

}

@media screen and (max-width: 920px) {
    .displayinfo_content {
        display: block;
        background: none !important;
    }

    .displayinfo_content .layout {
        display: block;
    }

    .box-container-bg {
        display: none;
    }

    .displayinfo_content .left_box {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        display: block;
        background: transparent;
    }

    .displayinfo_content .left_box .left {
        width: 100%;
        margin: 0;
    }

    .displayinfo_content .left_box .left .menu1 .menu-item.selected>a::before {
        display: none;
    }

    .displayinfo_content .left_box .left .menu1 .menu-item.parent>a::before {
        display: none;
    }

    .displayinfo_content .right_box .displayinfo_layout .position .breadcrumb {
        float: left;
    }

    .displayinfo_content .right_box {
        width: 100%;
    }

    .displayinfo_banner .left_top {
        display: none;
    }

    .displayinfo_content .left_box .left .menu-header {
        display: block;
    }

    .displayinfo_content .right_box .displayinfo_layout .article .article-title {
        padding: 0;
    }

    .displayinfo_content .right__box .displayinfo_layout .article .article-title h3 {
        font-size: 22px;
    }

    .displayinfo_content .right_box .displayinfo_layout .article .article-title h3 {
        font-size: 20px;
    }

    .displayinfo_content .right_box .displayinfo_layout .article .article-title p span {
        display: inline-block;
    }
}

/*
  分页
  **/
.wp_paging {
    margin: 10px 0
}
.wp_paging .pages_count .per_page {
display: none;
}

/*
  教师列表页  list_teacher
  **/
.displayinfo_content .right_box .list_teacher .column_title {
    margin: 30px 0;
}

.displayinfo_content .right_box .list_teacher .right-list {
    width: 100%;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 2%;
    float: left;
    padding: 8px;
    background: #F5F5F5;
    border: 1px solid #E9E9E9;
    box-sizing: border-box;
    margin-bottom: 33px;
    margin-bottom: 10px;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .pic {
    float: left;
    width: 205px;
    height: 295px;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .info {
    margin-left: 16px;
    padding-left: 202px;
    padding-right: 16px;
    padding-bottom: 15px;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .info .title {
    display: block;
    font-size: 24px;
    line-height: 40px;
    font-family: "RobotoCondensedBold";
    font-weight: bold;
    color: #003F88;
    margin-top: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .info .xuewei {
    font-size: 18px;
    color: #666666;
    line-height: 40px;
    margin-left: 10px;
    vertical-align: bottom;


}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .detail .xuewei {
    font-size: 18px;
    color: #666666;
    line-height: 40px;
    margin-left: 10px;
    vertical-align: bottom;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 12px;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .detail .email {
    background: url(../images/stu_email.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .detail .content {
    max-height: 168px;
    overflow: hidden;
}

.displayinfo_content .right_box .list_teacher .right-list .right-list-item .detail .buttom {
    color: var(--background);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    /*鼠标变小手*/
}

@media screen and (max-width:500px) {
    .displayinfo_content .right_box .list_teacher .right-list .right-list-item .pic {
        float: none;
        width: auto;
        height: auto;
    }

    .displayinfo_content .right_box .list_teacher .right-list .right-list-item .info {
        padding-left: 0;
    }
}

.list_teacher .right-list .right-list-item .prop {
    position: fixed;
    left: 100px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1141px;
    height: 6.28rem;
    background-color: #fff;
    padding: 0.31rem 0.39rem 0.7rem 0.49rem;
    border-radius: 10px;
    z-index: 101;
    box-sizing: border-box;
}

.list_teacher .right-list .right-list-item .prop .pic {
    width: 2.34rem;
    height: 3.4rem;
    max-height: 5rem;
    overflow: hidden;
}

.list_teacher .right-list .right-list-item .prop .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.list_teacher .right-list .right-list-item .prop .close {
    background: url(../images/close.png) no-repeat right;
    width: 30px;
    height: 30px;
    float: right;
    margin-bottom: 10px;
    cursor: pointer;
}

.list_teacher .right-list .right-list-item .prop .text {
    padding-left: 2.82rem;
}

.list_teacher .right-list .right-list-item .prop .text h3 {
    font-size: 24px;
    font-weight: bold;
}

.list_teacher .right-list .right-list-item .prop .text .email {
    background: url(../images/stu_email.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher .right-list .right-list-item .prop .text .links {
    background: url(../images/links_icon.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher .right-list .right-list-item .prop .text .tel {
    background: url(../images/tel_icon.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher .right-list .right-list-item .prop .text h3 i {
    font-size: 20px;
    color: #666;
    vertical-align: bottom;
    font-style: normal;
}

.list_teacher .right-list .right-list-item .prop .text .tea-con {
    font-size: 16px;
    line-height: 30px;
    /* margin-top: 0.28rem; */
    height: 3.98rem;
    overflow-y: scroll;
    padding-right: 0.46rem;
}

.list_teacher .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar {
    width: 8px;
}

.list_teacher .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-thumb {
    /*ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½Ä¹ï¿½ï¿½*/
    border-radius: 4px;
    background-color: #ddd;
    box-shadow: inset 0 0 1px #ddd;
}

.list_teacher .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-corner,
.list_teacher .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-track {
    /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ */
    background-color: #fff;
    box-shadow: inset 0 0 1px #fff;
}

@media screen and (max-width: 1400px) {
    .list_teacher .right-list .right-list-item .prop {
        left: 0;
        width: 13rem;
        height: fit-content;
    }

    .list_teacher .right-list .right-list-item .prop .text h3 {
        font-size: 22px;
    }

    .list_teacher .right-list .right-list-item .prop .text h3 i {
        font-size: 18px;
    }
}

@media screen and (max-width: 800px) {
    .list_teacher .right-list .right-list-item .prop {
        width: 600px;

    }

    .list_teacher .right-list .right-list-item .prop .text h3 {
        font-size: 20px;
    }

    .list_teacher .right-list .right-list-item .prop .text h3 i {
        font-size: 16px;
    }
}

@media screen and (max-width: 660px) {
    .list_teacher .right-list .right-list-item .prop {
        width: 450px;

    }

    .list_teacher .right-list .right-list-item .prop .pic {
        float: none;
        margin: 0 auto;
    }

    .list_teacher .right-list .right-list-item .prop .text {
        padding-left: 0;
    }

    .list_teacher .right-list .right-list-item .prop .pic {
        width: 3.6rem;
        height: 4rem;
    }

    .list_teacher .right-list .right-list-item .prop .text h3,
    .list_teacher .right-list .right-list-item .prop .text .tea-con {
        margin-top: 8px;
    }
}

@media screen and (max-width: 500px) {
    .list_teacher .right-list .right-list-item .prop {
        width: 93%;
    }
}

/*
  教师列表页  list_teacher_flex
  **/
.list_teacher_flex {
    width: 100%;

}

.list_teacher_flex .right-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.list_teacher_flex .right-list .right-list-item {
    width: 22%;
    margin-left: 0;
    margin-bottom: 30px;
    cursor: pointer;
}

.list_teacher_flex .right-list .right-list-item:nth-child(5n + 1) {
    margin-left: 0;
}

.list_teacher_flex .right-list .right-list-item .pic {
    border-bottom: 4px solid #876e6a;
    position: relative;
    width: 144px;
    height: 201px;
}

.list_teacher_flex .right-list .right-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list_teacher_flex .right-list .right-list-item .pic:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    right: 50%;
    height: 4px;
    background: #94070a;
    transition: all 0.3s ease-out 0s;
}

.list_teacher_flex .right-list .right-list-item:hover .pic:after {
    left: 0;
    right: 0;
}

.list_teacher_flex .right-list .right-list-item .title {
    display: block;
    font-size: 24px;
    line-height: 40px;
    font-family: "RobotoCondensedBold";
    font-weight: bold;
    color: #003F88;
    margin-top: 9px;
    width: 100%;
}

.list_teacher_flex .right-list .right-list-item .title .xuewei {
    font-size: 18px;
    color: #666666;
    line-height: 40px;
    margin-left: 0px;
    vertical-align: bottom;
    display: block;
}

.list_teacher_flex .right-list .right-list-item:hover .title,
.list_teacher_flex .right-list .right-list-item:hover .title span {
    color: #94070a;
}

@media screen and (max-width: 1200px) {
    .list_teacher_flex .right-list .right-list-item {
        width: calc(25% - 17px);
        margin-left: 20px;
    }
}

.list_teacher_flex .right-list .right-list-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 1110px) {
    .list_teacher_flex .right-list .right-list-item {
        width: calc(33% - 17px);
    }
}

@media screen and (max-width: 900px) {
    .list_teacher_flex .right-list .right-list-item {
        width: calc(25% - 17px);
    }

}

@media screen and (max-width: 700px) {
    .list_teacher_flex .right-list .right-list-item {
        width: calc(33% - 10px);
        margin-left: 15px;
    }

    .list_teacher_flex .right-list .right-list-item .title {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .list_teacher_flex .right-list .right-list-item {
        width: calc(50% - 10px);
        margin-left: 0;
    }

    .list_teacher_flex .right-list .right-list-item:nth-child(5n+1) {
        margin-left: 0;
    }

    .list_teacher_flex .right-list .right-list-item:nth-child(2n+1) {
        margin-right: 10px;
    }

    .list_teacher_flex .right-list .right-list-item .pic {
        width: 100%;
        height: 285px;
    }
}


.list_teacher_flex .right-list .right-list-item .prop {
    position: fixed;
    left: 100px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1141px;
    height: 6.28rem;
    background-color: #fff;
    padding: 0.31rem 0.39rem 0.7rem 0.49rem;
    border-radius: 10px;
    z-index: 101;
    box-sizing: border-box;
}

.list_teacher_flex .right-list .right-list-item .prop .pic {
    width: 2.34rem;
    height: 3.4rem;
    max-height: 5rem;
    overflow: hidden;
}

.list_teacher_flex .right-list .right-list-item .prop .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.list_teacher_flex .right-list .right-list-item .prop .close {
    background: url(../images/close.png) no-repeat right;
    width: 30px;
    height: 30px;
    float: right;
    margin-bottom: 10px;
    cursor: pointer;
}

.list_teacher_flex .right-list .right-list-item .prop .text {
    padding-left: 2.82rem;
}

.list_teacher_flex .right-list .right-list-item .prop .text h3 {
    font-size: 24px;
    font-weight: bold;
}

.list_teacher_flex .right-list .right-list-item .prop .text .email {
    background: url(../images/stu_email.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher_flex .right-list .right-list-item .prop .text .links {
    background: url(../images/links_icon.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher_flex .right-list .right-list-item .prop .text .tel {
    background: url(../images/tel_icon.png) no-repeat left;
    font-size: 16px;
    font-family: "RobotoRegular";
    color: #4183c4;
    line-height: 24px;
    padding-left: 32px;
    margin: 12px 0;
    display: block;
}

.list_teacher_flex .right-list .right-list-item .prop .text h3 i {
    font-size: 20px;
    color: #666;
    vertical-align: bottom;
    font-style: normal;
}

.list_teacher_flex .right-list .right-list-item .prop .text .tea-con {
    font-size: 16px;
    line-height: 30px;
    /* margin-top: 0.28rem; */
    height: 3.98rem;
    overflow-y: scroll;
    padding-right: 0.46rem;
}

.list_teacher_flex .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar {
    width: 8px;
}

.list_teacher_flex .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-thumb {
    /*�������Ĺ��*/
    border-radius: 4px;
    background-color: #ddd;
    box-shadow: inset 0 0 1px #ddd;
}

.list_teacher_flex .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-corner,
.list_teacher_flex .right-list .right-list-item .prop .text .tea-con::-webkit-scrollbar-track {
    /* ��������� */
    background-color: #fff;
    box-shadow: inset 0 0 1px #fff;
}

@media screen and (max-width: 1400px) {
    .list_teacher_flex .right-list .right-list-item .prop {
        left: 0;
        width: 13rem;
        height: fit-content;
    }

    .list_teacher_flex .right-list .right-list-item .prop .text h3 {
        font-size: 22px;
    }

    .list_teacher_flex .right-list .right-list-item .prop .text h3 i {
        font-size: 18px;
    }
}

@media screen and (max-width: 800px) {
    .list_teacher_flex .right-list .right-list-item .prop {
        width: 600px;

    }

    .list_teacher_flex .right-list .right-list-item .prop .text h3 {
        font-size: 20px;
    }

    .list_teacher_flex .right-list .right-list-item .prop .text h3 i {
        font-size: 16px;
    }
}

@media screen and (max-width: 660px) {
    .list_teacher_flex .right-list .right-list-item .prop {
        width: 450px;

    }

    .list_teacher_flex .right-list .right-list-item .prop .pic {
        float: none;
        margin: 0 auto;
    }

    .list_teacher_flex .right-list .right-list-item .prop .text {
        padding-left: 0;
    }

    .list_teacher_flex .right-list .right-list-item .prop .pic {
        width: 3.6rem;
        height: 4rem;
    }

    .list_teacher_flex .right-list .right-list-item .prop .text h3,
    .list_teacher_flex .right-list .right-list-item .prop .text .tea-con {
        margin-top: 8px;
    }
}

@media screen and (max-width: 500px) {
    .list_teacher_flex .right-list .right-list-item .prop {
        width: 93%;
    }
}

/*
  学术活动 list-academic
  **/
.list-academic {
    width: 100%;
}

.list-academic .list-item {
    height: 256px;
    width: 100%;
    margin-right: 2%;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);

}

.list-academic .list-item:nth-child(2n) {
    margin-right: 0;
}

.list-academic .list-item>a {
    display: block;
    height: 100%;
}

.list-academic .list-item:hover {
    background-color: var(--background);
    transition: var(--transition)
}

.list-academic .list-item .pic {
    float: left;
    width: 354px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.list-academic .list-item .pic .vbs {
    padding: 0 17px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--background);
    line-height: 33px;
    text-align: center;
    color: var(--color);
    font-size: 14px;
}

.list-academic .list-item .pic img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    object-fit: cover;
}

.list-academic .list-item :hover .pic img {
    transform: scale(1.1);
    transition: all 0.5s ease;

}

.list-academic .list-item:hover .content h3 {
    color: var(--color);
    transition: var(--transition);
}

.list-academic .list-item:hover .content p {
    color: var(--color);
    transition: var(--transition);
}

.list-academic .list-item:hover .content p span {
    color: var(--color);
    transition: var(--transition);
}

.list-academic .list-item .content {
    margin-left: 354px;
    padding: 25px 16px 30px 24px;
}

.list-academic .list-item .content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    max-height: 52px;
    min-height: 52px;
}

.list-academic .list-item .content p span {
    font-size: 16px;
    color: #666;
}

.list-academic .list-item .content p.events-lik {
    text-align: right;
    margin-top: 5px;
}

.list-academic .list-item .content p.events-lik span {
    font-size: 14px;
    color: #666;
    line-height: 30px;
    padding-right: 26px;
    background: url(../images/events-herf.png) no-repeat right center;
    background-size: 21px 7px;
    vertical-align: -5px;
}

.list-academic .list-item:hover .content p.events-lik span {
    color: #fff;
    transition: var(--transition);
    background-image: url(../images/events-href-h.png)
}

.list-academic .list-item .content p {
    font-size: 16px;
    color: #333;
    line-height: 38px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-academic .list-item .content p span {
    color: #333;
}

@media screen and (max-width:1300px) {
    .list-academic .list-item {
        width: 100%;
        float: none;
        margin-right: 0
    }

    .list-academic .list-item:nth-child(2n) {
        margin-right: 0
    }
}

@media screen and (max-width:1250px) {

    .list-academic .list-item .content {
        padding-left: 20px;
    }

}

@media screen and (max-width:1100px) {

    .list-academic .list-item .content {
        padding-left: 20px;
    }

    .list-academic .list-item .pic {
        width: 210px;
    }

    .list-academic .list-item .content {
        margin-left: 210px;
    }
}

@media screen and (max-width:500px) {
    .list-academic .list-item .pic {
        float: none;
        margin: 0 auto;
        padding-top: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .list-academic .list-item {
        height: auto;
    }

    .list-academic .list-item .content {
        margin-left: 0;
    }

}

/*
图文列表页 list_img
**/
.list_img {
    width: 100%;
}

.list_img .right-list-item {
    margin-bottom: 20px;
    height: 254px;
}

.list_img .right-list-item .items_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.list_img .right-list-item .items_box a .img1 {
    width: 279px;
    height: 254px;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_img .right-list-item .items_box a .img1 img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}



.list_img .right-list-item .items_box a .text {
    width: calc(100% - 279px);
    padding-top: 40px;
    padding-bottom: 34px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 32px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: #f1f1f1 url(../images/left__items-h.png) no-repeat right center;
}

.list_img .right-list-item .items_box a .text .title {
    color: var(--dark);

    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 60px;
    margin-bottom: 11px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_img .right-list-item .items_box a .text .keys {
    color: #999999;
    font-size: 14px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-orient: vertical;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 58px;
    margin-bottom: 21px;
}

.list_img .right-list-item .items_box a .text .date span {
    font-size: 16px;
    color: #999;
    line-height: 30px;
    padding-left: 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: -5px;
}

.list_img .right-list-item .items_box a .text .date span {
    background: url(../images/20230717155303-h.png) no-repeat left center;
}


.list_img .right-list-item .items_box a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_img .right-list-item .items_box a:hover .text {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: url(../images/left__items1.png) no-repeat center center / cover;

}

.list_img .right-list-item .items_box a:hover .text .title {
    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_img .right-list-item .items_box a:hover .text .keys {

    color: var(--color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_img .right-list-item .items_box a:hover .text .date span {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: #fff;
    background-image: url(../images/20230717155303.png);
}

@media screen and (max-width:720px) {
    .list_img .right-list-item {
        height: 100%;
    }

    .list_img .right-list-item .items_box a .img1 {
        width: 100%;
        height: auto;
    }

    .list_img .right-list-item .items_box a .text {
        width: 100%;
    }
}

/*
办公网 office
**/
.office {
    padding: 48px 0;
    background: url(../images/office-bg.png) no-repeat left bottom;
    display: block;
    width: c;
}

.office .layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.office .left {
    width: 21.37%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
}

.office .left .menu-header {
    width: 100%;
    height: 105px;
    position: relative;
    background-color: var(--background);
    display: none;
}

.office .left .menu-header h3 {
    font-size: 24px;
    color: var(--color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.office .left .menu1 {
    padding-bottom: 5px;
    padding-bottom: calc(99px + 175px);
    background: url(../images/office-lef-bg.png) no-repeat center bottom /cover;
}

.office .left .menu1 .menu-item {
    /* background-color: #f3f2ef; */
}

.office .left .menu1 .menu-item>a {
    display: block;
    height: 77px;
    line-height: 77px;
    font-size: 20px;
    color: var(--dark);
    padding: 0 23px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    position: relative;
}

.office .left .menu1 .menu-item>a p {
    border-bottom: 1px solid #b8c6e1;
    background: url(../images/office_black_right.png) no-repeat right 8px center;
}


.office .left .menu1 .menu-item .menu-down {
    display: none;
    background-color: #fff;
}

.office .left .menu1 .menu-item .menu-down .down-item>a {
    display: block;
    height: 77px;
    line-height: 77px;
    font-size: 20px;
    color: var(--dark);
    padding: 0 14px 0 54px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #d9d9d9;
}

.office .left .menu1 .menu-item .menu-down .menu-down .down-item>a {
    display: block;
    height: 77px;
    line-height: 77px;
    font-size: 20px;
    color: var(--dark);
    padding: 0 14px 0 84px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.office .left .menu1 .menu-item .menu-down .down-item.selected {
    background-color: var(--color);
}

.office .left .menu1 .menu-item .menu-down .down-item.selected>a {
    border-color: transparent;
    color: #c11d43;
    color: #002e5f;
    background: #f4f4f4;
}

.office .left .menu1 .menu-item.selected {
    background-color: #ffffff;

}

.office .left .menu1 .menu-item.parent {
    background-color: var(--color);
}

.office .left .menu1 .menu-item.parent>a {
    color: #be1139;
    border-left: 8px solid #be1139;
}

.office .left .menu1 .menu-item.parent>a p {
    border-color: transparent;
    color: #be1139;
    background: url(../images/arrow_right.png) no-repeat right 8px center;
}

.office .left .menu1 .menu-item.parent .menu-down {
    display: block;
}

.office .left .menu1 .menu-item.selected>a {
    color: var(--color);
    border-left: 8px solid #be1139;
}

.office .left .menu1 .menu-item.selected>a p {
    color: #be1139;
    border-color: transparent;
    background: url(../images/arrow_right.png) no-repeat right 8px center;
}

.office .left .menu1 .menu-item.selected>a::before {
    display: block;
}

.office .left .menu1 .menu-item.selected .menu-down {
    display: block;
}

.office .left .menu-header {
    display: block;
    background: url(../images/office-left-bg.png) no-repeat right center /cover;
}

.office .left_box {
    background-color: #fff;
}

.displayinfo_content .right {
    background-color: transparent;
    width: calc(100% - 24.89%);
}

@media screen and (max-width: 1200px) {
    .office .left {
        width: 25%;
    }

    .office .left .menu-header h3 {
        text-align: center;
        line-height: 105px;
        transform: translate(0, 0);
        position: static;
    }

    .office .right {
        width: 71% !important;
    }
}

.office .wp_subcolumn_list .wp_sublist .sublist_title {
    border: none;
    height: 0
}

.table_list_2 {
    margin-top: 24px;
}

.table_list_2 .table_list li {
    height: 66px;
    line-height: 66px;
    width: 21.7%;
    display: inline-block;
    margin-bottom: 20px;
    background: #f7f7f7;
    text-align: center;
    font-size: 22px;
    color: #333;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.table_list_2 .table_list li.cur {
    background: #be1139;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.table_list_2 .table_list li.cur a {
    color: #fff;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.table_list_2 .table_list li a {
    position: relative;
    height: 100%;
    display: block;
}

.table_list_2 .table_list li a::after {
    width: 1px;
    height: 43%;
    content: "";
    background: #d0d0d0;
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.table_list_2 .table_list li.cur a::after {
    display: none;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.table_list_2 .table_list .table_list2 {
    display: inline-block;
    position: relative;
    width: 13%;
    vertical-align: top;
}

.table_list_2 .table_list .table_list2 a {
    width: 100%;
    display: none;

    text-align: center;
    font-size: 18px;
    color: #333;

    line-height: 66px;

    background: #f7f7f7 url(../images/office_jiantou.png) no-repeat right 19px center;
    background-size: 19px 11px;

}

.table_list_2 .table_list .table_list2 a:first-child {
    display: block;
}

.wp_subcolumn_list {
    display: none;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.wp_subcolumn_list:first-child {
    display: block;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

@media screen and (max-width: 920px) {
    .office .layout {
        display: block;
    }

    .office .left {
        width: 310px;
    }

    .office .right {
        width: 100% !important;
    }
}

.office .right .position {
    padding-top: 12px;
    padding-bottom: 22px;
    border-bottom: 3px solid #d6d4d5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.office .right .position h3 {
    font-size: 30px;
    color: #002e5f;
}

.office .right .position h3 i {
    font-size: 18px;
    font-weight: normal;
    font-family: "RobotoRegular";
    font-style: normal;
    color: #002e5f;
    padding-left: 12px;
}

.office .right .position .breadcrumb {
    background: url(../images/positon.png) no-repeat left top 2px;
    background-size: 15px 17px;
    padding: 0 0 0 35px;
    margin-bottom: 0;
    float: right;
}

.office .right .position .breadcrumb>li {
    display: inline-block;
}

.office .right .position .breadcrumb a {
    font-size: 16px;
    color: #666666;
}

.office .right .position .breadcrumb>li+li:before {
    content: "\003e";
    font-family: "宋体 SimSun";
    padding: 0 5px;
    color: #666666;
}

.list-title {
    margin-top: 24px;
}

.list-title .wp_listcolumn_x .wp_column {
    height: 66px;
    line-height: 66px;
    width: 20%;
    margin-bottom: 20px;
}

.list-title .wp_listcolumn_x .wp_column a {
    color: #333;
    font-weight: normal;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 22px;
}

.list-title .wp_listcolumn_x .wp_column a.selected {
    background-color: #be1139;
    color: #fff;
}

.office .right .right-list .right-list-item {
    padding-top: 20px;
    border-bottom: 1px solid #d6d4d5;
    padding-bottom: 18px;
    transition: var(--transition);
}

.office .right .right-list .right-list-item:hover {
    background: var(--background);
}

.office .right .right-list .right-list-item:hover a .time .d,
.office .right .right-list .right-list-item:hover a .time .y,
.office .right .right-list .right-list-item:hover a p {
    color: var(--color)
}

.office .right .right-list .right-list-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: center;
    background: url(../images/office_jiantou_1.png) no-repeat right 13px center;
    background-size: 23px 8px;
}

.office .right .right-list .right-list-item:hover a {
    background-image: url(../images/office_jiantou_2.png)
}

.office .right .right-list .right-list-item a .time {
    display: table-row;
    width: 82px;
    height: 66px;
    text-align: center;
}

.office .right .right-list .right-list-item a .time .d {
    display: block;
    font-size: 24px;
    color: var(--background);
    font-weight: bold;
    line-height: 30px;
    padding-top: 2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.office .right .right-list .right-list-item a .time .y {
    display: block;
    font-size: 14px;
    color: #002e5f;
    line-height: 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.office .right .right-list .right-list-item a p {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 18px;
    color: var(--dark);
    line-height: 30px;
    overflow: hidden;
    padding-left: 20px;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 85%;
}

.office .right .down-sev {
    padding-top: 48px;
}

.office .right .down-sev a {
    display: inline-block;
    width: 48%;
    height: 174px;
    line-height: 174px;
    text-align: center;
    background: no-repeat right center /cover;
    border-radius: 15px;
}

.office .right .down-sev a span {
    font-size: 30px;
    color: #fff;
    padding-left: 67px;
    background: no-repeat left center;
    line-height: 58px;
    display: inline-block;
}

.office .right .down-sev a.download {
    background-image: url(../images/download-bg.png);

}

.office .right .down-sev a.download span {
    background-image: url(../images/download-icon.png);
    background-size: 43px 47px;
}

.office .right .down-sev a.serve {
    background-image: url(../images/serve-bg.png);
}

.office .right .down-sev a.serve span {
    background-image: url(../images/serve-icon.png);
    background-size: 50px 45px;
}

@media screen and (max-width: 667px) {
    .table_list_2 .table_list li {
        width: 33%;
    }

    .table_list_2 .table_list .table_list2 {
        width: 20%;
    }

    .office .right .position h3 {
        display: none;
    }

    .office .right .position {
        padding-top: 20px;
    }

    .office .right .down-sev a {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .table_list_2 .table_list li {
        width: 50%;
    }

    .table_list_2 .table_list .table_list2 {
        width: 50%;
    }
}

/*
常见问题 list_faq
**/
.list_faq {
    width: 100%;
}

.list_faq .right-list .right-list-item {
    box-sizing: border-box;
    padding-left: 14px;
    border-bottom: 1px dashed #9f9b9b;
}

.list_faq1 .right-list .right-list-item {
    padding-left: 4px;
}

.list_faq .right-list .right-list-item:first-child {
    padding-top: 0;
}



.list_faq .right-list .right-list-item .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
}

.list_faq .right-list .right-list-item .title a {
    font-size: 18px;
    color: #333;
    padding-left: 25px;
    background: url(../images/jia-icon.png) no-repeat left center;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.list_faq .right-list .right-list-item .text {
    display: none;
    font-size: 16px;
    color: #666666;
    line-height: 1.75em;
    padding-left: 26px;
    box-sizing: border-box;
}

.list_faq1 .right-list .right-list-item .title a {

    background: url(../images/wen-icon.png) no-repeat left center;
    background-size: 40px;
    padding-left: 45px;
}

.list_faq1 .right-list .right-list-item .text {
    // background: url(../images/da-icon.png) no-repeat left top;
    background-size: 40px;
    padding-left: 45px;
    padding-bottom: 10px;
}

.list_faq .right-list .right-list-item .text span.yc {
    font-size: 16px;
    color: #003f88;
    cursor: pointer;
}

.list_faq .right-list .right-list-item.show .text {
    display: block;

}

.list_faq .right-list .right-list-item.show .openName {
    background: url(../images/jian-icon.png) no-repeat left center;
}

.list_faq1 .right-list .right-list-item.show .openName {
    background: url(../images/da-icon.png) no-repeat left center;
}

.list_faq .right-list .right-list-item .text span.yc {
    font-size: 16px;
    color: #003f88;
    cursor: pointer;
    /*鼠标变小手*/
}

.list_faq .right-list .right-list-item.show .title {

    margin-bottom: 10px;
}

@media screen and (max-width: 710px) {
    .list_faq .right-list .right-list-item .text {
        padding-left: 11px;

    }

    .list_faq .right-list .right-list-item.show .title {
        margin-bottom: 28px;
    }
}

/**
招生信息 list_admission
*/

.list_admission {
    position: relative;
}

.list_admission .left_box {
    background: transparent;

}

.list_admission .right_box {
    background: url(../images/list_admissin_right_bg.png) no-repeat right bottom;
}

.list_admission_zhuanye {
    box-sizing: border-box;
    padding: 78px 0 67px;
    background: url(../images/list-admission_zhuanye.png) no-repeat center center /cover;
}

.list_admission_zhuanye .title {
    width: 100%;
    height: 100%;
    text-align: center;
}

.list_admission_zhuanye .title span {
    font-size: 30px;
    color: var(--color);
    position: relative;
    padding-bottom: 60px;
    display: block;
}

.list_admission_zhuanye .title span::after {
    content: "";
    width: 0.95rem;
    height: 0.03rem;
    background-color: #be1139;
    position: absolute;
    left: 50%;
    bottom: 38px;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.list_admission_zhuanye .title p {
    font-size: 18px;
    color: var(--color);
    line-height: 2;

}

.list_admission_zhuanye .content {
    padding-top: 56px;
}

.list_admission_zhuanye .content .list_admission_item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

.list_admission_zhuanye .content .list_admission_item .abs {
    position: absolute;
    left: 91px;
    top: 49px;
    width: 80%;
    border: 1px dashed #ffffff;
    z-index: 0;
}

.list_admission_zhuanye .content .list_admission_item .list_admission_items {
    position: relative;
    z-index: 1;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.list_admission_zhuanye .content .list_admission_item .list_admission_items .img1 {
    width: 116px;
    height: 99px;
    overflow: hidden;
}

.list_admission_zhuanye .content .list_admission_item .list_admission_items .img1 img {
    width: 100%;
    height: 100%;
}

.list_admission_zhuanye .content .list_admission_item .list_admission_items .text {
    color: var(--color);
    font-size: 16px;
    line-height: 36px;
    width: 206px;
    margin-top: 38px;
}

.list_admission_zhuanye .more {
    width: 301px;
    height: 62px;
    border: 1px solid #ffffff;
    line-height: 62px;
    text-align: center;
    color: var(--color);
    margin: 28px auto 0;
}

.list_admission_zhuanye .more span {
    padding-left: 40px;
    background: url(../images/list_admission_more1.png) no-repeat left center;
    background-size: 21px 23px;
}

.list_admission_dagang {
    box-sizing: border-box;
    padding: 68px 0 57px;
}

.list_admission_dagang .title {
    width: 100%;
    height: 100%;
    text-align: center;
}

.list_admission_dagang .title span {
    font-size: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 60px;
    display: block;
}

.list_admission_dagang .title span::after {
    content: "";
    width: 0.95rem;
    height: 0.03rem;
    background-color: #be1139;
    position: absolute;
    left: 50%;
    bottom: 38px;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.tabs {
    width: 100%;
    height: 100%;
}

.tabs ul {
    display: flex;
    border: 1px solid #dddddd;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.tabs ul li {
    width: 25%;
    border-right: 1px solid #dddddd;
    border-left-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    padding: 32px 0;
}

.tabs ul li p {
    text-align: center;
    font-size: 20px;
    color: var(--dark);
    line-height: 36px;
    cursor: pointer;
}

.tabs ul li.active {
    background-color: var(--background);
    border-color: transparent;
}

.tabs ul li.active p {
    color: var(--color);
    font-weight: bold;
}

.tabs ul li:last-child {
    border-right: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tabs table {
    border-collapse: collapse;
    width: 100%;
}

.tabs th,
.tabs td {
    padding: 8px 0;
    text-align: left;
    border: 1px solid #ddd;
}

.tabs thead th {
    color: #fff;
    background-color: #be1139;
    font-weight: normal;
    font-size: 18px;
}

.tabs tbody tr:nth-child(even) {
    background-color: #f2f6fe;
}

.list_admission_zhiye {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 0 84px;
    position: relative;

}

.list_admission_zhiye .title {
    width: 100%;
    height: 100%;
    text-align: center;
}

.list_admission_zhiye .title span {
    font-size: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 60px;
    display: block;
}

.list_admission_zhiye .title span::after {
    content: "";
    width: .55rem;
    height: 0.03rem;
    background-color: #be1139;
    position: absolute;
    left: 50%;
    bottom: 38px;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.list_admission_zhiye .left {
    width: 45.8%;
    float: left;
    position: relative;
    margin-top: 98px;
    display: flex;
    justify-content: flex-end;
}

.list_admission_zhiye .left .text {
    width: 72%;
    padding-right: 9%;
    padding-top: 73px;
}

.list_admission_zhiye .left .text p {
    line-height: 2;
    font-size: 16px;
    color: var(--dark);
}

.list_admission_zhiye .content {

    background: url(../images/list_admission_zhiye_bg.png) no-repeat center center /cover;
}

.list_admission_zhiye .left .abs {
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #be1139;
    left: 0;
    top: 0;
}

.list_admission_zhiye .right {
    width: calc(100% - 45.8%);
    float: left;
    height: 564px;
}

.list_admission_zhiye .right .img1 {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.list_admission_zhiye .right .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .list_admission_zhiye .left .text {

        padding-top: 48px;

    }
}

@media screen and (max-width:1071px) {
    .list_admission_zhuanye .content .list_admission_item {
        justify-content: flex-start;
    }

    .list_admission_zhuanye .content .list_admission_item .abs {
        display: none;
    }

    .list_admission_zhuanye .content .list_admission_item .list_admission_items {
        width: 33%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 935px) {
    .list_admission_zhiye .left {
        margin-top: 77px;
    }

    .list_admission_zhiye .left .text {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;

    }

    .list_admission_zhiye .right {
        height: 518px;
    }
}

@media screen and (max-width: 900px) {
    .tabs ul {
        border-bottom: 1px solid transparent;
    }

    .tabs ul li {
        width: 50%;
        border-bottom: 1px solid #ddd;
    }

    .tabs ul li:nth-child(2) {
        border: 1px solid #ddd;
        border-bottom-color: #dddddd;
        border-left-color: transparent;
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .tabs thead th:nth-child(2) {
        width: 10%;
    }
}

@media screen and (max-width: 700px) {
    .list_admission_zhiye {
        padding-bottom: 34px;
    }

    .list_admission_zhiye .content {
        padding: 0 20px;
    }

    .list_admission_zhiye .left {
        float: none;
        width: 100%;
        margin-top: 0;
    }

    .list_admission_zhiye .left .text {
        padding-top: 25px;
    }

    .list_admission_zhiye .right {
        width: 100%;
        float: none;
        height: auto;
    }

    .list_admission_zhiye .right .img1 img {
        height: auto;
    }
}

@media screen and (max-width:681px) {

    .list_admission_zhuanye .content .list_admission_item .list_admission_items {
        width: 48%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .list_admission_zhuanye .content .list_admission_item .list_admission_items .text {
        margin-top: 0;
        margin-left: 10px;
    }
}

@media screen and (max-width:571px) {
    .list_admission_zhuanye .content .list_admission_item {
        display: block;
    }

    .list_admission_zhuanye .content .list_admission_item .list_admission_items {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .list_admission_zhuanye .content .list_admission_item .list_admission_items .text {
        margin-top: 0;
        margin-left: 10px;
    }

    .tabs ul li {
        padding: 10px 0;
    }

    .tabs ul li p {
        font-size: 14px;
        line-height: 24px;
    }

    .tabs thead th {
        font-size: 16px;
    }

    .tabs tbody tr td p {
        font-size: 14px !important;
    }
}

@media screen and (max-width:400px) {
    .list_admission_zhuanye .content .list_admission_item .list_admission_items {
        justify-content: space-evenly;
    }

    .list_admission_zhuanye .content .list_admission_item .list_admission_items .text {
        margin-top: 0;
        margin-left: 10px;
        width: 100%;
    }
}

/*
PI课题组 list_yjtd 
*/
.list_yjtd {
    width: 100%;
}

.list_yjz-leader li:first-child {
    display: none;
}

.list_yjz-leader li {
    padding: 15px 5px 15px 15px;
    overflow: hidden;
    border: 1px solid #f4f4f4;
    border-top: 3px solid #003F88;
    margin-top: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.list_yjz-leader .members01,
.list_yjz-leader .members02 {
    display: none;
}

.list_yjz-leader li .pic {
    float: left;
    width: 150px;
    height: 200px;
    overflow: hidden;

}

.list_yjz-leader li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list_yjz-leader li .info {
    padding: 5px 5px 0 175px;
}

.list_yjz-leader h3 {
    font-size: 22px;
    color: #003F88;
    padding: 5px 15px 10px 0;
}

.list_yjz-leader .info h3 span {
    font-weight: 800;
    font-size: 14px;
    margin-left: 10px;
    color: #333;
}

.list_yjz-leader li:hover h3 {
    color: #003F88;
}

.list_yjz-leader .info span {
    font-weight: normal;
}

.list_yjz-leader .info p {
    color: #333;
    font-size: 14px;
    line-height: 32px;
    word-break: break-all;
    font-weight: normal;
}

.list_yjz-leader .info p a {
    color: #003F88;
    font-weight: normal;

}

.list_yjz-leader .info p a:hover {
    text-decoration: underline;
}

.list_yjz-leader .info .vis {
    visibility: hidden;
}

@media screen and (max-width: 580px) {

    .list_yjz-leader li {
        padding: 20px 0;
    }

    .list_yjz-leader li .pic {
        float: none;
        margin: 0 auto;
    }

    .list_yjz-leader li .info {
        padding: 20px 10px 0;
    }
}

/*优秀毕业生**/

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item {
    float: left;
    width: 30.73333%;
    margin-right: 3.9%;
    min-height: 330px;
    margin-top: 30px;
    box-shadow: 0 0 10px #ccc;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item:nth-child(3n) {
    margin-right: 0;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box {
    width: 100%;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box .img1 {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box .img1 img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box .text {
    background-color: #fff;
    position: relative;
    max-width: 100%;
    padding: 0.2rem 0.18rem 0.3rem;

}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box .text .title {
    font-size: 18px;
    color: #002e5f;
    line-height: 1.5;
    font-weight: bold;
    padding-bottom: 5px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.displayinfo_content .right_box .list_yxbys .right-list .right-list-item .items_box .text .key {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media screen and (max-width: 680px) {
    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item {
        width: 47.73333%;
    }

    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item:nth-child(2n) {
        margin-right: 0;
    }

    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item:nth-child(3n) {
        margin-right: 3.9%;
    }
}

@media screen and (max-width: 580px) {
    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item:nth-child(2n) {
        margin-right: 0;
    }

    .displayinfo_content .right_box .list_yxbys .right-list .right-list-item:nth-child(3n) {
        margin-right: 0;
    }
}

/*历年大事记**/
.l_develop .title {
    text-align: center;
    font-size: 30px;
    padding-top: .44rem;
    margin-bottom: .5rem;

}

.l_develop .box .img_box {
    display: flex;
    padding-right: 20px;
    justify-content: space-between;
    align-items: center;

}

.l_develop .box .img_box .left_box12 {
    background: url(../images/develop_bg.png) no-repeat center center;
    background-color: #fff;
    background-size: 100%;
    width: 640px;
    max-width: 100%;

    height: 300px;
    box-sizing: border-box;
    padding: 55px 30px 25px 40px;
}

.l_develop .box .img_box .left_box12 .date {
    color: #333333;
    font-size: 22px;
    font-weight: bold;
    line-height: 40px;

}

.l_develop .box .img_box .left_box12 .content {
    font-size: 18px;
    line-height: 2;
    color: #666666;

}

.l_develop .box .img_box .right_box12 {
    width: 374px;
    height: 3rem;
    box-sizing: border-box;
    padding-bottom: 20px;
}

.l_develop .box .img_box .right_box12 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.l_develop .line_box {

    padding: 0 0 50px;
    margin: .5rem 0;
}

.l_develop .line {
    border-top: 1px solid #333;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.l_develop .line_box .swiper-wrapper {
    bottom: -54px;
}

.l_develop .line_box .date .time {
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #666;
    transition: all 0.5s;
    padding-top: 44px;

}

.l_develop .line_box .date::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #1d50a3;
    border-radius: 50%;
    transition: all 0.5s;
}

.l_develop .line_box .swiper-slide-active::before {
    box-shadow: 0px 0px 3px 4px #ac000063;
    background-color: #ac0000;


}

.l_develop .line_box .swiper-slide-active .time {
    font-weight: bold;
    color: #ac0000;
}

.l_develop .line_box .btn1 {
    position: absolute;
    width: 100%;
    top: 44%;

    transform: translateY(-50%);
    width: 30px;
    height: 15px;
    background: url(../images/arrow1.png) no-repeat center center;
    background-size: 100%;
    z-index: 1;
}

.l_develop .line_box .btn_next {

    right: 0;
}

.l_develop .line_box .btn_pre {
    transform: translateY(-50%) rotateY(180deg);
    left: 0;

}

.l_develop .box_no_swiper {
    display: none;
    align-items: stretch;
    justify-content: space-between;
    align-content: space-around;
    flex-wrap: wrap;
}



.l_develop .box_no_swiper .left_box12 {

    width: 48%;
    background: #fff;
    margin-bottom: 5%;
    box-shadow: 0 0 7px 4px #8580806e;
    border-radius: .3rem;
    padding: 15px 30px 20px 40px;
}

.l_develop .box_no_swiper .left_box12 .date {
    color: #333333;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
}


@media screen and (max-width:1250px) {
    .l_develop .line_box {
        margin-top: 0;
    }

    .l_develop .box .img_box .left_box12 .content {
        line-height: 1.5;
    }
}

@media screen and (max-width: 1150px) {
    .l_develop .line_box {
        margin: 0;
    }

    .l_develop .line_box .date .time {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}

@media screen and (max-width:900px) {
    .l_develop .box .img_box .left_box12 {
        height: 230px;
        background: #fff;
        margin: 5px;
        box-shadow: 0 0 7px 4px #8580806e;
        border-radius: .3rem;
        padding: 15px 30px 40px 40px;
    }

    .l_develop .box .img_box .right_box12 {
        padding-bottom: 0;
    }

}

@media screen and (max-width:800px) {
    .l_develop .box .img_box .left_box12 .date::before {
        font-size: 18px;
        line-height: 36px;
    }

    .l_develop .box .img_box .left_box12 .content {
        font-size: 15px;

    }

    .l_develop .line_box .date .time {
        font-size: .24rem;
    }

    .l_develop .box,
    .l_develop .line_box {
        display: none;

    }

    .l_develop .box_no_swiper {
        display: flex;
    }


}



@media screen and (max-width:675px) {
    .l_develop .box .img_box .right_box12 {
        display: none;
    }

    .l_develop .box .img_box {
        padding-right: 0;
    }

    .l_develop .box .img_box .left_box12 {
        width: 100%;
    }

    .l_develop .line_box .date .time {
        font-size: .22rem;
    }

    .l_develop .line_box .date .time {
        padding-top: 30px;
    }

    .l_develop .line_box .swiper-wrapper {
        bottom: -44px;
    }

}

@media screen and (max-width:560px) {
    .l_develop .box_no_swiper {
        justify-content: space-around;
    }

    .l_develop .box_no_swiper .left_box12 {
        width: 80%;

    }

}



@media screen and (max-width:435px) {

    .l_develop .line_box .date .time {
        font-size: 12px;
    }
}

@media screen and (max-width:375px) {
    .l_develop .box_no_swiper {
        padding: 0 0.3rem;
        box-sizing: border-box;
    }

    .l_develop .box_no_swiper .left_box12 {
        width: 100%;

    }

}

/*
  学院刊物  list_xykw
  **/
.list_xykw {
    width: 100%;

}

.list_xykw .right_content_item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
}

.list_xykw .right-list {
    width: 49%;
    margin-left: 1%;
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
}

.list_xykw .right-list:nth-child(odd) {
    margin-left: 0;
}

.list_xykw .right-list .right-list-item .pic {
    display: none;
    margin-bottom: 10px;
}

.list_xykw .right-list .right-list-item:first-child .pic {
    border-bottom: 4px solid #876e6a;
    position: relative;
    width: 2.68rem;
    height: auto;
    display: block;
}

.list_xykw .right-list .right-list-item:first-child {
    float: left;
    padding-left: 0
}

.list_xykw .right-list .right-list-item {
    padding-left: 2.78rem
}

.list_xykw .right-list .right-list-item:first-child .title {
    display: none;
}

.list_xykw .right-list .right-list-item .title {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2;
    /* margin-top: 20px; */
    border-bottom: 1px dashed #333;
    display: block;
    width: 100%;
    padding-right: 10px;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xykw .right-list .right-list-item a.mroe_list {

    font-size: 18px;
    color: #002e5f;
    line-height: 2;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.list_xykw .right-list .right-list-item .title:hover {
    color: #c11d43;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    padding-left: 10px;
}

.list_xykw .right-list .right-list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list_xykw .right-list .right-list-item:last-child {
    position: absolute;
    bottom: 11px;
    right: 0
}

@media screen and (max-width: 1200px) {
    .list_xykw .right-list {
        /* width: calc(25% - 17px);
       margin-left: 20px; */
    }
}

.list_xykw .right-list .right-list-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 1110px) {
    .list_xykw .right-list {
        /*width: calc(33% - 17px);*/
    }
}

@media screen and (max-width: 900px) {
    .list_xykw .right-list {
        /*width: calc(25% - 17px);*/
    }

}

@media screen and (max-width: 700px) {
    .list_xykw .right-list {
        width: 100%;
        /*  width: calc(33% - 10px);
        margin-left: 15px; */
    }



    .list_xykw .right-list .right-list-item .title {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .list_xykw .right-list {
        width: 100%;
        /* margin-left: 15px; */
        padding-bottom: 65px
    }

    .list_xykw .right-list .right-list-item:first-child {
        float: none;
    }

    .list_xykw .right-list .right-list-item:first-child .pic {
        width: 100%;
    }

    .list_xykw .right-list .right-list-item {
        padding-left: 0;
    }
}

/* 新闻动态 */
.list_xwdt {
    padding: 48px 0;
    background: url(../images/office-bg.png) no-repeat left bottom;
    display: block;
    width: c;
}

.list_xwdt .layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.list_xwdt .left {
    width: 21.37%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
}

.list_xwdt .left .menu-header {
    width: 100%;
    height: 105px;
    position: relative;
    background-color: var(--background);
    display: none;
}

.list_xwdt .left .menu-header h3 {
    font-size: 24px;
    color: var(--color);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.list_xwdt .left .menu1 {
    padding-bottom: 5px;
    padding-bottom: calc(99px + 175px);
    background: url(../images/office-lef-bg.png) no-repeat center bottom /cover;
}

.list_xwdt .left .menu1 .menu-item {
    /* background-color: #f3f2ef; */
}

.list_xwdt .left .menu1 .menu-item>a {
    display: block;
    height: 77px;
    line-height: 77px;
    font-size: 20px;
    color: var(--dark);
    padding: 0 23px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    position: relative;
}

.list_xwdt .left .menu1 .menu-item>a p {
    border-bottom: 1px solid #b8c6e1;
    background: url(../images/office_black_right.png) no-repeat right 8px center;
}


.list_xwdt .left .menu1 .menu-item .menu-down {
    display: none;
    background-color: #fff;
}

.list_xwdt .left .menu1 .menu-item .menu-down .down-item>a {
    display: block;
    height: 77px;
    line-height: 77px;
    font-size: 20px;
    color: var(--dark);
    padding: 0 54px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.list_xwdt .left .menu1 .menu-item .menu-down .down-item.selected {
    background-color: var(--color);
}

.list_xwdt .left .menu1 .menu-item .menu-down .down-item.selected a {
    border-color: transparent;
    color: #c11d43;
    color: #002e5f;
    background: #d9e0ec;
}

.list_xwdt .left .menu1 .menu-item.selected {
    background-color: #ffffff;

}

.list_xwdt .left .menu1 .menu-item.parent {
    background-color: var(--color);
}

.list_xwdt .left .menu1 .menu-item.parent>a {
    color: #be1139;
    border-left: 8px solid #be1139;
}

.list_xwdt .left .menu1 .menu-item.parent>a p {
    border-color: transparent;
    color: #be1139;
    background: url(../images/arrow_right.png) no-repeat right 8px center;
}

.list_xwdt .left .menu1 .menu-item.parent .menu-down {
    display: block;
}

.list_xwdt .left .menu1 .menu-item.selected>a {
    color: var(--color);
    border-left: 8px solid #be1139;
}

.list_xwdt .left .menu1 .menu-item.selected>a p {
    color: #be1139;
    border-color: transparent;
    background: url(../images/arrow_right.png) no-repeat right 8px center;
}

.list_xwdt .left .menu1 .menu-item.selected>a::before {
    display: block;
}

.list_xwdt .left .menu1 .menu-item.selected .menu-down {
    display: block;
}

.list_xwdt .left .menu-header {
    display: block;
    background: url(../images/office-left-bg.png) no-repeat right center /cover;
}

.list_xwdt .left_box {
    background-color: #fff;
}

.displayinfo_content .right {
    background-color: transparent;
    width: calc(100% - 24.89%);
}

@media screen and (max-width: 1200px) {
    .list_xwdt .left {
        width: 25%;
    }

    .list_xwdt .left .menu-header h3 {
        text-align: center;
        line-height: 105px;
        transform: translate(0, 0);
        position: static;
    }

    .list_xwdt .right {
        width: 71%;
    }
}

.list_xwdt .wp_subcolumn_list .wp_sublist .sublist_title {
    border: none;
    height: 0
}

.list_xwdt .table_list_2 {
    margin-top: 24px;
}

.list_xwdt .table_list_2 .table_list li {
    height: 66px;
    line-height: 66px;
    width: 20%;
    display: inline-block;
    margin-bottom: 20px;
    background: #f7f7f7;
    text-align: center;
    font-size: 22px;
    color: #333;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xwdt .table_list_2 .table_list li.cur {
    background: #be1139;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xwdt .table_list_2 .table_list li.cur a {
    color: #fff;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xwdt .table_list_2 .table_list li a {
    position: relative;
    height: 100%;
    display: block;
}

.list_xwdt .table_list_2 .table_list li a::after {
    width: 1px;
    height: 43%;
    content: "";
    background: #d0d0d0;
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xwdt .table_list_2 .table_list li.cur a::after {
    display: none;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.list_xwdt .table_list_2 .table_list .table_list2 {
    display: inline-block;
    position: relative;
    width: 13%;
    vertical-align: top;
}

.list_xwdt .table_list_2 .table_list .table_list2 a {
    width: 100%;
    display: none;

    text-align: center;
    font-size: 18px;
    color: #333;

    line-height: 66px;

    background: #f7f7f7 url(../images/office_jiantou.png) no-repeat right 19px center;
    background-size: 19px 11px;

}

.list_xwdt .table_list_2 .table_list .table_list2 a:first-child {
    display: block;
}

.wp_subcolumn_list {
    display: none;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

.wp_subcolumn_list:first-child {
    display: block;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}

@media screen and (max-width: 920px) {
    .list_xwdt .layout {
        display: block;
    }

    .list_xwdt .left {
        width: 310px;
    }

    .list_xwdt .right {
        width: 100%;
    }
}

.list_xwdt .right .position {
    padding-top: 12px;
    padding-bottom: 22px;
    border-bottom: 3px solid #d6d4d5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

.list_xwdt .right .position h3 {
    font-size: 30px;
    color: #002e5f;
}

.list_xwdt .right .position h3 i {
    font-size: 18px;
    font-weight: normal;
    font-family: "RobotoRegular";
    font-style: normal;
    color: #002e5f;
    padding-left: 12px;
}

.list_xwdt .right .position .breadcrumb {
    background: url(../images/positon.png) no-repeat left top 2px;
    background-size: 15px 17px;
    padding: 0 0 0 35px;
    margin-bottom: 0;
    float: right;
}

.list_xwdt .right .position .breadcrumb>li {
    display: inline-block;
}

.list_xwdt .right .position .breadcrumb a {
    font-size: 16px;
    color: #666666;
}

.list_xwdt .right .position .breadcrumb>li+li:before {
    content: "\003e";
    font-family: "宋体 SimSun";
    padding: 0 5px;
    color: #666666;
}

.list-title {
    margin-top: 24px;
}

.list-title .wp_listcolumn_x .wp_column {
    height: 66px;
    line-height: 66px;
    width: 20%;
    margin-bottom: 20px;
}

.list-title .wp_listcolumn_x .wp_column a {
    color: #333;
    font-weight: normal;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 22px;
}

.list-title .wp_listcolumn_x .wp_column a.selected {
    background-color: #be1139;
    color: #fff;
}

.list_xwdt .right .right-list .right-list-item {
    padding-top: 20px;
    border-bottom: 1px solid #d6d4d5;
    padding-bottom: 18px;
    transition: var(--transition);
}

.list_xwdt .right .right-list .right-list-item:hover {
    background: var(--background);
}

.list_xwdt .right .right-list .right-list-item:hover a .time .d,
.list_xwdt .right .right-list .right-list-item:hover a .time .y,
.list_xwdt .right .right-list .right-list-item:hover a p {
    color: var(--color)
}

.list_xwdt .right .right-list .right-list-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    align-items: center;
    background: url(../images/office_jiantou_1.png) no-repeat right 13px center;
    background-size: 23px 8px;
}

.list_xwdt .right .right-list .right-list-item:hover a {
    background-image: url(../images/office_jiantou_2.png)
}

.list_xwdt .right .right-list .right-list-item a .time {
    display: table-row;
    width: 82px;
    height: 66px;
    text-align: center;
}

.list_xwdt .right .right-list .right-list-item a .time .d {
    display: block;
    font-size: 24px;
    color: var(--background);
    font-weight: bold;
    line-height: 30px;
    padding-top: 2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_xwdt .right .right-list .right-list-item a .time .y {
    display: block;
    font-size: 14px;
    color: #002e5f;
    line-height: 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.list_xwdt .right .right-list .right-list-item a p {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 18px;
    color: var(--dark);
    line-height: 30px;
    overflow: hidden;
    padding-left: 20px;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 85%;
}

.list_xwdt .right .down-sev {
    padding-top: 48px;
}

.list_xwdt .right .down-sev a {
    display: inline-block;
    width: 48%;
    height: 174px;
    line-height: 174px;
    text-align: center;
    background: no-repeat right center /cover;
    border-radius: 15px;
}

.list_xwdt .right .down-sev a span {
    font-size: 30px;
    color: #fff;
    padding-left: 67px;
    background: no-repeat left center;
    line-height: 58px;
    display: inline-block;
}

.list_xwdt .right .down-sev a.download {
    background-image: url(../images/download-bg.png);

}

.list_xwdt .right .down-sev a.download span {
    background-image: url(../images/download-icon.png);
    background-size: 43px 47px;
}

.list_xwdt .right .down-sev a.serve {
    background-image: url(../images/serve-bg.png);
}

.list_xwdt .right .down-sev a.serve span {
    background-image: url(../images/serve-icon.png);
    background-size: 50px 45px;
}

@media screen and (max-width: 667px) {
    .list_xwdt .table_list_2 .table_list li {
        width: 33%;
    }

    .list_xwdt .table_list_2 .table_list .table_list2 {
        width: 20%;
    }

    .list_xwdt .right .position h3 {
        display: none;
    }

    .list_xwdt .right .position {
        padding-top: 20px;
    }

    .list_xwdt .right .down-sev a {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .list_xwdt .table_list_2 .table_list li {
        width: 50%;
    }

    .list_xwdt .table_list_2 .table_list .table_list2 {
        width: 50%;
    }
}




/* 研究方向列表页 */
.list-yanjiu {
    width: 100%;
    margin-top: 24px;
}

.list-yanjiu .list-item {
    width: 100%;
    margin-bottom: 70px;
    position: relative;
}

/* .list-yanjiu .list-item a{
    display: block;
} */

.list-yanjiu .list-item .pic {

    /* width: 400px; */
    width: 38.6%;
    height: 367px;
    overflow: hidden;
}

.list-yanjiu .list-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.list-yanjiu .list-item .list-content {
    /* width: 667px; */
    width: 64%;
    height: 323px;
    padding: 40px 38px 48px 41px;
    position: absolute;
    top: 14px;
    right: 0;
    background-color: #f3f5f9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E5ffffff, endColorstr=#E5ffffff);
    border: 1px solid #f7f7f7;
    transition: box-shadow 0.5s ease;
    text-align: left;
    box-sizing: border-box;
}

.list-yanjiu .list-item .title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    margin-bottom: 10px;
}

.list-yanjiu .list-item .dbt {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.list-yanjiu .list-item .dbt1 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.list-yanjiu .list-item .dbt1 i {
    font-weight: bold;
    font-style: normal
}

.list-yanjiu .list-item .content {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.list-yanjiu .list-item:hover img {
    transform: scale(1.05);
    transition: all 0.5s ease;

}

.list-yanjiu .list-item:hover .list-content {
    transition: box-shadow 0.5s ease;
}

.list-yanjiu .list-item:hover .title {
    color: #003f88;
}

@media screen and (max-width: 1300px) {
    .list-yanjiu .list-item .pic {
        height: 300px;
    }

    .list-yanjiu .list-item .title {
        margin-bottom: 15px;
        font-size: 22px;
    }

    .list-yanjiu .list-item .content {
        line-height: 28px;
    }

    .list-yanjiu .list-item .list-content {
        height: 260px;
        padding: 20px 18px 25px 21px;

    }
}

@media screen and (max-width: 1100px) {
    .list-yanjiu .list-item .pic {
        width: 42%;
        height: 300px;
    }

}

@media screen and (max-width: 700px) {
    .list-yanjiu .list-item .pic {
        width: 44%;
        height: 300px;
    }

    .list-yanjiu .list-item .list-content {
        width: 60%;
    }

}

@media screen and (max-width: 600px) {
    .list-yanjiu .list-item .pic {
        float: none;
        width: 100%;
        height: auto;
    }

    .list-yanjiu .list-item .list-content {
        float: none;
        width: 100%;
    }

    .list-yanjiu .list-item .list-content {
        position: unset;

    }

    .list-yanjiu .list-item .title {
        font-size: 20px;
    }

}

/* 办事服务 */
.right-list_bsfw {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-list_bsfw .right-list-item {
    width: 48%;
    box-sizing: border-box;
    padding: 26px 42px 30px;
    background: #edf5fe;
    border: 1px solid #eaeaea;
    margin-bottom: 41px;
}

.right-list_bsfw .right-list-item a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.right-list_bsfw .right-list-item a .img1 {
    width: 104px;
    height: 104px;
    overflow: hidden;
}

.right-list_bsfw .right-list-item a .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-list_bsfw .right-list-item a .title_box {
    margin-left: 32px;
}

.right-list_bsfw .right-list-item a .title_box p {
    font-size: 28px;
    /* line-height: 32px; */
    color: #333333;
    font-weight: bold;
    margin-bottom: 12px;
}

.right-list_bsfw .right-list-item a .title_box span {
    font-size: 14px;
    color: #999999;
}

@media screen and (max-width: 850px) {
    .right-list_bsfw .right-list-item {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 430px) {
    .right-list_bsfw .right-list-item a .img1 {
        width: 73px;
        height: 73px;
    }

    .right-list_bsfw .right-list-item {
        padding: 15px;
    }

    .right-list_bsfw .right-list-item a .title_box p {
        font-size: 18px;
        margin-bottom: 5px;
    }
}