.products-page{
    padding-top: 100px;
}

/* 复用分类页的面包屑样式 */
.products-breadcrumb{
    width: 100vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.products-breadcrumb-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
}
.products-breadcrumb-trail{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 16px;
}
.products-breadcrumb-trail a{
    color: inherit;
}
.products-breadcrumb-trail .iconfont{
    color: #48877A;
    font-size: 18px;
}

.product-detail{
    padding: 30px 0;
}
.product-detail h1{
    font-size: 40px;
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-detail-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
.product-detail-cover{
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-detail-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-summary{
    width: 850px;
    min-height: 500px;
    font-size: 18px;
    line-height: 36px;
}
.product-detail-card{
    width: 100%;
}
.product-detail-card-title{
    height: 40px;
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.product-detail-card-title-border{
    width: 6px;
    height: 36px;
    border-radius: 5px;
    background: #48877A;
}
.product-detail-card-content{
    font-size: 18px;
    line-height: 36px;
    color: #666666;
}
.product-detail-card-content hr{
    margin: 20px 0;
}

.product-module{
    padding-bottom: 50px;
}

.product-module-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-module-title-border{
    width: 5px;
    height: 36px;
    background: #48877A;
    border-radius: 5px;
}

.product-module-title-text{
    font-size: 36px;
    color: #333333;
    margin-left: 20px;
}

.product-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(470px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.product-item{
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 19px;
    display: flex;
    flex-direction: column;
}

.product-image{
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.product-name{
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 22px;
}
.product-desc{
    padding: 20px 0;
    font-size: 16px;
    font-family: '微软雅黑';
    line-height: 30px;
    color: #535353;
    flex: 1;
}
.product-contentText{
    padding: 30px;
    background: #F2F4F6;
    margin-top: 30px;
    font-size: 18px;
    line-height: 40px;
    color: #535353;
}
.product-tuwen{
    padding: 30px;
    background: #F2F4F6;
    margin-top: 30px;
    font-size: 18px;
    line-height: 40px;
    color: #535353;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-tuwen-left{
    width: 800px;
    padding: 30px 0;
}
.product-tuwen-left .t2{
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.product-tuwen-right{
    width: calc(100% - 800px);
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-tuwen-right img{
    width: 100%;
    object-fit: cover;
}