
.tac {
    text-align: center;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.bg-white {
    background: #fff;
}


/* transition */

/* é¦–é¡µæ ·å¼ */
.index_body {
    background: url(../images/banner-index.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}
.news_body {
    background: url(../images/news-banner.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}
.page-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    line-height: 2;
    position: relative;
}
.page-title h2::after {
    content: "";
    width: 46px;
    height: 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #254CD5;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.page-title.white h2 {
    color: #fff;
}
.page-title.white h2::after {
    background: #fff;
}
.index-news-box,
.index-business-box,
.index-case-box,
.news-box,
.news-content-box,
.news-more-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
}
.news-box {
    min-height: 66vh;
}
.index_body .navbar {
    top: -100px;
}

.head-icon {
    display: flex;
    position: relative;
    padding: 9px 0;
}
.head-icon > div {
    margin-left: 20px;
}
.header-language {
    position: relative;
}
.header-language span {
    display: block;
    line-height: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    position: relative;
    margin-right: 18px;
}
.header-language span i {
    display: block;
    width: 28px;
    height: 18px;
    background: url(../images/icon-lang.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: -25px;
    top: 50%;
    margin-top: -8px;
}
.header-language .lang-list {
    position: absolute;
    top: 46px;
    left: 50%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
}
.header-language:hover .lang-list {
    top: 50px;
    visibility: inherit;
    opacity: 1;
}
.header-language .lang-list:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 11px 12.5px;
    border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
    position: absolute;
    left: 50%;
    top: -11px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.header-language .lang-list li a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 30px;
}
.header-language .lang-list li:last-child a {
    border-bottom: 0;
}
.header-search {
    position: relative;
}
.header-search .form-search {
    position: absolute;
    right: 0;
    top: 44px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    visibility: hidden;
    opacity: 0;
}
.header-search .form-search:after {
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
}
.header-search:hover .form-search {
    top: 48px;
    visibility: inherit;
    opacity: 1;
}
.header-search .form-search input {
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid #E6E6E6;
    padding: 0 15px;
    font-size: 16px;
    outline: none;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    color:#666;
    font-size:14px;
}
input:-moz-placeholder,textarea:-moz-placeholder{
    color:#666;
    font-size:14px;
}
input::-moz-placeholder,textarea::-moz-placeholder{
    color:#666;
    font-size:14px;
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{
    color:#666;
    font-size:14px;
}
.icon-code,
.icon-search,
.icon-link {
    display: block;
    width: 20px;
    height: 20px;
}
.icon-code {
    background: url(../images/icon-code-white.svg) no-repeat center;
    background-size: contain;
}
.header-link {
    position: relative;
}
.icon-link {
    background: url(../images/icon-link.svg) no-repeat center;
    background-size: 18px 18px;
}
.header-link .header-tips {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    word-break: keep-all;
    white-space: nowrap;
    position: absolute;
    top: 54px;
    left: 50%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.header-link:hover .header-tips {
    top: 58px;
    visibility: inherit;
    opacity: 1;
}
.header-link .header-tips:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 11px 12.5px;
    border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
    position: absolute;
    top: -11px;
    right: 26px;
}
.header-code .code-show {
    position: absolute;
    top: 54px;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    display: flex;
    visibility: hidden;
    opacity: 0;
}
.header-code:hover .code-show {
    top: 58px;
    visibility: inherit;
    opacity: 1;
}
.header-code .code-show:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 11px 12.5px;
    border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
    position: absolute;
    top: -11px;
    right: 76px;
}
.header-code .code-show img {
    display: block;
}
.header-code .code-show img:first-child {
    margin-right: 10px;
}
.icon-search {
    background: url(../images/icon-search-white.svg) no-repeat center;
    background-size: contain;
}
.header.header-index {
    position: fixed;
    background: #fff;
    box-shadow: 0px 0px 15px 0px #ccc;
}
.header.header-index .header-language span {
    color: #000;
}
.header.header-index .header-language i {
    background: url(../images/icon-lang-a.svg) no-repeat center;
    background-size: contain;
}
.header.header-index .logo {
    background: url(../images/logo-color.svg) no-repeat center;
    background-size: contain;
}
.header.header-index .logo img {
    visibility: hidden;
}
.header.header-index .navbar {
    top: 0;
}
.header.header-index .nav > li > a {
    color: #000;
}
.header.header-index .icon-code {
    background: url(../images/icon-code.svg) no-repeat center;
    background-size: contain;
}
.header.header-index .icon-search {
    background: url(../images/icon-search.svg) no-repeat center;
    background-size: contain;
}
.header.header-index .icon-link {
    background: url(../images/icon-link-a.svg) no-repeat center;
    background-size: contain;
}
.footer {
    background: #000;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}
.footer-nav > li {
    float: left;
    margin-right: 56px;
    position: relative;
}
.footer-nav > li::after {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    right: -28px;
    top: 5px;
    background: rgba(255, 255, 255, 0.4);
}
.footer-nav > li:last-child::after {
    display: none;
}
.footer-nav > li > a {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
.footer-friend {
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.footer-friend span {
    display: block;
    padding: 10px 100px 10px 12px;
    position: relative;
}
.footer-friend span i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../images/icon-down.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 10px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.footer-friend:hover .friend-link  {
    display: block;
}
.friend-link {
    display: none;
    position: absolute;
    bottom: 42px;
    right: -2px;
    background: rgb(36, 36, 36);
    padding: 10px 15px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.friend-link a {
    display: block;
    font-size: 12px;
    line-height: 2;
    word-break: keep-all;
}
.copyright {
    margin-top: 20px;
}
.copyright span,
.copyright span a {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.35);
    transition: all .2s;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
}
.copyright span a:hover {
    color: #fff;
}
/* åˆ†é¡µ */
.pagination {
    justify-content: center;
}
.pagination li {
    margin: 0 5px;
}
.pagination li a,
.pagination li span {
    display: block;
    height: 44px;
    min-width: 44px;
    word-break: keep-all;
    white-space: nowrap;
    background: #fff;
    font-size: 14px;
    line-height: 44px;
    color: #7f7f7f;
    text-align: center;
}
.pagination li:hover a {
    color: #3046B3;
}
.pagination li.active:hover a {
    color: #fff;
}
.pagination li.disabled span {
    cursor: not-allowed;
}
.pagination li.active span {
    display: block;
    height: 44px;
    min-width: 44px;
    word-break: keep-all;
    white-space: nowrap;
    font-size: 14px;
    line-height: 44px;
    color: #fff;
    text-align: center;
    background: #3046B3;
}
/* åˆ†é¡µ */
.index-nav {
    margin-top: 215px;
    margin-bottom: 60px;
}
.index-nav-list {
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
}
.index-nav-list > li {
    margin: 0;
    position: relative;
}
.index-nav-list > li > a {
    display: block;
    font-size: 18px;
    line-height: 2;
    color: #fff;
}
.index-nav-list .nav-two {
    position: absolute;
    top: 54px;
    left: 50%;
    padding: 5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    z-index: 8;
}
.index-nav-list .nav-two li a {
    font-size: 14px;
    line-height: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: block;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
    padding: 0 30px;
}
.index-nav-list .nav-two li:last-child a {
    border-bottom: 0;
}
.index-nav-list .nav-two:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12.5px 11px 12.5px;
    border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
    position: absolute;
    left: 50%;
    top: -11px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.index-nav-list > li:hover .nav-two {
    top: 58px;
    visibility: inherit;
    opacity: 1;
}
.index-news-box {
    margin-bottom: 20px;
}
.index-news-box .row {
    margin: 0;
}
.index-news-box .newslist .col-md-6,
.index-news-box .newslist .col-md-12 {
    padding: 0;
    overflow: hidden;
}
.index-news-box .newslist .news-right-padding,
.index-news-box .newslist .news-left-padding {
    height: 0;
    padding-bottom: 100%;
}
.index-news-box .col-md-6.over-auto {
    overflow: initial;
}
.index-news-box .news-left-padding > img,
.index-news-box .news-right-padding > img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}
.index-news-box .news-left-padding:hover > img,
.index-news-box .news-right-padding:hover > img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.index-news-box .newslist .news-left-item {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 40px;
}
.index-news-box .news-left-item .title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 120px;
}
.index-news-box .news-left-item .cn {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}
.index-news-box .news-left-item .en {
    font-size: 20px;
    font-weight: 700;
    font-family: Oswald-Regular;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}
.index-news-box .news-right-item {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 40px 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.index-news-box .news-righta {
    background: linear-gradient(180deg, #3A51C3 0%, #24389B 100%);
}
.index-news-box .news-righta .item-text,
.index-news-box .news-rightb .item-text {
    width: 100%;
}
.index-news-box .news-righta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #2f44af;
    z-index: 2;
}
.index-news-box .news-rightb {
    background: linear-gradient(180deg, #6C758D 0%, #414659 100%);
}
.index-news-box .news-rightb::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    margin-top: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent #575e73 transparent transparent;
    z-index: 2;
}
.index-news-box .news-right-item h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.index-news-box .news-right-item p.time {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}
.index-news-box .news-right-item .more {
    display: block;
    position: relative;
    padding-right: 30px;
}
.index-news-box .news-right-item .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.index-news-box .news-right-item .more:hover::after {
    width: 100%;
}
.index-news-box .news-right-item .more span {
    font-size: 14px;
    line-height: 36px;
    color: #fff;
}
.index-news-box .news-right-item .more i {
    position: absolute;
    right: 0;
    top: 9px;
    width: 20px;
    height: 20px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
}
.index-news,
.index-business {
    margin-bottom: 20px;
}
.index-business-swiper {
    background: url(../images/bg3.png) no-repeat center;
    background-size: cover;
    text-align: center;
    height: 100%;
}
.index-business-box .swiper-slide {
    height: auto !important;
}
.index-business-item {
    display: block;
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}
.index-business-swiper .title {
    margin-bottom: 50px;
}
.index-business-swiper .title .cn {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}
.index-business-swiper .title .en {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.5;
    font-family: Oswald-Regular;
    color: rgba(255, 255, 255, 0.6);
}
.index-business-swiper .intro {
    font-size: 16px;
    line-height: 22px;
    max-width: 720px;
    margin: 0 auto;
    color: #fff;
    margin-bottom: 50px;
}
.index-business-swiper .more {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    position: relative;
    padding-right: 30px;
}
.index-business-swiper .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
}
.index-business-swiper .more:hover::after {
    width: 100%;
}
.index-business-swiper .more i {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
}
.index-business .swiper-pagination-business {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.index-business .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    opacity: 1;
    background: transparent;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.index-business .swiper-pagination-bullet-active {
    width: 30px;
    height: 12px;
    background: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.index-case {
    margin-bottom: 20px;
}
.index-case-box .row {
    margin: 0;
}
.index-case-box .col-md-3 {
    padding: 0;
    height: 310px;
}
.index-case-box .col-md-3 {
    position: relative;
    overflow: hidden;
}
.index-case-box .col-md-3 a {
    display: block;
    height: 100%;
}
.index-case-box .col-md-3 .more {
    height: 36px;
    position: relative;
    padding-right: 30px;
}
.index-case-box .col-md-3 .more i {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: url(../images/icon-more-r-black.svg) no-repeat center;
    background-size: contain;
}
.index-case-box .col-md-3 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.index-case-box .col-md-3:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.index-case-box .list-item {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 50px 15px 10px 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.index-case-box .list-item p {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index-case-box .list-item-title {
    height: 100%;
    display: block;
    padding: 40px 30px;
    background: #fff;
}
.index-case-box .list-item-title .cn {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}
.index-case-box .list-item-title .en {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.3);
    font-family: Oswald-Regular;
    margin-bottom: 10px;
}
.index-case-box .list-item-title .intro {
    font-size: 16px;
    line-height: 1.5;
    color: #7F7F7F;
    margin-bottom: 80px;
}
.index-case-box .list-item-title .more {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    color: #808080;
}
.index-case-box .list-item-title .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 0;
    bottom: 0;
}
.index-case-box .list-item-title .more:hover::after {
    width: 100%;
}
.index-case-box .col-md-6 {
    padding: 0;
    position: relative;
    overflow: hidden;
}
.index-case-box .col-md-6 img {
    display: block;
    height: 270px;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.index-case-box .col-md-6:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.index-case-box .col-md-6 .item-title {
    position: absolute;
    left: 0;
    top: 0;
    padding: 30px 20px;
    width: 100%;
    height: 100%;
}
.index-case-box .col-md-6 .cn {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}
.index-case-box .col-md-6 .en {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    font-family: Oswald-Regular;
    color: rgba(255, 255, 255, 0.3);
}
.index-case-box .col-md-6 .more {
    position: absolute;
    left: 20px;
    bottom: 30px;
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    padding-right: 30px;
}
.index-case-box .col-md-6 .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
}
.index-case-box .col-md-6 .more:hover::after {
    width: 100%;
}
.index-case-box .col-md-6 .more i {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
}
/* é¦–é¡µæ ·å¼ */

/* æ–°é—»åˆ—è¡¨ */
.news-main {
    margin-top: 310px;
    margin-bottom: 20px;
}
.news-sort {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.news-sort li {
    margin: 0 60px;
}
.news-sort li a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}
.news-sort li.active a {
    font-weight: 700;
    color: #000;
}
.news-sort li:hover a {
    color: #000;
}
.news-list {
    margin-left: -10px;
    margin-right: -10px;
}
.news-list .col-md-12 {
    padding: 0 10px;
}
.news-list .news-list-top {
    display: block;
    height: 0;
    padding-bottom: 53.75%;
    position: relative;
    margin-bottom: 20px;
}
.news-list .news-list-top img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list .news-list-right .item-text {
    background: #2F44AF;
}
.news-list-right .item-text h2 {
    color: #fff;
    position: relative;
}
.news-list-right .item-text h2 i {
    width: 20px;
    height: 20px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: -2px;
}
.news-list li {
    padding: 0 10px;
    margin-bottom: 20px;
}
.news-list .list-item {
    display: block;
}
.news-list .item-img {
    height: 0;
    padding-bottom: 65%;
    position: relative;
    overflow: hidden;
}
.news-list .item-img img {
    height: 100%;
    width: 100%;
    position: absolute;
    display: block;
    object-fit: cover;
}
.news-list .item-text {
    padding: 20px;
    background: #fff;
}
.news-list .item-text h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    min-height: 54px;
    color: #343434;
    margin-bottom: 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.news-list .item-text .intro {
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
    color: #808080;
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.news-list .item-text .time {
    display: flex;
    justify-content: space-between;
}
.news-list .item-text .time span {
    font-size: 14px;
    line-height: 1.5;
    color: #7f7f7f;
}
.news-list .list-item:hover h4 {
    color: #254CD5;
}
.news-list .list-item:hover .item-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
/* æ–°é—»åˆ—è¡¨ */

/* æ–°é—»è¯¦æƒ…é¡µ */
.news-content-box {
    margin-bottom: 20px;
}
.news-content-box .download {
    margin-top: 40px;
}
.news-content-box .download a {
    display: inline-block;
}
.news-content-box .download i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/icon-download.svg) no-repeat center;
    background-size: contain;
    vertical-align: middle;
}
.news-content-box .download a:hover {
    color: #2F44AF;
}
.news-content-box .download a:hover i {
    background: url(../images/icon-download-a.svg) no-repeat center;
    background-size: contain;
}
.news-content {
    background: #fff;
    padding: 50px;
}
.news-content h1 {
    font-size: 24px;
    line-height: 1.5;
    color: #323232;
    margin-bottom: 24px;
}
.news-content .time {
    font-size: 14px;
    line-height: 2;
    color: #7f7f7f;
    margin-bottom: 48px;
}
.editor-content span,
.editor-content p {
    font-size: 14px;
    line-height: 2;
    color: #818181;
    margin-bottom: 12px;
}
.editor-content h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 12px;
    margin-top: 16px;
    margin-bottom: 16px;
}
.editor-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 12px;
    margin-top: 16px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 12px;
}
.editor-content h3:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #333;
    position: absolute;
    left: 0;
    top: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.editor-content h4 {
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
}
.editor-content strong {
    font-weight: 700;
}
.editor-content video,
.editor-content table,
.editor-content img {
    max-width: 100%;
}
.news-more-list {
    margin-left: -10px;
    margin-right: -10px;
}
.news-more-list .col-md-4 {
    padding: 0 10px;
}
.news-more-list .item-img {
    display: block;
    overflow: hidden;
    height: 0;
    padding-bottom: 70%;
    position: relative;
}
.news-more-list .item-img.item-case-img {
    padding-bottom: 90%;
}
.news-more-list .item-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}
.news-more-list .col-md-4:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.news-more-list .item-text {
    padding: 20px;
    background: #fff;
}
.news-more-list h4 {
    font-size: 20px;
    color: #343434;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-more-list .intro{
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
    color: #808080;
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.news-more-list .time {
    display: flex;
    justify-content: space-between;
}
.news-more-list .time span {
    font-size: 14px;
    line-height: 1.5;
    color: #7f7f7f;
}
/* æ–°é—»è¯¦æƒ…é¡µ */

/* äººæ‰æ‹›è˜é¡µ */
.recruit-main {
    padding-top: 138px;
    padding-bottom: 60px;
    min-height: 100vh;
}
.recruit-list .list-item {
    margin-bottom: 20px;
}
.recruit-list .item-head {
    padding: 28px 40px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(220, 220, 220, 0.5);
    cursor: pointer;
}
.recruit-list .item-head h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    position: relative;
    padding-right: 25px;
}
.recruit-list .item-head h3 .item-more {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icon-right-zp-b.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 5px;
}
.recruit-list .list-item.active .item-head {
    background: linear-gradient(135deg, #3C54D0 0%, #2F44AF 100%);
}
.recruit-list .list-item.active h3 {
    color: #fff;
}
.recruit-list .list-item.active h3 .item-more {
    background: url(../images/icon-right-zp-a.svg) no-repeat center;
    background-size: contain;
}
.recruit-list .item-body {
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(220, 220, 220, 0.5);
    padding: 45px 40px;
    display: none;
}
.recruit-list .item-body .item-text {
    padding-left: 32px;
    border-left: 2px solid #e5e5e5;
}
.recruit-list .item-body h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 28px;
    position: relative;
}
.recruit-list .item-body h4::after {
    content: "";
    width: 2px;
    height: 20px;
    background: #323232;
    position: absolute;
    left: -34px;
    top: 2px;
}
.recruit-list .item-body .item-editor {
    margin-bottom: 40px;
}
.recruit-list .item-editor p {
    font-size: 16px;
    line-height: 2;
    color: #808080;
}
.recruit-list .item-editor .email {
    display: block;
    font-size: 44px;
    line-height: 1.1;
    color: #000;
}
/* äººæ‰æ‹›è˜é¡µ */

