@font-face {
    font-family: ash;
    src: url('fonts/ASHBBLI_2.ttf') format('truetype');
}

@font-face {
    font-family: pingfang;
    src: url('fonts/PingFangSCMedium.ttf') format('truetype'), url('fonts/PingFangSCMedium.otf') format('opentype');
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: white;
}

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

.head .logo {
    float: left;
    height: 80px;
    font-size: 0;
    margin-right: 17%;
    position: relative;
}

.head .logo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 67px;
}

.head .ri {
    float: right;
    height: 80px;
    line-height: 80px;
    font-size: 0;
}

.head .ri a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 22px;
}

.head .ri a img {
    display: block;
}

.search-box {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: #E61F19;
    box-shadow: 0 0 5px 5px rgba(57, 61, 70, 0.5);
    animation: fangda 0.3s ease-out;
}

.search-box .inp {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 92%;
    margin: 0 auto;
}

.search-box .inp input {
    display: block;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    height: 110px;
}

.search-box .inp input[type=text] {
    float: left;
    width: 90%;
    padding: 0 44px;
    background-image: url(../images/icon_search2.png);
    background-position: 0 center;
    background-repeat: no-repeat;
    line-height: 110px;
    color: #393d46;
    font-size: 36px;
}

.search-box .inp input[type=text]::-webkit-input-placeholder {
    color: #fff;
    font-size: 36px;
}

.search-box .inp input[type=submit] {
    float: right;
    width: 10%;
    color: #fff;
    font-size: 39px;
    font-family: ash;
}

.search-box .close-btn {
    cursor: pointer;
    position: absolute;
    top: 72px;
    right: 81px;
}

.search-box .close-btn:hover {
    opacity: 0.8;
}

