/**
 * 首页轮播图
 */
.index-banner .swiper-wrapper {
    transition-delay: .3s;
}

.index-banner .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.index-banner .swiper-slide .video-js {
    width: 100%;
    height: 670px;
    -o-object-fit: cover;
    object-fit: cover;
    display: none;
    background-color: transparent;
}

.index-banner .swiper-slide img {
    display: block;
    width: 100%;
    max-height: 670px;
    object-fit: cover;
}

.index-banner .swiper-slide .swiper-text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
}

.index-banner .swiper-slide .swiper-text h3 {
    color: #132b3a;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    transform: translateY(60px);
}

.index-banner .swiper-slide .swiper-text p {
    font-size: 16px;
    font-weight: 500;
    color: #132b3a;
    line-height: 26px;
    margin: 16px 0 20px;
    transform: translateY(90px);
}

.index-banner .swiper-slide .swiper-text a {
    width: 116px;
    height: 36px;
    color: #ffffff;
    display: block;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    line-height: 36px;
    transform: translateY(120px);
    background: linear-gradient(to bottom, #02bff6, #1880fb);
}

.index-banner .swiper-slide .swiper-text h3,
.index-banner .swiper-slide .swiper-text p,
.index-banner .swiper-slide .swiper-text a {
    opacity: 0;
    transition: all .4s;
}

.index-banner .swiper-slide.ani-slide .swiper-text h3,
.index-banner .swiper-slide.ani-slide .swiper-text p,
.index-banner .swiper-slide.ani-slide .swiper-text a {
    opacity: 1;
    transform: translateY(0);
}

.index-banner .swiper-btns {
    width: 100%;
    height: 178px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 99;
    background: rgba(255, 255, 255, 0.6);
}

.index-banner .swiper-btns .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    padding: 26px 0 32px;
}

.index-banner .swiper-btns .list {
    display: flex;
    justify-content: space-between;
}

.index-banner .swiper-btns .list .item {
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.index-banner .swiper-btns .list .item .icon {
    margin-right: 10px;
    width: 70px;
    height: 70px;
    background-repeat:no-repeat;
    background-size:100% auto;
    background-position:top;
    animation: smo-service1 .5s steps(23) forwards;
}

.index-banner .swiper-btns .list .item:hover .icon,
.index-banner .swiper-btns .list .item.active .icon{
    animation: smo-service2 .5s steps(23) forwards;
}

@keyframes smo-service1 {
    0% {
        background-position:0 -1610px;
    }
    to {
        background-position:0 0;
    }
}
@keyframes smo-service2 {
    0% {
        background-position:0 0;
    }
    to {
        background-position:0 -1610px;
    }
}

.index-banner .swiper-btns .list .item h2 {
    font-size: 16px;
    font-weight: 500;
}

.index-banner .swiper-btns .list .item:hover h2,
.index-banner .swiper-btns .list .item.active h2 {
    color: #1b82f9;
}

.index-banner .swiper-btns .list .item:hover::after,
.index-banner .swiper-btns .list .item.active::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #1b82f9;
}

@media (min-width: 1280px) {
    .index-banner .swiper-btns {
        display: block;
    }
    .index-banner .swiper-slide .video-js {
        display: block;
    }

    .index-banner .swiper-slide .swiper-text {
        padding: 220px 0 0;
        display: block;
    }

    .index-banner .swiper-slide .swiper-text h3 {
        font-size: 54px;
        line-height: 64px;
    }

    .index-banner .swiper-slide .swiper-text p {
        font-size: 18px;
        line-height: 28px;
    }

    .index-banner .swiper-slide .swiper-text a {
        line-height: 40px;
        height: 40px;
        font-size: 18px;
    }

    .index-banner .swiper-slide img {
        display: none;
    }
}



.index-title h3 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 38px;
}

.index-title p {
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    margin: 5px 0 0;
}

.index-title p a {
    color: #0e6fff;
}