/* ä¸šåŠ¡é¢†åŸŸé¡µ */
.page-banner {
    height: 100vh;
    text-align: center;
    position: relative;
}
.page-banner > .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.page-text .en {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.5;
    font-family: Oswald-Regular;
    text-transform: uppercase;
    color: #fff;
}
.page-text .cn {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    margin-bottom: 25px;
}
.page-text .intro {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    max-width: 450px;
    margin: 0 auto 65px auto;
    position: relative;
}
.page-text .intro::after {
    content: "";
    width: 1px;
    height: 38px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -45px;
}
.page-text img {
    width: 38px;
}
.page-text > p {
    position: relative;
    margin-top: 55px;
}
.page-text > p:after {
    content: "";
    width: 1px;
    height: 38px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 48px;
}
.page-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.69) 100%);
}
.page-nav .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.page-nav .page-list {
    padding: 30px 0;
    display: flex;
    width: 100%;
    overflow-x: auto;
    word-break: keep-all;
}
.page-nav .page-list li {
    float: left;
    margin-right: 110px;
}
.page-investment.page-nav .page-list li {
    margin-right: 35px;
}
.page-nav .page-list a {
    display: block;
    line-height: 1.5;
    font-size: 20px;
    color: #fff;
    word-break: keep-all;
    white-space: nowrap;
}
.page-nav .page-more {
    position: absolute;
    right: 0;
    top: 18px;
    cursor: pointer;
}
.page-nav .page-more i {
    display: block;
    width: 46px;
    height: 46px;
    background: url(../images/icon-more-down2.svg) no-repeat center;
    background-size: contain;
}
.business-layout {
    padding-top: 60px;
    padding-bottom: 140px;
    background: url(../images/business-bg1.png) no-repeat top;
}
.business-layout .page-title {
    margin-bottom: 130px;
}
.business-layout-list .list-item {
    display: flex;
    padding: 30px 25px;
    background: #fff;
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.11);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    height: 100%;
}
.business-layout-list .item-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.business-layout-list .item-text h4 {
    width: 100%;
    font-size: 0;
}
.business-layout-list .item-text h4 span {
    display: inline-block;
    vertical-align: middle;
    font-size: 48px;
    font-weight: 700;
    font-family: DINAlternate-Bold, DINAlternate;
    color: #000;
}
.business-layout-list .item-text h4 i {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    vertical-align: bottom;
    line-height: 42px;
    margin-left: 5px;
}
.business-layout-list .item-text p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}
.business-list {
    margin: 0;
}
.business-list .business-item {
    padding: 0;
}
.business-padding {
    height: 0;
    padding-bottom: 93.75%;
    position: relative;
}
.business-padding .item-img {
    position: absolute;
    height: 100%;
    width: 100%;
}
.business-padding .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-padding .item-text {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 110px 50px;
}
.business-padding .item-text .cn {
    font-size: 32px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
}
.business-padding .item-text .en {
    font-size: 27px;
    font-weight: 700;
    font-family: Oswald-Regular;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 110px;
}
.business-padding .more {
    display: inline-block;
    position: relative;
    padding-right: 20px;
}
.business-padding .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    bottom: 0;
}
.business-padding .more:hover::after {
    width: 100%;
}
.business-padding .more span {
    display: block;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    margin-right: 20px;
}
.business-padding .more i {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
}
.business-case {
    padding: 60px 0;
    background: #f7fafc;
}
.business-case .tab-hd {
    margin-bottom: 50px;
    text-align: center;
}
.business-case .tab-hd span {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    padding: 18px 30px;
    border-radius: 30px;
    margin: 0 20px;
    cursor: pointer;
}
.business-case .tab-hd span.active {
    color: #fff;
    background: #2f44af;
}
/* ä¸šåŠ¡é¢†åŸŸé¡µ */

