/*轮播图组件*/
.owl-carousel {
    position: relative;
}

/*左右按钮*/
.owl-carousel > .owl-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: -45px;
    right: -45px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.owl-carousel > .owl-nav > button {
    position: relative;
    z-index: 1;
}

.owl-carousel > .owl-nav > button > i {
    font-size: 35px;
}

.carousel-inner > .carousel-item {
    height: auto;
}

.carousel-inner > .carousel-item > img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.homeTitle {
    font-size: 60px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.homeSubTitle {
    font-size: 20px;
    font-family: Roboto-Italic, Roboto;
    font-weight: normal;
    color: #333333;
    margin-bottom: 70px;
}

.homeProducts {
    padding: 120px 0;
}

.homeProductsBody > a {
    display: block;
    width: 100%;
}

.homeProductsBody > a:nth-child(1) {
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.1);
}

.homeProductsBody > a:nth-child(2) {
    margin-bottom: 8px;
}

.homeProductsBody > a:nth-child(3) {
    display: flex;
    align-items: center;
}

.homeProductsBody > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}


.homeProductsBody > a > img:hover {
    transform: scale(1.1);
}

.homeProductsBody > a > h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 28px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #252525;
    line-height: 40px;
}

.homeProductsBody > a > span {
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    margin-right: 10px;

}

.homeProductsBody > a > i {
    display: inline-block;
    width: 0px;
    height: 0px;
    border: 5px solid rgba(0, 0, 0, 0);
    border-left-color: #000;
}

.homeNews {
    background: #F1F6FB;
    padding: 120px 0;
}

.homeNews > .container > .homeNewsRow {
    margin-bottom: 70px;
}

.homeNews > .container > .homeNewsRow:nth-last-child(1) {
    margin-bottom: 0px;
}

.homeNewsRowImg {
    display: block;
    height: 240px;
    overflow: hidden;
}

.homeNewsRowImg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.homeNewsRowImg > img:hover {
    transform: scale(1.1);
}

.homeNewsRowDiv {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homeNewsRowDivSubTitle {
    margin-bottom: 20px;
}

.homeNewsRowDivSubTitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
}

.homeNewsRowDivTitle > a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 28px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #252525;
}

.homeNewsRowDivA > a {
    display: inline-block;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 2px;
    padding: 8px 12px;
}

.homeAbout {
    padding: 120px 0;
}

.homeAboutText {
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-bottom: 30px;
}

.homeAboutA > a {
    display: inline-block;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 2px;
    padding: 8px 12px;
}

.homeGet {
    padding: 140px 0;
    position: relative;
}

.homeGet > img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.homeGetTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.homeGetTitle > span {
    font-size: 60px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    color: #FFFFFF;
}

.homeGetTitle > a {
    padding: 12px 35px;
    background: #FFFFFF;
    border-radius: 2px;
    font-size: 20px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #3552A5;
}

.homeGetText {
    font-size: 22px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

@media (max-width: 992px) {
    .carousel-inner > .carousel-item {
        height: auto;
    }

    .homeTitle {
        font-size: 24px;
        font-family: Roboto-Bold, Roboto;
        font-weight: bold;
        color: #FFFFFF;
        margin-bottom: 5px;
    }

    .homeSubTitle {
        font-size: 11px;
        font-family: Roboto-Italic, Roboto;
        font-weight: normal;
        color: #333333;
        margin-bottom: 30px;
    }

    .homeProducts {
        padding: 60px 0;
    }

    .homeProductsBody > a:nth-child(1) {
        margin-bottom: 14px;
    }

    .homeProductsBody > a:nth-child(2) {
        margin-bottom: 6px;
    }

    .homeProductsBody > a > h3 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 16px;
        font-family: Roboto-Bold, Roboto;
        font-weight: bold;
        color: #252525;
        line-height: 20px;
    }

    .homeProductsBody > a > span {
        font-size: 12px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #666666;
        margin-right: 10px;

    }

    .homeProductsBody > a > i {
        display: inline-block;
        width: 0px;
        height: 0px;
        border: 5px solid rgba(0, 0, 0, 0);
        border-left-color: #000;
    }

    .homeNews {
        padding: 60px 0;
    }

    .homeNews > .container > .homeNewsRow {
        margin-bottom: 40px;
    }

    .homeNews > .container > .homeNewsRow:nth-last-child(1) {
        margin-bottom: 0px;
    }

    .homeNewsRowImg {
        display: block;
        height: auto;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .homeNewsRowDivSubTitle {
        margin-bottom: 8px;
    }

    .homeNewsRowDivSubTitle {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        word-break: break-all;
        font-size: 11px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #666666;
    }

    .homeNewsRowDivTitle {
        margin-bottom: 8px;
    }

    .homeNewsRowDivTitle > a {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 18px;
        font-family: PingFangSC-Semibold, PingFang SC;
        font-weight: 600;
        color: #252525;
    }

    .homeNewsRowDivText {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 13px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #333333;
        margin-bottom: 20px;
    }

    .homeNewsRowDivA > a {
        display: inline-block;
        font-size: 13px;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
        color: #FFFFFF;
        border-radius: 2px;
        padding: 6px 16px;
    }

    .homeAbout {
        padding: 60px 0;
    }

    .homeAboutText {
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #212223;
        margin-bottom: 30px;
    }

    .homeAboutA > a {
        display: inline-block;
        font-size: 14px;
        font-family: Roboto-Bold, Roboto;
        font-weight: bold;
        color: #FFFFFF;
        padding: 4px 20px;
        margin-bottom: 30px;
    }

    .homeGet {
        padding: 80px 0;
    }

    .homeGetTitle {
        margin-bottom: 25px;
    }

    .homeGetTitle > span {
        font-size: 28px;
        font-family: Roboto-Bold, Roboto;
        font-weight: bold;
        color: #FFFFFF;
    }

    .homeGetTitle > a {
        padding: 6px 16px;
        font-size: 13px;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
        color: #3552A5;
    }

    .homeGetText {
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #FFFFFF;
    }
}