@media (min-width: 992px) {
    .index-title h3 {
        font-size: 30px;
        line-height: 44px;
    }
    .index-title p {
        font-size: 20px;
        line-height: 34px;
    }
}



.product-container .left {
    width: 100%;
}

.product-container .left h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
}

.product-container .left h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin: 25px 0 36px;
}

.product-container .left .desc {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 34px;
}

.product-container .left .icons {
    width: 100%;
    min-height: 130px;
    background: #ffffff;
    display: flex;
    border-radius: 6px;
}

.product-container .left a.more {
    display: block;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    margin: 42px 0 0;
    align-items: center;
    justify-content: center;
    background: #1b82fb;
}

.product-container .left a.more i {
    display: block;
    width: 34px;
    margin-left: 15px;
    height: 11px;
    background: url(../images/jt-icon.png);
}

@media (min-width: 992px) {
    .product-container {
        display: flex;
    }

    .product-container .left {
        width: 470px;
        flex: 0 0 auto;
    }

    .product-container .left h3 {
        font-size: 30px;
        line-height: 36px;
    }

    .product-container .left h4 {
        font-size: 24px;
        line-height: 34px;
    }
}




.index-product {
    width: 100%;
    padding: 60px 0 80px;
    background: url(../images/index-product.jpg) no-repeat center;
    background-size: cover;
}

.index-product .app-product-container .app-product-left h3.tit {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
}

.index-product .app-product-container .app-product-left h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin: 30px 0;   
}

.index-product .app-product-container .app-product-left .desc {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 30px;
}

.index-product .app-product-container .app-product-left .icons {
    width: 100%;
    min-height: 130px;
    background: #ffffff;
    display: flex;
    border-radius: 6px;
}

.index-product .app-product-container .app-product-left a {
    display: block;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    margin: 40px 0 0;
    align-items: center;
    justify-content: center;
    background: #1b82fb;
}

.index-product .app-product-container .app-product-left a i {
    display: block;
    width: 34px;
    margin-left: 15px;
    height: 11px;
    background: url(../images/jt-icon.png);
}

.index-product .app-product-container .app-product-right {
    padding: 30px 0 0;
}

.index-product .app-product-container .app-product-right img {
    width: 100%;
    display: block;
}

.index-app-seo {
    overflow: hidden;
}

.index-app-seo .index-title{
    padding: 0 0 60px;
}

.index-app-seo .index-seo-image {
    position: relative;
    width: 100%;
}

.index-app-seo .index-seo-image img {
    position: relative;
    z-index: 8;
    transition: all .5s ease-in-out;
}

.index-app-seo .index-seo-image img:nth-child(2) {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.index-app-seo .index-seo-image:hover img:nth-child(1) {
    transform: translateY(-10px);
}
.index-app-seo .index-seo-image:hover img:nth-child(2) {
    transform: translateY(10px);
}

.index-smo-image {
    position: relative;
    width: 100%;
}

.index-smo-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
    transition: all .5s ease-in-out;
}

.index-smo-image img:nth-child(1) {
    position: relative;
    z-index: 1;
}

.index-smo-image img:nth-child(2) {
    z-index: 2;
}

.index-smo-image:hover img:nth-child(1),
.index-smo-image:hover img:nth-child(3),
.index-smo-image:hover img:nth-child(4) {
    transform: translateY(-10px);
}
.index-smo-image:hover img:nth-child(2),
.index-smo-image:hover img:nth-child(5),
.index-smo-image:hover img:nth-child(6) {
    transform: translateY(10px);
}


.index-video-image {
    position: relative;
    width: 100%;
}

.index-video-image img {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .5s ease-in-out;
}

.index-video-image img:nth-child(1) {
    position: relative;
    z-index: 1;
}
.index-video-image img:nth-child(2) {
    z-index: 2;
}

.index-video-image img:nth-child(4),
.index-video-image img:nth-child(3) {
    z-index: 3;
}