/* ä¸šåŠ¡é¢†åŸŸè¯¦æƒ…é¡µ */
.business-content {
    padding: 80px 0 60px;
}
.business-content {
    position: relative;
}
.business-intro {
    min-height: 100vh;
    padding-top: 50px;
}
.business-intro .title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}
.business-intro .title::after {
    content: "";
    width: 5px;
    height: 30px;
    background: #525252;
    position: absolute;
    left: 0;
    top: 5.5px;
}
.business-nav {
    position: fixed;
    left: 0;
    top: 80px;
    width: 32vw;
    height: 100%;
    background: url(../images/business1s.png) no-repeat center;
    background-size: cover;
    padding: 180px 60px;
}
.business-nav.business-nav9 {
    background: url(../images/business1.png) no-repeat center;
    background-size: cover;
}
.business-nav.business-nav10 {
    background: url(../images/business1s.png) no-repeat center;
    background-size: cover;
}
.business-nav h1 {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 70px;
}
.business-nav li {
    margin-bottom: 20px;
}
.business-nav li a {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    padding-left: 10px;
    border-left: 2px solid transparent;
}
.business-nav li.active a {
    border-left: 2px solid #fff;
}
.business-content .col-md-8 {
    background: #fff;
}
.business-content .content {
    height: 100vh;
}
.business-content .editor img {
    display: block;
    max-width: 100%;
}
.business-content .editor h3,
.business-content .editor h4 {
    font-size: 16px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px;
}
.business-content .editor p {
    font-size: 14px;
    line-height: 2;
    color: #818181;
    margin-bottom: 10px;
}
/* ä¸šåŠ¡é¢†åŸŸè¯¦æƒ…é¡µ */

