.newsBox {
    padding: 0 10px;
    background-color: white;
}

h5{
    font-size: 16px;
    margin: 10px 0 0 0;
}

.newsBox .newsList {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

.newsBox .newsList:nth-last-child(1) {
    border: none;
}

.newsBox .newsList img {
    width: 110px;
    height: 70px;
}

.newsBox .newsList .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 70px;
    justify-content: space-around;
    margin: 0 0 0 10px;
    min-width: 0;
}

.newsBox .newsList .content p {
    margin: 0;
    font-size: 14px;
    color: black;
}

.newsBox .newsList .content span {
    font-size: 12px;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.newsBox .newsList .content span i {
    font-style: normal;
}

.newsBox .newsList .content span i {
    flex: 1;
}

.productBox {
    padding: 0 10px 10px 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.productBox .productList {
    display: flex;
    margin: 10px 0 0 0;
    flex-direction: column;
    background-color: white;
}

.productBox .productList img {
    max-width: 100%;
    height: auto;
}

.productBox .productList .content {
    padding: 5px;
}

.productBox .productList .content .name {
    font-size: 14px;
    color: black;
}

.productBox .productList .content .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.productBox .productList .content .price span {
    color: #9a9a9a;
    flex: 1;
}

.productBox .productList .content .company {
    display: flex;
    align-items: center;
    color: #cccccc;
}

.productBox .productList .content .company .van-icon {
    margin: 0 5px 0 0;
}

.productBox .productList .content .company span:nth-child(2) {
    font-size: 12px;
}