.index-video-image:hover img:nth-child(1){
    transform: translateY(-10px);
}
.index-video-image:hover img:nth-child(2){
    transform: translateY(10px);
}
.index-video-image:hover img:nth-child(3){
    transform: translateY(-20px);
}
.index-video-image:hover img:nth-child(4){
    transform: translateY(20px);
}


.index-case-image {
    width: 100%;
    position: relative;
}

.index-case-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: block;
    transition: all .5s ease-in-out;
}

.index-case-image img:nth-child(1) {
    position: relative;
    z-index: 1;
}

.index-case-image img:nth-child(2) {
    z-index: 2;
}

.index-case-image img:nth-child(3) {
    z-index: 3;
}

.index-case-image:hover img:nth-child(1){
    transform: translateY(-10px);
}

.index-case-image:hover img:nth-child(3) {
    transform: translateX(-20px);
}

.index-case-image:hover img:nth-child(2) {
    transform: translateY(10px);
}

.index-app-smo {
    padding: 100px 0 0;
    overflow: hidden;
}

.index-app-seo .icons {
    padding: 30px 0;
}

.index-app-seo .icons .item {
    padding: 0 15px;
    flex: 1;
}

.index-app-seo .icons .item h3 {
    font-weight: 600;
    color: #5c5a88;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.index-app-seo .icons .item p {
    font-size: 12px;
    color: #a0a0a0;
    text-align: center;
    line-height: 22px;
}

.index-app-seo .icons .item img {
    display: block;
    margin: 0 auto;
    height: 55px;
}

.index-app-smo .icons {
    flex-wrap: wrap;
    padding: 40px 20px 0;
}

.index-app-smo .icons .item {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin: 0 0 20px;
}

.index-app-smo .icons .item .icon {
    width: 45px;
    height: 48px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.index-app-smo .icons .item .text {
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    color: #5c5a88;
    padding: 4px 0;
}

@media (min-width: 992px) {
    .index-product .app-product-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .index-product .app-product-container .app-product-left {
        width: 470px;
        flex: 0 0 auto;
    }

    .index-product .app-product-container .app-product-right {
        margin-left: 25px;
    }

    .index-product .app-product-container .app-product-left h3.tit {
        font-size: 30px;
        line-height: 36px;
    }

    .index-product .app-product-container .app-product-left h4 {
        font-size: 24px;
        line-height: 34px;
    }

    .index-app-seo .icons .item {
        padding: 0 35px;
    }

    .index-app-smo .icons .item {
        padding: 0 20px;
    }
}

.index-app-seo .right > img {
    display: none;
}

@media (min-width: 1280px) {
    .index-product {
        padding: 80px 0 100px;
    }
}




.index-product .index-seo {
    padding: 77px 0 0;
}

.index-product .index-seo .left h4 {
    margin: 35px 0 22px;
}

.index-product .index-seo .left .desc {
    margin: 0 0 20px;
}

.index-product .index-seo .icons {
    padding: 30px 0;
}

.index-product .index-seo .icons .item {
    padding: 0 15px;
    flex: 1;
}

.index-product .index-seo .icons .item h3 {
    font-weight: 600;
    color: #5c5a88;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.index-product .index-seo .icons .item p {
    font-size: 12px;
    color: #a0a0a0;
    text-align: center;
    line-height: 22px;
}

.index-product .index-seo .icons .item img {
    display: block;
    margin: 0 auto;
    height: 55px;
}

.index-product .index-seo .left a.more {
    margin: 22px 0 0;
}

.index-product .index-seo .right img {
    width: 100%;
}

@media (min-width: 992px) {
    .index-product .index-seo {
        align-items: center;
    }

    .index-product .index-seo .icons .item {
        padding: 0 35px;
    }

    .index-product .index-seo .right {
        margin-left: 30px;
    }
}

@media (min-width: 1280px) {
    .index-product .index-seo {
        align-items: normal;
    }

    .index-product .index-seo .right {
        margin-left: auto;
        position: relative;
        flex: 1;
    }

    .index-product .index-seo .right img {
        position: absolute;
        width: auto;
        bottom: 0;
        right: 0;
    }
}



.index-product .index-smo {
    margin: 58px 0 0;
}

.index-product .index-smo .left h4 {
    margin: 38px 0 22px;
}

.index-product .index-smo .desc {
    margin: 0 0 17px;
}

.index-product .index-smo .right {
    margin: 30px 0 0;
}

.index-product .index-smo .right img {
    width: 100%;
}

.index-product .index-smo .left a.more {
    margin: 40px 0 0;
}

.index-product .index-smo .left .icons {
    flex-wrap: wrap;
    padding: 40px 20px 0;
}

.index-product .index-smo .left .icons .item {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin: 0 0 20px;
}

.index-product .index-smo .left .icons .item .icon {
    width: 45px;
    height: 48px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.index-product .index-smo .left .icons .item .text {
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    color: #5c5a88;
    padding: 4px 0;
}

@media (min-width: 992px) {
    .index-product .index-smo {
        align-items: center;
    }

    .index-product .index-smo .left .icons .item {
        padding: 0 20px;
    }

    .index-product .index-smo .right {
        margin: 0 0 0 30px;
    }
}

@media (min-width: 1280px) {
    .index-product .index-smo {
        align-items: normal;
    }

    .index-product .index-smo .right {
        margin-left: auto;
    }

    .index-product .index-smo .right img {
        width: auto;
    }
}



.index-aso {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: url(../images/index-aso-bg.png);
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: center right;
    transition: all .5s ease-in-out;
    background-color: #ecf6ff;
}

.index-aso .index-aso-bg1,
.index-aso .index-aso-bg2,
.index-aso .index-aso-bg3,
.index-aso .index-aso-bg4 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: center right;

}

.index-aso .index-aso-bg1::after,
.index-aso .index-aso-bg2::after,
.index-aso .index-aso-bg3::after,
.index-aso .index-aso-bg4::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: auto 110%;
    background-repeat: no-repeat;
    background-position: center right;
    transition: all .5s ease-in-out;
}