/* è”ç³»æˆ‘ä»¬é¡µ */
.contact-address {
    padding: 60px 0;
    background: url(../images/contact-bg1.png) no-repeat center;
    background-size: cover;
}
.address-list {
    margin: 0;
    border: 1px solid #E5E5E5;
}
.address-list li {
    padding: 0;
}
.address-list .list-item {
    display: block;
    padding: 40px;
    border: 1px solid #E5E5E5;
    height: 100%;
}
.address-list .icon {
    display: block;
    width: 52px;
    height: 52px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.address-list li:nth-child(1) .icon {
    background: url(../images/icon-contact1.svg) no-repeat center;
    background-size: contain;
}
.address-list li:nth-child(2) .icon {
    background: url(../images/icon-contact2.svg) no-repeat center;
    background-size: contain;
}
.address-list li:nth-child(3) .icon {
    background: url(../images/icon-contact3.svg) no-repeat center;
    background-size: contain;
}
.address-list li:nth-child(4) .icon {
    background: url(../images/icon-contact4.svg) no-repeat center;
    background-size: contain;
}
.address-list li:nth-child(5) .icon {
    background: url(../images/icon-contact5.svg) no-repeat center;
    background-size: contain;
}
.address-list h4 span {
    display: block;
    line-height: 1.5;
    font-size: 20px;
    color: #000000;
    text-align: center;
}
.address-list h4 .en {
    margin-bottom: 3px;
}
.address-list h4 .cn {
    margin-bottom: 20px;
}
.address-list p {
    font-size: 20px;
    line-height: 1.5;
    color: #7f7f7f;
    text-align: center;
}
.contact-recruit {
    padding: 120px 0 60px 0;
    background: url(../images/contact-bg2.png) no-repeat center;
    background-size: cover;
    margin-top: -20px;
}
.contact-recruit .page-title {
    margin-bottom: 80px;
}
.contact-recruit-info .col-md-6:nth-child(1) .item-padding {
    height: 0;
    padding-bottom: 110%;
    position: relative;
}
.contact-recruit-info .recruit-info {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 100px 115px 100px 50px;
    background: url(../images/contact-bg3.png) no-repeat center;
    background-size: cover;
}
.contact-recruit-info .recruit-info img {
    margin-bottom: 10px;
}
.contact-recruit-info .recruit-info h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 30px;
}
.contact-recruit-info .recruit-info p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 60px;
}
.contact-recruit-info .more {
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}
.contact-recruit-info .more span {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    padding-right: 20px;
}
.contact-recruit-info .more i {
    position: absolute;
    right: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: url(../images/icon-more-right.svg) no-repeat center;
    background-size: contain;
}
.contact-recruit-info .col-md-6:nth-child(2) .item-padding {
    height: 0;
    padding-bottom: 110%;
    position: relative;
}
.contact-recruit-info .col-md-6:nth-child(2) img {
    position: absolute;
    right: 0;
    top: 13%;
    height: 74%;
    width: 116%;
    object-fit: cover;
}
/* è”ç³»æˆ‘ä»¬é¡µ */

