.h2-tit {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
}

.carousel {
    width: 100%;
    height: 388px;
    background-color: #0A40C2;
    overflow-y: hidden;

    & .el-carousel {
        height: 388px;
    }

    & .el-carousel .el-carousel__container {
        height: 388px;
    }

    & img.carousel-img {
        width: 100%;
        height: 388px;
        margin: 0;
        padding: 0;
    }

    & .el-carousel__item h3 {
        color: #475669;
        opacity: 0.75;
        line-height: 380px;
        margin: 0;
        text-align: center;
    }

    & .el-carousel__item:nth-child(2n) {
        background-color: #99a9bf;
    }

    & .el-carousel__item:nth-child(2n + 1) {
        background-color: #d3dce6;
    }
}

.piece-3 {
    width: 100%;
    background-color: #F9FAFF;
    padding: 60px 0 80px;

    & .p-container {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;

        & .piece {
            width: 330px;
            height: 353px;
            background-color: #fff;
            border-radius: 11px;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
            overflow: hidden;

            & .p-box {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                box-shadow: inset 0 0 25px 25px transparent, 0 0 25px 25px transparent;
                transition: box-shadow 0.5s ease-in-out;
            }

            & .p-box img {
                width: 180px;
                height: auto;
                flex: 0 0 auto;
                transition: all 0.5s ease-in-out;
            }

            & .p-box .btn {
                width: 132px;
                height: 44px;
                line-height: 44px;
                font-size: 16px;
                text-align: center;
                color: var(--font-color-btn);
                border: 1px solid var(--font-color-btn);
                background-color: #fff;
                border-radius: 6px;
                margin: 20px auto;
                cursor: pointer;

                & a {
                    color: var(--font-color-btn);
                }
            }

            & .p-box .lab {
                font-size: 14px;
                color: var(--font-color-lab);
            }

            &:hover {
                box-shadow: 0px 6px 12px 3px rgba(91, 137, 254, 0.2);

                & .p-box .btn {
                    background-color: var(--font-color-btn);
                    color: #fff;
                }

                & .p-box .btn a {
                    color: #fff;
                }

                & .p-box {
                    box-shadow: inset 0 0 170px 170px #E5EEFF, 0 0 0 #E5EEFF;
                }

                & .p-box img {
                    transform: scale(0.9);
                }
            }
        }
    }
}

.hot-list {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;

    & .h2-tit {
        padding: 20px 0 0;
    }

    & .h-container {
        width: 1200px;
        height: 400px;
        margin: 0 auto;
        padding: 60px 0 0;
        position: relative;
        overflow: hidden;

        &::before, &::after {
            content: '';
            width: 54px;
            height: 100%;
            position: absolute;
            top: 30px;
            background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0.3) 100%);
            box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
            z-index: 99;
        }

        &::before {
            left: -2px;
        }

        &::after {
            right: -2px;
            transform: rotate(180deg);
        }

        & .mySwiper {
            width: 1356px;
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);

            & .swiper-slide {
                width: 187px;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                flex: 0 0 auto;

                & .img {
                    width: 187px;
                    height: 249px;
                    border-radius: 8px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transform: scale(0.8);
                    transition: all 0.5s ease-in;
                }

                & .img img {
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                    display: block;
                    margin: auto;
                }

                & .h-tit {
                    font-size: 18px;
                    color: #000;
                    line-height: 1;
                    padding: 8px 0 0;
                }

                & .h-grade, & .h-type {
                    font-size: 14px;
                    color: #000;
                    line-height: 1;
                    padding: 6px 0 0;
                }
            }

            & .swiper-slide-active, & .swiper-slide-duplicate-active {
                width: 187px;

                & .img {
                    transform: scale(1);
                }
            }
        }

        & .btn-left, & .btn-right {
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            position: absolute;
            top: 10px;
            z-index: 100;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;

            & svg {
                width: 25px;
                height: 25px;
            }
        }

        & .btn-left {
            left: 10px;
        }

        & .btn-right {
            right: 10px;
        }
    }
}