.index-aso .index-aso-bg1::after {
    background-image: url(../images/index-aso1.png);
}
.index-aso .index-aso-bg2::after {
    background-image: url(../images/index-aso2.png);
}
.index-aso .index-aso-bg3::after {
    background-image: url(../images/index-aso3.png);
}
.index-aso .index-aso-bg4::after {
    background-image: url(../images/index-aso4.png);
}

.index-aso:hover,
.index-aso:hover .index-aso-bg1::after,
.index-aso:hover .index-aso-bg2::after,
.index-aso:hover .index-aso-bg3::after,
.index-aso:hover .index-aso-bg4::after{
    background-position: right bottom;
}

.index-aso:hover .index-aso-bg2::after,
.index-aso:hover .index-aso-bg3::after {
    transform: translateX(-10px);
    background-position: right bottom;
}


.index-aso .icons {
    align-items: center;
}

.index-aso .icons .item {
    padding: 0 15px;
    flex: 1;
}

.index-aso .icons .item h3 {
    font-weight: 600;
    color: #5c5a88;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.index-aso .icons .item img {
    display: block;
    margin: 0 auto;
    height: 55px;
}

@media (min-width: 992px) {
    .index-aso .icons .item {
        padding: 0 35px;
    }
}



.index-video {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: url(../images/index-video.jpg) no-repeat center;
    background-size: cover;
}

.index-video .right {
    margin: 30px 0 0;
}

.index-video .product-container .left .icons {
    height: 133px;
}

.index-video .icons {
    align-items: center;
}

.index-video .icons .item {
    padding: 0 15px;
    flex: 1;
}

.index-video .icons .item h3 {
    font-weight: 600;
    color: #5c5a88;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
}

.index-video .icons .item img {
    display: block;
    margin: 0 auto;
    height: 55px;
}

