.topImg{
    width:100%;
    height:200px;
}
.biTopBox{
    width:100%;
    min-height:600px;
    background:#fff;
    margin-top:30px;
}
.goodTitle{
    padding-top: 30px;
    text-align: center;
}
.goodTitle a{
    font-size:14px;
    color:#1890ff;
}
.goodList{
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.goodBox{
    margin:30px 20px 0px 0;
    width: 250px;
}
.goodBox h4{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.goodBox img{
    width:250px;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.goodBox:hover img{
    box-shadow: 0 4px 5px #ccc;
}
.goodBox:nth-child(5n){
    margin-right: 0;
}
.pIntro{
    font-size: 13px;
    color:#999;
    margin-bottom: 20px;
}
.price{
    font-weight:bolder;
    color:red;
}
/* 头部背景 */
.vipBanner{
    min-width: 1140px;
    height: 220px;
    background: #2E2E2E;
    color:#F0C68B;
    text-align: center;
}
.vipBanner h2{
    padding-top:30px;
    color:#F0C68B;
}
.vipCode ul{
    list-style: none;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-wrap: wrap;
}
.vipCode ul li{
    margin-right: 0px;
}
.vipCode .vipTitle{
    font-size:35px;
}
/* 手机端 */
@media (max-width: 768px) {
    .vipBanner{
        min-width:100%;
        height: auto;
    }
    .vipCode ul li {
        margin-right: 0px;
    }
    .goodBox {
        width:100%;
    }
    .goodBox img{
        width: 100%;
    }
}