html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
ol,
li,
a,
form,
label,
input,
textarea,
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

dl,
dd {
    margin: 0;
}


/* 设置页面字体和颜色 */

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}


/* 设置超链接样式 */

a {
    text-decoration: none;
}


/* 设置列表样式 */

ul,
ol {
    list-style: none;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #d6aa6d;
    border-radius: 6px;
}

.center {
    width: 1400px;
    margin: 0 auto
}

.header {
    background: #fff;
    height: 64px;
}

.header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header .logo {
    width: 328px;
    height: 40px;
    background: url(../../images/en/logo.png) no-repeat center/cover;
    flex-shrink: 0;
}

.toolBox {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    align-items: center;
}

.header .toolBox a {
    color: #666;
    font-size: 12px;
    background: url(../../images/en/icon.png) no-repeat left center;
    padding: 4px 0 4px 25px;
}

.header .toolBox a:hover {
    color: #d6aa6d;
}

.header .toolBox a+a {
    background-image: url(../../images/en/icon2.png);
}

.header .toolBox a+a+a {
    padding-left: 0;
    background-image: none;
}

.searchBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 64px;
}

.searchBox form {
    display: flex;
    align-items: center;
    position: relative;
    width: 0;
    overflow: hidden;
}

.searchBox input[type="text"] {
    width: 100%;
    height: 30px;
    border: 1px #000 solid;
    border-radius: 15px;
    background: #fff;
    font-size: 12px;
    color: #000;
    line-height: 28px;
    padding: 0 30px 0 10px;
}

.searchBox input[type="text"]:focus {
    outline: none;
}

.searchBox input[type="submit"] {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../../images/en/icon3.png) no-repeat center center;
    border: none;
    cursor: pointer;
}

.searchBox .seaBtn {
    width: 18px;
    height: 18px;
    background: url(../../images/en/icon3.png) no-repeat center;
    display: block;
    cursor: pointer;
}

.nav {
    width: 100%;
    height: 60px;
    background: #10193A;
    position: relative;
}

.nav ul {
    display: flex;
    justify-content: space-between;
}

.nav ul li {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
}

.nav ul li>a {
    color: #fff;
    font-size: 18px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
}

.nav ul li:hover,
.nav ul li.active {
    background-color: #d6aa6d;
    transition: all 0.3s ease;
}

.nav ul li:hover>a,
.nav ul li.active>a {
    background-color: #d6aa6d;
    transition: all 0.3s ease;
    padding-top: 4px;
    margin-top: -4px;
}

.nav ul li>dl {
    display: none;
    position: absolute;
    width: 100%;
    top: 60px;
    transition: transform 0.4s;
    list-style-type: none;
    background: rgba(255, 255, 255, 1);
    z-index: 5;
}

.nav ul li>dl>dd {
    padding: 15px 10px;
    cursor: pointer;
    border-bottom: 1px solid #efefef;
    position: relative;
}