.index-video .icons .item p {
    font-size: 12px;
    color: #a0a0a0;
    text-align: center;
    line-height: 22px;
}

@media (min-width: 992px) {
    .index-video .product-container {
        align-items: center;
    }

    .index-video .icons .item {
        padding: 0 35px;
    }

    .index-video .right {
        margin: 0 0 0 30px;
    }
}

@media (min-width: 1280px) {
    .index-video .product-container {
        align-items: normal;
    }
}



.index-advantage {
    padding: 60px 0 80px;
    overflow: hidden;
}

.index-advantage-content {
    padding: 104px 0 0;
}

.index-advantage-content .row {
    margin: 0 -7.5px;
}

.index-advantage-content .row .col {
    padding: 0 7.5px;
    margin-bottom: 104px;
}

.index-advantage-content .row .col:nth-child(3),
.index-advantage-content .row .col:nth-child(4) {
    margin-bottom: 0;
}

.index-advantage-content .item {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    padding: 72px 0 0;
    background: #e9f1fe;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.index-advantage-content .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
}

.index-advantage-content .item:hover .desc {
    color: #1a83f9;
}

.index-advantage-content .item:hover a {
    background: #1a83f9;
    color: #ffffff;
}

.index-advantage-content .item h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
}

.index-advantage-content .item .desc {
    color: #868c96;
    line-height: 26px;
    margin: 20px 0 0;
    transition: all 0.3s;
}

.index-advantage-content .item a {
    display: block;
    width: 138px;
    height: 30px;
    color: #1a83f9;
    border-radius: 6px;
    margin: 12px auto 0;
    line-height: 28px;
    border: 1px solid #1a83f9;
}

.index-advantage-content .item .icon {
    position: absolute;
    width: 100%;
    height: 138px;
    display: block;
    top: -85px;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.3s;
}


@media (min-width: 768px) {
    .index-advantage-content .row {
        margin: 0 -35px;
    }

    .index-advantage-content .row .col {
        padding: 0 35px;
    }
}

@media (min-width: 992px) {
    .index-advantage-content .row .col {
        margin-bottom: 0;
    }
}




.index-layout-two {
    width: 100%;
    background: url(../images/index-layout-two.jpg) no-repeat center;
    background-size: cover;
}

.index-case {
    padding: 60px 0 80px;
    overflow: hidden;
}

.index-case .index-case-content {
    padding: 15px 0 0;
}

.index-case .index-case-content .dimg {
    width: 100%;
    margin: 30px 0 0;
}

.index-case .index-case-content .dimg img {
    display: block;
    width: 100%;
}

.index-case .index-case-content .index-case-list {
    margin-top: 28px;
    height: 460px;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    background: #ffffff;
}

.index-case .index-case-content .index-case-list .list-tabs {
    width: 80px;
    flex: 0 0 auto;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-case .index-case-content .index-case-list .list-tabs a {
    display: block;
    line-height: 30px;
    padding: 0 12px;
    background: #eaebf0;
    border-radius: 4px;
    color: #1a83f9;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.index-case .index-case-content .index-case-list .list-tabs a:last-child {
    margin: 0;
}

.index-case .index-case-content .index-case-list .list-tabs a.active {
    background: #d1e5fe;
}

.index-case .index-case-content .index-case-list .list-content {
    flex: 1;
    overflow: hidden;
}

.index-case .index-case-content .index-case-list .list-content .dimgs {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    overflow: hidden;
}

.index-case .index-case-content .index-case-list .list-content .dimgs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.index-case .index-case-content .index-case-list .list-content .parameter {
    margin: 16px 0 0;
}

.index-case .index-case-content .index-case-list .list-content .parameter h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #5c5a88;
}

.index-case .index-case-content .index-case-list .list-content .parameter p {
    color: #a0a0a0;
    font-size: 12px;
    line-height: 18px;
}

