body{
    background: #F3F5F8;
}
#app{
    margin-bottom: 60px;
}
.product-header-box{
    height: 52px;
    width: 1200px;
    line-height: 52px;
    padding: 0 15px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 20px auto 2px auto;
    font-size: 16px;
    color: #333;
    font-weight: 550;
}
.product-main-box{
    flex: 1;
    overflow: hidden;
    overflow-y: scroll;
    width: 1200px;
    padding: 36px 80px 36px 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: auto;
}
.product-footer-box{
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 93px;
    width: 1200px;
    padding: 0 80px 0 20px;
    background: white;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    margin: auto;
}
.price-box{
    font-size: 14px;
    color: #333;
}
.price-box .price{
    color: #ff000e;
    font-size: 28px;
    font-weight: 500;
}
.item-box{
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
/* .item-box:last-child{
    margin-bottom: 0;
} */
.item-title{
    width: 116px;
    color: rgb(78, 89, 105);
    font-size: 14px;
    margin-right: 16px;
}
.item-tips{
    font-size: 12px;
    color: #999;
    flex: 1;
}
.price-box-num{
    margin-bottom: 8px;
}
.origin-price{
    color: #999;
    margin-left: 8px;
    font-size: 14px;
    text-decoration: line-through;
}
.product-item-msg{
    width: 33%;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: hsla(0, 0%, 15%, 0.8);
    margin-bottom: 16px;
}
.product-item-msg-circle{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgb(25, 117, 255);
    margin-right: 8px;
}

/* 手机样式 */
@media (max-width: 1024px) {
    #app{
        margin-bottom: 30px;
    }
    .product-header-box{
        width: 100%;
    }
    .product-main-box{
        width: 100%;
        padding: 20px;
    }
    .product-footer-box{
        width: 100%;
        padding: 0 20px;
    }
    .item-box{
        flex-wrap: wrap;
    }
    .item-title{
        width: 100%;
        margin: 0 0 10px 0;
    }
    .price-box-num{
        margin-bottom: 0;
    }
    .price-box-tips{
        display: none;
    }
    .price-box .price{
        font-size: 24px;
    }
    .product-item-msg{
        width: 100%;
    }
}