#banner img {
    max-width: 100%;
}

#box-container-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    padding: 20px 40px;
}

#products {
    width: 1540px;
    margin: 0 auto;
    padding: 20px 10px 10px;
}

#products button {
    width: 107px;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
    color: #333;
    display: flex;
    align-items: center;
    transition: all .3s;
}

#products button:hover {
    background: #F8F8F8;
}

#products .selected_btn {
    background: #39C3CB;
    color: #fff;
    border: 1px solid #39C3CB;
}

#products .selected_btn:hover {
    background: #39C3CB !important;
}

#products #promeCode_btn {
    margin-right: 12px;
}

#products #unverified_btn {
    display: none;
}

.box {
    position: relative;
    width: 210px;
    overflow: hidden;
    padding-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
    transform: scale(1.04);
}

.box .content-text-marketingtags span {
    font-weight: bold;
    font-size: 12px;
    color: #333333;
}

.box .content-text-marketingtags img {
    width: 12px;
}

.content-activity-outer {
    padding: 0 5px;
    border-radius: 3px;
    position: absolute;
    top: 200px;
    left: 4px;
    font-size: 12px;
}

.box .discound {
    text-align: right;
    font-size: 14px;
    line-height: 14px;
    padding-top: 5px;
    color: #69e6ec;
}

.box .box-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    background-color: #fff;
    border-radius: 7px;
    overflow: hidden;
}

.box .box-img img {
    max-width: 100%;
    max-height: 100%;
}

.box .favorites {
    cursor: pointer;
    position: absolute;
    right: 4px;
    top: 4px;
}

.box .favorites>a {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.11);
}

.box .favorites-icon {
    display: inline-block;
    width: 12px;
    height: 11px;
    background: url('/images/Collected.svg') -0 0 no-repeat;
}

.box .favoritesed-icon {
    display: inline-block;
    width: 12px;
    height: 11px;
    background: url('/images/Not_bookmarked.svg') 0 0 no-repeat;
}

.box .content-text {
    margin-top: 13px;
    padding: 0 8px;
}

.box .content-text-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.box .content-text-group .left {
    display: flex;
    align-items: center;
}

.box .content-text-group .div1 {
    color: #E54344;
    font-size: 12px;
}

.box .content-text-group .div2 {
    background-color: #E6E6E6;
    height: 12px;
    width: 2px;
    margin: 0 5px;
}

.box .content-text-group .comment-group {
    color: #7B7B7B;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 12px;
}

.box .content-text-group .comment-group .comment-group-icon,
.box .content-text-group .comment-group .thumb-group-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    background: url('https://vipon.s3.amazonaws.com/img/583044a87d393380ad40c1d56680899ca5ec2c2e107c09.png') -236px -195px no-repeat;
}

.box .content-text-group .comment-group .comment-group-icon {
    background-position: -264px -195px;
    width: 12px;
}

.box .content-text-price {
    margin: 4px 0;
}

.box .content-text-price .discound-price {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}

.box .content-text-price .price {
    font-size: 12px;
    color: #999999;
}

.box .content-text-artname {
    display: -webkit-box;
    /* 创建伸缩盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列子元素 */
    -webkit-line-clamp: 2;
    /* 显示两行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 省略号 */
    font-size: 14px;
    color: #333;
    width: 100%;
    white-space: normal;
    /* 允许换行 */
}

.box .content-text-fba {
    font-size: 12px;
    color: #999999;
    margin: 4px 0;
}

.box .content-text-timetags {
    font-size: 12px;
    color: #E55F25;
}

#loading-wait {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    width: 100%;
    height: calc(100vh - 371px);
}

#loading-wait img {
    height: 30px;
}