.index-case .index-case-content .index-case-list .list-content  .content-item {
    display: none;
    overflow: hidden;
    opacity: 0;
    animation: right-dimg 0.8s forwards;
    transform: translateX(120%);
}

.index-case .index-case-content .index-case-list .list-content  .content-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0%);
}

@keyframes right-dimg {
    0% {
        transform: translateX(120%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@media (min-width: 992px) {
    .index-case .index-case-content {
        padding: 15px 0 0;
        display: flex;
        align-items: center;
    }

    .index-case .index-case-content .index-case-list {
        width: 504px;
        flex: 0 0 auto;
        margin-right: 20px;
    }

    .index-case .index-case-content .dimg {
        flex: 1;
    }
}


.index-resource {
    padding: 60px 0 80px;
    background: #e9f0fd;
    overflow: hidden;
}

.index-resource .index-resource-content {
    margin: 46px 0 0;
    overflow: hidden;
    position: relative;
}

.index-resource .index-resource-content::before {
    background-image: -webkit-linear-gradient(left, #e9f0fd 20%, rgba(235, 237, 240, 0));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 2;
}

.index-resource .index-resource-content::after {
    background-image: -webkit-linear-gradient(right, #e9f0fd 20%, rgba(235, 237, 240, 0));
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    z-index: 2;
}

.index-resource .index-resource-content .swiper {
    margin: 0 0 10px;
}

.index-resource .index-resource-content .swiper:last-child {
    margin-bottom: 0;
}

.index-resource .index-resource-content .swiper .swiper-slide {
    width: calc((100% - 20px) / 3);
}

#resource-swiper2,
#resource-swiper4 {
    width: calc(100% + (calc((100% - 20px) / 3)));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#resource-swiper2 .swiper-slide,
#resource-swiper4 .swiper-slide {
    width: calc((100% - 20px) / 4);
}

.index-resource .index-resource-content .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -moz-transition-timing-function: linear !important;
    -ms-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.index-resource .index-resource-content img {
    border-radius: 10px;
    display: block;
}

@media (min-width: 768px) {
    .index-resource .index-resource-content .swiper {
        margin: 0 0 25px;
    }

    .index-resource .index-resource-content .swiper .swiper-slide {
        width: calc((100% - 50px) / 4);
    }
    
    #resource-swiper2,
    #resource-swiper4 {
        width: calc(100% + (calc((100% - 50px) / 4)));
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    #resource-swiper2 .swiper-slide,
    #resource-swiper4 .swiper-slide {
        width: calc((100% - 50px) / 5);
    }
}

@media (min-width: 992px) {
    .index-resource .index-resource-content .swiper .swiper-slide {
        width: calc((100% - 75px) / 5);
    }
    
    #resource-swiper2,
    #resource-swiper4 {
        width: calc(100% + (calc((100% - 75px) / 5)));
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    #resource-swiper2 .swiper-slide,
    #resource-swiper4 .swiper-slide {
        width: calc((100% - 75px) / 6);
    }
}



.index-news {
    padding: 60px 0 60px;
    overflow: hidden;
}

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

.index-news .index-news-content .left .item {
    width: 100%;
    height: 290px;
    border-radius: 10px;
    background: #f1f5fa;
    margin: 0 0 20px;
    padding: 15px 20px 0 20px;
}

.index-news .index-news-content .left .item .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    position: relative;
    padding-left: 12px;
}

.index-news .index-news-content .left .item .title::after {
    content: '';
    width: 6px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 4px;
    border-radius: 3px;
    background: #1a83f9;
}

.index-news .index-news-content .left .item ul {
    margin: 20px 0 0;
}

.index-news .index-news-content .left .item ul li {
    line-height: 22px;
    font-size: 14px;
    height: 22px;
    overflow: hidden;
    margin: 0 0 15px;
}

.index-news .index-news-content .left .item ul li span {
    color: #aaaaaa;
    margin-right: 10px;
    transition: all 0.3s;
}

.index-news .index-news-content .left .item ul li a:hover,
.index-news .index-news-content .left .item ul li a:hover span {
    color: #1a83f9;
}

.index-news .index-news-content .right {
    width: 100%;
    border-radius: 10px;
    background: #f1f5fa;
    padding: 20px 20px 20px;
}

.index-news .index-news-content .right .dimg {
    overflow: hidden;
}

.index-news .index-news-content .right .news-top img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 218px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.index-news .index-news-content .right .news-top .dimg:hover img {
    transform: scale(1.1);
}

.index-news .index-news-content .right .news-top .content {
    background: #ffffff;
    border-radius: 0 0 4px 4px;
    padding: 20px 20px;
}

.index-news .index-news-content .right .news-top .content h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 8px;
    height: 24px;
    overflow: hidden;
}

