.product{
    display: flex;
    flex-direction: column;
}
.product-header{
    margin-top: 1rem;
    width: 100%;
    background: url('../image/product-header.png') no-repeat;
    background-size: 100% 100%;
}
.product-header-box{
    margin: 24px;
    display: flex;
    flex-direction: column;
}
.product-header .title {
    width: 100%;
    font-weight: 500;
    font-size: 24px;
    color: #1F2C3D;
    height: 24px;
    line-height: 24px;
    margin-bottom: 24px;
}
.product-header .info {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #5C626A;
    line-height: 20px;
}
.product-main{
    background-color: #F5F6F7;
    display: flex;
    flex-direction: column;
}
.product-list {
    margin: 24px 16px 16px;
}
.product-list .title-h2 {
    width: 100%;
    height: 28px;
    font-weight: 500;
    font-size: 20px;
    color: #1F2C3D;
    text-align: center;
    line-height: 28px;
    margin-bottom: 16px;
}
.product-box{
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}
.product-box .header{
    margin: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.product-box .header .img-box{
    width: 42px;
    height: 42px;
    background: #F5F6F7;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.product-box .header .img-box .img{
    width: 21px;
    height: 21px;
}
.product-box .header .title{
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #1F2C3D;
    line-height: 18px;
}
.product-box .main {
    margin: 0 16px 24px;
}
.product-box .main .info {
    min-height: 40px;
    font-weight: 400;
    font-size: 14px;
    color: #91959B;
    line-height: 20px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-box .footer{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.product-box .footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #252D37;
}
.product-box .footer .d_detail{
    width: 50%;
    height: 45px;
}
.product-box .footer .system_price{
    width: 50%;
    height: 45px;
    background: #00A98F;
    border-radius: 0 0 8px 0;
    color: #ffffff;
}