/* æˆ˜ç•¥åˆä½œ */
.contact-zhanlue {
    padding: 60px 0;
    background: url(/static/images/zhanlue_bg1.jpg) no-repeat center;
    background-size: cover;
}
.page-title.white p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 90px;
}
.zhanlue-list .list-item {
    margin-bottom: 20px;
    padding: 0 40px;
}
.zhanlue-list .list-item img {
    display: block;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}
.zhanlue-list .list-item h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}
.zhanlue-list .list-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
/* æˆ˜ç•¥åˆä½œ */

/* å…³äºŽæˆ‘ä»¬é¡µ */
.about-company {
    padding: 60px 0 35px;
}
.about-company .intro {
    margin-bottom: 40px;
}
.about-company .intro p {
    font-size: 16px;
    color: #7f7f7f;
    line-height: 1.5;
    margin-bottom: 25px;
}
.about-company .intro img {
    display: block;
    width: 100%;
}
.about-history {
    padding: 60px 0;
    background: url(../images/about-bg1.png) no-repeat center;
    background-size: cover;
}
.about-history .page-title {
    margin-bottom: 60px;
}
.swiper-history:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #d8d8d8;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.swiper-history .history-padding {
    height: 100%;
}
.swiper-history .history-item {
    position: absolute;
    height: 60px;
    width: 100%;
    top: 50%;
}
.swiper-history .swiper-slide:nth-child(odd) .history-text {
    margin-top: 100%;
}
.swiper-history .swiper-slide:nth-child(even) .history-text {
    margin-bottom: 100%;
}
.swiper-history .history-item h2 {
    width: 100%;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.5;
    color: #2F44AF;
    text-align: center;
    font-family: DINAlternate-Bold, DINAlternate;
    position: absolute;
}
.swiper-history .swiper-slide:nth-child(odd) h2 {
    top: -20px;
}
.swiper-history .swiper-slide:nth-child(even) h2 {
    top: 20px;
    /* margin-top: 20px; */
}
.swiper-history .history-text {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 15px 12px;
}
.swiper-history .history-text img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.swiper-history .history-text p {
    font-size: 14px;
    color: #7f7f7f;
    line-height: 1.5;
    min-height: 63px;
}
.swiper-history .swiper-slide-active .history-text {
    display: block;
    position: relative;
}
.swiper-history .swiper-slide:nth-child(odd) h2 {
    top: -110px;
    margin-top: 20px;
}
.swiper-history .swiper-slide span {
    display: block;
    width: 7px;
    height: 7px;
    background: #2F44AF;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.swiper-history .swiper-slide span {
    top: 0;
}
.about-honor {
    padding: 60px 0 40px;
}
.honor-swiper {
    height: 0;
    padding-bottom: 128%;
    position: relative;
    background: linear-gradient(180deg, #6C758D 0%, #414659 100%);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.honor-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.honor-swiper .honor-item {
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
}
.swiper-pagination-honor {
    text-align: center;
    margin-top: 20px;
}
.swiper-pagination-honor .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    opacity: 1;
    background: transparent;
    border: 1px solid #2F44AF;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.swiper-pagination-honor .swiper-pagination-bullet-active {
    width: 30px;
    background: #2F44AF;
}
.culture-list {
    margin: 0;
}
.culture-list .col-md-3 {
    padding: 0;
    border-right: 2px solid #fff;
}
.culture-list .col-md-3:nth-child(4) {
    border-right: 0;
}
.culture-list .col-md-3:nth-child(1) .culture-padding {
    height: 0;
    padding-bottom: 140%;
    position: relative;
}
.culture-list .col-md-3 .item-text {
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.culture-list .col-md-3 .item-text::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}
.culture-list .col-md-3 .item-text:hover: :after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(47, 68, 175, 0.8);
}
.culture-list .col-md-3:nth-child(1) .item-text {
    background: url(../images/culture1.png) no-repeat center;
    background-size: cover;
}
.culture-list .col-md-3:nth-child(2) .item-text {
    background: url(../images/culture2.jpg) no-repeat center;
    background-size: cover;
}
.culture-list .col-md-3:nth-child(3) .item-text {
    background: url(../images/culture3.png) no-repeat center;
    background-size: cover;
}
.culture-list .col-md-3:nth-child(4) .item-text {
    background: url(../images/culture4.jpg) no-repeat center;
    background-size: cover;
}
.culture-list .item-text .flex-box {
    width: 100%;
    z-index: 2;
}
.culture-list .item-text .en {
    font-size: 22px;
    font-weight: 700;
    font-family: Oswald-Regular;
    line-height: 1.1;
    color: #fff;
}
.culture-list .item-text .cn {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 30px;
}
.culture-list .item-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
.video-play {
    position: relative;
}
.video-play .play {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 60px !important;
    height: 60px;
    /* transform: translate(-50%, -50%); */
    cursor: pointer;
}
.video-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99;
}
.video-box video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    max-width: 88%;
}
#about1,
#about2,
#about3,
#about4,
#page2 {
    position: relative;
    height: 58px;
    width: 100%;
    margin-top: -58px;
    visibility: hidden;
}
/* å…³äºŽæˆ‘ä»¬é¡µ */

