/* 首页 */
.full-page-swiper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.full-page-swiper .swiper-slide {
    height: 100%;
}

.full-page-swiper .swiper-slide.full-finally-slide {
    height: 150px;
}

/* 首页-首屏 */
.index-page .banner-swiper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.index-page .banner-swiper .swiper-pagination-banner {
    position: absolute;
    right: 3%;
    left: auto;
    top: 50%;
    bottom: auto;
    z-index: 2;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    width: auto;
}

.index-page .banner-swiper .index-banner-bullet {
    height: 50px;
    width: 2px;
    background-color: rgba(255, 255, 255, .5);
    margin: 10px 0;
    cursor: pointer;
}

.index-page .banner-swiper .active-bullet {
    background-color: #f7ac47;
}

.index-page .banner-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-page .banner-swiper .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.index-page .banner-swiper .main-content {
    position: relative;
    z-index: 2;
    width: 75%;
    color: #fff;
}

.index-page .banner-swiper .s-title {
    margin-bottom: 20px;
    font-size: calc(30rem / 16);
}

.index-page .banner-swiper .b-title {
    font-size: calc(90rem / 16);
}

.index-page .banner-swiper .common-btn {
    margin-top: 80px;
}

.index-page .scroll-tips {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.index-page .scroll-tips .icon {
    position: relative;
    animation: scrollTips 1s infinite alternate;
}

.index-page .scroll-tips img {
    margin-top: 5px;
}

.index-page .scroll-tips .icon::after,
.index-page .scroll-tips .icon::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    display: inline-block;
    width: 10px;
    height: 5px;
    background: url('../images/scroll_arrow.png') no-repeat center/cover;
    animation: scrollArrow 1.5s infinite;
}

.index-page .scroll-tips .icon::before {
    animation-delay: .5s;
}

/* 首页-第二屏 */
.index-page .swiper-slide.solution {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
}

.index-page .solution-container {
    /* width: 87.5%; */
    /* margin-left: 12.5%; */
    width: 100%;
    margin-top: 80px;
}

.index-page .solution-container .top-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* margin-right: 12.5%; */
}

.index-page .solution-container .top-content .title {
    font-size: calc(52rem / 16);
}

.index-page .solution-container .right-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.index-page .solution-container .right-nav li {
    position: relative;
    padding: 20px 0;
    margin-left: 30px;
    cursor: pointer;
    transition: all .5s;
    overflow: hidden;
}

.index-page .solution-container .right-nav li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 150%);
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #e4962e;
    border-radius: 50%;
    transition: all .5s;
}

.index-page .solution-container .right-nav li:hover {
    color: #e4962e;
}

.index-page .solution-container .right-nav li:hover::after {
    transform: translate(-50%, -150%);
}

.index-page .solution-container .right-nav li.active {
    color: #e4962e;
}

.index-page .solution-container .right-nav li.active::after {
    transform: translate(-50%, -150%);
}

.index-page .solution-main {
    position: relative;
    height: calc(26.042vw + 100px);
    overflow: hidden;
    margin-top: 30px;
    margin-left: 12.5%;
    /* background-color: #fff; */
}

.index-page .solution-main .solution-item {
    position: absolute;
    transform: translateX(100%) scale(.8);
    /* transform-origin: right; */
    display: flex;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.index-page .solution-main .solution-item.active {
    transform: translateX(0) scale(.8);
}

.index-page .solution-main .solution-item.active.put-down {
    transform: translateX(0) scale(1);
}

.index-page .solution-main .solution-item.active.put-down:hover .pic img {
    transform: scale(1.2);
}

.index-page .solution-main .pic {
    width: 51%;
    overflow: hidden;
}

.index-page .solution-main .pic img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .solution-main .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
    padding: calc(3.125vw + 20px) calc(3.125vw + 10px);
    background-color: #fff;
}

.index-page .solution-main .content .s-title {
    font-size: calc(24rem / 16);
    color: #333333;
}

.index-page .solution-main .content .text {
    margin-top: 30px;
    font-size: calc(42rem / 16);
    color: #001457;
}

/* 首页-第三屏 */
.index-page .swiper-slide.channel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-page .channel-container {
    width: 100%;
    margin-top: calc(2.083vw + 40px);
}

.index-page .channel-container .title {
    font-size: calc(52rem / 16);
    text-align: center;
}

.index-page .channel-main {
    display: flex;
    height: calc(15.625vw + 200px);
    padding: 0 12.5%;
    /* margin-top: calc(2.083vw + 20px); */
    margin-top: 80px;
    border-top: 1px solid #ebebeb;
}

.index-page .channel-main .left-content,
.index-page .channel-main .right-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.index-page .channel-main .left-content {
    padding-right: 50px;
    border-right: 1px solid #ebebeb;
}

.index-page .channel-main .right-content {
    padding-left: 50px;
}

.index-page .channel-main .b-title {
    margin-top: calc(1.042vw + 10px);
    font-size: calc(42rem / 16);
    color: #001457;
}

.index-page .channel-main .content {
    margin-top: calc(1.042vw + 20px);
    font-size: calc(20rem / 16);
    color: #4c4c4c;
}

.index-page .channel-main .content p {
    margin-bottom: calc(1.042vw + 10px);
}

.index-page .channel-main .common-btn {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

/* 首页-第四屏 */
.index-page .swiper-slide.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.index-page .about-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 140px;
}

.index-page .about-main {
    width: 50%;
    margin: 0 auto;
}

.index-page .about-main .title {
    font-size: calc(52rem / 16);
    text-align: center;
}

.index-page .about-main .text {
    margin-top: 20px;
    font-size: calc(24rem / 16);
    line-height: calc(38rem / 16);
    text-align: center;
}

.index-page .about-main .video-btn {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
}

.index-page .about-main .video-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: url('../images/video_play_btn.png') no-repeat center/cover;
}

.index-page .about-main .video-btn img {
    width: 100%;
    height: 100%;
    animation: fullRotate linear 2s infinite;
}

.index-page .about-container .data-content {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.index-page .about-container .data-item {
    text-align: center;
}

.index-page .about-container .data-num {
    font-size: calc(60rem / 16);
}

.index-page .about-container .text {
    font-size: calc(20rem / 16);
}

.index-page .swiper-slide.about .index-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 40px;
    color: #666666;
    font-size: 14px;
}

.index-page .swiper-slide.about .index-footer a {
    color: #666666;
    font-size: 14px;
}

.index-page .swiper-slide.about .index-footer .right a {
    margin-left: 25px;
}