/* html,
body {
    position: relative;
    height: 100%;
} */


/* body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
} */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    /* 通过改变animation-timing-function 制作弹性切换效果 */
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0 !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0 !important;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: '';
}

.swiper-button-next {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background: url('/assets/img/angle-right.png') center 50%/50% 50% no-repeat;
}

.swiper-button-prev {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background: url('/assets/img/angle-left.png') center 50%/50% 50% no-repeat;
}

.swiper-slide {
    /* text-align: center; */
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: flex-start;
    height: 450px;
    /* min-width: 1234px; */
    width: 100% !important;
}

.swiper-pagination {
    position: relative;
    margin-bottom: 30px;
    /* bottom: 60px;
    z-index: 100; */
}

.swiper-pagination-bullet {
    background: #00a0e9;
    margin-left: 4px;
    margin-right: 4px;
    width: 17px;
    height: 17px;
    opacity: 1;
    margin-bottom: 20px;
}

.swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
    background: #FFF;
    border: 6px solid #00a0e9;
    margin-bottom: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
}

.pc-banner {
    height: 400px;
    min-width: 1234px;
    /* width: 80%; */
    margin-top: 70px;
}

.banner-img {
    width: 586px;
    height: 353px;
    margin-left: 50px;
}

.left-desc {
    width: 518px;
    /* min-width: 414px; */
}

.industry {
    font-size: 20px;
    color: #666;
    /* padding-right: 180px; */
    cursor: pointer;
}

.industry span:nth-of-type(even) {
    font-size: 24px;
    position: relative;
    top: -2px;
    color: #ededed;
    margin: 0 6px;
}

.industry span:nth-of-type(Odd) {
    white-space: nowrap;
}

.ind-title {
    color: #2695F0;
    font-weight: bold;
}

.industry-title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.industry-subtitle {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.text-desc {
    font-size: 20px;
    color: #333;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    max-height: 400px;
}