/* 产品中心 */
.product-center-container{
    width: calc(100% - 11.5rem - 11.5rem);
    padding: 5rem 11.5rem;
    padding-top: calc(5rem + 7.4375rem);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.product-center-container-left{
    width: calc(15.1875rem);
    padding-right: 10.5625rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-center-container-left-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-center-container-left-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
    font-weight: bold;
}
.product-center-container-left-header-description{
    width: 100%;
    padding-top: 2.6875rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 400;
    color: #a5a5a5;
}
.product-center-series-container{
    width: 100%;
    padding-top: 4.625rem;
}
.product-center-series{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-center-series-header{
    width: 100%;
    padding-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: #000000 solid 0.0625rem;
}
.product-center-series-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    font-weight: bold;
}
.product-center-series-header-title-active{
    color: #c38d00;
}
.product-center-series-items{
    width: 100%;
    padding: 2.4375rem 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.product-center-series-item{
    width: calc(50% - 1.25rem);
    padding-right: 1.25rem;
    text-align: left;
    font-size: 1.125rem;
    color: #a5a5a5;
    text-decoration: none;
    margin-bottom: 1.625rem;
}
.product-center-series-item-title{
    width: max-content;
    padding-bottom: 0.625rem;
    border-bottom: #FFFFFF solid 0.125rem;
}
.product-center-series-item:hover .product-center-series-item-title, .product-center-series-item-active .product-center-series-item-title{
    color: #c38d00;
    border-bottom: #c38d00 solid 0.125rem;
}
.product-center-container-right{
    width: calc(100% - 15.1875rem - 10.5625rem);
}
.product-center-product-list{
    width: 100%;
}
.product-center-product-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.product-center-product{
    width: calc(50% - 1rem);
    margin-right: 2rem;
    text-decoration: none;
}
.product-center-product:last-of-type{
    margin-right: 0;
}
.product-center-product-poster{
    width: 100%;
    height: 25.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-center-product-poster-img{
    width: 100%;
    height: 25.125rem;
    object-fit: cover;
}
.product-center-product-info{
    width: 100%;
    padding: 1.4375rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.product-center-product-title{
    width: 100%;
    text-align: left;
    font-size: 1.4375rem;
    font-weight: bold;
    color: #000000;
}
.product-center-product:hover .product-center-product-title{
    color: #c38d00;
}
.product-center-product-description{
    width: 100%;
    padding-top: 0.9375rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 400;
    color: #a5a5a5;
}