.classify-recommend {
    width: 1200px;
    margin: 0 auto;
    padding: 0 0 60px;
    background-color: #fff;

    & .tit {
        font-size: 20px;
        font-weight: bold;
        color: #2884DA;
    }

    & .c-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: stretch;
        align-content: flex-start;
        grid-gap: 40px 60px;
        padding: 20px 0 0;

        & .item .item-tit {
            width: 100%;
            position: relative;
            padding: 2px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-flow: row nowrap;
            border-bottom: 1px solid #E1F1FF;

            & span {
                font-size: 18px;
                color: var(--font-color-tit2);
                position: relative;
            }

            & span::after {
                content: "";
                width: 100%;
                height: 2px;
                background-color: var(--font-color-btn);
                position: absolute;
                bottom: -2px;
                left: 0;
            }

            & a.more {
                font-size: 15px;
                color: #939090;
            }

            & a.more::after {
                content: "》";
            }

            & a.more:hover {
                color: var(--font-color-tit2);
            }
        }

        & .item ul {
            margin-top: 6px;
        }

        & .item ul li {
            width: 100%;
            padding: 2px 0;
            line-height: 20px;
        }

        & a {
            font-size: 15px;
            color: #939090;
        }


        & a:hover {
            color: var(--font-color-tit2);
        }
    }
}