@-webkit-keyframes fangda {
    from {
        width: 0;
        height: 0;
        top: 8%;
        left: 86%;
        right: 14%;
        bottom: 92%;
    }
    to {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

@-moz-keyframes fangda {
    from {
        width: 0;
        height: 0;
        top: 8%;
        left: 86%;
        right: 14%;
        bottom: 92%;
    }
    to {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

@-ms-keyframes fangda {
    from {
        width: 0;
        height: 0;
        top: 8%;
        left: 86%;
        right: 14%;
        bottom: 92%;
    }
    to {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

@-o-keyframes fangda {
    from {
        width: 0;
        height: 0;
        top: 8%;
        left: 86%;
        right: 14%;
        bottom: 92%;
    }
    to {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

.hover-weixin {
    position: relative;
}

.hover-weixin .show {
    display: none;
    position: absolute;
    top: 52px;
    right: -20px;
    width: 120px;
    height: 120px;
}

.hover-weixin .show img {
    width: 100%;
    height: 100%;
}

.hover-weixin .show:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
    position: absolute;
    right: 20px;
    top: -9px;
}

.nav {
    float: left;
    margin-left: 14%;
}

.nav li {
    float: left;
    padding: 0 26px;
}

.nav li a {
    display: block;
    line-height: 80px;
    color: black;
    font-size: 16px;
    position: relative;
}

.nav li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li:hover a:after,
.nav li.on a:after {
    opacity: 1;
}

@media screen and (max-width: 1500px) {
    .head {
        width: 1200px;
        padding: 0 20px;
    }
    .head .logo img {
        height: 90px;
    }
    .head .ri a {
        margin-left: 13px;
    }
    .nav li {
        padding: 0 20px;
    }
    .search-box .inp input[type=text] {
        font-size: 30px;
    }
    .search-box .inp input[type=text]::-webkit-input-placeholder {
        font-size: 30px;
    }
    .search-box .inp input[type=submit] {
        font-size: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .head {
        width: 960px;
        padding: 0 20px;
    }
    .nav li {
        padding: 0 10px;
    }
    .nav li a {
        font-size: 14px;
    }
    .search-box .inp input[type=text] {
        width: 85%;
        font-size: 24px;
    }
    .search-box .inp input[type=submit] {
        width: 15%;
        font-size: 24px;
    }
}

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

.swiper-banner .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.swiper-banner .swiper-slide .img h6 {
    font-size: 48px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 45vh 0 0;
}

.swiper-banner .swiper-slide .img p {
    font-size: 24px;
    line-height: 1;
    font-family: pingfang;
}

.swiper-banner .swiper-button-next,
.swiper-banner .swiper-button-prev {
    width: 41px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
}

.swiper-banner .swiper-button-next:after,
.swiper-banner .swiper-button-prev:after {
    display: none;
}

.swiper-banner .swiper-button-next {
    background-image: url(../images/i_next.png);
    right: 60px;
}

.swiper-banner .swiper-button-prev {
    background-image: url(../images/i_prev.png);
    left: 60px;
}

.swiper-banner .swiper-pagination-bullet {
    width: 34px;
    height: 4px;
    background-color: #fff;
    opacity: 0.3;
    border-radius: 0;
    margin: 0 6px;
}

.swiper-banner .swiper-pagination-bullet-active {
    opacity: 1;
}

.index-abroad {
    width: 1400px;
    margin: 0 auto;
    padding: 60px 0 20px;
}

.index-abroad .li {
    width: 32.5%;
    height: 296px;
    background-color: #071024;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    float: left;
    margin: 5px;
}


/* .index-abroad .li:first-child {
    float: left;
} */


/* .index-abroad .li:last-child {
    float: right;
} */

.index-abroad .li .img {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-abroad .li .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-align: center;
}

.index-abroad .li .text h6 {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding: 88px 0 25px;
}

.index-abroad .li .text p {
    color: #fff;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 30px;
    font-family: pingfang;
    text-transform: uppercase;
    letter-spacing: 9px;
}

.index-abroad .li .text a {
    display: block;
    width: 100px;
    height: 35px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.index-abroad .li .text a:hover {
    color: #E61F19;
    border-color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .index-abroad {
        width: 1200px;
    }
    .index-abroad .li {
        height: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .index-abroad {
        width: 960px;
        padding: 60px 20px 20px;
    }
    .index-abroad .li {
        height: 220px;
    }
    .index-abroad .li .text h6 {
        padding: 50px 0 20px;
        font-size: 22px;
    }
}

.index-title {
    padding: 80px 0 50px;
    text-align: center;
}

.index-title p {
    color: #333;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 15px;
}

.index-title span {
    color: #888;
    font-size: 14px;
    line-height: 1;
}

.index-service {
    width: 100%;
}

.index-service .li {
    float: left;
    width: 25%;
    height: 366px;
    background-color: #071024;
    position: relative;
    cursor: pointer;
}

.index-service .li .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.index-service .li .tis {
    position: absolute;
    left: 50px;
    bottom: 35px;
    opacity: 1;
}

.index-service .li .tis p {
    color: #fff;
    font-size: 23px;
    line-height: 1;
    margin-bottom: 12px;
}

.index-service .li .tis span {
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    text-transform: capitalize;
}

.index-service .li .text {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 0 10%;
}

.index-service .li .text h6 {
    font-size: 24px;
    line-height: 1;
    padding: 90px 0 10px;
}

.index-service .li .text .p {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.index-service .li .text p {
    font-size: 15px;
    line-height: 26px;
}

.index-service .li .text a {
    display: block;
    width: 100px;
    height: 35px;
    position: absolute;
    bottom: 60px;
    left: 10%;
    border-radius: 18px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.index-service .li:hover {
    background-color: #E61F19;
}

.index-service .li:hover .img {
    opacity: 0.1;
}

.index-service .li:hover .tis {
    opacity: 0;
}

.index-service .li:hover .text {
    opacity: 1;
}

@media screen and (max-width: 1500px) {
    .index-service .li .text h6 {
        font-size: 20px;
        font-weight: bold;
    }
    .index-service .li .text {
        padding: 0 5%;
    }
    .index-service .li .text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .index-service .li .text h6 {
        padding: 40px 0 10px;
    }
}

.index-advantage {
    width: 1400px;
    margin: 0 auto;
    padding: 0 0 98px;
}

.index-advantage .li {
    float: left;
    width: 21.4%;
    height: 363px;
    text-align: center;
    margin-right: 4.8%;
    position: relative;
    overflow: hidden;
}

.index-advantage .li:nth-of-type(4n) {
    margin-right: 0;
}

.index-advantage .li .cir {
    width: 84px;
    height: 84px;
    line-height: 84px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    margin: 0 auto 32px;
    font-size: 0;
}

.index-advantage .li .cir img {
    display: inline-block;
    vertical-align: middle;
}

.index-advantage .li h6 {
    color: #393d46;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-advantage .li p {
    color: #888888;
    font-size: 14px;
    line-height: 24px;
}

.index-advantage .li a {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 101px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #9e9494;
    font-size: 14px;
}

.index-advantage .li a:hover {
    color: #fff;
    background-color: #E61F19;
    border-color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .index-advantage {
        width: 1200px;
    }
    .index-advantage .li h6 {
        font-size: 17px;
    }
}

@media screen and (max-width: 1200px) {
    .index-advantage {
        width: 960px;
        padding: 0 20px 80px;
    }
}

.index-team-bg {
    position: relative;
}

.index-team-bg .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #071024;
}

.index-team-bg .bg .img {
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index-team-bg .index-title p,
.index-team-bg .index-title span {
    color: #fff;
}

.index-team {
    width: 1400px;
    margin: 0 auto;
    padding: 100px 0 72px;
}

.swiper-team-detail {
    width: 100%;
    height: 228px;
    overflow: visible !important;
}

.swiper-team-detail .swiper-slide {
    background-color: #E61F19;
}

.swiper-team-detail .swiper-slide .cir {
    position: absolute;
    top: -116px;
    left: 62px;
    width: 274px;
    height: 274px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E61F19;
    padding: 5px;
}

.swiper-team-detail .swiper-slide .cir img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.swiper-team-detail .swiper-slide h6 {
    position: absolute;
    left: 392px;
    top: -50px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    opacity: 0;
}

.swiper-team-detail .swiper-slide h6 span {
    font-size: 16px;
    vertical-align: bottom;
    margin-left: 22px;
}

.swiper-team-detail .swiper-slide .text-box {
    float: right;
    width: 940px;
    margin-right: 60px;
    padding: 25px 0;
    height: 100%;
}

.swiper-team-detail .swiper-slide .text {
    height: 100%;
    padding-right: 90px;
    overflow: auto;
}

.swiper-team-detail .swiper-slide .text::-webkit-scrollbar {
    width: 3px;
    background-color: rgba(57, 61, 70, 0.1);
}

.swiper-team-detail .swiper-slide .text::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: #393d46;
}

.swiper-team-detail .swiper-slide .text p {
    color: #fff;
    font-size: 14px;
    line-height: 34px;
}

.swiper-team-detail .swiper-slide-active h6 {
    opacity: 1;
}

.swiper-team-list {
    width: 100%;
    height: 210px;
}

.swiper-team-list .swiper-slide {
    padding: 42px 0 0;
    text-align: center;
    cursor: pointer;
}

.swiper-team-list .swiper-slide:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #E61F19;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
}

.swiper-team-list .swiper-slide .cir {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 4px solid #ced0d3;
    overflow: hidden;
    margin: 0 auto 20px;
}

.swiper-team-list .swiper-slide .cir img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.swiper-team-list .swiper-slide p {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 5px;
}

.swiper-team-list .swiper-slide span {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.swiper-team-list .swiper-slide-thumb-active:after {
    opacity: 1;
}

@media screen and (max-width: 1500px) {
    .index-team {
        width: 1200px;
    }
    .swiper-team-detail .swiper-slide .cir {
        width: 230px;
        height: 230px;
        left: 20px;
    }
    .swiper-team-detail .swiper-slide h6 {
        left: 290px;
    }
    .swiper-team-detail .swiper-slide .text-box {
        margin-right: 30px;
        width: 880px;
    }
}

@media screen and (max-width: 1200px) {
    .index-team {
        width: 960px;
        padding: 100px 20px 70px;
    }
    .swiper-team-detail .swiper-slide .cir {
        width: 190px;
        height: 190px;
    }
    .swiper-team-detail .swiper-slide h6 {
        left: 230px;
    }
    .swiper-team-detail .swiper-slide .text-box {
        width: 660px;
    }
}

.index-case {
    width: 1400px;
    margin: 0 auto;
    padding: 80px 0 93px;
}

.index-case .li {
    float: left;
    width: 22.6%;
    height: 392px;
    margin-right: 3.2%;
    border: 1px solid #eeeeee;
    text-align: center;
    position: relative;
    padding: 0 35px;
}

.index-case .li:nth-of-type(4n) {
    margin-right: 0;
}

.index-case .li a {
    display: block;
    width: 100%;
    height: 100%;
}

.index-case .li .cir {
    /* width: 122px;
    height: 122px;
    border-radius: 50%; */
    overflow: hidden;
    border: 5px solid #eee;
    position: absolute;
    top: -49px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.index-case .li .cir img {
    display: block;
    width: 100%;
    /* height: 100%;
    border-radius: 50%; */
}

.index-case .li h6 {
    color: #393d46;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    padding: 167px 0 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-case .li .txt {
    height: 215px;
    overflow: hidden;
}

.index-case .li .txt p {
    color: #888;
    font-size: 14px;
    line-height: 24px;
}

.index-case .li:hover {
    border-color: #E61F19;
}

.index-case .li:hover .cir {
    border-color: #E61F19;
}

.index-case .li:hover h6 {
    color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .index-case {
        width: 1200px;
    }
    .index-case .li {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1200px) {
    .index-case {
        width: 960px;
        padding: 80px 20px 93px;
    }
    .index-case .li {
        padding: 0 10px;
    }
    .index-case .li .txt p {
        font-size: 13px;
    }
}

.index-news-bg {
    background-color: #f5f5f5;
}

.index-news {
    width: 1400px;
    margin: 0 auto;
    padding: 0 0 81px;
}

.index-news .right {
    float: right;
    width: 47%;
}

.swiper-news {
    float: left;
    width: 50%;
    height: 446px;
}

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

.swiper-news .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 34px;
}

.swiper-news .swiper-slide .img p {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 338px 0 16px;
}

.swiper-news .swiper-slide .img span {
    color: #fff;
    font-size: 18px;
}

.swiper-news .swiper-pagination-bullets {
    font-size: 0;
    left: 34px;
    bottom: 29px;
    text-align: left;
}

.swiper-news .swiper-pagination-bullet {
    width: 21px;
    height: 3px;
    background-color: #fff;
    border-radius: 0;
    margin: 0 8px 0 0 !important;
}

.swiper-news .swiper-pagination-bullet-active {
    background-color: #E61F19;
}

.index-news-tab {
    padding: 0 0 20px;
}

.index-news-tab ul {
    float: left;
}

.index-news-tab ul li {
    float: left;
    width: 113px;
    height: 42px;
    border-radius: 21px;
    color: #888;
    font-size: 15px;
    line-height: 42px;
    text-align: center;
    margin-right: 21px;
    background-color: #fff;
    cursor: pointer;
}

.index-news-tab ul li:hover,
.index-news-tab ul li.on {
    background-color: #E61F19;
    color: #fff;
}

.index-news-tab .a {
    float: right;
}

.index-news-tab .a a {
    display: none;
    width: 113px;
    height: 42px;
    border-radius: 21px;
    color: #E61F19;
    font-size: 15px;
    line-height: 42px;
    text-align: center;
    margin-right: 21px;
    background-color: #fff;
}

.index-news-list {
    display: none;
    width: 100%;
}

.index-news-list .li {
    width: 100%;
    height: 124px;
    background-color: #fff;
    margin-bottom: 6px;
}

.index-news-list .li:nth-of-type(3n) {
    margin-bottom: 0;
}

.index-news-list .li .a {
    width: 100%;
    height: 100%;
    padding: 25px 0 0 27px;
}

.index-news-list .li .txt {
    float: left;
    width: 80%;
    height: 80px;
    overflow: hidden;
}

.index-news-list .li .txt h6 {
    color: #333;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index-news-list .li .txt p {
    color: #888;
    font-size: 13px;
    line-height: 23px;
}

.index-news-list .li .time {
    float: right;
    text-align: center;
    color: #888;
    border-left: 1px solid #e5e5e5;
    padding: 12px 20px;
}

.index-news-list .li .time p {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
}

.index-news-list .li .time span {
    font-size: 12px;
}

.index-news-list .li:hover h6 {
    color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .index-news {
        width: 1200px;
    }
    .swiper-news {
        height: 420px;
    }
    .swiper-news .swiper-pagination-bullets {
        bottom: 10px;
    }
    .index-news-tab ul li {
        width: 100px;
        height: 36px;
        line-height: 36px;
        border-radius: 18px;
    }
    .index-news-list .li {
        height: 116px;
    }
    .index-news-list .li .a {
        padding: 21px 0 0 20px;
    }
}

@media screen and (max-width: 1200px) {
    .index-news {
        width: 960px;
        padding: 0 20px 80px;
    }
    .swiper-news {
        height: 340px;
    }
    .swiper-news .swiper-slide .img {
        padding: 0 20px;
    }
    .swiper-news .swiper-slide .img p {
        padding: 240px 0 15px;
    }
    .index-news .right {
        width: 48%;
    }
    .index-news-tab .a a {
        width: 100px;
        height: 36px;
        line-height: 36px;
        border-radius: 18px;
        margin-right: 0;
    }
    .index-news-tab ul li {
        width: 90px;
        font-size: 14xp;
        margin-right: 15px;
    }
    .index-news-list .li {
        height: 91px;
    }
    .index-news-list .li .txt {
        height: 66px;
    }
    .index-news-list .li .txt h6 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .index-news-list .li .txt p {
        line-height: 20px;
    }
    .index-news-list .li .a {
        padding: 15px 0 0 10px;
    }
    .index-news-list .li .time {
        padding: 10px;
    }
}

.index-assess {
    width: 100%;
    height: 516px;
}

.index-assess .left,
.index-assess .right {
    width: 50%;
    height: 100%;
    position: relative;
}

.index-assess .left {
    float: left;
    display: table-cell;
}

.index-assess .left .bg {
    background-color: #E61F19;
}

.index-assess .left .bg .img {
    opacity: 0.05;
}

.index-assess .right {
    float: right;
}

.index-assess .right .bg {
    background-color: #393d46;
}

.index-assess .right .bg .img {
    opacity: 0.1;
}

.index-assess .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.index-assess .bg .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
}

.index-assess .txt {
    width: 100%;
    height: 100%;
    text-align: center;
}

.index-assess .txt img {
    display: block;
    padding: 151px 0 29px;
    height: 46px;
    margin: 0 auto;
}

.index-assess .txt h6 {
    color: #fff;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 18px;
}

.index-assess .txt p {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-family: ash;
    letter-spacing: 8px;
    margin-bottom: 29px;
    text-transform: uppercase;
}

.index-assess .txt .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
}

.index-assess .inps {
    padding: 72px 0 0;
    margin-left: 10%;
    width: 540px;
}

.index-assess .inps .inp {
    width: 100%;
}

.index-assess .inps input {
    width: 540px;
    height: 58px;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
    border: none;
    padding: 0 18px;
}

.index-assess .inps input::-webkit-input-placeholder {
    color: #555555;
    font-size: 13px;
}

.index-assess .inps .l {
    width: 260px;
}

.index-assess .inps .jd {
    float: left;
}

.index-assess .inps .zy {
    float: right;
}

.index-assess .inps button {
    width: 540px;
    height: 58px;
    border-radius: 4px;
    background-color: #E61F19;
    border: none;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
}

.index-assess .inps button span {
    font-size: 12px;
    font-weight: normal;
    margin-left: 33px;
}

@media screen and (max-width: 1500px) {
    .index-assess .inps {
        margin-left: 5%;
    }
}

@media screen and (max-width: 1200px) {
    .index-assess .left {
        width: 40%;
    }
    .index-assess .right {
        width: 60%;
    }
    .index-assess .inps {
        margin-left: 5%;
        width: 500px;
    }
    .index-assess .inps input {
        width: 500px;
    }
    .index-assess .inps .l {
        width: 240px;
    }
    .index-assess .inps button {
        width: 500px;
    }
}

.footer {
    background-color: #393d46;
}

.foot-top {
    width: 1400px;
    margin: 0 auto;
    padding: 55px 0 0;
    margin-bottom: 20px;
}

.foot-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 67px;
    letter-spacing: 4px;
}

.foot-bottom p a {
    color: rgba(255, 255, 255, 0.5);
}

.foot-nav {
    float: left;
    padding: 0 0 72px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-nav li {
    float: left;
    padding-right: 60px;
}

.foot-nav dt,
.foot-nav dd {
    max-width: 140px;
    text-align: center;
}

.foot-nav dt {
    margin-bottom: 26px;
}

.foot-nav dt a {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}

.foot-nav dd {
    margin-bottom: 13px;
}

.foot-nav dd a {
    display: block;
    color: #adadad;
    font-size: 14px;
    line-height: 1.5;
}

.foot-nav dd a:hover {
    color: #E61F19;
}

.foot-lian {
    float: right;
}

.foot-lian .img {
    text-align: center;
    margin-bottom: 20px;
}

.foot-lian .img img {
    display: block;
    width: 158px;
    height: 158px;
    margin-bottom: 13px;
}

.foot-lian .img span {
    color: white;
    font-size: 14px;
    line-height: 1;
}

.foot-lian .p {
    color: white;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 9px;
}

.foot-lian .ph {
    color: white;
    font-size: 29px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 12px;
}

.foot-lian .d {
    color: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
}

@media screen and (max-width: 1500px) {
    .foot-top {
        width: 1200px;
    }
    .foot-nav li {
        padding-right: 30px;
    }
    .foot-nav dt {
        margin-bottom: 20px;
    }
    .foot-lian .img img {
        width: 138px;
        height: 138px;
    }
    .foot-lian .img {
        margin-bottom: 30px;
    }
    .foot-lian .ph {
        font-size: 40px;
    }
    .foot-lian .d {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 1200px) {
    .foot-top {
        width: 960px;
        padding: 55px 20px 0;
    }
    .foot-nav {
        float: none;
        border: none;
        padding: 0 0 50px;
    }
    .foot-nav ul {
        text-align: center;
    }
    .foot-nav li {
        float: none;
        margin: 0;
        display: inline-block;
        vertical-align: top;
    }
    .foot-lian {
        float: none;
        padding: 0 0 20px;
        width: 400px;
        margin: 0 auto;
        text-align: center;
    }
}

.inside-banner {
    width: 100%;
    height: 750px;
    position: relative;
}

.inside-banner .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inside-banner .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    /* white-space: nowrap; */
}

.inside-banner .text h6 {
    font-size: 48px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
}

.inside-banner .text p {
    font-size: 24px;
    line-height: 1;
    font-family: pingfang;
}

.inside-tab-box {
    position: relative;
}

.inside-tab {
    width: 1400px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.inside-tab ul {
    width: 100%;
    text-align: center;
    font-size: 0;
}

.inside-tab li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 45px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.inside-tab li:before,
.inside-tab li:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: #E61F19;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: absolute;
    left: 0;
    right: 0;
}

.inside-tab li:before {
    top: -5px;
}

.inside-tab li:after {
    bottom: -5px;
}

.inside-tab li a {
    display: block;
    color: #393d46;
    font-size: 17px;
    line-height: 65px;
}

.inside-tab li:hover,
.inside-tab li.on {
    color: #E61F19;
    font-weight: bold;
}

.inside-tab li:hover:before,
.inside-tab li.on:before,
.inside-tab li:hover:after,
.inside-tab li.on:after {
    opacity: 1;
}

.inside-tab li:hover:before,
.inside-tab li.on:before {
    top: 0;
}

.inside-tab li:hover:after,
.inside-tab li.on:after {
    bottom: 0;
}

.inside-brend {
    width: 1400px;
    margin: 0 auto 40px;
    padding: 59px 0 19px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.inside-brend .tis {
    float: left;
    position: relative;
}

.inside-brend .tis:after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background-color: #393d46;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.inside-brend .tis h6 {
    color: #393d46;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 14px;
    padding-left: 19px;
    position: relative;
}

.inside-brend .tis h6:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 30px;
    background-color: #E61F19;
    border-top-right-radius: 6px;
}

.inside-brend .tis p {
    color: #393d46;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.inside-brend .a {
    position: absolute;
    right: 0;
    bottom: 19px;
    color: #393d46;
    font-size: 14px;
    line-height: 1;
}

.inside-brend .a a {
    color: #393d46;
}

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

.about-content {
    width: 100%;
}

.about-content .txt {
    float: left;
    width: 48%;
}

.about-content .txt p {
    color: #393d46;
    font-size: 16px;
    line-height: 36px;
}

.about-content .img {
    float: right;
    width: 48%;
}

.about-content .img img {
    width: 100%;
}

.about-service {
    width: 100%;
    padding: 0 0 54px;
}

.about-service h4 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    padding: 60px 0 40px;
}

.about-service-list1 {
    float: left;
    width: 48%;
}

.about-service-list1 .li {
    width: 100%;
    height: 272px;
    margin-bottom: 27px;
    position: relative;
}

.about-service-list1 .li .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.about-service-list1 .li .bg .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.about-service-list1 .li .grad {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(left, rgba(0, 173, 180, 0.65), rgba(212, 243, 255, 0.65), rgba(0, 173, 180, 0.65));
    /* chrome */
    background-image: -moz-linear-gradient(right, rgba(0, 173, 180, 0.65), rgba(212, 243, 255, 0.65), rgba(0, 173, 180, 0.65));
    /* firefox */
    background-image: -ms-linear-gradient(right, rgba(0, 173, 180, 0.65), rgba(212, 243, 255, 0.65), rgba(0, 173, 180, 0.65));
    /* ie */
    background-image: -o-linear-gradient(right, rgba(0, 173, 180, 0.65), rgba(212, 243, 255, 0.65), rgba(0, 173, 180, 0.65));
    /* opera */
    background-image: linear-gradient(to right, rgba(230, 31, 25, 0.65), rgba(212, 243, 255, 0.65), rgba(230, 31, 25, 0.65));
}

.about-service-list1 .li .txt {
    width: 100%;
    padding: 0 10.7%;
    color: #fff;
}

.about-service-list1 .li .txt img {
    display: block;
    padding: 42px 0 26px;
}

.about-service-list1 .li .txt h6 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 17px;
}

.about-service-list1 .li .txt p {
    font-size: 14px;
    line-height: 24px;
}

.about-service-list1 .li:hover .bg {
    background-color: #E61F19;
}

.about-service-list1 .li:hover .bg .img {
    opacity: 0.1;
}

.about-service-list1 .li:hover .grad {
    opacity: 0;
}

.about-service-list2 {
    float: right;
    width: 48%;
}

.about-service-list2 .li {
    width: 100%;
    height: 86px;
    border-bottom-left-radius: 17px;
    margin-bottom: 26px;
    padding: 0 47px;
    color: #fff;
    font-size: 18px;
    line-height: 86px;
    white-space: nowrap;
}

.about-service-list2 .li:nth-child(odd) {
    background-color: #E61F19;
}

.about-service-list2 .li:nth-child(even) {
    background-color: #393d46;
}

.introduction {
    width: 1400px;
    margin: 0 auto 58px;
    overflow: hidden;
}

.introduction .li {
    width: 694px;
    height: 694px;
    overflow: hidden;
}

.introduction .li:nth-child(odd) {
    float: left;
}

.introduction .li:nth-child(even) {
    float: right;
}

.introduction .text {
    background-color: #393d46;
    padding: 90px 73px 0;
    margin-bottom: 13px;
}

.introduction .text p {
    color: #fff;
    font-size: 16px;
    line-height: 42px;
}

.introduction .intro {
    margin-bottom: 13px;
}

.introduction .img {
    position: relative;
    overflow: hidden;
}

.introduction .img .im {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.introduction .img1 {
    background-color: #E61F19;
    border-bottom-left-radius: 694px;
}

.introduction .img1 .im {
    opacity: 0.2;
}

.introduction .img2 {
    background-color: #393d46;
    border-bottom-right-radius: 694px;
}

.introduction .img2 .im {
    opacity: 0.1;
}

.swiper-intro {
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
}

.swiper-intro .swiper-slide {
    padding: 63px 0 0;
    text-align: center;
}

.swiper-intro .swiper-slide .cir {
    width: 354px;
    height: 354px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.swiper-intro .swiper-slide .cir img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.swiper-intro .swiper-slide h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 15px;
}

.swiper-intro .swiper-slide p {
    color: #393d46;
    font-size: 14px;
    line-height: 1.7;
}

.swiper-intro .swiper-slide a {
    display: block;
    position: absolute;
    bottom: 86px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 30px;
    border: 1px solid #a6a7ab;
    border-radius: 15px;
    color: #393d46;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.swiper-intro .swiper-slide a:hover {
    color: #E61F19;
    border-color: #E61F19;
}

.swiper-intro .swiper-pagination-bullet {
    border-radius: 1px;
    margin: 0 3px !important;
    width: 15px;
    height: 3px;
    background-color: #393d46;
    opacity: 1;
}

.swiper-intro .swiper-pagination-bullet-active {
    background-color: #E61F19;
}

.team {
    width: 1400px;
    margin: 0 auto 36px;
}

.team .li {
    width: 100%;
    padding: 137px 0 0;
    margin-bottom: 58px;
    position: relative;
}

.team .li:nth-child(odd) .text {
    background-color: #393d46;
}

.team .li:nth-child(even) .text {
    background-color: #E61F19;
}

.team .li:nth-child(even) .text a {
    border-color: rgba(255, 255, 255, 0.3);
}

.team .text {
    width: 100%;
    height: 294px;
    border-top-right-radius: 250px;
    border-bottom-left-radius: 250px;
    position: relative;
    padding: 30px 0 0 490px;
}

.team .text .cir {
    width: 354px;
    height: 354px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 73px;
    bottom: 77px;
}

.team .text .cir img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.team .text .lg {
    position: absolute;
    right: 130px;
    top: 53px;
    height: 187px;
    opacity: 0.05;
}

.team .text h6 {
    position: absolute;
    left: 490px;
    top: -51px;
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
}

.team .text h6 span {
    font-size: 14px;
    vertical-align: bottom;
    font-weight: normal;
    margin-left: 62px;
    position: relative;
}

.team .text h6 span:after {
    content: "";
    display: block;
    width: 37px;
    height: 1px;
    background-color: #393d46;
    position: absolute;
    top: 11px;
    left: -45px;
}

.team .text .txt {
    width: 460px;
}

.team .text p {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
}

.team .text a {
    display: block;
    position: absolute;
    bottom: 36px;
    left: 490px;
    width: 90px;
    height: 30px;
    border: 1px solid #75787e;
    border-radius: 15px;
    color: #eee;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}

.team .text a:hover {
    opacity: 0.8;
}

.team .popup {
    display: none;
    background-color: #fff;
    padding: 180px 63px 75px;
    border-radius: 22px;
    position: relative;
}

.team .popup .cir {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #E61F19;
    position: absolute;
    top: -67px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.team .popup .cir img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.team .popup h5 {
    color: #333;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.team .popup h6 {
    color: #393d46;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.team .popup .txt {
    height: 400px;
    overflow: auto;
}

.team .popup .txt::-webkit-scrollbar {
    width: 1px;
    background-color: #eee;
}

.team .popup .txt::-webkit-scrollbar-thumb {
    width: 1px;
    background-color: #393d46;
}

.team .popup p {
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}

.layer-popup {
    border-radius: 22px !important;
}

.layer-popup .layui-layer-content {
    overflow: visible !important;
}

.one-stop {
    width: 100%;
    margin-bottom: 88px;
    position: relative;
}

.one-stop .img {
    position: absolute;
    top: 0;
    right: 0;
    width: 49%;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.oneStop .text {
    float: left;
    width: 680px;
    height: 300px;
    overflow: hidden;
}

.oneStop .text h5 {
    color: #E61F19;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: ash;
    margin-bottom: 20px;
}

.oneStop .text h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 26px;
}

.oneStop .text p {
    color: #393d46;
    font-size: 15px;
    line-height: 36px;
}

.one-stop-service {
    padding: 0 0 34px;
}

.one-stop1 .img {
    left: 0;
    right: auto;
}

.one-stop1 .oneStop .text {
    float: right;
}

.one-stop-list {
    width: 1400px;
    margin: 0 auto 36px;
}

.one-stop-list .li {
    float: left;
    width: 31.8%;
    height: 196px;
    margin-bottom: 36px;
    margin-right: 2.3%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.one-stop-list .li:nth-of-type(3n) {
    margin-right: 0;
}

.one-stop-list .li .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
}

.one-stop-list .li .bg .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.one-stop-list .li .txt {
    text-align: center;
    color: #fff;
    width: 290px;
    margin: 0 auto;
}

.one-stop-list .li .txt h6 {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    white-space: nowrap;
    padding: 150px 0 0;
    margin-bottom: 15px;
}

.one-stop-list .li .txt p {
    font-size: 14px;
    line-height: 26px;
    opacity: 0;
}

.one-stop-list .li:hover .bg .img {
    opacity: 0.2;
}

.one-stop-list .li:hover .txt h6 {
    padding: 43px 0 0;
}

.one-stop-list .li:hover .txt p {
    opacity: 1;
}

@media screen and (max-width: 1500px) {
    .inside-tab {
        width: 1200px;
    }
    .inside-brend {
        width: 1200px;
        padding: 59px 20px 19px;
    }
    .inside-brend .a {
        right: 20px;
    }
    .introduction {
        width: 1200px;
    }
    .introduction .li {
        width: 594px;
        height: 594px;
        overflow: hidden;
    }
    .introduction .text {
        padding: 60px 35px 0;
    }
    .introduction .text p {
        font-size: 15px;
        line-height: 38px;
    }
    .swiper-intro .swiper-slide {
        padding: 20px 0 0;
    }
    .swiper-intro .swiper-slide .cir {
        width: 330px;
        height: 330px;
    }
    .swiper-intro .swiper-slide a {
        bottom: 36px;
    }
    .about {
        width: 1200px;
    }
    .about-content .txt p {
        font-size: 15px;
        line-height: 1.7;
    }
    .about-service-list1 .li .txt {
        padding: 0 5%;
    }
    .about-service-list2 .li {
        padding: 0 25px;
        font-size: 16px;
    }
    .team {
        width: 1200px;
    }
    .team .popup .txt {
        height: 260px;
    }
    .oneStop {
        width: 1200px;
    }
    .oneStop .text {
        width: 580px;
        height: 240px;
    }
    .oneStop .text h5 {
        font-size: 24px;
    }
    .oneStop .text h6 {
        font-size: 20px;
    }
    .oneStop .text p {
        font-size: 14px;
        line-height: 1.7;
    }
    .one-stop .img {
        height: 240px;
    }
    .one-stop-list {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .inside-tab {
        width: 960px;
    }
    .inside-brend {
        width: 960px;
    }
    .introduction {
        width: 960px;
    }
    .introduction .li {
        width: 474px;
        height: 474px;
    }
    .introduction .text {
        padding: 40px 20px 0;
    }
    .introduction .text p {
        font-size: 14px;
        line-height: 1.7;
    }
    .swiper-intro .swiper-slide .cir {
        width: 260px;
        height: 260px;
        margin: 0 auto 10px;
    }
    .swiper-intro .swiper-slide h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .swiper-intro .swiper-slide p {
        line-height: 1.5;
    }
    .about {
        width: 960px;
        padding: 0 20px;
    }
    .about-content .txt p {
        font-size: 14px;
        line-height: 1.5;
    }
    .about-service-list1 .li .txt img {
        padding: 32px 0 10px;
    }
    .about-service-list2 .li {
        font-size: 14px;
    }
    .team {
        width: 960px;
        padding: 0 20px;
    }
    .team .text {
        padding: 30px 0 0 380px;
    }
    .team .text .cir {
        left: 53px;
        width: 290px;
        height: 290px;
    }
    .team .text h6 {
        left: 380px;
    }
    .team .text a {
        left: 380px;
    }
    .team .popup {
        padding: 160px 20px 30px;
    }
    .oneStop {
        width: 960px;
    }
    .oneStop .text {
        width: 460px;
    }
    .oneStop .text h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .oneStop .text h6 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .oneStop .text p {
        font-size: 13px;
        line-height: 1.8;
    }
    .one-stop-list {
        width: 960px;
        padding: 0 20px;
    }
}

.case-bg {
    background-color: #393d46;
    position: relative;
    padding: 131px 0 0;
}

.case-tab {
    width: 1400px;
    margin: 0 auto;
    position: absolute;
    top: -83px;
    left: 0;
    right: 0;
    z-index: 1;
}

.case-tab ul {
    width: 100%;
}

.case-tab li {
    float: left;
    width: 50%;
    height: 168px;
    position: relative;
}

.case-tab li a {
    display: block;
    width: 100%;
    height: 100%;
}

.case-tab li .bg {
    background-color: #393d46;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.case-tab li .bg .img {
    width: 100%;
    height: 100%;
    opacity: 0.28;
}

.case-tab li .txt {
    padding-left: 60px;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
}

.case-tab li .txt p {
    padding: 47px 0 17px;
    font-family: ash;
    text-transform: uppercase;
}

.case-tab li.on .bg {
    background-color: #E61F19;
}

.case-tab li.on .bg .img {
    opacity: 0.2;
}

.abroad-list {
    width: 1400px;
    margin: 0 auto;
}

.abroad-list .li {
    float: left;
    width: 49%;
    height: 199px;
    margin-right: 2%;
    margin-bottom: 29px;
    border-radius: 10px;
    background-color: #fff;
    padding: 0 25px 0 203px;
    position: relative;
}

.abroad-list .li:nth-of-type(2n) {
    margin-right: 0;
}

.abroad-list .li .cir {
    width: 140px;
    height: 140px;
    /* border-radius: 50%; */
    overflow: hidden;
    border: 5px solid #E61F19;
    position: absolute;
    top: 24px;
    left: 23px;
}

.abroad-list .li .cir img {
    display: block;
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    overflow: hidden;
}

.abroad-list .li h6 {
    color: #333;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e5e5e5;
    padding: 29px 0 15px;
}

.abroad-list .li ul {
    width: 100%;
}

.abroad-list .li ul li {
    float: left;
    width: 50%;
    color: #393d46;
    font-size: 13px;
    line-height: 24px;
}

.abroad-list .li ul li span {
    font-weight: bold;
}

.case-page {
    text-align: center;
    font-size: 0;
    padding: 30px 0 60px;
}

.case-page a,
.case-page strong {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 26px;
    line-height: 26px;
    margin: 0 25px;
    font-size: 16px;
    font-family: pingfang;
}

.case-page a {
    color: #9b9b9b;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.case-page a:hover {
    color: #E61F19;
}

.case-page strong {
    color: #E61F19;
    position: relative;
}

.case-page strong:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #E61F19;
}

.case-page .prev,
.case-page .next {
    background-position: center;
    background-repeat: no-repeat;
}

.case-page .prev {
    background-image: url(../images/icon_case_prev.png);
}

.case-page .next {
    background-image: url(../images/icon_case_next.png);
}

.tour-slide {
    width: 1400px;
    height: 578px;
    margin: 0 auto 36px;
}

.tour-slide .big {
    float: left;
    width: 965px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.tour-slide .small {
    float: right;
    width: 435px;
    height: 100%;
    background-color: #fff;
    padding: 0 40px;
}

.tour-slide .small h5 {
    color: #393d46;
    font-size: 32px;
    line-height: 1;
    padding: 40px 0 17px;
}

.tour-slide .small .tis {
    color: #7c7c7c;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.tour-tab-list {
    width: 100%;
}

.tour-tab-list li {
    width: 100%;
    height: 87px;
    margin-bottom: 12px;
    background-color: #eee;
    cursor: pointer;
}

.tour-tab-list li .img {
    float: left;
    width: 98px;
    height: 100%;
    margin-right: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tour-tab-list li .txt {
    float: left;
    width: 214px;
}

.tour-tab-list li .txt h6 {
    color: #393d46;
    font-size: 14px;
    line-height: 1;
    padding: 16px 0 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-tab-list li .txt p {
    color: #a8a8a8;
    font-size: 12px;
    line-height: 16px;
}

.tour-tab-list li.on .txt h6 {
    color: #E61F19;
}

.tour-list-box {
    width: 720px;
    height: 437px;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tour-list-list {
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 0 50px;
    position: relative;
}

.tour-list-list h6 {
    color: #393d46;
    font-size: 20px;
    font-size: 1;
    font-weight: bold;
    padding: 43px 0 17px;
}

.tour-list-list p {
    color: #393d46;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
}

.tour-list-list li {
    float: left;
    width: 292px;
    height: 182px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tour-list-list li:last-child {
    float: right;
}

.tour-list-list a {
    position: absolute;
    left: 50px;
    bottom: 37px;
    color: #E61F19;
    font-size: 12px;
    text-transform: uppercase;
}

.tour-list {
    width: 1400px;
    margin: 0 auto;
}

.tour-list .li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 30px;
    background-color: #fff;
}

.tour-list .li:nth-of-type(2n) {
    margin-right: 0;
}

.tour-list .li a {
    display: block;
    width: 100%;
    height: 100%;
}

.tour-list .li .img {
    float: left;
    width: 188px;
    height: 167px;
    margin-right: 34px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tour-list .li .txt {
    float: left;
    width: 430px;
    height: 167px;
    position: relative;
}

.tour-list .li .txt h6 {
    color: #393d46;
    font-size: 16px;
    line-height: 1;
    padding: 25px 0 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tour-list .li .txt p {
    color: #a8a8a8;
    font-size: 12px;
    line-height: 25px;
    height: 75px;
    overflow: hidden;
}

.tour-list .li .txt span {
    color: #393d46;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    bottom: 20px;
}

.tour-list .li:hover .txt span {
    color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .case-tab {
        width: 1200px;
    }
    .abroad-list {
        width: 1200px;
    }
    .abroad-list .li {
        padding: 0 20px 0 170px;
    }
    .abroad-list .li .cir {
        width: 120px;
        height: 120px;
        top: 35px;
    }
    .abroad-list .li ul li {
        font-size: 12px;
    }
    .tour-slide {
        width: 1200px;
    }
    .tour-slide .big {
        width: 850px;
    }
    .tour-slide .small {
        width: 350px;
        padding: 0 20px;
    }
    .tour-tab-list li .img {
        margin-right: 10px;
        width: 85px;
    }
    .tour-list {
        width: 1200px;
    }
    .tour-list .li .img {
        width: 160px;
        margin-right: 20px;
    }
    .tour-list .li .txt {
        width: 390px;
    }
}

@media screen and (max-width: 1200px) {
    .case-tab {
        width: 960px;
    }
    .abroad-list {
        width: 960px;
        padding: 0 20px;
    }
    .abroad-list .li {
        height: 220px;
        padding: 0 10px 0 120px;
    }
    .abroad-list .li .cir {
        width: 90px;
        height: 90px;
        top: 50px;
        left: 10px;
    }
    .tour-slide {
        width: 960px;
        height: auto;
        padding: 0 20px;
    }
    .tour-slide .big {
        float: none;
        width: 100%;
        height: 500px;
    }
    .tour-list-box {
        top: 30px;
    }
    .tour-slide .small {
        float: none;
        width: 100%;
        padding: 0 20px 30px;
    }
    .tour-tab-list li .img {
        width: 180px;
    }
    .tour-tab-list li .txt {
        width: 660px;
    }
    .tour-list {
        width: 960px;
        padding: 0 20px;
    }
    .tour-list .li .img {
        width: 140px;
    }
    .tour-list .li .txt {
        width: 270px;
    }
}

.Abroad-list {
    width: 1400px;
    margin: 0 auto;
    padding: 64px 0 36px;
}

.Abroad-list .li {
    width: 100%;
    background-color: #f5f5f5;
    margin-bottom: 36px;
}

.Abroad-list .li .bg {
    width: 42%;
    height: 355px;
    background-color: #637cfd;
}

.Abroad-list .li .bg .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
}

.Abroad-list .li .text {
    width: 58%;
    height: 355px;
    padding: 0 60px;
    position: relative;
}

.Abroad-list .li .text h5 {
    color: #E61F19;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: ash;
    text-transform: uppercase;
    padding: 55px 0 20px;
}

.Abroad-list .li .text h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 25px;
}

.Abroad-list .li .text p {
    color: #393d46;
    font-size: 15px;
    line-height: 34px;
}

.Abroad-list .li .text .a {
    position: absolute;
    left: 60px;
    bottom: 42px;
}

.Abroad-list .li .text .a a {
    display: block;
    float: left;
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 13px;
    font-family: pingfang;
    border-radius: 17px;
}

.Abroad-list .li .text .a .de {
    color: #393d46;
    border: 1px solid #393d46;
    margin-right: 21px;
    text-transform: uppercase;
}

.Abroad-list .li .text .a .zi {
    width: 115px;
    background-color: #E61F19;
    border: 1px solid #E61F19;
    color: #fff;
}

.Abroad-list .li .text .a .zi img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media screen and (max-width: 1500px) {
    .Abroad-list {
        width: 1200px;
    }
    .Abroad-list .li .text {
        padding: 0 30px;
    }
    .Abroad-list .li .text h5 {
        font-size: 20px;
        padding: 35px 0 20px;
    }
    .Abroad-list .li .text h6 {
        font-size: 20px;
        font-weight: bold;
    }
    .Abroad-list .li .text p {
        font-size: 14px;
        line-height: 1.7;
    }
    .Abroad-list .li .text .a {
        left: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .Abroad-list {
        width: 960px;
    }
    .Abroad-list .li .text h5 {
        font-size: 17px;
    }
}

.abroad-uk-overview {
    width: 1400px;
    margin: 0 auto 64px;
    padding: 70px 0 0;
}

.abroad-uk-overview .text {
    float: left;
    width: 48.6%;
    padding: 0 0 40px;
    overflow: hidden;
    position: relative;
}

.abroad-uk-overview .text h5 {
    color: #E61F19;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: ash;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.abroad-uk-overview .text h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
}

.abroad-uk-overview .text .btn {
    width: 100px;
    height: 30px;
    color: #E61F19;
    border: 1px solid #E61F19;
    border-radius: 15px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
}

.abroad-uk-overview .text .txt {
    height: 256px;
    overflow: hidden;
}

.abroad-uk-overview .text .txt p {
    color: #393d46;
    font-size: 14px;
    line-height: 1.7;
}

.abroad-uk-overview .img {
    float: right;
    width: 48.8%;
    height: 378px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.abroad-education-systom {
    width: 100%;
    height: 363px;
    margin: 0 auto 62px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.abroad-education-systom h5 {
    color: #E61F19;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    padding: 61px 0 20px;
    font-family: ash;
    text-transform: uppercase;
}

.abroad-education-systom h6 {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 27px;
}

.abroad-education-systom p {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    width: 1150px;
    margin: 0 auto;
}

.abroad-education-systom a {
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 236px;
    height: 44px;
    border-radius: 22px;
    border: 1px solid rgba(0, 137, 180, 0.2);
    color: #E61F19;
    font-size: 14px;
    line-height: 44px;
}

.abroad-educations {
    width: 1400px;
    margin: 0 auto 67px;
}

.abroad-educations .li {
    width: 48.5%;
    height: 363px;
    position: relative;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.abroad-educations .li h5 {
    color: #E61F19;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: ash;
    text-transform: uppercase;
    padding: 57px 0 18px;
}

.abroad-educations .li h6 {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 30px;
}

.abroad-educations .li p {
    width: 480px;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

.abroad-educations .li a {
    width: 268px;
    height: 46px;
    border: 1px solid #E61F19;
    border-radius: 23px;
    color: #E61F19;
    font-size: 14px;
    line-height: 46px;
    text-transform: uppercase;
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.abroad-oxice {
    width: 1400px;
    margin: 0 auto 22px;
}

.abroad-oxice .tits {
    width: 100%;
    height: 176px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.abroad-oxice .tits h5 {
    color: #E61F19;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: ash;
    padding: 61px 0 20px;
}

.abroad-oxice .tits h6 {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.abroad-oxice .li {
    float: left;
    width: 48%;
    height: 360px;
    margin-right: 4%;
    margin-bottom: 46px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 60px;
    color: #fff;
}

.abroad-oxice .li:nth-of-type(2n) {
    margin-right: 0;
}

.abroad-oxice .li:nth-of-type(1),
.abroad-oxice .li:nth-of-type(4) {
    background-image: url(../images/abroad8.jpg);
}

.abroad-oxice .li:nth-of-type(2),
.abroad-oxice .li:nth-of-type(3) {
    background-image: url(../images/abroad9.jpg);
}

.abroad-oxice .li h6 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 28px;
    padding-top: 72px;
    padding-left: 46px;
    position: relative;
}

.abroad-oxice .li h6 span {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 60px;
    font-weight: bold;
    line-height: 0.8;
    font-style: oblique;
}

.abroad-oxice .li p {
    font-size: 14px;
    line-height: 28px;
}

.abroad-popular {
    width: 100%;
    padding: 139px 0 0;
    position: relative;
}

.abroad-popular .tits {
    position: absolute;
    top: -68px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 1400px;
    height: 165px;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
    color: #393d46;
    line-height: 1;
    box-shadow: 0 0 40px rgba(0, 173, 180, 0.2);
}

.abroad-popular .tits h6 {
    font-weight: bold;
    font-size: 24px;
    padding: 52px 0 25px;
}

.abroad-popular .tits h6 span {
    color: #E61F19;
}

.abroad-popular .tits p {
    font-weight: bold;
    font-family: ash;
    text-transform: uppercase;
}

.abroad-popular .li {
    float: left;
    width: 49.8%;
    height: 341px;
    margin-right: 0.4%;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.abroad-popular .li:nth-of-type(2n) {
    margin-right: 0;
}

.abroad-popular .li .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.abroad-popular .li .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 15% 0 7.5%;
    color: #fff;
}

.abroad-popular .li .text h6 {
    font-size: 24px;
    line-height: 1;
    padding: 267px 0 14px;
    font-family: pingfang;
    text-transform: uppercase;
}

.abroad-popular .li .text .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 19px;
}

.abroad-popular .li .text p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
}

.abroad-popular .li:hover .img {
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
}

.abroad-popular .li:hover .text h6 {
    padding: 81px 0 14px;
}

.abroad-popular .li:hover .text p {
    opacity: 1;
}

.abroad-university {
    width: 100%;
    padding: 193px 0 0;
    position: relative;
}

.abroad-university .table {
    position: absolute;
    top: -134px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1400px;
    height: 259px;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(197, 197, 197, 0.65);
    padding: 0 57px;
}

.abroad-university .table h6 {
    color: #211e1f;
    font-size: 24px;
    line-height: 1;
    padding: 25px 0 20px;
    border-bottom: 1px solid #eee;
}

.abroad-university .table ul {
    width: 100%;
    padding: 28px 0 24px;
}

.abroad-university .table .li1 {
    width: 18.8%;
    margin-right: 1.5%;
}

.abroad-university .table .li2 {
    width: 23.2%;
    margin-right: 2.4%;
}

.abroad-university .table li {
    float: left;
}

.abroad-university .table li:last-of-type {
    margin-right: 0;
}

.abroad-university .table li p {
    color: #211e1f;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 13px;
}

.abroad-university .table li input {
    border: 1px solid #eee;
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 15px;
}

.abroad-university .table li input:hover,
.abroad-university .table li input:focus {
    border-color: #e3e3e3;
}

.abroad-university .table input[type=submit] {
    display: block;
    width: 120px;
    height: 42px;
    background-color: #E61F19;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 2px;
}

.abroad-university-survey {
    text-align: center;
    padding: 0 0 63px;
}

.abroad-university-survey h5 {
    color: #333;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 14px;
}

.abroad-university-survey h6 {
    color: #E61F19;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    font-family: ash;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abroad-university-survey .txt {
    width: 1000px;
    margin: 0 auto;
}

.abroad-university-survey p {
    color: #333;
    font-size: 14px;
    line-height: 25px;
}

.abroad-introduction-rankings .li {
    float: left;
    width: 50%;
    height: 398px;
    position: relative;
}

.abroad-introduction-rankings .li:nth-child(1) .bg {
    background-color: #E61F19;
}

.abroad-introduction-rankings .li:nth-child(2) .bg {
    background-color: #393d46;
}

.abroad-introduction-rankings .li .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.abroad-introduction-rankings .li .bg .img {
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.abroad-introduction-rankings .li .txt {
    text-align: center;
    color: #fff;
}

.abroad-introduction-rankings .li .txt h6 {
    padding: 133px 0 14px;
    font-size: 24px;
    line-height: 1;
}

.abroad-introduction-rankings .li .txt p {
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    font-family: ash;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.abroad-introduction-rankings .li .txt a {
    display: inline-block;
    margin: 0 auto;
    padding: 0 35px;
    color: #fff;
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 22px;
}

.abroad-process {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 40px;
}

.abroad-process .tits {
    padding: 80px 0 38px;
    text-align: center;
}

.abroad-process .tits h5 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
}

.abroad-process .tits h6 {
    color: #E61F19;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    font-family: ash;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.abroad-process .tits p {
    color: #333;
    font-size: 14px;
    line-height: 24px;
    width: 785px;
    margin: 0 auto;
}

.abroad-process .tits-sch {
    padding: 124px 0 45px;
}

.abroad-process .tits-sch h5 {
    font-style: 20px;
    font-weight: bold;
}

.abroad-process .table-box {
    width: 100%;
}

.abroad-process table {
    width: 1200px;
    margin-bottom: 40px;
}

.abroad-process th,
.abroad-process td {
    border: 2px solid #fff;
}

.abroad-process thead th {
    text-align: left;
    padding-left: 75px;
    height: 66px;
    background-color: #393d46;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    position: relative;
}

.abroad-process thead th span {
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
    text-transform: uppercase;
    margin-left: 13px;
    vertical-align: bottom;
}

.abroad-process thead th img {
    position: absolute;
    left: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.abroad-process tbody th {
    height: 52px;
    background-color: #E61F19;
    color: #fff;
    font-style: 16px;
    font-weight: bolder;
    text-align: left;
    padding: 0 20px;
}

.abroad-process tbody td {
    background-color: #eee;
    color: #393d46;
    font-style: 14px;
    line-height: 24px;
    padding: 13px 20px;
}

.abroad-process tbody .icon-g {
    display: block;
    margin: 0 auto;
    width: 21px;
    height: 21px;
    background: url(../images/icon_un7.png) center / cover no-repeat;
}

.abroad-secondary-survey {
    padding: 0 0 171px;
    position: relative;
}

.abroad-secondary-survey .txt {
    height: 75px;
    overflow: hidden;
}

.abroad-secondary-survey .btn {
    width: 150px;
    height: 44px;
    color: #E61F19;
    font-size: 14px;
    line-height: 44px;
    border-radius: 22px;
    border: 1px solid #E61F19;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 97px;
    margin: 0 auto;
    cursor: pointer;
}

.abroad-uk-system {
    width: 1400px;
    height: 682px;
    margin: 0 auto;
    background: url(../images/abroad12.jpg) center / cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
}

.abroad-uk-system h5 {
    font-size: 24px;
    line-height: 1;
    padding: 105px 0 14px;
}

.abroad-uk-system h6 {
    font-size: 16px;
    font-family: ash;
    font-weight: bold;
    margin-bottom: 52px;
    text-transform: uppercase;
}

.abroad-uk-system .txt {
    width: 1000px;
    margin: 0 auto;
}

.abroad-uk-system p {
    font-size: 14px;
    line-height: 34px;
}

.abroad-uk-system a {
    width: 264px;
    height: 44px;
    color: #fff;
    font-size: 14px;
    line-height: 44px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 122px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.abroad-uk-school .tits {
    padding: 114px 0 45px;
    text-align: center;
}

.abroad-uk-school .tits h5 {
    color: #333;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 14px;
}

.abroad-uk-school .tits h6 {
    color: #E61F19;
    font-size: 16px;
    font-family: ash;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abroad-uk-school .tits p {
    color: #333;
    font-size: 14px;
    line-height: 24px;
    width: 960px;
    margin: 0 auto;
}

.swiper-uk-school {
    width: 100%;
    height: 574px;
}

.swiper-uk-school .swiper-button-next,
.swiper-uk-school .swiper-button-prev {
    width: 41px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
}

.swiper-uk-school .swiper-button-next:after,
.swiper-uk-school .swiper-button-prev:after {
    display: none;
}

.swiper-uk-school .swiper-button-next {
    background-image: url(../images/i_next.png);
    right: 60px;
}

.swiper-uk-school .swiper-button-prev {
    background-image: url(../images/i_prev.png);
    left: 60px;
}

.swiper-uk-school .swiper-slide .text {
    float: left;
    width: 50%;
    height: 100%;
    background-color: #E61F19;
    color: #fff;
}

.swiper-uk-school .swiper-slide .text .texts {
    float: right;
    width: 700px;
    height: 100%;
    padding-right: 75px;
    position: relative;
}

.swiper-uk-school .swiper-slide .text h5 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    font-style: italic;
    padding: 45px 0 20px;
    opacity: 0.1;
}

.swiper-uk-school .swiper-slide .text h6 {
    font-size: 24px;
    position: absolute;
    top: 66px;
    left: 10px;
}

.swiper-uk-school .swiper-slide .text p {
    font-size: 13px;
    line-height: 1.7;
}

.swiper-uk-school .swiper-slide .text a {
    display: block;
    width: 142px;
    height: 44px;
    color: #fff;
    font-style: 14px;
    line-height: 44px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: absolute;
    left: 7px;
    bottom: 35px;
}

.swiper-uk-school .swiper-slide .text a img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.swiper-uk-school .swiper-slide .img {
    float: right;
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1500px) {
    .abroad-uk-overview {
        width: 1200px;
    }
    .abroad-uk-overview .text h5 {
        font-size: 20px;
        mask-border: 10px;
    }
    .abroad-uk-overview .text h6 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .abroad-educations {
        width: 1200px;
    }
    .abroad-oxice {
        width: 1200px;
    }
    .abroad-oxice .li {
        padding: 0 30px;
    }
    .abroad-oxice .li h6 {
        padding-top: 50px;
    }
    .abroad-popular .tits {
        width: 1200px;
    }
    .abroad-popular .li .text {
        padding: 0 5%;
    }
    .abroad-popular .li:hover .text h6 {
        padding: 50px 0 14px;
    }
    .abroad-university .table {
        width: 1200px;
        padding: 0 25px;
    }
    .abroad-uk-system {
        width: 1200px;
    }
    .abroad-uk-school {
        width: 1200px;
        margin: 0 auto;
    }
    .swiper-uk-school .swiper-slide .text .texts {
        width: auto;
        padding: 0 25px;
    }
    .swiper-uk-school .swiper-slide .text h5 {
        padding: 15px 0 10px;
    }
    .swiper-uk-school .swiper-slide .text h6 {
        left: 25px;
        top: 35px;
    }
    .swiper-uk-school .swiper-slide .text a {
        left: 20px;
        bottom: 25px;
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 1200px) {
    .abroad-uk-overview {
        width: 960px;
        padding: 70px 20px 0;
    }
    .abroad-education-systom h5 {
        padding: 40px 0 10px;
    }
    .abroad-education-systom p {
        width: 900px;
    }
    .abroad-educations {
        width: 960px;
        padding: 0 20px;
    }
    .abroad-educations .li h5 {
        font-size: 22px;
        padding: 35px 0 15px;
    }
    .abroad-educations .li h6 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .abroad-educations .li p {
        width: 400px;
        font-size: 13px;
        line-height: 1.7;
    }
    .abroad-oxice {
        width: 960px;
    }
    .abroad-oxice .li {
        width: 49%;
        margin-right: 2%;
    }
    .abroad-oxice .li h6 {
        margin-bottom: 15px;
    }
    .abroad-popular .tits {
        width: 960px;
    }
    .abroad-popular .li .text .line {
        margin-bottom: 10px;
    }
    .abroad-popular .li .text p {
        font-size: 13px;
    }
    .abroad-university .table {
        width: 960px;
    }
    .abroad-university-survey .txt {
        width: 900px;
    }
    .abroad-process {
        width: 960px;
    }
    .abroad-process .table-box {
        overflow-x: auto;
    }
    .abroad-uk-system {
        width: 960px;
        padding: 0 20px;
    }
    .abroad-uk-system .txt {
        width: 100%;
    }
    .abroad-uk-system p {
        line-height: 1.7;
    }
    .abroad-uk-school {
        width: 960px;
        padding: 0 20px;
    }
    .abroad-uk-school .tits p {
        width: 900px;
    }
    .swiper-uk-school .swiper-slide .text .texts .txt {
        height: 400px;
        overflow: auto;
    }
    .swiper-uk-school .swiper-slide .text .texts .txt::-webkit-scrollbar {
        width: 3px;
        background-color: rgba(57, 61, 70, 0.1);
    }
    .swiper-uk-school .swiper-slide .text .texts .txt::-webkit-scrollbar-thumb {
        width: 3px;
        background-color: #393d46;
    }
}

.tour-manchester {
    width: 100%;
    padding: 214px 0 70px;
    position: relative;
    margin-bottom: 130px;
}

.tour-manchester-box .tour-manchester:last-child {
    margin-bottom: 0;
}

.tour-manchester-intro {
    width: 1400px;
    box-shadow: 0 0 40px rgba(0, 173, 180, 0.2);
    background-color: #fff;
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tour-manchester-introTop {
    width: 100%;
    height: 130px;
    background-color: #fdfdfd;
    padding: 0 70px;
}

.tour-manchester-introTop .img {
    float: left;
    width: 164px;
    height: 130px;
    line-height: 130px;
    margin-right: 35px;
    font-size: 0;
}

.tour-manchester-introTop .img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.tour-manchester-introTop h5 {
    color: #E61F19;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    font-family: ash;
    text-transform: uppercase;
    padding: 30px 0 15px;
}

.tour-manchester-introTop h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
}

.tour-manchester-introBottom {
    width: 100%;
    /* height: 147px; */
    background-color: #fff;
    padding: 30px 70px 40px;
    overflow: hidden;
}

.tour-manchester-introBottom p {
    color: #393d46;
    font-size: 14px;
    line-height: 26px;
}

.tour-manchester-slide {
    width: 100%;
    height: 325px;
    margin-bottom: 70px;
}

.swiper-tour-manchester {
    width: 100%;
    height: 100%;
}

.swiper-tour-manchester .swiper-button-next,
.swiper-tour-manchester .swiper-button-prev {
    outline: none;
    width: 21px;
    height: 40px;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-tour-manchester .swiper-button-next:after,
.swiper-tour-manchester .swiper-button-prev:after {
    display: none;
}

.swiper-tour-manchester .swiper-button-next {
    background-image: url(../images/mch_next.png);
}

.swiper-tour-manchester .swiper-button-prev {
    background-image: url(../images/mch_prev.png);
}

.swiper-tour-manchester .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper-tour-manchester .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper-tour-manchester .swiper-slide .cir {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(0, 173, 180, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-sform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0, 173, 180, 0.9) url(../images/icon_fd.png) center / auto no-repeat;
    opacity: 0;
}

.swiper-tour-manchester .swiper-slide:hover .cir {
    opacity: 1;
}

.tour-manchester-lesson {
    width: 1400px;
    margin: 0 auto 35px;
    padding: 0 50px 116px;
    position: relative;
    background-color: #E61F19;
    color: #fff;
}

.tour-manchester-lesson:nth-of-type(2n) {
    background-color: #393d46;
}

.tour-manchester-lesson h6 {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    padding: 47px 0 15px;
}

.tour-manchester-lesson .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 20px;
}

.tour-manchester-lesson p {
    font-size: 14px;
    line-height: 1.7;
}

.tour-manchester-lesson a {
    display: block;
    width: 142px;
    height: 44px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 44px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 55px;
    left: 50px;
}

.tour-manchester-lesson a img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.tour-manchester-chs .tour-manchester-lesson {
    margin-bottom: 17px;
}

.tour-manchester-chs .tour-chs-bg {
    background-color: #393d46;
}

.tour-manchester-kelly {
    padding: 351px 0 70px;
}

.tour-manchester-kelly .tour-manchester-introBottom {
    height: 291px;
}

.tour-manchester-mor {
    padding: 293px 0 70px;
}

.tour-manchester-mor .tour-manchester-introBottom {
    height: 230px;
}

.tour-manchester-language {
    margin-bottom: 90px;
}

@media screen and (max-width: 1500px) {
    .tour-manchester-intro {
        width: 1200px;
    }
    .tour-manchester-introBottom {
        padding: 30px 35px 0;
    }
    .tour-manchester-lesson {
        width: 1200px;
        padding: 0 25px 80px;
    }
    .tour-manchester-lesson a {
        bottom: 20px;
        left: 25px;
    }
}

@media screen and (max-width: 1200px) {
    .tour-manchester-intro {
        width: 960px;
    }
    .tour-manchester-introTop {
        padding: 0 20px;
    }
    .tour-manchester-introBottom {
        padding: 15px 20px 0;
    }
    .tour-manchester-lesson {
        width: 960px;
    }
}

.coach {
    width: 100%;
    padding: 8px 0 0;
}

.coach .li {
    width: 49.8%;
    height: 355px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #0e1a34;
}

.coach .li:nth-child(odd) {
    float: left;
}

.coach .li:nth-child(even) {
    float: right;
}

.coach .li .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
}

.coach .li .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 7.5%;
    color: #fff;
}

.coach .li .text h6 {
    padding: 185px 0 13px;
}

.coach .li .text h6 img {
    display: block;
    height: 35px;
}

.coach .li .text h5 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 4px;
}

.coach .li .text .y {
    font-size: 16px;
    line-height: 1.5;
    font-family: ash;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.coach .li .text p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
}

.coach .li:hover .img {
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -ms-filter: blur(30px);
    -o-filter: blur(30px);
    filter: blur(30px);
    opacity: 1;
}

.coach .li:hover .text h6 {
    padding: 120px 0 13px;
}

.coach .li:hover .text p {
    opacity: 1;
}

@media screen and (max-width: 1200px) {
    .coach .li:hover .text h6 {
        padding: 80px 0 13px;
    }
}

.news-tab {
    width: 1400px;
    margin: 0 auto;
    padding: 55px 0 60px;
}

.news-tab ul {
    text-align: center;
    font-size: 0;
}

.news-tab li {
    display: inline-block;
    vertical-align: top;
    width: 185px;
    margin: 0 64px;
    position: relative;
}

.news-tab li:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #9b9b9b;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.news-tab li a {
    display: block;
    width: 100%;
    padding: 0 0 30px;
    color: #9b9b9b;
}

.news-tab li p {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
}

.news-tab li span {
    font-size: 16px;
    line-height: 1;
}

.news-tab li:hover a,
.news-tab li.on a {
    color: #E61F19;
}

.news-tab li:hover:after,
.news-tab li.on:after {
    background-color: #E61F19;
    bottom: 0;
}

.news-headlines {
    width: 1400px;
    height: 375px;
    margin: 0 auto 64px;
    position: relative;
}

.news-headlines .img {
    width: 100%;
    height: 100%;
}

.news-headlines .text {
    width: 665px;
    height: 142px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0 24px;
    overflow: hidden;
}

.news-headlines .text .ti {
    padding: 23px 0 0;
    color: #fff;
    font-size: 15px;
    margin-bottom: 17px;
}

.news-headlines .text .ti h6 {
    float: left;
    width: 360px;
    padding: 0 0 11px;
    border-bottom: 1px solid #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-headlines .text .ti span {
    float: right;
    font-family: pingfang;
}

.news-headlines .text .con {
    height: 56px;
    overflow: hidden;
}

.news-headlines .text .con p {
    color: #fff;
    font-size: 15px;
    line-height: 28px;
    font-family: pingfang;
}

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

.news .list {
    width: 100%;
}

.news .li {
    width: 47.6%;
    background-color: #f7f7f7;
    margin-bottom: 60px;
}

.news .li:nth-child(odd) {
    float: left;
}

.news .li:nth-child(even) {
    float: right;
}

.news .li a {
    display: block;
    width: 100%;
    height: 100%;
}

.news .li .img {
    width: 100%;
    height: 178px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news .li .text {
    width: 100%;
    height: 143px;
    padding: 0 27px;
}

.news .li .text .ti {
    padding: 27px 0 0;
    font-size: 15px;
    margin-bottom: 17px;
}

.news .li .text .ti h6 {
    float: left;
    width: 360px;
    color: #333;
    padding: 0 0 17px;
    border-bottom: 1px solid #E61F19;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news .li .text .ti span {
    float: right;
    color: #9b9b9b;
    font-family: pingfang;
}

.news .li .text .con {
    height: 56px;
    overflow: hidden;
}

.news .li .text .con p {
    color: #333;
    font-size: 15px;
    line-height: 28px;
    font-family: pingfang;
}

.news .li:hover .text .ti h6 {
    color: #E61F19;
}

.news .case-page {
    padding: 0 0 60px;
}

.news-detail-bg {
    background-color: #f7f7f7;
    padding: 25px 0 48px;
}

.news-detail {
    width: 1400px;
    margin: 0 auto;
}

.news-detail-content {
    float: left;
    width: 1011px;
    background-color: #fff;
}

.news-detail-content .tits {
    padding: 0 35px 23px;
    border-bottom: 1px solid #f2f2f2;
}

.news-detail-content .tits h6 {
    padding: 35px 0 13px;
    color: #333;
    font-size: 28px;
    line-height: 1.5;
}

.news-detail-content .tits span {
    color: #333;
    font-size: 15px;
    line-height: 1;
    margin-right: 35px;
    font-family: pingfang;
}

.news-detail-content .content {
    padding: 30px 35px 20px;
    border-bottom: 1px dashed #f6f6f6;
}

.news-detail-content .content .con {
    padding: 0 0 50px;
}

.news-detail-content .content .con p {
    color: #333;
    font-size: 15px;
    line-height: 35px;
}

.news-detail-content .content .con p img {
    max-width: 100%;
}

.news-detail-content .bott .bshare-custom {
    float: left;
    padding: 12px 0;
}

.news-detail-content .bott .back-top {
    float: right;
}

.news-detail-content .bott .back-top a {
    display: inline-block;
    vertical-align: top;
    width: 98px;
    height: 42px;
    border-radius: 21px;
    border: 1px solid #a1a1a1;
    text-align: center;
    color: #a1a1a1;
    font-size: 14px;
    line-height: 42px;
    margin-right: 11px;
}

.news-detail-content .bott .back-top .top {
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #E61F19;
    line-height: 44px;
    text-align: center;
    font-size: 0;
    cursor: pointer;
}

.news-detail-content .bott .back-top .top img {
    display: inline-block;
    vertical-align: middle;
}

.news-detail-content .prev-next {
    width: 100%;
    padding: 20px 38px;
}

.news-detail-content .prev-next a {
    display: block;
    width: 40%;
    color: #333333;
    font-size: 15px;
    font-family: pingfang;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-detail-content .prev-next a:hover {
    color: #E61F19;
}

.news-detail-content .prev-next .prev {
    float: left;
}

.news-detail-content .prev-next .next {
    float: right;
}

.news-tuijian {
    float: right;
    width: 360px;
}

.news-tuijian-pinggu {
    width: 100%;
    height: 548px;
    margin-bottom: 21px;
    background-color: #E61F19;
    position: relative;
}

.news-tuijian-pinggu .img,
.news-tuijian-pinggu .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.news-tuijian-pinggu .img {
    z-index: 1;
    opacity: 0.1;
}

.news-tuijian-pinggu .text {
    z-index: 2;
    padding: 0 25px;
    text-align: center;
}

.news-tuijian-pinggu .text h6 {
    padding: 38px 0 15px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.news-tuijian-pinggu .text p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 26px;
}

.news-tuijian-pinggu .text input[type=text] {
    display: block;
    width: 100%;
    height: 43px;
    border-radius: 4px;
    background-color: #fff;
    border: none;
    margin-bottom: 14px;
    padding: 0 20px;
}

.news-tuijian-pinggu .text input[type=text]::-webkit-input-placeholder {
    color: #666;
    font-size: 14px;
    font-family: pingfang;
}

.news-tuijian-pinggu .text .last {
    margin-bottom: 34px !important;
}

.news-tuijian-pinggu .text input[type=submit] {
    display: block;
    width: 100%;
    height: 43px;
    border-radius: 4px;
    background-color: #ffbd00;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.news-tuijian-xiangguan {
    width: 100%;
    background-color: #fff;
    padding: 0 25px 20px;
    margin-bottom: 18px;
}

.news-tuijian-xiangguan h6 {
    color: #4b4b4b;
    font-size: 20px;
    line-height: 1;
    font-family: pingfang;
    padding: 26px 0 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.news-tuijian-xiangguan li {
    width: 100%;
    padding: 10px 0;
}

.news-tuijian-xiangguan li span {
    display: block;
    float: left;
    width: 8%;
    font-family: '宋体';
    font-weight: bold;
    font-style: oblique;
    font-size: 24px;
    line-height: 24px;
}

.news-tuijian-xiangguan li a {
    display: block;
    float: right;
    width: 92%;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-tuijian-xiangguan li:hover span,
.news-tuijian-xiangguan li:hover a {
    color: #E61F19;
}

.news-tuijian-xiangmu {
    width: 100%;
    background-color: #fff;
    padding: 0 25px 20px;
}

.news-tuijian-xiangmu h6 {
    color: #4b4b4b;
    font-size: 20px;
    line-height: 1;
    font-family: pingfang;
    padding: 26px 0 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.news-tuijian-xiangmu li {
    margin-bottom: 20px;
}

.news-tuijian-xiangmu li a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-tuijian-xiangmu li a img {
    display: block;
    width: 100%;
    height: 186px;
}

.news-tuijian-xiangmu li a p {
    color: #393d46;
    font-size: 16px;
    line-height: 40px;
}

.news-tuijian-xiangmu li:hover a p {
    color: #E61F19;
}

@media screen and (max-width: 1500px) {
    .news-tab {
        width: 1200px;
    }
    .news-tab li {
        width: 160px;
        margin: 0 30px;
    }
    .news-headlines {
        width: 1200px;
    }
    .news {
        width: 1200px;
    }
    .news .li .text {
        padding: 0 20px;
    }
    .news .li .text .ti h6 {
        width: 340px;
    }
    .news .li .text .ti span {
        font-size: 14px;
    }
    .news-detail {
        width: 1200px;
    }
    .news-detail-content {
        width: 840px;
    }
    .news-detail-content .tits {
        padding: 0 25px 23px;
    }
    .news-detail-content .tits h6 {
        font-size: 22px;
    }
    .news-tuijian {
        width: 340px;
    }
}

@media screen and (max-width: 1200px) {
    .news-tab {
        width: 960px;
    }
    .news-tab li {
        width: 130px;
    }
    .news-tab li span {
        font-size: 14px;
    }
    .news-headlines {
        width: 960px;
    }
    .news-headlines .text {
        width: 560px;
    }
    .news-headlines .text .ti h6 {
        width: 340px;
    }
    .news-headlines .text .ti span {
        font-size: 14px;
    }
    .news {
        width: 960px;
    }
    .news .li .text {
        padding: 0 10px;
    }
    .news .li .text .ti h6 {
        font-size: 14px;
        width: 280px;
    }
    .news .li .text .ti span {
        font-size: 12px;
    }
    .news .li .text .con p {
        font-size: 14px;
    }
    .case-page a,
    .case-page strong {
        margin: 0 15px;
    }
    .news-detail {
        width: 960px;
        padding: 0 20px;
    }
    .news-detail-content {
        width: 100%;
        float: none;
    }
    .news-tuijian {
        display: none;
    }
}

.search-result {
    width: 1400px;
    margin: 0 auto;
    padding: 50px 0 80px;
}

.search-result .inp {
    width: 100%;
    height: 75px;
    border: 1px solid #e5e5e5;
    position: relative;
    margin-bottom: 37px;
}

.search-result .inp input[type=text] {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #f5f5f5;
    padding: 0 80px 0 30px;
    color: #333;
    font-size: 18px;
}

.search-result .inp input[type=button] {
    display: block;
    width: 80px;
    height: 75px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: url(../images/icon_search_re.png) center / auto no-repeat;
    border: none;
}

.search-result .inp input[type=button]:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.search-result .list {
    padding: 0 0 72px;
    position: relative;
}

.search-result .list .more {
    width: 133px;
    height: 42px;
    border-radius: 21px;
    border: 1px solid #E61F19;
    text-align: center;
    color: #E61F19;
    font-size: 15px;
    line-height: 42px;
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: pointer;
}

.search-result .li {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.search-result .li a {
    display: block;
    width: 100%;
    height: 100%;
}

.search-result .li h6 {
    color: #333;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
}

.search-result .li h6 span {
    color: #E61F19;
}

.search-result .li p {
    color: #333;
    font-size: 15px;
    line-height: 1;
}

.search-result .li h6,
.search-result .li p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 1500px) {
    .search-result {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .search-result {
        width: 960px;
        padding: 50px 20px 80px;
    }
}

.consult-head {
    width: 100%;
    height: 188px;
    position: relative;
}

.consult-head .text {
    width: 1200px;
    height: 242px;
    margin: 0 auto;
    position: absolute;
    top: -132px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(173, 173, 173, 0.2);
    padding: 30px 55px 0;
}

.consult-head .text .con {
    float: left;
}

.consult-head .text .con p {
    color: #393d46;
    font-size: 16px;
    line-height: 44px;
}

.consult-head .text .con span {
    color: #E61F19;
    font-weight: bold;
}

.consult-head .text .img {
    float: right;
    text-align: center;
}

.consult-head .text .img img {
    display: block;
    margin: 0 auto 10px;
    width: 129px;
    height: 129px;
    border: 1px solid #464a52;
}

.consult-head .text .img span {
    color: #393d46;
    font-size: 12px;
}

.consult-provide {
    width: 100%;
}

.consult-provide .top {
    width: 100%;
    height: 418px;
}

.consult-provide .top .img {
    float: left;
}

.consult-provide .top .text {
    float: right;
    background-image: url(../images/cul_bg1.jpg);
    padding: 0 13% 0 8.5%;
}

.consult-provide .top .text h5 {
    color: #E61F19;
    font-size: 32px;
    font-family: ash;
    text-transform: uppercase;
    padding: 130px 0 15px;
}

.consult-provide .top .text h6 {
    color: #393d46;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
}

.consult-provide .top .text p {
    color: #393d46;
    font-size: 16px;
    line-height: 37px;
}

.consult-provide .bottom {
    height: 590px;
}

.consult-provide .bottom .img {
    float: right;
}

.consult-provide .bottom .text {
    float: left;
    padding: 110px 8.5% 0 13%;
    background-image: url(../images/cul_bg2.jpg);
}

.consult-provide .bottom .text p {
    color: #393d46;
    font-size: 16px;
    line-height: 37px;
}

.consult-provide .bottom .text p span {
    color: #E61F19;
    font-weight: bold;
}

.consult-provide .img {
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.consult-provide .text {
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.join-head {
    width: 100%;
    height: 360px;
    position: relative;
}

.join-box {
    width: 1400px;
    height: 464px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 173, 180, 0.2);
}

.join-box .text {
    float: left;
    width: 50%;
    height: 100%;
    padding: 0 45px;
    overflow: hidden;
}

.join-box .text h6 {
    color: #393d46;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    padding: 50px 0 25px;
}

.join-box .text p {
    color: #393d46;
    font-size: 14px;
    line-height: 1.7;
}

.join-box .text p span {
    color: #E61F19;
}

.swiper-join {
    float: left;
    width: 50%;
    height: 100%;
}

.swiper-join .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper-join .swiper-button-next,
.swiper-join .swiper-button-prev {
    margin-top: 0;
    width: 22px;
    height: 42px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-join .swiper-button-next:after,
.swiper-join .swiper-button-prev:after {
    display: none;
}

.swiper-join .swiper-button-prev {
    background-image: url(../images/join_prev.png);
}

.swiper-join .swiper-button-next {
    background-image: url(../images/join_next.png);
}

.join-recruit .ti {
    width: 1400px;
    margin: 0 auto;
    padding: 80px 0 37px;
    color: #393d46;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
}

.join-recruit .li {
    padding: 44px 0;
}

.join-recruit .li:nth-child(odd) {
    background-color: #fafafa;
}

.join-recruit .text {
    width: 1400px;
    margin: 0 auto;
}

.join-recruit .text h6 {
    color: #E61F19;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 25px;
}

.join-recruit .text li {
    float: left;
    width: 50%;
}

.join-recruit .text li p {
    color: #838383;
    font-size: 14px;
    line-height: 34px;
}

@media screen and (max-width: 1500px) {
    .join-box {
        width: 1200px;
    }
    .join-box .text {
        padding: 0 25px;
    }
    .join-recruit .ti {
        width: 1200px;
    }
    .join-recruit .li {
        padding: 40px 20px;
    }
    .join-recruit .text {
        width: 1200px;
    }
}

@media screen and (max-width: 1200px) {
    .consult-head .text {
        width: 960px;
    }
    .consult-provide .top .text {
        padding: 0 5%;
    }
    .consult-provide .bottom .text {
        padding: 110px 5% 0;
    }
    .join-box {
        width: 960px;
    }
    .join-box .text h6 {
        font-size: 24px;
        padding: 35px 0 15px;
    }
    .join-box .text p {
        font-size: 13px;
        line-height: 1.8;
    }
    .join-recruit .ti {
        width: 960px;
        padding: 80px 20px 35px;
    }
    .join-recruit .text {
        width: 100%;
    }
}

@media screen and (min-width: 768px) {
    .wap-header,
    .backTop {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .header {
        display: none;
    }
    .backTop {
        display: none;
        position: fixed;
        bottom: 1.2rem;
        right: 0.25rem;
        z-index: 9;
        width: 0.9rem;
        height: 0.9rem;
        background-color: #E61F19;
        color: #fff;
        border-radius: 0.02rem;
        line-height: 0.9rem;
        text-align: center;
    }
    .wap-header {
        display: block;
        width: 100%;
        /* background-color: #E61F19; */
        height: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
        padding: 0 0.25rem;
        transition: all 0.2s;
    }
    .wap-header .logo {
        float: left;
        position: relative;
    }
    .wap-header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        height: .9rem;
    }
    .wap-header .menu {
        float: right;
        font-size: 0;
        height: 1rem;
        line-height: 1rem;
    }
    .wap-header .menu .Bar {
        display: inline-block;
        vertical-align: middle;
    }
    .wap-header .menu .bar {
        background-color: #fff;
        width: 0.6rem;
        height: 0.08rem;
        border-radius: 0.04rem;
        margin-bottom: 0.1rem;
        transition: all 0.2s;
    }
    .wap-header .menu .bar:last-of-type {
        margin-bottom: 0;
    }
    .wap-header .menu-active .bar:first-of-type {
        transform: translateY(0.18rem) rotate(-45deg);
    }
    .wap-header .menu-active .bar:nth-of-type(2) {
        opacity: 0;
    }
    .wap-header .menu-active .bar:last-of-type {
        transform: translateY(-0.18rem) rotate(45deg);
    }
    .wap-header .ri {
        float: right;
    }
    .wap-header .ri .search-btn {
        float: left;
        line-height: 1rem;
        font-size: 0;
        margin-right: 0.5rem;
    }
    .wap-header .ri .search-btn img {
        display: inline-block;
        vertical-align: middle;
    }
    .search-box .inp input {
        height: 0.9rem;
    }
    .search-box .inp input[type=text] {
        width: 80%;
        padding: 0 0.2rem 0 0.6rem;
        line-height: 0.9rem;
        font-size: 0.3rem;
    }
    .search-box .inp input[type=text]::-webkit-input-placeholder {
        font-size: 0.3rem;
    }
    .search-box .inp input[type=submit] {
        width: 20%;
        font-size: 0.3rem;
    }
    .menuList {
        background-color: #fff;
        width: 100%;
        height: 0;
        overflow: hidden;
        position: fixed;
        top: 1rem;
        left: 0;
        right: 0;
        z-index: 1;
        box-shadow: 0 5px 5px rgba(0, 173, 180, 0.1);
    }
    .menuList ul {
        height: 100%;
        overflow: auto;
        padding: 0.2rem 0.25rem;
    }
    .menuList li {
        border-bottom: 1px solid #e3e3e3;
    }
    .menuList li .a {
        display: block;
        line-height: 0.9rem;
        color: #333;
        font-size: 0.36rem;
        font-family: pingfang;
        position: relative;
    }
    .menuList li .a:after {
        content: "";
        width: 0.3rem;
        height: 0.3rem;
        position: absolute;
        top: 0.3rem;
        right: 0.25rem;
        background: url(../images/icon_xia.png) center / cover no-repeat;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    .menuList li dl {
        padding: 0 0.25rem;
        height: 0;
        overflow: hidden;
    }
    .menuList li dd {
        border-bottom: 1px dashed #eee;
    }
    .menuList li dd a {
        display: block;
        line-height: 0.7rem;
        font-size: 0.32rem;
        font-family: pingfang;
        color: #666;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .menuList .on .a:after {
        transform: rotate(180deg);
    }
    .menuList .on dl {
        height: auto;
    }
    .menu-active .menuList {
        height: 7.8rem;
    }
    .zhanwei {
        /* height: 1rem; */
    }
    .swiper-banner {
        height: auto;
    }
    .yy {
        top: 20% !important;
    }
    .inside-banner .text {
        width: 100%;
    }
    .inside-banner .text h6 {
        word-wrap: break-word;
        word-break: normal;
    }
    .swiper-banner .swiper-slide .img h6 {
        font-size: 0.4rem;
        margin-bottom: 0.3rem;
    }
    .swiper-banner .swiper-slide .img p {
        font-size: 0.24rem;
    }
    .swiper-banner .swiper-button-next,
    .swiper-banner .swiper-button-prev {
        display: none;
    }
    .index-abroad {
        width: 100%;
        padding: 0.6rem 0.25rem 0.2rem;
    }
    .index-abroad .li {
        float: none;
        width: 100%;
        height: 2.8rem;
        margin-bottom: 0.2rem;
    }
    .index-abroad .li .text h6 {
        padding: 0.5rem 0 0.2rem;
        font-size: 0.36rem;
    }
    .index-abroad .li .text p {
        font-size: 0.24rem;
        margin-bottom: 0.3rem;
        letter-spacing: 0.09rem;
    }
    .index-title {
        padding: 0.8rem 0.25rem 0.5rem;
    }
    .index-title p {
        font-size: 0.4rem;
        margin-bottom: 0.2rem;
    }
    .index-title span {
        font-size: 0.24rem;
    }
    .index-service {
        padding: 0 0.25rem;
    }
    .index-service .li {
        width: 100%;
        height: 4.2rem;
        margin-bottom: 0.1rem;
        /* background-color: #E61F19; */
    }
    .index-service .li .tis {
        opacity: 0;
    }
    .index-service .li .text {
        opacity: 1;
        padding: 0 0.25rem;
    }
    .index-service .li .text h6 {
        font-size: 0.34rem;
        padding: 0.4rem 0 0.1rem;
    }
    .index-service .li .text .p {
        font-size: 0.24rem;
        margin-bottom: 0.2rem;
    }
    .index-service .li .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .index-service .li .text a {
        left: 0.25rem;
        bottom: 0.2rem;
    }
    .index-advantage {
        width: 100%;
        padding: 0 0.25rem 0.8rem;
    }
    .index-advantage .li {
        width: 49%;
        height: 6.6rem;
        margin-right: 1% !important;
        margin-bottom: 0.2rem;
        box-shadow: 0 0 5px rgba(0, 173, 180, 0.1);
        padding: 0.3rem .2rem;
    }
    .index-advantage .li:nth-child(even) {
        margin-right: 0 !important;
    }
    .index-advantage .li h6 {
        font-size: 0.24rem;
        line-height: initial;
    }
    .index-advantage .li p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .index-advantage .li a {
        bottom: 0.3rem;
    }
    .index-team {
        width: 100%;
        padding: 2.2rem 0.25rem 0;
    }
    .swiper-team-detail .swiper-slide .cir {
        width: 2.6rem;
        height: 2.6rem;
        left: 0;
        top: -2.2rem;
    }
    .swiper-team-detail .swiper-slide h6 {
        top: -1.1rem;
        left: 3.6rem;
        font-size: 0.36rem;
    }
    .swiper-team-detail .swiper-slide h6 span {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.26rem;
    }
    .swiper-team-detail .swiper-slide .text-box {
        width: 96%;
        margin-right: 0.1rem;
    }
    .swiper-team-detail .swiper-slide .text {
        padding-right: 0.1rem;
    }
    .swiper-team-detail .swiper-slide .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .swiper-team-list .swiper-slide .cir {
        width: 1.2rem;
        height: 1.2rem;
    }
    .swiper-team-list .swiper-slide p {
        font-size: 0.3rem;
    }
    .swiper-team-list .swiper-slide span {
        font-size: 0.2rem;
    }
    .index-case {
        width: 100%;
        padding: 0.8rem 0.25rem 0;
    }
    .index-case .li {
        width: 49%;
        height: 5.4rem;
        padding: 0 0.2rem;
        margin-bottom: 1.2rem;
        margin-right: 2% !important;
    }
    .index-case .li:nth-child(even) {
        margin-right: 0 !important;
    }
    .index-case .li h6 {
        font-size: 0.3rem;
        padding: 70px 0 0.2rem;
    }
    .index-case .li .txt {
        height: 4rem;
    }
    .index-case .li .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .index-news {
        width: 100%;
        padding: 0 0.25rem 0.8rem;
    }
    .swiper-news {
        float: none;
        width: 100%;
        height: 5rem;
        margin-bottom: 0.4rem;
    }
    .swiper-news .swiper-slide .img {
        padding: 0 0.2rem;
    }
    .swiper-news .swiper-slide .img p {
        padding: 3.4rem 0 0.2rem;
        font-size: 0.3rem;
        font-weight: normal;
        color: #E61F19;
    }
    .swiper-news .swiper-slide .img span {
        font-size: 0.24rem;
    }
    .index-news .right {
        float: none;
        width: 100%;
    }
    .index-news-tab {
        padding: 0 0 0.25rem;
    }
    .index-news-tab ul li {
        width: 1.5rem;
        font-size: 0.24rem;
        line-height: 0.6rem;
        height: 0.6rem;
        margin-right: 0.2rem;
    }
    .index-news-tab .a a {
        width: 1.5rem;
        height: 0.6rem;
        line-height: 0.6rem;
        font-size: 0.24rem;
    }
    .index-news-list .li .time {
        padding: 0.15rem;
    }
    .index-news-list .li .txt h6 {
        font-size: 0.3rem;
        line-height: initial;
    }
    .index-news-list .li .txt p {
        font-size: 0.24rem;
    }
    .index-assess {
        height: auto;
    }
    .index-assess .left {
        float: none;
        width: 100%;
        height: 3.4rem;
        display: block;
    }
    .index-assess .txt img {
        padding: 0.5rem 0 0.2rem;
    }
    .index-assess .txt h6 {
        font-size: 0.44rem;
    }
    .index-assess .txt p {
        font-size: 0.24rem;
        letter-spacing: 2px;
        margin-bottom: 0.25rem;
    }
    .index-assess .right {
        float: none;
        width: 100%;
    }
    .index-assess .inps {
        width: 100%;
        margin: 0;
        padding: 0.9rem 0.25rem 0.5rem;
    }
    .index-assess .inps input {
        width: 100%;
        height: .8rem;
    }
    .index-assess .inps .l {
        width: 3.4rem;
    }
    .index-assess .inps button {
        width: 100%;
        height: 1.1rem;
        font-size: 0.3rem;
    }
    .index-assess .inps button span {
        display: block;
        font-size: 0.2rem;
        margin-left: 0;
        margin-top: .2rem;
    }
    .foot-top {
        width: 100%;
        padding: 0.9rem 0.25rem 0;
    }
    .foot-nav {
        display: none;
    }
    .foot-lian {
        width: 100%;
        padding: 0 0 0.2rem;
    }
    .foot-lian .img {
        margin: 0 0.6rem 0.3rem;
    }
    .foot-lian .img img {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0;
    }
    .foot-lian .img span {
        font-size: 0.22rem;
    }
    .foot-lian .p {
        font-size: 0.26rem;
        margin-bottom: 0.1rem;
    }
    .foot-lian .ph {
        font-size: 0.48rem;
        margin-bottom: 0.3rem;
    }
    .foot-lian .d {
        font-size: 0.24rem;
    }
    .foot-bottom {
        padding: 0.2rem 0.25rem;
    }
    .foot-bottom p {
        font-size: 0.2rem;
        line-height: 1.7;
        letter-spacing: 0.01rem;
    }
    .foot-bottom p a {
        display: block;
    }
    .inside-banner {
        height: 7.4rem;
    }
    .inside-banner .text h6 {
        font-size: 0.48rem;
        margin-bottom: 0.15rem;
        line-height: 43px;
    }
    .inside-banner .text p {
        font-size: 0.3rem;
        white-space: normal;
        line-height: 31px;
    }
    .case-bg {
        padding: 2rem 0.25rem 0;
    }
    .case-tab {
        width: 7rem;
        top: 0;
    }
    .case-tab li {
        height: 1.4rem;
    }
    .case-tab li .txt {
        padding: 0;
        text-align: center;
        font-size: 0.3rem;
    }
    .case-tab li .txt p {
        padding: 0.3rem 0 0.15rem;
    }
    .abroad-list {
        width: 100%;
        padding: 0;
    }
    .abroad-list .li {
        float: none;
        width: 100%;
        height: 3.5rem;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    .abroad-list .li h6 {
        font-size: 0.3rem;
        padding: 0.3rem 0 0.15rem;
        margin-bottom: 0.1rem;
    }
    .abroad-list .li ul li {
        float: none;
        width: 100%;
        font-size: 0.22rem;
    }
    .case-page {
        padding: 0.3rem 0 0.6rem;
    }
    .case-page a,
    .case-page strong {
        display: none;
    }
    .case-page .prev,
    .case-page .next {
        display: inline-block;
    }
    .tour-slide {
        display: none;
    }
    .tour-list {
        width: 100%;
        padding: 0;
    }
    .tour-list .li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.2rem;
        overflow: hidden;
        border-radius: 0.05rem;
    }
    .tour-list .li .img {
        width: 2.2rem;
        height: 3rem;
        margin-right: 0.2rem;
    }
    .tour-list .li .txt {
        width: 4.4rem;
        height: 3rem;
    }
    .tour-list .li .txt h6 {
        font-size: 0.3rem;
        padding: 0.3rem 0 0.15rem;
    }
    .tour-list .li .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
        height: 1.6rem;
    }
    .tour-list .li .txt span {
        bottom: 0.2rem;
    }
    .inside-tab {
        width: 7rem;
    }
    .inside-tab li {
        margin: 0;
        width: 25%;
    }
    .inside-tab li a {
        font-size: 0.3rem;
        line-height: 0.8rem;
    }
    .inside-tab li:before,
    .inside-tab li:after {
        height: 0.05rem;
    }
    .inside-brend {
        width: 100%;
        padding: 0.9rem 0.25rem 0.2rem;
        margin-bottom: 0.4rem;
    }
    .inside-brend .tis h6 {
        font-size: 0.36rem;
        padding-left: 0.2rem;
        margin-bottom: 0.15rem;
    }
    .inside-brend .tis:after {
        bottom: -0.2rem;
    }
    .inside-brend .tis h6:after {
        width: 0.06rem;
        height: 0.36rem;
        border-top-right-radius: 0.06rem;
    }
    .inside-brend .tis p {
        letter-spacing: 0.04rem;
        font-size: 0.02rem;
    }
    .inside-brend .a {
        font-size: 0.26rem;
        display: none;
    }
    .introduction {
        width: 100%;
        padding: 0 0.25rem;
    }
    .introduction .text {
        float: none;
        width: 100%;
        height: auto;
        padding: 0.4rem 0.2rem;
    }
    .introduction .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .introduction .intro {
        width: 100%;
    }
    .introduction .img {
        width: 48%;
        height: 3.4rem;
    }
    .about {
        width: 100%;
        padding: 0 0.25rem;
    }
    .about-content .txt,
    .about-content .img {
        float: none;
        width: 100%;
    }
    .about-content .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
        margin-bottom: 0.2rem;
    }
    .about-service-list1,
    .about-service-list2 {
        float: none;
        width: 100%;
    }
    .about-service-list1 {
        margin-bottom: 0.5rem;
    }
    .about-service h4 {
        font-size: 0.4rem;
        padding: 0.6rem 0 0.2rem;
    }
    .about-service-list1 .li {
        height: 4.2rem;
        margin-bottom: 0.2rem;
    }
    .about-service-list1 .li .txt h6 {
        font-size: 0.34rem;
        margin-bottom: 0.15rem;
    }
    .about-service-list1 .li .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .about-service-list2 .li {
        margin-bottom: 0.2rem;
        height: 1rem;
        line-height: 1rem;
        font-size: 0.22rem;
    }
    .team {
        width: 100%;
        padding: 0 0.25rem;
    }
    .team .li {
        margin-bottom: 0.3rem;
    }
    .team .text {
        padding: 0 0 1rem;
        height: auto;
        border-radius: 0.05rem;
    }
    .team .text a {
        left: 0.25rem;
        bottom: 0.2rem;
    }
    .team .text .cir {
        left: 0;
        right: 0;
        bottom: auto;
        top: -2.4rem;
        width: 3.2rem;
        height: 3.2rem;
    }
    .team .text h6 {
        left: 3.4rem;
        top: -0.7rem;
        font-size: 0.3rem;
    }
    .team .text h6 span {
        margin-left: 0.4rem;
        font-size: 0.24rem;
    }
    .team .text h6 span:after {
        width: 0.15rem;
        left: -0.3rem;
    }
    .team .text .txt {
        width: 100%;
        padding: 1.2rem 0.2rem 0.3rem;
    }
    .team .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .team .popup {
        padding: 160px 0.2rem 0.3rem;
    }
    .layer-popup {
        border-radius: 0.1rem !important;
    }
    .team .popup p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .one-stop {
        padding: 0 0.25rem 4.8rem;
        margin-bottom: 0.5rem;
    }
    .oneStop {
        width: 100%;
    }
    .oneStop .text {
        width: 100%;
        height: auto;
    }
    .oneStop .text h5 {
        font-size: 0.34rem;
    }
    .oneStop .text h6 {
        font-size: 0.3rem;
    }
    .oneStop .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .one-stop .img {
        width: 7rem;
        margin: 0 auto;
        height: 4.6rem;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
    }
    .one-stop-list {
        width: 100%;
        padding: 0 0.25rem;
    }
    .one-stop-list .li {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .one-stop-list .li .txt h6 {
        font-size: 0.34rem;
    }
    .one-stop-list .li .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-university .table {
        width: 100%;
        height: auto;
        padding: 0 0.25rem 0.3rem;
    }
    .abroad-university .table h6 {
        font-size: 0.34rem;
        padding: 0.4rem 0 0.2rem;
    }
    .abroad-university .table ul {
        padding: 0.25rem 0;
    }
    .abroad-university .table .li1 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    .abroad-university .table li p {
        font-size: 0.3rem;
        margin-bottom: 0.1rem;
    }
    .abroad-university-survey {
        padding: 4rem 0.25rem 0.6rem;
    }
    .abroad-university-survey .txt {
        width: 100%;
    }
    .abroad-introduction-rankings .li {
        width: 100%;
        float: none;
        height: 2.6rem;
    }
    .abroad-introduction-rankings .li .txt h6 {
        padding: 0.5rem 0 0.15rem;
        font-size: 0.36rem;
    }
    .abroad-introduction-rankings .li .txt p {
        font-size: 0.24rem;
        margin-bottom: 0.3rem;
    }
    .abroad-introduction-rankings .li .txt a {
        padding: 0 0.3rem;
        font-size: 0.24rem;
        height: 0.6rem;
        line-height: 0.6rem;
    }
    .abroad-process {
        width: 100%;
        padding: 0 0.25rem 0.4rem;
    }
    .abroad-popular {
        padding: 1.5rem 0.25rem 0;
    }
    .abroad-popular .tits {
        width: 100%;
        height: 2.1rem;
        padding: 0 0.25rem;
    }
    .abroad-popular .tits h6 {
        font-size: 0.32rem;
        padding: 0.5rem 0 0.25rem;
    }
    .abroad-popular .tits p {
        font-size: 0.24rem;
    }
    .abroad-popular .li {
        float: none;
        width: 100%;
        height: 5.9rem;
        margin-right: 0;
    }
    .abroad-popular .li .text {
        padding: 0 0.2rem;
    }
    .abroad-popular .li .text h6 {
        padding: 5rem 0 0.15rem;
    }
    .abroad-popular .li .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-uk-overview {
        width: 100%;
        padding: 0.7rem 0.25rem 0;
    }
    .abroad-uk-overview .text {
        float: none;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    .abroad-uk-overview .text .txt {
        height: 2.4rem;
    }
    .abroad-uk-overview .img {
        float: none;
        width: 100%;
        height: 3.9rem;
    }
    .abroad-uk-overview .text .txt p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-education-systom {
        padding: 0 0.25rem;
        height: 5.8rem;
    }
    .abroad-education-systom h5 {
        padding: 0.4rem 0 0.15rem;
        font-size: 0.3rem;
    }
    .abroad-education-systom h6 {
        font-size: 0.36rem;
    }
    .abroad-education-systom p {
        width: 100%;
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-education-systom a {
        bottom: 0.2rem;
    }
    .abroad-educations {
        width: 100%;
        padding: 0 0.25rem;
    }
    .abroad-educations .li {
        float: none !important;
        width: 100%;
        height: 5.6rem;
        margin-bottom: 0.2rem;
    }
    .abroad-educations .li h5 {
        font-size: 0.3rem;
        padding: 0.3rem 0 0.15rem;
    }
    .abroad-educations .li h6 {
        font-size: 0.36rem;
        margin-bottom: 0.3rem;
    }
    .abroad-educations .li p {
        width: 100%;
    }
    .abroad-educations .li a {
        bottom: 0.2rem;
    }
    .abroad-oxice {
        width: 100%;
        padding: 0 0.25rem;
    }
    .abroad-oxice .tits {
        height: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .abroad-oxice .tits h5 {
        font-size: 0.3rem;
        padding: 0.4rem 0 0.15rem;
    }
    .abroad-oxice .tits h6 {
        font-size: 0.36rem;
    }
    .abroad-oxice .li {
        width: 100%;
        height: auto;
        margin-right: 0;
        padding: 0 0.2rem 0.3rem;
        margin-bottom: 0.2rem;
    }
    .abroad-oxice .li h6 {
        font-size: 0.36rem;
        padding-top: 0.5rem;
        padding-left: 0.6rem;
    }
    .abroad-oxice .li h6 span {
        font-size: 0.6rem;
    }
    .abroad-oxice .li p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-university .table .li2 {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    .abroad-secondary-survey {
        padding: 2.5rem 0.25rem 1.2rem;
    }
    .abroad-secondary-survey .btn {
        bottom: 0.2rem;
        width: 2.4rem;
        height: 0.7rem;
        line-height: 0.7rem;
        border-radius: 0.35rem;
    }
    .abroad-university-survey p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-uk-system {
        width: 100%;
        height: auto;
        padding: 0 0.25rem 1.5rem;
    }
    .abroad-uk-system h5 {
        font-size: 0.36rem;
        padding: 0.6rem 0 0.15rem;
    }
    .abroad-uk-system h6 {
        font-size: 0.24rem;
        margin-bottom: 0.5rem;
    }
    .abroad-uk-system p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .abroad-uk-system a {
        bottom: 0.3rem;
    }
    .abroad-uk-school {
        width: 100%;
        padding: 0 0.25rem;
    }
    .abroad-uk-school .tits {
        padding: 0.9rem 0 0.3rem;
    }
    .abroad-uk-school .tits h5 {
        font-size: 0.36rem;
    }
    .abroad-uk-school .tits h6 {
        font-size: 0.24rem;
    }
    .abroad-uk-school .tits p {
        width: 100%;
    }
    .swiper-uk-school {
        height: 100%;
    }
    .swiper-uk-school .swiper-slide .text {
        float: none;
        width: 100%;
        height: 6.8rem;
        overflow: hidden;
    }
    .swiper-uk-school .swiper-slide .img {
        float: none;
        width: 100%;
        height: 4rem;
    }
    .swiper-uk-school .swiper-slide .text .texts {
        padding: 0 0.2rem;
    }
    .swiper-uk-school .swiper-slide .text h5 {
        font-size: 0.9rem;
    }
    .swiper-uk-school .swiper-slide .text h6 {
        font-size: 0.36rem;
    }
    .swiper-uk-school .swiper-slide .text .texts .txt {
        height: 4.2rem;
    }
    .swiper-uk-school .swiper-slide .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .swiper-uk-school .swiper-button-next,
    .swiper-uk-school .swiper-button-prev {
        display: none;
    }
    .swiper-uk-school .swiper-slide .text a {
        bottom: 0.2rem;
        left: 0.2rem;
    }
    .abroad-process .tits-sch {
        padding: 0.9rem 0 0.3rem;
    }
    .abroad-process .tits h5 {
        font-size: 0.36rem;
    }
    .abroad-process .tits p {
        width: 100%;
        font-size: 0.26rem;
        line-height: 1.6;
    }
    .Abroad-list {
        width: 100%;
        padding: 0.6rem 0.25rem 0.3rem;
    }
    .Abroad-list .li {
        margin-bottom: 0.3rem;
    }
    .Abroad-list .li .bg {
        width: 100%;
        height: 4.2rem;
    }
    .bd_list li {
        width: 100% !important;
    }
    .Abroad-list .li .text {
        width: 100%;
        height: auto;
        padding: 0 0.2rem;
    }
    .Abroad-list .li .text h5 {
        font-size: 0.3rem;
        padding: 0.3rem 0 0.15rem;
    }
    .Abroad-list .li .text h6 {
        font-size: 0.36rem;
        margin-bottom: 0.25rem;
    }
    .Abroad-list .li .text p {
        font-size: 0.24rem;
        line-height: 1.7;
        padding-bottom: 10px;
    }
    .Abroad-list .li .text .a {
        bottom: 0.2rem;
        left: 0.2rem;
    }
    .tour-manchester {
        padding: 0 0.25rem 0.7rem;
    }
    .tour-manchester-intro {
        width: 100%;
        top: -2rem;
        position: initial;
    }
    .tour-manchester-introTop {
        padding: 0 0.25rem;
        height: 2rem;
    }
    .tour-manchester-introTop .img {
        width: 3rem;
        height: 2rem;
        line-height: 2rem;
        margin-right: 0.2rem;
    }
    .tour-manchester-introTop h5 {
        font-size: 0.26rem;
        padding: 0.4rem 0 0.15rem;
    }
    .tour-manchester-introTop h6 {
        font-size: 0.36rem;
    }
    .tour-manchester-introBottom {
        padding: 0.2rem 0.25rem;
    }
    .tour-manchester-introBottom p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .tour-manchester-kelly .tour-manchester-introBottom {
        height: auto;
    }
    .tour-manchester-slide {
        margin-bottom: 0.5rem;
    }
    .tour-manchester-lesson {
        width: 100%;
        padding: 0 0.25rem 1.4rem;
    }
    .tour-manchester-lesson h6 {
        font-size: 0.36rem;
        padding: 0.5rem 0 0.15rem;
    }
    .tour-manchester-lesson p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .tour-manchester-lesson a {
        bottom: 0.2rem;
        left: 0.2rem;
        width: 2.2rem;
        height: 0.7rem;
        line-height: 0.7rem;
        border-radius: 0.35rem;
    }
    .tour-manchester-introBottom,
    .tour-manchester-mor .tour-manchester-introBottom {
        height: auto;
    }
    .tour-manchester-language {
        margin-bottom: 0.4rem;
    }
    .join-head {
        height: auto;
    }
    .join-box {
        width: 100%;
        height: auto;
        position: initial;
        padding: 0.3rem 0.25rem;
    }
    .swiper-join {
        float: none;
        width: 100%;
        height: 5rem;
    }
    .join-box .text {
        float: none;
        width: 100%;
        height: auto;
        padding: 0;
    }
    .join-box .text h6 {
        font-size: 0.34rem;
        padding: 0.3rem 0 0.15rem;
    }
    .join-box .text p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .join-recruit {
        width: 100%;
        padding: 0 0.25rem;
    }
    .join-recruit .ti {
        width: 100%;
        padding: 0.8rem 0 0.3rem;
    }
    .join-recruit .li {
        padding: 0.4rem 0.2rem;
    }
    .join-recruit .text h6 {
        font-size: 0.36rem;
        margin-bottom: 0.25rem;
    }
    .join-recruit .text li {
        width: 100%;
        float: none;
        padding: 0 0 0.2rem;
    }
    .join-recruit .text li p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .consult-head {
        height: auto;
    }
    .consult-head .text {
        width: 7rem;
        margin: 0 auto;
        position: initial;
        height: auto;
        padding: 0.3rem 0.2rem;
    }
    .consult-head .text .con {
        float: none;
        margin-bottom: 0.2rem;
    }
    .consult-head .text .con p {
        font-size: 0.26rem;
        line-height: 1.7;
    }
    .consult-head .text .img {
        float: none;
    }
    .consult-provide {
        padding: 0 0.25rem;
        margin-bottom: 0.4rem;
    }
    .consult-provide .top,
    .consult-provide .bottom {
        height: auto;
    }
    .consult-provide .img {
        float: none !important;
        width: 100%;
        height: 2.8rem;
    }
    .consult-provide .text {
        float: none !important;
        width: 100%;
        padding: 0 0.2rem !important;
    }
    .consult-provide .top .text h5 {
        font-size: 0.34rem;
        padding: 0.5rem 0 0.15rem;
    }
    .consult-provide .top .text h6 {
        font-size: 0.36rem;
        margin-bottom: 0.3rem;
    }
    .consult-provide .top .text p,
    .consult-provide .bottom .text p {
        font-size: 0.26rem;
        line-height: 1.7;
    }
    .search-result {
        width: 100%;
        padding: 0.5rem 0.25rem 0.8rem;
    }
    .search-result .inp {
        margin-bottom: 0.4rem;
    }
    .search-result .li {
        padding: 0.3rem 0;
    }
    .search-result .li h6 {
        font-size: 0.34rem;
        margin-bottom: 0.25rem;
    }
    .search-result .li p {
        font-size: 0.24rem;
    }
    .news-tab {
        width: 100%;
        padding: 0.5rem 0 0.9rem;
    }
    .news-tab li {
        width: 21%;
        margin: 0 2%;
    }
    .news-tab li p {
        font-size: 0.34rem;
        margin-bottom: 0.1rem;
    }
    .news-tab li span {
        font-size: 0.2rem;
    }
    .news-headlines {
        width: 100%;
        height: auto;
        padding: 0 0.25rem;
    }
    .news-headlines a {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .news-headlines .text {
        width: 100%;
        height: 2.2rem;
        padding: 0 0.2rem;
    }
    .news-headlines .img {
        height: 4.6rem;
    }
    .news-headlines .text .ti {
        padding: 0.25rem 0 0;
        font-size: 0.26rem;
    }
    .news-headlines .text .ti h6 {
        width: 60%;
    }
    .news-headlines .text .ti span {
        font-size: 0.22rem;
        display: block;
        line-height: 0.46rem;
    }
    .news-headlines .text .con {
        height: 0.96rem;
    }
    .news-headlines .text .con p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .news {
        width: 100%;
        padding: 0 0.25rem;
    }
    .news .li {
        float: none !important;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    .news .li .img {
        height: 3.5rem;
    }
    .news .li .text {
        padding: 0 0.2rem;
        height: 2.1rem;
    }
    .news .li .text .ti {
        padding: 0.25rem 0 0;
    }
    .news .li .text .ti h6 {
        width: 60%;
        padding: 0 0 0.1rem;
    }
    .news .li .text .ti span {
        font-size: 0.2rem;
    }
    .news .li .text .con {
        height: 0.96rem;
    }
    .news .li .text .con p {
        font-size: 0.24rem;
        line-height: 1.7;
        height: 40px;
        overflow: hidden;
    }
    .news-detail {
        width: 100%;
        padding: 0 0.25rem;
    }
    .news-detail-content .tits {
        padding: 0 0.2rem 0.3rem;
    }
    .news-detail-content .tits h6 {
        font-size: 0.3rem;
        padding: 0.3rem 0 0.15rem;
    }
    .news-detail-content .tits span {
        font-size: 0.24rem;
        margin-right: 0.2rem;
    }
    .news-detail-content .content {
        padding: 0.3rem 0.2rem;
    }
    .news-detail-content .content .con p {
        font-size: 0.24rem;
        line-height: 1.7;
    }
    .news-detail-content .bott .back-top a {
        width: 1.5rem;
        height: 0.7rem;
        line-height: 0.7rem;
        border-radius: 0.35rem;
    }
    .news-detail-content .bott .back-top .top {
        width: 0.7rem;
        height: 0.7rem;
        line-height: 0.7rem;
    }
    .news-detail-content .prev-next {
        padding: 0.3rem 0.2rem;
    }
    .news-detail-content .prev-next a {
        width: 47%;
        font-size: 0.24rem;
    }
    .coach {
        width: 100%;
        padding: 0.15rem 0.25rem 0;
    }
    .coach .li {
        float: none;
        width: 100%;
        height: 5.2rem;
    }
    .coach .li .text {
        padding: 0 0.2rem;
    }
    .coach .li .text h6 {
        padding: 3rem 0 0.15rem;
    }
    .coach .li .text h5 {
        font-size: 0.34rem;
    }
    .coach .li .text .y {
        font-size: 0.26rem;
    }
    .coach .li .text p {
        font-size: 0.22rem;
        line-height: 1.7;
    }
    .coach .li:hover .text h6 {
        padding: 0.8rem 0 0.15rem;
    }
}

.abroad-list .li a p {
    color: black;
    height: 162px;
}

.abroad-list .li a p {
    height: 87px;
    overflow: hidden;
}

.ym {
    width: 100%;
}

.bd_list {
    margin-top: 20px;
    height: 480px;
}

.bd_list li {
    margin-bottom: 30px;
    transition: all 0.5s ease;
    width: 31%;
    margin-right: 2%;
    float: left
}

.bd_list .li_three {
    margin-right: 0;
}

.bd_list li .li_box {
    border: 1px solid #d6d6d6;
}

.bd_list li .infor {
    padding: 20px 20px 0;
    position: relative;
    z-index: 2;
}

.bd_list li .infor .tit {
    font-size: 14px;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #454545;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
    overflow: hidden;
}

.bd_list li .infor .con {
    font-size: 27px;
    line-height: 30px;
    color: #1b1b1b;
    font-family: Impact;
    height: 56px;
}

.bd_list li .infor .con.hunning {
    font-size: 20px;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
}

.bd_list li .infor .icon {
    width: 41px;
    height: 40px;
    background: url(../images/hot.png) no-repeat center;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
}

.bd_list li.li_new .infor .icon {
    opacity: 1;
    visibility: visible;
}

.bd_list li .img_ {
    width: 86%;
    margin: 20px auto 0px;
    padding-bottom: 20px;
    height: 200px;
    overflow: hidden;
}

.bd_list li .img_ img {
    max-width: 100%;
}

.bd_list li .intro {
    padding: 15px 20px;
    height: 42px;
}

.bd_list li .intro .con .con_text {
    font-size: 14px;
    height: 44px;
    overflow: hidden
}

.bd_list li .intro .con .con_text .text_t {
    color: #4a4a4a;
    line-height: 24px;
    text-transform: uppercase;
}

.bd_list li .intro .con .con_text .text_c {
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
}

.bd_list li .intro .con .con_text .text_c .cn {
    display: none;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 22px;
}

.bd_list li .intro .con .con_text .text_c .cn.on {
    display: block;
}

.bd_list li .intro .con .con_text .text_c .en {
    display: block;
    display: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 22px
}

.bd_list li .intro .con .con_text .text_c .en.on {
    display: block;
}

.bd_list li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2)
}

.bd_list li .more_box {
    text-align: center;
    margin-bottom: 35px;
}

.bd_list li .more_box .more {
    display: inline-block;
    width: 114px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #798186;
    font-size: 14px;
    color: #333f47;
    position: relative;
    margin-left: 14px;
    text-transform: uppercase;
}

.bd_list li .more_box .more:first-child {
    margin-left: 0px;
}

.bd_list li .more_box .more span {
    position: relative;
    z-index: 3;
}

.bd_list li .more_box .more:after {
    content: '';
    width: 0;
    height: 100%;
    background: #E61F19;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.bd_list li .more_box .more:hover {
    color: white;
    border-color: #333e46;
}

.bd_list li .more_box .more:hover:after {
    width: 100%;
}

.yy {
    position: absolute;
    top: 36%;
    left: 11%;
    height: 300px;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.5);
}