.product-list {
    margin: 20px -45px;
    display: flex;
    flex-wrap: wrap;
}

.product-list .item {
    width: calc(100%/2 - 90px);
    margin: 45px;
    padding: 30px;
    background-color: #F8F8F9;
}

.product-list .item img {
    width: 100%;
    /* height: 350px; */
    height: auto;
    border-radius: 5px;
    object-fit: fill;
}

.product-list .item h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0px;
}

.product-list .item h2 a {
    color: #2B2D30;
}

.product-list .item p {
    color: #A1A4A7;
}

.product-list .item a.more {
    width: 105px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1A45B8;
    border-radius: 5px;
    color: #1A45B8;
    margin-top: 20px;
}

.product-list .item a.more .iconfont {
    margin-left: 8px;
    font-size: 14px;
}

.product-list .item a.more:hover {
    background: linear-gradient(282deg, #1882C9, #2652BB) center center no-repeat;
    color: #fff;
    border: 0px;
}

.crumb {
    border-bottom: 1px solid #E9E9E9;
}

.body-box {
    padding-bottom: 50px;
}

.detail-box {
    background-image: url(../images/product-detail-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.detail-info {
    display: flex;
}

.detail-info .left {
    /* flex: 1; */
    width: calc(100% - 440px);
    margin-right: 50px;
    padding-right: 50px;
    border-right: 1px solid #E9E9E9;

}

.detail-info .left .swiper-container {
    padding-top: 50px;
}

.detail-info .right {
    width: 440px;
}

.body-box~.footer-box {
    margin-top: 0px !important;
}

.detail-img img,
.detail-img video {
    width: 100%;
    height: 650px;
    object-fit: fill;
    border-radius: 10px;
}

.detail-describe {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    margin-top: 50px;
}

.detail-describe .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.detail-describe .title h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0px;
    position: relative;
}

.detail-describe .title h2::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    background-color: #1A45B8;
    bottom: -23px;
    left: 0px;
}

.detail-describe .title .hot-tel {
    font-size: 18px;
    font-weight: bold;
}

.detail-describe .title .hot-tel h3 {
    margin: 0px;
    color: #EB2C00;
    font-size: 18px;
    font-weight: bold;
}

.detail-describe .title .hot-tel .iconfont {
    color: #1A45B8;
    margin-right: 10px;
    font-size: 22px;
}

.detail-describe .line {
    height: 5px;
    background-image: url(../images/line-bg2.png);
}

.recommend {
    margin-top: 40px;
}

.recommend h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.recommend .item {
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.recommend .item img {
    width: 100%;
    height: 260px;
    object-fit: fill;
}

.recommend .item p {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

.recommend .item p span {
    font-size: 18px;
    flex: 1;
    margin-right: 10px;
}

.recommend .item p em {
    width: 80px;
}

.recommend .item p em .iconfont {
    margin-left: 5px;
    font-size: 15px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    cursor: pointer;
    background-color: rgb(0 0 0 / 60%);
    border-radius: 50%;
}

.play-btn:hover {
    background-color: rgb(26 69 184 / 80%);
}

.play-btn img {
    width: 100px;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .product-list {
        margin: 20px auto;
    }

    .product-list .item {
        width: calc(100%/1);
        margin: 0px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .detail-info .right {
        display: none;
    }

    .detail-info .left {
        margin-right: 0px;
        padding-right: 0px;
        border-right: 0px;
        flex: 1;
    }

    .detail-img .swiper-slide>img,
    .detail-img video {
        height: auto;
    }

    .bread-crumb .more-style2 {
        bottom: 10px;
        position: fixed;
        z-index: 11;
        margin: 0px auto;
        left: 50%;
        margin-left: -68px;
    }

    .detail-describe {
        padding: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .detail-describe .title .hot-tel em {
        display: none;
    }

    .detail-describe .title h2 {
        font-size: 20px;
    }

    .bread-crumb h1 {
        font-size: 20px;
        margin: 0px;
        line-height: 32px;
        font-weight: bold;
        text-align: justify;
        height: 65px;
        display: flex;
        align-items: center;
    }

    .detail-info .left .swiper-container {
        padding-top: 30px;
    }

    .body-box {
        padding-bottom: 50px;
    }

    .play-btn {
        margin-top: -30px;
        margin-left: -30px;
    }

    .play-btn img {
        width: 60px;
        height: 60px;
    }
}