.big-img-bottom {
    width: 100%;
    height: 337px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

    & .bgbimg {
        height: 100%;
        width: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    & .content, & .content a {
        width: 1200px;
        height: 100%;
        margin: 0 auto;
        position: relative;
        border-top: 1px solid transparent;

        & .txt {
            font-size: 36px;
            font-weight: bold;
            color: #000;
            margin-top: 115px;
        }

        & .txt-small {
            font-size: 15px;
            color: #42464F;
            margin-top: 5px;
        }
    }

}

.industry {
    width: 100%;

    & .industry-container {
        width: 1200px;
        margin: 0 auto;
        padding: 60px 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-flow: row nowrap;

        & .trend {
            width: 40%;

            & .tit {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: row;
            }

            & .tit span {
                font-size: 20px;
                color: var(--font-color-tit1);
            }

            & .tit a.more {
                font-size: 15px;
                color: #939090;
            }

            & .tit a.more::after {
                content: "》";
                padding-left: 4px;
            }

            & .tit a.more:hover {
                color: var(--font-color-tit2);
            }

            & ul {
                margin-top: 10px;
            }

            & ul li {
                width: 100%;
                height: 30px;
                line-height: 30px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                padding: 5px 0;
            }

            & ul li a {
                font-size: 15px;
                color: var(--font-color-lab);
            }

            & ul li a:hover {
                color: var(--font-color-tit2);
            }
        }

        & .focus-img {
            width: 626px;
            height: 360px;
            border-radius: 10px;
            overflow: hidden;
            flex: 0 0 auto;

            & .el-carousel {
                height: 360px;
            }

            & .el-carousel .el-carousel__container {
                height: 360px;
            }

            & img {
                width: 100%;
                object-fit: cover;
                height: 100%;
                margin: auto;
            }
        }
    }
}


@media only screen and (min-width: 750px) and (max-width: 1190px) {
    .carousel, .carousel .el-carousel {
        height: 240px;
        overflow-y: hidden;

        & .el-carousel__container {
            height: 240px;
        }
    }

    .piece-3 {
        padding: 36px 0 48px;
    }

    .piece-3 .p-container {
        width: 750px;

        & .piece {
            width: 206px;
            height: 220px;
            border-radius: 8px;
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);

            & .p-box img {
                width: 111px;
            }

            & .p-box .btn {
                width: 82px;
                height: 27px;
                line-height: 27px;
                font-size: 14px;
                margin: 16px auto;
            }
        }
    }

    .hot-list {
        padding: 36px 0;

        & .h2-tit {
            padding: 12px 0 0;
        }

        & .h-container {
            width: 750px;
            height: 240px;
            padding: 26px 0 0;

            &::before, &::after {
                width: 32px;
                top: 18px;
            }

            & .mySwiper {
                width: 840px;
                position: absolute;
                top: 30px;

                & .swiper-slide {
                    width: 116px;

                    & .img {
                        width: 116px;
                        height: 154px;
                    }

                    & .h-tit {
                        font-size: 14px;
                    }

                    & .h-grade, & .h-type {
                        font-size: 12px;
                    }
                }

                & .swiper-slide-active, & .swiper-slide-duplicate-active {
                    width: 116px;
                }
            }

            & .btn-left, & .btn-right {
                width: 24px;
                height: 24px;
                top: 6px;

                & svg {
                    width: 15px;
                    height: 15px;
                }
            }

            & .btn-left {
                left: 6px;
            }

            & .btn-right {
                right: 6px;
            }
        }
    }

    .classify-recommend {
        width: 750px;
        padding: 0 0 36px;

        & .tit {
            font-size: 18px;
        }

        & .c-container {
            width: 100%;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .big-img-bottom {
        height: 208px;
        overflow: hidden;

        & .content, & .content a {
            width: 750px;
        }
    }

    .industry {
        width: 100%;

        & .industry-container {
            width: 750px;
            padding: 36px 0;

            & .trend {

                & .tit span {
                    font-size: 16px;
                }

                & .tit a.more {
                    font-size: 12px;
                }

                & .tit a.more::after {
                    content: "》";
                    padding-left: 4px;
                }

                & .tit a.more:hover {
                    color: var(--font-color-tit2);
                }

                & ul {
                    margin-top: 3px;
                }

                & ul li {
                    height: 24px;
                    line-height: 24px;
                }

                & ul li a {
                    font-size: 14px;
                    color: var(--font-color-lab);
                }

                & ul li a:hover {
                    color: var(--font-color-tit2);
                }
            }

            & .focus-img {
                width: 388px;
                height: 223px;
                overflow-y: hidden;

                & img {
                    width: auto;
                    height: 100%;
                }

                & .el-carousel {
                    height: 223px;
                    overflow-y: hidden;
                }

                & .el-carousel .el-carousel__container {
                    height: 223px;
                }
            }
        }
    }
}

@media only screen and (max-width: 700px) {
    .carousel, .carousel .el-carousel {
        height: 14rem;
        overflow-y: hidden;

        & .el-carousel__container {
            height: 14rem;
        }

        & img.carousel-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .h2-tit {
        font-size: 1.2rem !important;
        padding: 1rem 0;
    }

    .piece-3 {
        width: 100%;
        padding: 1rem 0;

        & .p-container {
            width: 100%;

            & .piece {
                width: 32%;
                height: 14rem;

                & .p-box img {
                    width: 4rem;
                    height: auto;
                }

                & .p-box .btn {
                    font-size: 0.8rem;
                    width: 6.6rem;
                    height: 2.2rem;
                    line-height: 2.2rem;
                    margin: 1rem auto;
                }

                & .p-box .lab {
                    width: 90%;
                    font-size: 0.7rem;
                    margin: 0 auto;
                }
            }
        }
    }

    .hot-list {
        padding: 1.5rem 0;

        & .h2-tit {
            padding: 1rem 0;
        }

        & .h-container {
            width: 100%;
            height: 24.5rem;
            padding: 2rem 0 0;

            & .btn-left, & .btn-right {
                width: 2rem;
                height: 2rem;
                line-height: 2rem;
                font-size: 1.2rem;
            }

            & .mySwiper .h-tit {
                font-size: 1rem !important;
            }

            & .mySwiper .h-grade, & .mySwiper .h-type {
                font-size: 0.7rem !important;
            }
        }

    }

    .classify-recommend {
        width: 100%;
        padding: 1.5rem 2rem;

        & .tit {
            font-size: 1.1rem;
        }

        & .c-container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: column;
            padding: 1rem 0 0;
            grid-gap: 1rem 1rem;

            & .item {
                width: 100%;
            }

            & .item .item-tit span {
                font-size: 0.9rem;
            }

            & .item .item-tit a,
            & .item .item-tit a.more,
            & ul li a {
                font-size: 0.8rem;
            }

            & ul li {
                line-height: 1rem;
            }
        }
    }

    .big-img-bottom {
        width: 100%;
        height: 8.5rem;
        overflow-x: hidden;

        & .content, & .content a {
            width: 100%;
            height: 100%;
            padding: 0 0.5rem;

            & .txt {
                font-size: 1.2rem;
                margin-top: 1.1rem;
            }

            & .txt-small {
                width: 60%;
                font-size: 0.7rem;
                margin-top: 0.2px;
            }
        }
    }

    .industry .industry-container {
        width: 100%;
        padding: 1.5rem 0 2rem;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: flex-start;

        & .focus-img {
            /* order: 1; */
            width: 100%;
            height: 13rem;

            & .el-carousel,
            & .el-carousel .el-carousel__container {
                width: 100%;
                height: 13rem;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                }
            }
        }

        & .trend {
            width: 100%;
            padding: 0 1rem;

            & .tit span {
                font-size: 0.9rem;
            }

            & .tit a.more {
                font-size: 0.8rem;
            }

            & ul {
                margin: 0 auto 1rem;
            }

            & ul li {
                height: 1.5rem;
                line-height: 1.5rem;
                padding: 0;

                & a {
                    font-size: 0.8rem;
                    padding: 0;
                    margin: 0;
                }
            }
        }
    }
}