/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/


/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

.banner {
    position: relative;
    z-index: 0;
    margin-top: 90px;
    height: auto;
    background: #fff;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.swiper-container {
    width: 100%;
    height: 100%;
    --swiper-theme-color: #f00;
    --swiper-navigation-color: #f00;
    --swiper-navigation-size: 45px;
    background: rgba(0, 0, 0, .05);
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    outline: none;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 55px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.swiper-button-prev {
    left: 50px;
}

.swiper-button-next {
    right: 50px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
    width: 15px;
    height: 5px;
    border-radius: 100px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    outline: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
    background: #f00;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}


/* .swiper-slide::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .5)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
    content: '';
    pointer-events: none;
} */

.banner-bg {
    /* position: absolute; */
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    /* height: 100%; */
    height: auto;
    /* -o-object-fit: cover; */
    /* object-fit: cover; */
}

.banner .container {
    position: relative;
    z-index: 11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 100px;
    height: 100%;
    color: #fff;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.banner .container .row {
    overflow: hidden;
    height: 120px;
    width: 100%;
}

.banner-title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
    /* font-family: SimHei; */
    line-height: 60px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.banner-summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    padding-top: 10px;
    text-indent: 2em;
    font-size: 20px;
    line-height: 34px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* 
.swiper-slide.first .banner-bg {
    display: none;
}

.swiper-slide.first .pic {
    position: absolute;
    top: 0;
    left: 125%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
}

.swiper-slide.first .pic.active {
    animation: picIn ease 1.1s;
    animation-fill-mode: forwards;
} */

@-webkit-keyframes picIn {
    from {
        left: 125%;
    }
    to {
        left: 50%;
    }
}

@keyframes picIn {
    from {
        left: 125%;
    }
    to {
        left: 50%;
    }
}


/* 
.swiper-slide.first .text {
    position: absolute;
    top: 50%;
    left: 83%;
    transform: translate(-50%, -50%) scale(0);
    height: 100%;
    width: auto;
}

.swiper-slide.first .text.active {
    animation: textIn ease .5s .6s;
    animation-fill-mode: forwards;
}

@keyframes textIn {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
} */

.section {
    padding: 110px 0;
    overflow: hidden;
}

.section .container {
    position: relative;
}

.section-title {
    margin-bottom: 35px;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
}

.section-title span {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20px;
}

.section-title span::before,
.section-title span::after {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 30px;
    height: 2px;
    background: #f00;
    content: '';
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.section-title span::after {
    right: -40px;
    left: auto;
}

.section-summary {
    margin: 0 auto;
    margin-bottom: 30px;
    width: 72%;
    color: #666;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
}

.section-main {
    margin-bottom: 20px;
}

.introduction-item {
    position: relative;
    height: 200px;
    margin-bottom: 30px;
    z-index: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.introduction-item a {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    position: relative;
}

.introduction-item-img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    /* filter: blur(5px); */
}

.introduction-item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    /* width: 100%; */
    /* max-width: 188px; */
    color: #fff;
    text-align: center;
    font-size: 26px;
    word-break: keep-all;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.introduction-item-text::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    content: '';
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.index-more:hover {
    background: #f0383a !important;
}


/* 
.introduction-item a:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
} */

.introduction-item a:hover .introduction-item-text::after {
    width: 100%;
}

.introduction-item a:hover>img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    /* filter: blur(0); */
}

.section-more {
    position: relative;
    left: 50%;
    display: inline-block;
    border-radius: 100px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-more-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #f00;
    border-radius: 100px;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #f00;
    font-size: 16px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.section-more-btn i {
    float: right;
    display: block;
    overflow: hidden;
    margin: 0;
    width: 0;
    color: #f00;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.section-more-btn:hover {
    background: #f00;
    color: #fff;
}

.section-more-btn:hover i {
    margin-left: 5px;
    width: 16px;
    color: #fff;
}

.business-content {
    position: relative;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 112px;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.business-content-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.business-content-item {
    position: absolute;
    top: -200px;
    left: -350px;
    width: 300px;
    height: 60px;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


/* .business-content-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1); */


/* top: -8px; */

.business-content-item-icon {
    position: absolute;
    top: 9px;
    right: -21px;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: url('../img/business-icons.png');
    background-position: -8px -8px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.business-content-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #555;
}

.business-content-item:nth-child(2) {
    top: -50px;
    left: -276px;
}

.business-content-item:nth-child(2):hover {
    top: -58px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(3) {
    top: 34px;
    left: -336px;
}

.business-content-item:nth-child(3):hover {
    top: 26px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(3) .business-content-item-icon {
    background-position: -66px -8px;
}

.business-content-item:nth-child(4) {
    top: 120px;
    left: -325px;
}

.business-content-item:nth-child(4):hover {
    top: 112px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(4) .business-content-item-icon {
    background-position: -124px -8px;
}

.business-content-item:nth-child(5) {
    top: 212px;
    left: -283px;
}

.business-content-item:nth-child(5):hover {
    top: 204px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(5) .business-content-item-icon {
    background-position: -182px -8px;
}

.business-content-item:nth-child(6) {
    top: -35px;
    left: 206px;
}

.business-content-item:nth-child(6):hover {
    top: -43px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(6) .business-content-item-icon {
    right: auto;
    left: -21px;
    background-position: -8px -66px;
}

.business-content-item:nth-child(7) {
    top: 47px;
    left: 250px;
}

.business-content-item:nth-child(7):hover {
    top: 39px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(7) .business-content-item-icon {
    right: auto;
    left: -21px;
    background-position: -66px -66px;
}

.business-content-item:nth-child(8) {
    top: 132px;
    left: 243px;
}

.business-content-item:nth-child(8):hover {
    top: 124px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(8) .business-content-item-icon {
    right: auto;
    left: -21px;
    background-position: -124px -66px;
}

.business-content-item:nth-child(9) {
    top: 215px;
    left: 190px;
}

.business-content-item:nth-child(9):hover {
    top: 203px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.business-content-item:nth-child(9) .business-content-item-icon {
    right: auto;
    left: -21px;
    background-position: -182px -66px;
}

.category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.category-btn {
    margin: 0 20px;
    padding: 8px 20px;
    border: 1px solid #f00;
    border-radius: 100px;
    background: #fff;
    color: #f00;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    height: 42px;
}

.category-btn:hover {
    background: rgba(255, 0, 0, .1);
}

.category-btn.active {
    background: #f00;
    color: #fff;
}

.news-left {
    position: relative;
    overflow: hidden;
    height: 445px;
}

.news-left-items {
    position: absolute;
    top: 0;
    width: calc(100% - 30px);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: rgba(0, 0, 0, .02);
}

.news-left-items-single {
    width: 100%;
    height: 445px;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-right {
    position: relative;
    padding: 5px 15px 0 45px;
}

.news-right::before {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: -1;
    width: 2px;
    height: 100%;
    background: -o-linear-gradient(top, rgba(0, 0, 0, .05), rgba(0, 0, 0, .15), rgba(0, 0, 0, .25), rgba(0, 0, 0, .15), rgba(0, 0, 0, 0));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .05)), color-stop(rgba(0, 0, 0, .15)), color-stop(rgba(0, 0, 0, .25)), color-stop(rgba(0, 0, 0, .15)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, .05), rgba(0, 0, 0, .15), rgba(0, 0, 0, .25), rgba(0, 0, 0, .15), rgba(0, 0, 0, 0));
    content: '';
}

.news-right-items-single {
    position: relative;
    margin-bottom: 5px;
    background: #fff;
}

.news-right-items-single-dot {
    position: absolute;
    top: 7px;
    left: -35px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #ccc;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.news-right-items-single-dot.active {
    /* background: #777; */
    background: #f00;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-right-items-single-time {
    color: #777;
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.news-right-items-single-time.active {
    color: #555;
}

.news-right-items-single-content {
    overflow: hidden;
    margin-top: 5px;
    padding: 10px 20px;
    /* border: 1px solid rgba(0, 0, 0, .1); */
    border-radius: 4px;
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.news-right-items-single-content-title {
    overflow: hidden;
    font-weight: bold;
    color: #555;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.news-right-items-single-content:hover .news-right-items-single-content-title {
    /* color: #000; */
    color: #f00;
}

.news-right-items-single-content-summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #777;
    /* text-indent: 2em; */
    font-size: 14px;
    line-height: 28px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.globalVision-order {
    margin-bottom: 20px;
    color: #555;
    font-size: 20px;
}

.globalVision-order.recommend {
    margin-top: 30px;
}

.globalVision-left-items {
    margin: 0;
    padding: 0;
}

.globalVision-left-items-single {
    margin-bottom: 15px;
    padding: 15px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    height: 147px;
    /* border-bottom: 1px solid #ccc; */
    border-radius: 4px;
    background: #fff;
    list-style: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.globalVision-left-items-single:last-child {
    margin-bottom: 0;
}

.globalVision-left-items-single-img {
    float: left;
    width: 200px;
    height: 116px;
    -o-object-fit: cover;
    object-fit: cover;
}

.globalVision-left-items-single-content {
    float: left;
    margin-left: 20px;
    /* width: calc(100% - 200px - 110px - 40px); */
    width: calc(100% - 200px - 40px);
}

.globalVision-left-items-single-content-title {
    overflow: hidden;
    color: #555;
    font-weight: bold;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.globalVision-left-items-single:hover .globalVision-left-items-single-content-title {
    color: #f00;
}

.globalVision-left-items-single-content-summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #777;
    /* text-indent: 2em; */
    font-size: 14px;
    line-height: 28px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.globalVision-left-items-single-time {
    position: relative;
    float: left;
    margin-left: 20px;
    width: 110px;
    height: 100%;
    color: #888;
    text-align: center;
    font-size: 16px;
    line-height: 50px;
}

.globalVision-left-items-single-time::before {
    position: absolute;
    top: 15%;
    left: 0;
    height: 70%;
    border-left: 1px dashed #ccc;
    content: '';
}

.globalVision-left-items-single-time span {
    position: relative;
    top: 10px;
    display: block;
    margin-top: 5px;
    font-size: 30px;
}

.globalVision-right-hot,
.globalVision-right-recommend {
    margin: 0;
    padding: 0;
}

.globalVision-right-hot-single,
.globalVision-right-recommend-single {
    margin-bottom: 15px;
    border-radius: 4px;
    background: #fff;
    list-style: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.globalVision-right-hot-single:last-child,
.globalVision-right-recommend-single:last-child {
    margin-bottom: 0;
}

.globalVision-right-hot-single:hover,
.globalVision-right-recommend-single:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.globalVision-right-hot-single a,
.globalVision-right-recommend-single a {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.globalVision-right-hot-single-title,
.globalVision-right-recommend-single-title {
    display: inline-block;
    overflow: hidden;
    margin: 0;
    width: calc(100% - 100px);
    color: #555;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.globalVision-right-hot-single:hover .globalVision-right-hot-single-title,
.globalVision-right-recommend-single:hover .globalVision-right-recommend-single-title {
    color: #f00;
}

.globalVision-right-hot-single-title i {
    margin-right: 6px;
    color: #f00;
    font-size: 22px;
}

.globalVision-right-hot-single:nth-child(2) i {
    color: rgba(255, 0, 0, .6);
}

.globalVision-right-hot-single:nth-child(3) i {
    color: rgba(255, 0, 0, .4);
}

.globalVision-right-hot-single-time,
.globalVision-right-recommend-single-time {
    float: right;
    width: 100px;
    color: #888;
    text-align: right;
    font-size: 16px;
}

.partner-items {
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 20px 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.partner-items-single {
    position: relative;
    z-index: 0;
    float: left;
    padding: 5px 0;
    width: calc(100% / 7);
    height: 100px;
    list-style: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.partner-items-single:hover {
    z-index: 1;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .08);
    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
}

.partner-items-single-logo {
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    -o-object-fit: cover;
    object-fit: cover;
}

.introduction .section-title {
    margin-bottom: 20px;
}

.introduction-video-btn {
    border-radius: 100px;
    background-color: #f00;
    border: 0;
    margin-bottom: 20px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    outline: none;
}

.introduction-video-btn:hover {
    -webkit-box-shadow: 0 0 20px rgba(255, 0, 0, .3);
    box-shadow: 0 0 20px rgba(255, 0, 0, .3);
}

.introduction-video-btn i {
    color: #fff;
    margin-left: 5px;
}

.introduction-video-pop .modal-body {
    height: 431px;
}

.world .container>.row.list {
    display: none;
}

.world .container>.row.list.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:1366px) {
    /* .banner {
        height: 50vh;
    } */
    .swiper-button-prev {
        left: 20px;
    }
    .swiper-button-next {
        right: 20px;
    }
    /* .swiper-slide::after {
        height: 50%;
    } */
    .banner .container {
        padding-bottom: 50px;
    }
}

@media screen and (max-width:1024px) {
    /* .banner {
        height: 400px;
    } */
    .banner-content-title {
        margin-bottom: 30px;
        font-size: 40px;
    }
    .banner-content-main {
        font-size: 18px;
        line-height: 30px;
    }
    .introduction-item {
        height: 120px;
    }
    .introduction-item-text {
        font-size: 24px;
    }
    .section {
        padding: 80px 0;
    }
    .section-title {
        margin-bottom: 25px;
    }
    .section-summary {
        margin-bottom: 20px;
    }
    .business-content-item {
        font-size: 22px;
    }
    .globalVision-left-items-single-img {
        width: 140px;
    }
    .globalVision-left-items-single-content {
        width: calc(100% - 140px - 110px - 40px);
    }
    .banner .container {
        padding-bottom: 25px;
    }
    .banner-title {
        font-size: 35px;
    }
}

@media screen and (max-width:767px) {
    main {
        overflow: hidden;
    }
    .banner {
        margin-top: 56px;
    }
    .banner-content-main,
    .section-summary {
        width: 85%;
    }
    .introduction-item {
        height: 160px;
    }
    #business .introduction-item {
        height: 120px;
    }
    .introduction-item-text {
        font-size: 18px;
    }
    .business-content {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8);
    }
    .news-left {
        display: none;
    }
    .news-right {
        margin: 0 auto;
        width: 80%;
        max-width: 80%;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .globalVision-left-items-single-img {
        display: none;
    }
    .globalVision-left-items-single-content {
        margin-left: 0;
        width: calc(100% - 110px - 20px);
        width: 100%;
        padding: 0 15px;
    }
    .partner-items-single {
        padding: 20px 0;
        width: calc(100% / 5);
    }
    .footer-content-logo {
        height: 110px;
    }
    .banner .container .row {
        padding: 0 50px;
        height: auto;
    }
    /* .swiper-slide::after {
        height: 100%;
        background: rgba(0, 0, 0, .25);
    } */
    .banner-title {
        font-size: 30px;
        line-height: 45px;
        letter-spacing: initial;
    }
    .banner .container .row {
        padding: 0 80px;
    }
    .banner .container {
        padding: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 50px;
    }
    .introduction-video-pop .modal-body {
        height: 262px;
    }
    .tab-btn-items-li a {
        margin: 0 10px;
    }
}

@media screen and (max-width:414px) {
    .banner-title {
        padding: 0 20px;
    }
    .banner-content-title {
        margin-bottom: 30px;
        font-size: 26px;
    }
    .banner-content-main {
        font-size: 16px;
        line-height: 26px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .swiper-pagination {
        bottom: 0px !important;
    }
    .section-title {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .section-title span {
        font-size: 16px;
    }
    .section {
        padding: 50px 0;
    }
    .introduction-item:nth-child(2n+1) {
        padding-right: 0;
    }
    .introduction-item:nth-child(2n+2) {
        padding-left: 0;
    }
    /* .introduction-item:nth-child(2n+2) .introduction-item-img, */
    .introduction-item-text {
        width: calc(100% - 15px);
    }
    .introduction-item-text {
        left: auto;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .introduction-item-text::after {
        display: none;
    }
    .section-main {
        margin-bottom: 40px;
    }
    .section-more-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 5px 15px;
        font-size: 14px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .business-content {
        margin: 0;
        width: 100%;
        height: auto;
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .business-content-img,
    .business-content-item-icon {
        display: none;
    }
    .business-content-item {
        position: relative;
        top: auto !important;
        left: 0 !important;
        float: left;
        margin-bottom: 10px;
        width: calc(50% - 5px);
        font-size: 16px;
    }
    .business-content-item:nth-child(2n) {
        margin-right: 10px;
    }
    .business-content-item:hover {
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1) !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, .1) !important;
    }
    .category-btn {
        margin: 0 5px;
        padding: 5px 15px;
        font-size: 14px;
    }
    .news-right {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    .news-right-items-single-content-title,
    .globalVision-left-items-single-content-title {
        font-size: 18px;
    }
    .news-right-items-single-content-summary,
    .globalVision-left-items-single-content-summary {
        line-height: 26px;
    }
    .globalVision-order {
        margin-bottom: 15px;
        text-align: center;
        font-size: 18px;
    }
    .globalVision-left {
        margin-bottom: 15px;
    }
    .globalVision-order.recommend {
        margin-top: 15px;
    }
    .globalVision-right-hot-single-title,
    .globalVision-right-recommend-single-title {
        width: calc(100% - 80px);
        font-size: 18px;
    }
    .globalVision-right-hot-single-time,
    .globalVision-right-recommend-single-time {
        font-size: 14px;
    }
    .partner-items {
        padding: 0;
    }
    .partner-items-single {
        width: calc(100% / 4);
        padding: 0;
        height: 35px;
        margin: 12px 0;
    }
    .partner-items-single img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 50px;
    }
    .banner .container {
        /* justify-content: center; */
        display: none;
    }
    .banner .container .row {
        padding: 0;
        width: 100%;
    }
    .banner-title {
        font-size: 24px;
        text-align: center;
        line-height: 36px;
    }
    .banner-summary {
        display: none;
        font-size: 16px;
        line-height: 28px;
    }
    .introduction-video-pop .modal-header {
        padding: 10px 15px;
    }
    .introduction-video-pop .modal-body {
        height: 212px;
        padding: 10px;
    }
    /* .swiper-slide::after {
        background: none;
    } */
    .introduction-item {
        height: 100px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:320px) {
    .news .category-btn {
        margin: 0;
    }
    .news .category {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .swiper-container {
        --swiper-navigation-size: 30px;
    }
    .banner .container .row {
        padding: 0 40px;
    }
    .banner-title {
        font-size: 20px;
        line-height: 28px;
    }
    .banner-title {
        display: inline-block;
    }
    .banner-summary {
        font-size: 16px;
        line-height: 26px;
        -webkit-line-clamp: 4;
    }
    .swiper-button-next i,
    .swiper-button-prev i {
        font-size: 45px;
    }
}

.section-main.row.news,
.section-main.row.globalVision {
    position: relative;
    z-index: 0;
    min-height: 526px;
}

.section-main.row.globalVision {
    min-height: 593px;
}

.category-content,
.globalVision-content {
    position: absolute;
    top: 72px;
    left: 0;
    z-index: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}

.category-content.active,
.globalVision-content.active {
    opacity: 1;
    pointer-events: all;
    z-index: 1;
}


/* 改设计布局 */

.introduction .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.section-title span::before,
.section-title span::after {
    display: none;
}

.section-title span {
    margin: 0 10px;
    position: relative;
    top: -2px;
}

.section-title span.en {
    margin: 0;
    top: 0;
}

.section-title .title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
    color: #555;
}

.tab-btn-items {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
}

.tab-btn-items-li {
    margin-left: 15px;
}

.tab-btn-items-li a {
    color: #555;
    font-size: 16px;
    font-weight: normal;
    height: 31px;
    line-height: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.tab-btn-items-li a:hover {
    color: rgb(255, 51, 51);
}

.tab-btn-items-li.active a {
    color: rgb(255, 51, 51);
}

.section-title .nav {
    position: relative;
    top: 0;
    z-index: 0;
    width: auto;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background: none;
}

.introduction .tab-content,
.introduction .tab-pane {
    height: 350px;
}

.introduction .tab-btn {
    margin-bottom: 25px;
}

#introduction-tab1 .left {
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
}

#introduction-tab1 .right {
    margin-left: 45%;
    padding: 30px;
    background: rgba(0, 0, 0, .05);
    height: 100%;
}

#introduction-tab1 .right h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

#introduction-tab1 .right p {
    font-size: 16px;
    line-height: 1.75em;
    color: #666;
    margin-bottom: 20px;
    height: 190px;
    text-align: justify;
}

.tab-pane .more {
    border: 0;
    padding: 0;
    background: none;
    outline: none;
    font-size: 16px;
}

.tab-pane .more a {
    color: rgb(255, 51, 51);
}

button:focus {
    outline: none;
}

.introduction .video {
    position: relative;
    padding-right: 45px;
    height: 350px;
    z-index: 0;
}

.introduction .video .before,
.introduction .video .after {
    position: absolute;
    top: 0;
    left: -15px;
    z-index: -1;
    background: rgb(240, 218, 160);
    width: 30px;
    height: 100%;
}

.introduction .video .after {
    left: auto;
    right: 15px;
}

.introduction .video video {
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 0;
    background: #000;
}

.introduction .video .mask {
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 60px);
    height: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 10% 0;
    letter-spacing: .05em;
    cursor: pointer;
}

.introduction .video .mask .iconfont {
    margin-left: 5px;
    position: relative;
    top: -1px;
}

#introduction-tab2,
#introduction-tab3,
#introduction-tab4 {
    background: rgba(0, 0, 0, .05);
    padding: 0 30px;
}

#introduction-tab2 .since {
    font-size: 60px;
    color: #ddd;
    font-weight: bold;
}

#introduction-tab2 .summary {
    font-size: 16px;
    color: #666;
    margin: 0;
    text-align: justify;
    line-height: 1.75em;
    height: 200px;
    overflow: hidden;
    margin-bottom: 10px;
}

#introduction-tab2 .summary span {
    display: block;
    margin: 4px 0;
}

#introduction-tab3 .dream {
    color: rgb(255, 51, 51);
    font-size: 20px;
    padding-left: 40px;
    padding-top: 15px;
}

#introduction-tab3 .group-name {
    font-size: 20px;
    color: #ccc;
    margin-top: 8px;
}

#introduction-tab3 p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    text-align: justify;
    line-height: 1.75em;
    overflow: hidden;
    margin-bottom: 15px;
}


/* 业务 */

.business-items .item {
    width: 25%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.business-items .item img {
    width: 100%;
    height: auto;
    position: relative;
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.business-items .item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(.8);
    filter: brightness(.8);
}

.business-items .item .title {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    color: #fff;
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(.7);
    -ms-transform: translate(-50%, -50%) scale(.7);
    transform: translate(-50%, -50%) scale(.7);
    opacity: 0;
    pointer-events: none;
    font-size: 32px;
}

.business-items .item:hover .title {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}


/* /业务 */

.news .item-img,
.world .item-img {
    display: block;
    height: 250px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news .item-img {
    height: 290px;
}

.world .item-img {
    height: 120px;
    width: 200px;
    float: left;
}

.news .item-content,
.world .item-content {
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: 0;
    padding: 25px;
}

.world .item-content {
    padding: 0;
    padding-left: 20px;
    border: 0;
}

.news .item-content-title,
.world .item-content-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news .item-content-title {
    font-size: 25px;
    font-weight: normal;
    margin: 0;
    margin-bottom: 30px;
}

.news .item-content a:hover .item-content-title {
    color: rgb(255, 51, 51);
}

.section.news>.container>.row.row.list>.col-12:first-child .item-content-title {
    white-space: normal;
}

.world .item-content-title {
    margin-bottom: 1em;
    color: #555;
}

.world .item {
    margin-bottom: 35px;
}

.world .item:nth-child(2n-1) {
    padding-right: 30px;
}

.world .item:nth-child(2n) {
    padding-left: 30px;
}

.world .item:hover .item-content-title {
    color: rgb(255, 51, 51);
}

.news .item-content-summary,
.world .item-content-summary {
    font-size: 16px;
    color: #777;
    line-height: 1.8em;
    margin-bottom: 20px;
}

.news .item-content-summary {
    margin-bottom: 0;
}

.world .item-content-summary {
    margin: 0;
}

.world {
    padding-bottom: 85px;
}

.news .item-content-more {
    margin-bottom: 35px;
    margin-top: -10px;
    display: block;
    text-align: center;
}

.news .item-content-more a {
    color: rgb(255, 51, 51);
    font-size: 18px;
    padding: 6px 12px;
    padding-right: 8px;
    transition: all .3s;
    border: 1px solid rgb(255, 51, 51);
}

.news .item-content-more a:hover {
    background-color: rgb(255, 51, 51);
    color: #fff;
}

.section-bg {
    background: #f9f9f9 !important;
}

.section-more {
    border: 0;
    background: none;
    padding: 0;
    margin: 20px 0;
}

.brand .section-title>div:last-child {
    font-weight: normal;
    font-size: 16px;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 25px;
    color: #555;
}

.section.brand .section-main {
    padding: 0 15px;
}

.world .item-content {
    margin-left: 220px;
    padding: 15px;
}

.world .item-content-title {
    margin-bottom: 10px;
    font-size: 16px;
}

.world .item-content-summary {
    font-size: 14px;
}

.world .item-content {
    padding: 0;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news .item-content {
    padding: 35px;
}

.world .item-content-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.world .item-content-summary {
    font-size: 15px;
    margin: 0;
    line-height: 1.75em;
}

.news .item-content-title,
.world .item-content-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5em;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width:991px) {
    .banner {
        margin-top: 70px;
    }
    .section-title .title-box,
    .section-title .tab-btn ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .brand .section-title>div:last-child {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #introduction-tab1 .left {
        width: 35%;
    }
    #introduction-tab1 .right {
        margin-left: 35%;
    }
    .introduction .video {
        padding: 0 15px;
        height: 450px;
    }
    .introduction .video .before,
    .introduction .video .after {
        display: none;
    }
    .introduction .video .mask {
        width: calc(100% - 30px);
        padding: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width:767px) {
    .introduction .video {
        padding: 0 15px;
        height: 350px;
    }
    .news .item-img {
        height: 350px;
    }
    .news .row>div {
        margin-bottom: 25px;
    }
    .business-items .item {
        width: 50%;
        overflow: hidden;
        position: relative;
    }
    .business-items .item .title {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

@media screen and (max-width:575px) {
    .banner {
        margin-top: 65px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
        width: 6px;
        height: 6px;
        background: none;
        border: 1px solid #fff;
        border-radius: 100px !important;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #fff;
        width: 30px;
        border-radius: 100px !important;
    }
    .section {
        padding: 0 15px;
    }
    .section.introduction {
        background: rgb(251, 248, 243);
        padding-bottom: 2px;
    }
    .section.world {
        padding-bottom: 100px;
    }
    .section>.container {
        padding: 0;
    }
    .m-section-title {
        text-align: center;
    }
    .m-section-title .primary {
        font-size: 25px;
        line-height: 20px;
        margin: 0;
        font-family: Calibri, Arial, "Microsoft YaHei";
        font-weight: normal;
        white-space: nowrap;
    }
    .m-section-title .second {
        margin: 0;
        font-size: 16px;
    }
    .section.introduction .m-section-title {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .section.introduction .m-section-title .primary {
        color: rgb(255, 80, 80);
    }
    .section.introduction .m-section-title .second {
        color: rgb(206, 193, 153);
    }
    .section-summary {
        margin-bottom: 25px;
        width: 100%;
        text-align: center;
        line-height: 1.6em;
        font-size: 13px;
        color: rgb(116, 110, 122);
        padding: 0 15px;
    }
    .links {
        display: flex;
        width: 190px;
        justify-content: center;
        margin: 0;
        margin-bottom: 20px;
        padding: 0;
        list-style: none;
        border-radius: 100px;
        overflow: hidden;
        background: rgb(255, 168, 0);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .links li {
        float: left;
    }
    .links li a {
        display: flex;
        align-items: center;
        height: 32px;
        width: auto;
        padding: 0 3px;
        font-size: 11px;
        color: #fff;
    }
    .chairman-pic {
        border-radius: 100%;
        width: 190px;
        height: 190px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin: 15px auto;
        margin-top: 30px;
        margin-bottom: 18px;
    }
    .section.business {
        margin: 0 !important;
        padding: 0;
    }
    .section.business .m-section-title {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
    }
    .section.business .m-section-title .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section.business .main-box .swiper-slide img {
        width: 100%;
        height: auto;
    }
    .section.business .grid-box {
        display: grid;
        grid-template-columns: repeat(4, 25%);
        grid-template-rows: 25vw 25vw;
    }
    .section.business .grid-box .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-top: 1px solid rgb(225, 225, 225);
        border-left: 1px solid rgb(225, 225, 225);
        background: rgba(0, 0, 0, .01);
        transition: all .3s;
    }
    .section.business .grid-box .item:nth-child(1),
    .section.business .grid-box .item:nth-child(5) {
        border-left: 0;
    }
    .section.business .grid-box .item:nth-last-child(-n+4) {
        border-bottom: 1px solid rgb(225, 225, 225);
    }
    .section.business .grid-box .item .iconfont {
        font-size: 24px;
        font-weight: 400;
        color: #777;
        transition: all .3s;
    }
    .section.business .grid-box .item span {
        font-size: 14px;
        color: #777;
        transition: all .3s;
    }
    .section.business .grid-box .item.active {
        background: rgb(255, 168, 0);
    }
    .section.business .grid-box .item.active .iconfont,
    .section.business .grid-box .item.active span {
        color: #fff;
    }
    .section.news {
        /* background-color: rgb(253, 250, 241); */
        background-image: url('/assets/img/home/IMG_2765.jpg');
        /* padding-bottom: 15px; */
        margin-bottom: 20px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .section.news .m-section-title {
        text-align: left;
        margin-top: 80px;
        margin-bottom: 10px;
    }
    .section.news .m-section-title {
        padding-left: 15px;
    }
    .section.news .m-section-title .primary {
        color: rgb(255, 168, 0);
    }
    .section.news .m-section-title .second {
        color: rgb(180, 157, 103);
    }
    .section.news .row>div {
        padding: 0;
        background-color: #fff;
        margin-bottom: 25px;
    }
    .section.news .row>div .item-content {
        border: 0;
        padding: 15px;
    }
    .section.news .row>div .m-item-img {
        width: calc(100% - 112px);
        margin-left: 100px;
        margin-top: 12px;
        height: auto;
        position: relative;
    }
    .section.news .item-content-more {
        display: none;
    }
    .section.news .m-item-content-more {
        position: absolute;
        top: 30px;
        left: 15px;
        font-size: 14px;
        font-weight: bold;
        color: rgb(255, 168, 0);
    }
    .section.news .item-content-title {
        font-size: 16px;
        font-weight: normal;
        white-space: normal;
        border-bottom: 2px solid #ddd;
        padding-bottom: 15px;
        margin-bottom: 12px;
        position: relative;
        color: rgb(180, 157, 103);
        text-align: justify;
        font-weight: bold;
    }
    .section.news .item-content-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 15px;
        width: 100%;
        background-color: #fff;
    }
    .section.news .links {
        margin-bottom: 30px;
    }
    .world .item {
        padding: 0;
        margin-bottom: 20px;
    }
    .world .item-img {
        width: 35%;
    }
    .world .item-content {
        margin-left: 35%;
        padding: 15px;
        height: 100px;
    }
    .world .item-content-summary {
        font-size: 14px;
    }
    .world .item-content {
        padding: 15px;
    }
    .news .item-content-summary,
    .world .item-content-summary {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.5em;
    }
    .news .item-content-more a {
        font-size: 14px;
    }
    .world .item {
        padding: 0 !important;
        margin-bottom: 15px;
    }
    .world .item-content {
        padding: 0;
        padding-left: 15px;
        height: 75px;
    }
    .world .item-img {
        height: 75px;
    }
    .world .item-content-summary {
        margin: 0;
        line-height: 1.5em;
    }
    .news .item-content-title {
        overflow: visible;
        -o-text-overflow: unset;
        text-overflow: unset;
        white-space: unset;
        line-height: 1.5em;
    }
    .section.business {
        margin-top: 15px;
    }
    .section.business>.container {
        margin-top: 0;
    }
    .business .section-title,
    .world .section-title {
        margin-bottom: 35px;
    }
    .business-items {
        margin-bottom: 10px;
        font-size: 0;
    }
    .business-items>a {
        position: relative;
        display: inline-block;
        width: 25%;
        margin-bottom: 15px;
    }
    .business-items .item .is-bg {
        -webkit-filter: brightness(.85);
        filter: brightness(.85);
    }
    .business-items .item {
        width: 100%;
        margin: 0;
        margin-bottom: 18px;
        height: calc((100vw - 30px) / 4);
        border-radius: 100%;
        transform: scale(.8);
    }
    .business-items .item .title {
        display: none;
    }
    .business-items .item img {
        filter: brightness(100%);
        height: 100%;
        width: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .business-items .item img:hover {
        transform: translateX(-50%);
        filter: brightness(1);
    }
    .business-items>a>.title {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        font-size: 14px;
        color: #555;
        margin: 0;
    }
    .news .section-title {
        padding: 0 !important;
    }
    .news .title-box {
        padding: 10px !important;
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    .news>.container>.row:last-child>.col-12 {
        display: none;
    }
    .news>.container>.row:last-child>.col-12:first-child {
        display: block;
    }
    .news .item-img {
        height: 220px;
    }
    .news .item-content {
        padding: 25px;
    }
    .news .item-content-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #555;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .news .item-content-summary {
        margin-bottom: 12px;
        line-height: 1.5em;
        color: rgb(116, 110, 122);
        text-align: justify;
    }
    .section.world {
        background: rgb(253, 250, 241) !important;
        padding: 0;
    }
    .section.world .m-section-title {
        text-align: left;
        padding: 0;
        /* background-color: rgb(245, 216, 191); */
        /* background-image: url('/assets/img/home/w-bg.jpg'); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }
    .section.business .m-section-title .bg,
    .section.world .m-section-title .bg {
        width: 100%;
        height: auto;
    }
    .section.world .m-section-title .fj {
        position: absolute;
        top: 60%;
        left: 15px;
        width: 45px;
        height: auto;
        animation: zoom 2.4s linear infinite;
    }
    /* .section.world .m-section-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url('/assets/img/home/wtbg.png');
        background-size: auto 170%;
        background-position: right center;
        background-repeat: no-repeat;
    } */
    .section.world .m-section-title .content {
        position: absolute;
        top: 14vw;
        left: 0;
        transform: translateY(-50%);
        padding-left: 15px;
    }
    .section.world .m-section-title .content .primary {
        color: rgb(180, 157, 103);
        position: relative;
        left: -1px;
    }
    .section.world .m-section-title .content .second {
        color: #555;
    }
    .world .container>.row.list {
        margin-top: 20px;
        margin-bottom: -10px;
        padding: 0 15px;
    }
    .world .item-img {
        border: 0;
    }
    .world .item-content-title {
        margin: 0;
        font-size: 16px;
        color: rgb(180, 157, 103);
    }
    .world .item {
        display: none;
        margin-bottom: 20px;
        padding-bottom: 20px !important;
        border-bottom: 1px solid #ddd;
    }
    .world .item:nth-child(-n+3) {
        display: block;
    }
    .section.world .links {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .section.brand {
        display: none;
    }
}