.index-news .index-news-content .right .news-top .content h2 a:hover {
    color: #1a83f9;
}

.index-news .index-news-content .right .news-top .content p {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.index-news .index-news-content .right .news-top-list {
    margin: 20px 0 0;
}

.index-news .index-news-content .right .news-top-list .news-top {
    width: 100%;
    margin: 0 0 20px;
}

.index-news .index-news-content .right .news-top-list .news-top:last-child {
    margin-bottom: 0;
}

.index-news .index-news-content .right .news-top-list .news-top img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.index-news .index-news-content .right .news-top-list .news-top p {
    height: 24px;
}

@media (min-width: 576px) {
    .index-news .index-news-content .left {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .index-news .index-news-content .left .item {
        width: calc(50% - 10px);
    }

    .index-news .index-news-content .right .news-top-list {
        display: flex;
        justify-content: space-between;
    }

    .index-news .index-news-content .right .news-top-list .news-top {
        width: calc(50% - 10px);
        margin: 0;
    }
}

@media (min-width: 992px) {
    .index-news {
        padding-bottom: 80px;
    }

    .index-news .index-news-content .right {
        display: flex;
    }

    .index-news .index-news-content .right>.news-top {
        width: calc(33.33333% - 10px);
        flex: 0 0 auto;
    }

    .index-news .index-news-content .right .news-top-list {
        margin: 0;
        flex: 1;
        padding-left: 20px;
    }

    .index-news .index-news-content .right .news-top-list .news-top img {
        height: 218px;
    }

    .index-news .index-news-content .right .news-top-list .news-top p {
        height: 48px;
    }
}

@media (min-width: 1280px) {
    .index-news .index-news-content {
        display: flex;
    }

    .index-news .index-news-content .left {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .index-news .index-news-content .right {
        width: 540px;
        flex: 0 0 auto;
        margin-left: 30px;
        display: block;
        padding-bottom: 0;
    }

    .index-news .index-news-content .left .item {
        width: 300px;
        height: 290px;
        border-radius: 10px;
        background: #f1f5fa;
        margin: 0 0 30px;
        padding: 15px 20px 0 20px;
    }

    .index-news .index-news-content .left .item:nth-child(3),
    .index-news .index-news-content .left .item:nth-child(4) {
        margin: 0;
    }

    .index-news .index-news-content .right>.news-top {
        width: 100%;
    }

    .index-news .index-news-content .right .news-top-list {
        padding: 28px 0;
    }

    .index-news .index-news-content .right .news-top-list .news-top {
        width: 240px;
    }

    .index-news .index-news-content .right .news-top-list .news-top img {
        width: 100%;
        height: 100px;
    }

    .index-news .index-news-content .right .news-top-list .news-top p {
        height: 24px;
    }
}


.index-marketing {
    background-image: url(../images/index-marketing.jpg);
}

.index-marketing h3 {
    color: #ffffff;
    font-size: 20px;
}

.index-marketing a {
    width: 120px;
    height: 40px;
    color: #1a83fc;
    padding: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: block;
    line-height: 40px;
    background: #ffffff;
}

.index-marketing a i {
    display: none;
}