/* æŠ•èµ„è€…å…³ç³»é¡µ */
.investment-company {
    padding: 60px 0;
    background: #fff;
}
.investment-company .col-md-6 {
    margin-bottom: 60px;
}
.investment-company .col-md-6:nth-child(1),
.investment-company .col-md-6 .list-item:nth-child(1) {
    margin-bottom: 30px;
}
.investment-company .list-item {
    padding: 30px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.06);
    min-height: 50%;
}
.investment-company h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    margin-bottom: 10px;
}
.investment-company p {
    font-size: 16px;
    line-height: 1.5;
    color: #818181;
}
.investment-company .item-img {
    display: block;
    height: 100%;
}
.investment-company .investment-more {
    margin-top: 20px;
}
.director-section {
    padding: 60px 0;
    background: #f7fafc;
}
.director-item {
    padding: 50px 30px;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.06);
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
}
.director-item > img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}
.director-item h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.director-item .intro {
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.5;
    color: #7f7f7f;
    min-height: 96px;
    margin-bottom: 70px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.director-item .more {
    display: inline-block;
    padding-right: 40px;
    position: relative;
}
.director-item .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    bottom: 0;
}
.director-item .more:hover::after {
    width: 100%;
}
.director-item .more span {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
}
.director-item .more i {
    display: inline-block;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 0;
    top: 13px;
    background: url(../images/icon-right-zp-b.svg) no-repeat center;
    background-size: cover;
}
.swiper-pagination-director {
    text-align: center;
}
.director-section .swiper-pagination-director {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.director-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #2f44af;
    opacity: 1;
    background: transparent;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    margin: 0 4px;
}
.director-section .swiper-pagination-bullet-active {
    width: 30px;
    height: 12px;
    background: #2f44af;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.cg-section {
    padding: 60px 0;
}
.investment-section,
.cg-section {
    background: #fff;
}
.cg-list {
    margin: 60px 0 150px 0;
}
.cg-list .col-md-3 {
    padding: 0;
}
.cg-list .col-md-3:nth-child(1) .list-item {
    background: url(../images/cg-bg1.jpg) no-repeat center;
    background-size: cover;
}
.cg-list .col-md-3:nth-child(2) .list-item {
    background: url(../images/cg-bg2.png) no-repeat center;
    background-size: cover;
    margin-top: 55px;
}
.cg-list .col-md-3:nth-child(3) .list-item {
    background: url(../images/cg-bg3.png) no-repeat center;
    background-size: cover;
    margin-top: 15px;
}
.cg-list .col-md-3:nth-child(4) .list-item {
    background: url(../images/bg-4.png) no-repeat center;
    background-size: cover;
    margin-top: 58px;
}
.cg-list .col-md-3 .list-padding {
    height: 0;
    position: relative;
    padding-bottom: 134%;
}
.cg-list .col-md-3 .list-item {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px;
}
.cg-list .col-md-3 .list-item:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.cg-list .col-md-3 .list-item:hover:after {
    background: rgba(47, 68, 175, 0.9);
}
.cg-list .col-md-3 .list-item:hover p {
    height: auto;
}
.cg-list .col-md-3 .item-text {
    width: 100%;
    position: relative;
    z-index: 2;
}
.cg-list .col-md-3 h4 span {
    display: block;
    color: #fff;
    text-align: center;
}
.cg-list .col-md-3 h4 .en {
    font-size: 40px;
    font-weight: 700;
    font-family: Oswald-Regular;
    line-height: 1.2;
}
.cg-list .col-md-3 h4 .cn {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
}
.cg-list .col-md-3 p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    height: 1px;
    overflow: hidden;
}
.investment-tables .investment-table-list {
    padding: 60px 0 80px 0;
    background: #fff;
}
.investment-tables .investment-table-list.bg {
    background: #f7fafc;
}
.investment-table {
    width: 100%;
    box-shadow: 0px 0px 4px 0px rgba(220, 220, 220, 0.5);
}
.investment-table thead {
    background: #f0f3f5;
}
.investment-table tbody {
    background: #fff;
}
.investment-table td,
.investment-table th {
    padding: 25px;
    font-size: 20px;
    color: #000;
    line-height: 1.5;
}
.investment-table .td-c,
.investment-table tr td:nth-child(3),
.investment-table tr td:nth-child(2) {
    text-align: center;
}
.investment-table tr th {
    position: relative;
}
.investment-table tr th:nth-child(2) {
    text-align: center;
    width: 240px;
}
.investment-table tr th:nth-child(3) {
    text-align: center;
    width: 120px;
}
.investment-table th i {
    display: inline-block;
    width: 26px;
    height: 18px;
    background: url(../images/icon-paixu.svg) no-repeat center;
    background-size: contain;
    transform: translateY(2px);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
}
.investment-table th.SortDescCss i {
    background: url(../images/icon-desc.svg) no-repeat center;
    background-size: contain;
}
.investment-table th.SortAscCss i {
    background: url(../images/icon-normal.svg) no-repeat center;
    background-size: contain;
}
.investment-table td {
    font-size: 16px;
    color: #7f7f7f;
}
.investment-table tbody tr {
    border-bottom: 2px solid #f0f3f5;
}
.investment-table a.download {
    display: block;
    text-align: center;
}
.investment-table a.download .icon-down {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/icon-download.svg) no-repeat center;
    background-size: contain;
    vertical-align: middle;
}
.investment-table a.download:hover .icon-down {
    background: url(../images/icon-download-a.svg) no-repeat center;
    background-size: contain;
}
.investment-more {
    text-align: center;
    margin-top: 50px;
}
.investment-more .more {
    display: inline-block;
    padding-right: 40px;
    position: relative;
}
.investment-more .more::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 0;
    bottom: 0;
}
.investment-more .more:hover::after {
    width: 100%;
}
.investment-more .more span {
    display: inline-block;
    font-size: 14px;
    line-height: 36px;
}
.investment-more .more i {
    display: inline-block;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 0;
    top: 13px;
    background: url(../images/icon-right-zp-b.svg) no-repeat center;
    background-size: cover;
}
.investment-chaxun .row {
    margin: 0;
}
.investment-chaxun .col-md-6 {
    padding: 0;
}
.investment-chaxun .col-md-6:nth-child(2) {
    padding: 75px;
    background: url(/static/images/chaxun-bg.png) no-repeat center;
    background-size: cover;
}
.investment-chaxun .col-md-6 > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.investment-chaxun .title {
    text-align: left;
    margin-bottom: 50px;
}
.investment-chaxun .title span {
    font-size: 32px;
    line-height: 2;
    color: #fff;
    position: relative;
}
.investment-chaxun .title span:after {
    content: "";
    width: 40px;
    height: 3px;
    background: #254CD5;
    position: absolute;
    left: 0;
    bottom: -15px;
}
.investment-chaxun .chaxun-item {
    margin-bottom: 15px;
}
.investment-chaxun .chaxun-item h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}
.investment-chaxun .chaxun-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
/* æŠ•èµ„è€…å…³ç³»é¡µ */

