/* 产品工艺介绍 */
.product-craft-container{
    width: 100%;
}
.product-craft-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 62.5rem;
}
.product-craft{
    width: 20%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.product-craft-open{
    width: 60%;
}
.product-craft-poster{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-craft-poster-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.product-craft-info{
    width: calc(100% - 6.875rem);
    height: calc(62.5rem - 9.25rem - 9.25rem);
    padding: 9.25rem 3.4375rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.product-craft-title{
    width: 100%;
    text-align: left;
    font-size: 2.1875rem;
    color: #FFFFFF;
}
.product-craft-description{
    width: 50%;
    text-align: left;
    padding-top: 2.375rem;
    font-size: 1.125rem;
    color: #FFFFFF;
    display: none;
}
.product-craft-open .product-craft-description{
    display: block;
}
.product-craft-open .product-craft-info{
    width: calc(100% - 11.25rem - 11.25rem);
    padding: 9.25rem 11.25rem;
}

/* 供应商卡片介绍 */
.product-supply-container{
    width: 100%;
    padding: 1.875rem 0;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.product-supply-container-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-supply-container-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.product-supply-container-info{
    width: calc(100%);
    height: calc(62.5rem);
    position: absolute;
    top: 1.875rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-supply-container-title{
    width: 60%;
    text-align: center;
    font-size: 4.0625rem;
    color: #FFFFFF;
}
.product-supply-container-description{
    width: 60%;
    padding-top: 3.5rem;
    text-align: center;
    font-size: 1.25rem;
    color: #FFFFFF;
}