.nav ul li>dl>dd>a {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.nav ul li>dl>dd:hover>a {
    color: #D6AA6D;
}

.nav-third {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    display: none;
    padding: 10px 0;
}

.nav-third dd {
    padding: 8px 16px;
}

.nav-third dd a {
    color: #666;
    font-size: 12px;
    word-break: keep-all;
}

.nav-third dd a:hover {
    color: #0166b4;
}

.mobile {
    width: 100%;
    background-color: #013E6D;
    padding: 0 20px;
    box-sizing: border-box;
    height: 81px;
    display: none;
}

.innerWrapper {
    position: relative;
}

.innerWrapper {
    position: relative;
}

.innerWrapper .logo {
    width: 210px;
    position: absolute;
    left: 0;
    top: 8px;
}

.innerWrapper .logo img {
    width: 100%;
}

.menuWrapper {
    float: right;
    width: 100%;
    position: relative;
    z-index: 99;
}

.menu-collapser {
    position: relative;
    width: auto;
    clear: both;
    margin: 30px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: block;
    overflow: hidden;
}

.collapse-button {
    position: relative;
    margin: 0;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    float: right;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.collapse-button .icon-bar {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0 0 0;
    background: #fff;
    border-radius: 1px;
}

.menu {
    display: none;
    background: #fff;
    max-height: 350px;
    overflow-y: auto;
    text-align: left;
    overflow-x: hidden;
    -webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    position: absolute;
    top: 81px;
    z-index: 99;
    width: 100%;
    border-radius: 0 0 4px 4px;
}

.menuOne>li {
    width: 100%;
    position: relative;
}

.menuOne>li>a {
    display: block;
    padding: 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 40px;
    font-size: 15px;
    text-transform: capitalize;
    -o-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    color: #333;
}

.menuOne>li>a:before {
    background: #013E6D;
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
}

.menuOne>li.active>a:before,
.menuOne>li:hover>a:before {
    width: 100%;
    transition: all .3s ease-in-out;
}

ul.dropdown {
    display: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    min-width: 200px;
    white-space: nowrap;
    background: #fff;
    -webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
}

.menuOne>li>ul.dropdown li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
}

.menuOne ul.dropdown li a {
    width: 100%;
    background: none;
    padding: 0 0 0 25px;
    line-height: 40px;
    font-size: 13px;
    color: #777777;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    clear: both;
    position: relative;
    outline: 0;
    z-index: 1;
    transition-delay: 0.1s;
    -o-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.menuOne ul.dropdown li dl {
    display: none;
}

.menuOne ul.dropdown li dl a {
    background: #5990ba;
    color: #fff!important;
    padding-left: 30px;
}

.menuOne ul.dropdown li a:before {
    transition: all .3s ease-in-out;
}

.menuOne ul.dropdown li a:before {
    background: #013E6D;
}

.menuOne ul.dropdown li dl:hover a {
    color: #fff;
}

.menuOne ul.dropdown li:hover a {
    color: #333
}

.menuOne li .sub-toggle {
    display: block;
    position: absolute;
    width: 50px;
    right: 0;
    line-height: 40px;
    top: 0;
    border-left: solid 1px rgba(0, 0, 0, 0.05);
    color: #181818;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    z-index: 9;
    font-size: 20px;
    color: #555;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menuOne li .sub-toggle i {
    display: block;
    width: 100%;
    height: 100%;
}

.menuOne li .expend i {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(45deg);
    /* Opera */
}

.banner {
    width: 100%;
    position: relative;
    background: url(../../images/en/bannerBg.png) no-repeat top center;
}

.banner .bannerMain {
    height: 584px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-slide {
    width: 100%;
    display: block;
    height: 100%;
}

.paginationCenter {
    position: relative;
    padding-bottom: 35px;
}

.paginationCenter .swiper-pagination span {
    float: right;
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets {
    bottom: 0;
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #BEBEBE;
    margin: 0 6px;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #d6aa6d
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.newsBox {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.title h6 {
    color: #333;
    font-size: 30px;
    font-weight: bold;
    background: url(../../images/en/titBg.png) no-repeat left top;
    padding-top: 10px;
}

.title a {
    color: #333;
    font-size: 16px;
    background: url(../../images/en/add.png) no-repeat left center;
    padding-left: 18px;
}

.title a:hover {
    color: #d6aa6d;
}

.newsList {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.newsList a.newsPop {
    width: 58%;
    flex-shrink: 0;
    height: 816px;
    background-color: #fff;
    transition: all linear 0.3s;
    position: relative;
}

.newsList a.newsPop i {
    width: 100%;
    width: 100%;
    height: 544px;
    display: block;
    position: relative;
    z-index: 10;
}

.newsList a.newsPop i span {
    padding: 12px 14px;
    background: #d6aa6d;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-style: normal;
}

.newsList a.newsPop i span b {
    font-size: 20px;
    display: block;
}

.newsList a.newsPop .newsPopCon {
    padding: 10px 40px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.newsList a.newsPop .newsPopCon h6 {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 20px 0;
    line-height: 45px;
}

.newsList a.newsPop .newsPopCon p {
    color: #666;
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.newsList a.newsPop:hover {
    background: #d6aa6d;
    transition: all linear .3s;
}

.newsList a.newsPop::before {
    content: "";
    width: 0;
    height: 100%;
    background: #d6aa6d;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all linear 0.3s;
}

.newsList a.newsPop:hover::before {
    width: 100%;
    transition: all linear 0.3s;
}

.newsList a.newsPop:hover .newsPopCon p,
.newsList a.newsPop:hover .newsPopCon h6 {
    color: #fff;
}

.newsList .newsRight {
    flex: 1;
    overflow: hidden;
}

.newsRight a.newsPop {
    width: 100%;
    display: block;
    height: 544px;
    margin-bottom: 40px;
}

.newsRight a.newsPop i {
    height: 380px;
}

.newsRight a.newsPop .newsPopCon h6 {
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
}

.newsRight a.newsPop .newsPopCon p {
    font-size: 16px;
    -webkit-line-clamp: 2;
}

.newsList .newsUl {
    width: 100%;
    background: #fff;
    height: 232px;
    padding: 30px 20px;
}

.newsList .newsUl li+li {
    margin-top: 40px;
}

.newsList .newsUl li a {
    padding: 0 20px;
    display: block;
    width: 100%;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    background: url(../../images/en/icon-right.png) no-repeat left center;
    transition: all ease-in-out 0.3s;
    line-height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.newsList .newsUl li a:hover {
    background-image: url(../../images/en/icon-right2.png);
    color: #d6aa6d;
    transition: all ease-in-out 0.3s;
}

.eventBox {
    margin-top: 60px;
}

.eventList {
    margin-top: 30px;
}

.eventItemBox {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 2%;
    flex-wrap: wrap;
}

.eventItem {
    background: #E5ECF2;
    height: 320px;
    flex: 0 0 32%;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 6px 25px;
    position: relative;
    transition: all ease-in-out 0.3s
}

.eventItem i {
    font-style: normal;
    padding: 14px 0;
    font-size: 14px;
    color: #666;
    display: block;
    box-shadow: 0px 1px 0px 0px #FFFFFF;
    border-bottom: 1px solid #D3D3D3;
    line-height: 22px;
}

.eventItem h6 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
    margin: 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.eventItem p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px 0;
}

.eventItem p b {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    background: url(../../images/en/icon-user.png) no-repeat left center;
    flex-shrink: 0;
    width: 18%;
    padding: 4px 0;
    padding-left: 24px;
}

.eventItem p+p b {
    background-image: url(../../images/en/icon-adress.png);
}

.eventItem p+p+p b {
    background-image: url(../../images/en/icon-tag.png);
}

.eventItem p span {
    flex: 1;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* padding: 4px 0; */
}

.eventItem p,
.eventItem i,
.eventItem h6 {
    position: relative;
    z-index: 3;
}

.eventItem::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #d6aa6d;
    transition: all ease-in-out 0.3s
}

.eventItem:hover i,
.eventItem:hover h6,
.eventItem:hover span,
.eventItem:hover b {
    color: #fff;
    transition: all ease-in-out 0.3s
}

.eventItem:hover p b {
    background-image: url(../../images/en/icon-userW.png);
}

.eventItem:hover p+p b {
    background-image: url(../../images/en/icon-adressW.png);
}

.eventItem:hover p+p+p b {
    background-image: url(../../images/en/icon-tagW.png);
}

.eventItem:hover::after {
    top: 0;
    transition: all ease-in-out 0.3s
}

.toolsBtn {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eventsMore {
    width: 140px;
    height: 40px;
    background: #D6AA6D;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #d6aa6d;
    transition: all ease-in-out .3s;
}

.eventsMore:hover {
    color: #d6aa6d;
    background: #fff;
    color: #d6aa6d;
    transition: all ease-in-out .3s;
}

.swiperBtn div {
    width: 40px;
    height: 40px;
    margin-left: 20px;
    position: initial;
    float: left;
    background: #fff;
    border-radius: 4px;
    transition: all ease-in-out .3s;
    margin-top: 0;
}

.swiperBtn .swiper-button-prev:after,
.swiperBtn .swiper-button-next:after {
    font-size: 22px;
    font-weight: bold;
    color: #d6aa6d;
    transition: all ease-in-out .3s;
}

.swiperBtn .swiper-button-prev:hover,
.swiperBtn .swiper-button-next:hover {
    background: #d6aa6d;
    transition: all ease-in-out .3s;
}

.swiperBtn .swiper-button-prev:hover:after,
.swiperBtn .swiper-button-next:hover:after {
    color: #fff;
    transition: all ease-in-out .3s;
}

.footer {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.footerTop {
    width: 100%;
    background: #10193A;
    padding: 40px 0;
}

.footerTop .ddList {
    display: flex;
    justify-content: center;
}

.footerTop .ddList dl {
    flex: 1;
}

.footerTop .ddList dl dt {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.footerTop .ddList dl dt::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 10px 0;
}

.footerTop .ddList dl dd a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.footerTop .ddList dl dd a:hover {
    color: #d6aa6d;
}

.footerBot {
    background: #10131E;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.footerBot p {
    color: #fff;
    font-size: 14px;
}


/* 二级页面 */

.adv {
    width: 100%;
    height: 250px;
    background: url(../../images/en/lumBg.png) no-repeat center/cover;
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.leftNav {
    width: 310px;
    flex-shrink: 0;
    margin-top: -120px;
    padding: 12px 0 20px 12px;
    background: #fff;
    border: 2px solid #C6C6C6;
}

.leftNav h4 {
    height: 88px;
    background: linear-gradient(90deg, #10193A 0%, #132875 100%);
    width: 100%;
    color: #fff;
    text-align: center;
    line-height: 88px;
    font-size: 20px;
    font-weight: bold;
    margin-left: 2px;
}

.leftNav ul {
    padding: 12px 38px;
}

.leftNav ul li a {
    display: block;
    padding: 22px 0;
    text-align: center;
    color: #666;
    font-size: 18px;
}

.leftNav ul li+li a {
    border-top: 1px dashed #999;
}

.leftNav ul li a.active,
.leftNav ul li a:hover {
    color: #333;
    font-weight: bold;
    position: relative;
}

.leftNav ul li a.active::before,
.leftNav ul li a:hover::before {
    content: "";
    position: absolute;
    left: -17px;
    bottom: 5px;
    width: 7px;
    height: calc(100% - 10px);
    background: #6283E2;
    transition: all ease-in-out 0.3s;
}

.rightCon {
    flex: 1;
    overflow: hidden;
}

.bread {
    width: 100%;
    text-align: right;
    color: #666;
    font-size: 12px;
    line-height: 20px;
    padding: 20px 0;
}

.bread a {
    color: #666;
    font-size: 12px;
    line-height: 20px;
}

.listTxt a {
    width: 100%;
    height: 130px;
    display: flex;
    background: url(../../images/en/icon-list.png) no-repeat 20px center #F3F3F3;
    margin-bottom: 20px;
    padding-left: 80px;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #F3F3F3;
    transition: all ease-in-out 0.3s;
}

.listImgCon {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.listTxt a h6,
.listImgCon h6 {
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

.listTxt a p,
.listImgCon p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.listTxt a:hover,
.listImg a:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-color: #D6AA6D;
    transition: all ease-in-out 0.3s;
}

.listImg a {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #F3F3F3;
    border: 1px solid #F3F3F3;
    padding: 12px;
    transition: all ease-in-out 0.3s;
    margin-bottom: 20px;
}

.listImg a i {
    flex-shrink: 0;
    width: 292px;
    height: 196px;
}

.detail {
    border-top: 2px solid #d6aa6d;
    width: 100%;
    padding: 0 80px;
}

.detailTit {
    text-align: center;
    padding: 25px 0;
}

.detailTit h4 {
    color: #333;
    font-weight: bold;
    font-size: 20px;
    padding: 0 80px;
}

.detailTit p {
    color: #666;
    font-size: 12px;
    margin-top: 15px;
}

.detailCon p {
    font-size: 16px;
    color: #333;
    line-height: 24px;
    padding: 5px 0;
}

.detailCon p img,
.detailCon img {
    max-width: 100%;
    text-align: center;
}
.paperMenu {
  width: 100%;
  padding: 20px 0px 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E4E4E4;
}
.paperMenuChoose {
  width: 100%;
}
.paperMenuChooseTitle {
  width: calc(100% - 93%);
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 35px;
  float: left;
}
.paperMenuChooseDetail {
  float: left;
  width: calc(100% - 7%);
}
.paperMenuChooseDetail>a {
  display: inline-block;
  padding: 0px 35px;
  background: #ffffff;
  border-radius: 43px 43px 43px 43px;
  line-height: 35px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 5px;
  margin-bottom: 10px;
  color: #333333;
}
.paperMenuChooseDetail>a:hover {
 background: #6283E2;
  color: #ffffff;
}
.paperMenuChooseDetail>a.paperMenuAct {
  background: #6283E2 !important;
  color: #ffffff !important;
}
.paperMenuChoose + .paperMenuChoose {
  border-top: 2px dotted #E4E4E4;
  padding-top: 30px;
}
.both:after {
    display: block;
    content: "";
    clear: both;
}
.detail_en {
    width: 100%;
    border-top: 2px solid #d6aa6d;
}
.detail_en .paperMenuChooseTitle>a {
  display: block;
  width: 95% !important;
  border-radius: 43px;
}
.detail_en .paperMenuChoose+.paperMenuChoose .paperMenuChooseDetail {
  width: calc(100% - 15%);
  margin-left: 35px;
}
.detail_en .paperMenuChooseDetail>a,
.detail_en .paperMenuChooseTitle>a {
  padding: 0px 10px;
  width: auto;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin-right: 2px;
}
.detail_en .paperMenuChooseTitle>a.paperMenuAct {
  background: #6283E2 !important;
  color: #ffffff !important;
}
.teacher_list {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.teacher_item {
    width: 20%;
    padding: 6px 20px;
/*    background-color: #E4E4E4;*/
    border-left: 5px solid #6283E2;
    margin: 10px 0px;
}
.teacher_item>a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #333333;
}
.en_teacher_article {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #d8d8d8;
}
.teacherPicImg {
    width: 208px;
    height: 285px;
    overflow: hidden;
}
.teacherPicImg>img {
    display: block;
    width: 100%;
}
.teacherInfo {
    width: calc(100% - 220px);
    padding-left: 30px;
    padding-top: 20px;
}
.en_teacher_article>h3 {
    display: block;
    width: 100%;
    font-size: 22px;
    line-height: 40px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}
.teacherInfoT {
    width: 100%;
    margin-top: 30px;
}
.teacherInfo>span {
    display: block;
    font-size: 18px;
    line-height: 40px;
    color: #333333;
}
.teacherInfoT>span {
    display: inline-block;
    width: calc(100% - 51%);
    font-size: 18px;
    line-height: 40px;
    color: #333333;
}
.teacherArticle {
    width: 100%;
    padding-top: 20px;
}
.teacherArticle p {
    font-size: 16px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 5px;
    text-indent: 0em !important;
}
@media screen and (max-width: 991px) {}

@media screen and (max-width: 768px) {}