/* æ¡ˆä¾‹åˆ—è¡¨ */
.case-main {
    margin-top: 310px;
    margin-bottom: 20px;
}
.case-box {
    min-height: 66vh;
    padding: 60px 0 80px;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
}
.case-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 62px;
}
.case-nav a {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    padding: 18px 30px;
    border-radius: 30px;
    margin: 0 20px;
}
.case-nav a.active {
    color: #fff;
    background: #2f44af;
}
.case-nav .nav-twoBox{
    margin-top: 25px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.case-nav .nav-twoBox li a{
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
}
.case-nav div.active .nav-twoBox{
    display: flex;
    justify-content: center;
}
.case-list li {
    margin-bottom: 20px;
}
.case-list .list-item {
    display: flex;
    padding: 20px;
    background: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.case-list .item-img {
    width: 200px;
    height: 200px;
    flex: none;
    overflow: hidden;
}
.case-list .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-list .item-text {
    padding: 10px 16px;
    flex: 1;
    overflow: hidden;
}
.case-list .item-text h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1919;
    margin-bottom: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-list .item-text .intro {
    font-size: 14px;
    line-height: 2;
    color: #808080;
    margin-bottom: 25px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2; /* è¡Œæ•° */
    -webkit-box-orient: vertical;
}
.case-list .item-text .time span {
    font-size: 14px;
    color: #808080;
    line-height: 36px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    padding-right: 40px;
    display: inline-block;
    position: relative;
}
.case-list .item-text .time span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}
.case-list .item-text .time i {
    position: absolute;
    right: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: url(/static/images/icon-more-case.svg) no-repeat center;
    background-size: cover;
}
.case-list .list-item:hover h4 {
    color: #254cd5;
}
.case-list .list-item:hover .item-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.case-list .list-item:hover {
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.case-list .item-text .time:hover span::after {
    width: 100%;
}
/* æ¡ˆä¾‹åˆ—è¡¨ */

/* æœç´¢ç»“æžœé¡µ */
.search-main {
    padding: 40px 0;
}
.search-main .container {
    max-width: 1000px;
}
.search-main .page-title > p {
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
}
.search-main .page-title > p strong {
    color: #2f44af;
}
.search-main .form-search {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.search-main .form-search input {
    width: 100%;
    line-height: 75px;
    border: 1px solid #ccc;
    padding: 0 55px 0 15px;
}
.search-main .form-search button {
    position: absolute;
    right: 30px;
    top: 25px;
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    font-size: 20px;
    color: #333;
    background: url(/static/images/icon-searchs.svg) no-repeat center;
    background-size: contain;
    padding: 0;
}
.search-banner {
    height: 680px;
    width: 100%;
    position: relative;
}
.search-banner .page-banner {
    width: 100%;
    height: 100%;
}
.search-main .search-list li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ececec;
}
.search-main .search-list .item-text {
    padding: 0;
}
.search-list li p.sort {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
}
.case-list .item-text h4 {
    margin-bottom: 15px;
}
.case-list .item-text .sort {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

/* åŸŽå¸‚æœåŠ¡ä¸šåŠ¡ */
.bus-section .page-banner {
    height: 680px;
}
.bus-section .title .cn {
    font-size: 32px;
    margin-bottom: 10px;
}
.bus-section .title .en {
    font-size: 27px;
}

.bussness-contry {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.bussness-contry-top {
    margin-top: -120px;
}
.bussness-contry-top .col-md-6 {
    padding: 0;
}
.bussness-contry-top .col-md-6:nth-child(1) {
    padding-left: 78px;
    padding-bottom: 78px;
}
.bussness-contry-top .col-md-6:last-child {
    display: flex;
    align-items: center;
}
.bussness-contry-top .col-md-6 .text-box {
    padding: 140px 90px;
}
.bussness-contry-top .title {
    margin-bottom: 35px;
}
.bussness-contry-top .text-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
.bussness-contry-ess .col-md-3,
.bussness-contry-ess .col-md-4,
.bussness-contry-ess .col-md-9 {
    padding: 0;
    
 
    
}
.bussness-contry-ess .row {
    margin: 0;
    margin-right: -2px;
}
.bussness-contry-ess .col-md-3 .title {
    padding: 35px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.bussness-contry-top .title .en,
.bussness-contry-ess .title .en {
    font-size: 30px;
    font-weight: 700;
    font-family: Oswald-Regular;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}
.bussness-contry-top .title .cn,
.bussness-contry-ess .title .cn {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}
.bussness-contry-ess .col-md-4 {
    padding: 40px 0;
    border: 1px solid #e5e5e5;
    text-align: center;
    margin: 0 -1px -1px 0;
}
.bussness-contry-ess .col-md-4 img {
    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 15px;
}
.bussness-contry-ess .col-md-4 p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}
.business-huanwei {
    background: url(/static/images/bus-bg2.png) no-repeat left #2F4EE7;
    background-size: 50% 100%;
    padding: 100px 0;
}
.business-huanwei h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 100px;
    padding-left: 100px;
    position: relative;
}
.business-huanwei h2::after {
    content: "";
    width: 3px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 84px;
}
.business-huanwei .huanwei-list .list-item {
    padding-left: 80px;
    position: relative;
    margin-bottom: 60px;
}
.huanwei-list .list-item h4 {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
}
.huanwei-list .list-item p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}
.huanwei-list .list-item img {
    display: block;
    position: absolute;
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
}
.business-info-list {
    padding: 60px 0;
    background: #F7FAFC;
}
.business-info-list .col-md-4 {
    margin-bottom: 25px;
}
.business-info-list .list-item {
    height: 100%;
    padding: 50px 40px;
    background: #fff;
    transition: all .5s;
}
.business-info-list .list-item i {
    display: block;
    width: 80px;
    height: 80px;
    background: #ccc;
    margin-bottom: 25px;
    border-radius: 50%;
}
.business-info-list .list-item img {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 50%;
}
.business-info-list .list-item h4 {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}
.business-info-list .list-item p {
    font-size: 14px;
    color: #808080;
    line-height: 1.5;
    margin-bottom: 10px;
}
.business-info-list .list-item:hover {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
}
/*å…è´£å£°æ˜Ž*/
.mz-box{
        position: fixed;
        top: 0;
        left: 0;
        background: rgb(0 0 0 / 50%);
        z-index: 99;
        width: 100%;
        height: 100%;
    }
    .mz-box .box-cent{
        background: #FFF;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        padding: 40px 20px;
        max-width: 660px;
        min-width: 360px;
    }
    .mz-box .box-cent .cent1 h2{
        color: #000;
        text-align: center;
        font-family: PingFang SC;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 34px;
    }
    .mz-box .box-cent .cent1 p{
        color: #7E7E7E;
        font-family: PingFang SC;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin: 10px 0;
    }
     /* .mz-box .box-cent .cent1 p:not(:last-child){
        margin-bottom: 20px;
     } */
    .mz-box .box-cent .cent1 p a{
        color: #254CD5;
    }
    .mz-box .box-cent .cent1 .cent1-tit{
        margin-top: 30px;
        max-height: 250px;
        overflow-y: auto;
    }
    /* .mz-box .box-cent .cent1 .cent1-tit .tit-2{
        margin-top: 20px;
    } */
    .mz-box .box-cent .cent1 .cent1-tit .tit-1 h3{
        color: #000;
        font-family: PingFang SC;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .mz-box .box-cent .cent1 .cent1-tit .tit-ul li{
        color: #7E7E7E;
        font-family: PingFang SC;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
    .mz-box .box-cent .cent-but{
        margin-top: 20px;
        text-align: right;
    }
    .mz-box .box-cent .cent-but button{
        width: 120px;
        height: 40px;
        color: #353535;
        text-align: center;
        font-family: PingFang SC;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        border-radius: 4px;
        background: #F0F0F0;
    }
    .mz-box .box-cent .cent-but button.but2{
        background: #254CD5;
        color: #fff;
        margin-left: 14px;
    }
    .mz-box .box-cent .cent2{
        display: none;
    }
    .mz-box .box-cent .cent3{
        display: none;
    }
/*å…è´£å£°æ˜Ž*/

@media (max-width: 1000px){
    .case-nav .nav-twoBox li a {
        display: inline-block;
        padding: 10px 10px;
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .bus-section .page-banner {
        height: 360px;
    }
    .bussness-contry-top .col-md-6:nth-child(1) {
        padding: 0 15px 15px 15px;
    }
    .bussness-contry-top .col-md-6:nth-child(1) img {
        max-width: 100%;
    }
    .bussness-contry-top .col-md-6 .text-box {
        padding: 0 15px 15px 15px;
    }
    .bussness-contry-top {
        margin-top: -20px;
    }
    .bussness-contry-ess .col-md-4 {
        width: 33.33333%;
        padding: 20px 0;
    }
        .bussness-contry-ess .col-md-4 {
        width: calc(33.33333% - 0px);
        padding: 20px 0;
        display: inline-block;
        margin: 0;
        float: left;
    }
    .bussness-contry-ess .col-md-4 img {
        width: 48px;
        height: 48px;
    }
    .bussness-contry-ess .col-md-4 p {
        font-size: 14px;
    }
    .bussness-contry-ess .col-md-3 .title {
        position: relative;
    }
    .business-huanwei {
        background-size: cover;
        padding: 30px 0;
    }
    .business-huanwei h2 {
        margin-bottom: 30px;
    }
    .huanwei-list .list-item img {
        left: 0px;
        width: 60px;
        height: 60px;
    }
    .business-huanwei .huanwei-list .list-item {
        margin-bottom: 20px;
    }
    .business-info-list {
        padding: 30px 0;
    }
    .business-info-list .list-item {
        padding: 20px 15px;
    }
    .business-info-list .list-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    .case-nav a {
        font-size: 14px;
        padding: 10px 15px;
        margin: 0 5px;
    }
    .case-nav .nav-twoBox li a {
        padding: 8px 5px;
        font-size: 12px;
    }
    .case-nav div.active .nav-twoBox{
        flex-wrap: wrap;
        margin-top: 13px;
    }
    .case-nav {
        padding-bottom: 70px;
    }
}
/* åŸŽå¸‚æœåŠ¡ä¸šåŠ¡ */

/* å±åºŸå¤„ç½®ä¸šåŠ¡ */
.bus-weifei {
    padding: 60px 0 150px 0;
}
.bus-weifei .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}
.bus-weifei .col-md-5 > p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 70px;
}
.weihai-list .list-item {
    margin-bottom: 55px;
}
.weihai-list .list-item img {
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 10px;
}
.weihai-list .list-item h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}
.weihai-list .list-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.bus-weifei-img {
    padding-left: 20%;
    position: relative;
}
.bus-weifei-img img {
    width: 100%;
}
.bus-weifei-img .psa {
    position: absolute;
    left: 0;
    bottom: -90px;
    width: 70%;
}
.bus-gongyi {
    padding: 60px 0;
}
.bus-gongyi.bg1 {
    background: url(/static/images/bus2-bg3.png) no-repeat center;
    background-size: cover;
}
.bus-gongyi.bg2 {
    background: url(/static/images/bus2-bg4.jpg) no-repeat center;
    background-size: cover;
}
.bus-gongyi.bg3 {
    background: url(/static/images/bus2-bg6.jpg) no-repeat center;
    background-size: cover;
}
.bus-gongyi.bg4 {
    background: url(/static/images/bus2-bg7.jpg) no-repeat center;
    background-size: cover;
}
.bus-gongyi .container > .row > .col-md-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.gongyi-intro {
    display: none;
    min-height: 190px;
}
.gongyi-intro h4 {
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
}
.gongyi-intro.show-this {
    display: block;
}
.gongyi-intro p {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
.gongyi-list {
    padding: 0 100px;
}
.gongyi-list .list-item {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}
.gongyi-list .list-item i {
    display: block;
    margin: 0 auto 10px auto;
    width: 90px;
    height: 90px;
    background: url(/static/images/icon-gy1.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item .icon-gy1 {
    background: url(/static/images/icon-gy1.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item .icon-gy2 {
    background: url(/static/images/icon-gy2.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item .icon-gy3 {
    background: url(/static/images/icon-gy3.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item .icon-gy4 {
    background: url(/static/images/icon-gy4.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item.active .icon-gy1 {
    background: url(/static/images/icon-gy1-a.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item.active .icon-gy2 {
    background: url(/static/images/icon-gy2-a.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item.active .icon-gy3 {
    background: url(/static/images/icon-gy3-a.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item.active .icon-gy4 {
    background: url(/static/images/icon-gy4-a.svg) no-repeat center;
    background-size: contain;
}
.gongyi-list .list-item p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width: 768px){
    .gongyi-list {
        padding: 0 15px;
        width: 100%;
    }
    .gongyi-list .list-item {
        width: 25%;
        margin-bottom: 0;
        padding: 0 5px;
    }
    .gongyi-list .list-item i {
        width: 60px;
        height: 60px;
    }
    .gongyi-list .list-item p {
        font-size: 16px;
    }
    .bus-section .page-banner {
        height: 360px;
    }
    .bus-weifei {
        padding: 30px 0 60px 0;
    }
    .bus-weifei .title {
        font-size: 24px;
    }
    .bus-weifei .col-md-5 > p {
        margin-bottom: 40px;
    }
    .weihai-list .list-item {
        margin-bottom: 25px;
    }
    .bus-weifei-img {
        padding-left: 15%;
    }
    .bus-weifei-img .psa {
        width: 85%;
        bottom: -30px;
    }
    .bus-gongyi {
        padding: 30px 0;
    }
}


.bussness-contry-ess .col-md-3{ min-height:465px; }
