.shop-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 30px;
}
.shop-card-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    object-fit: cover;
}
.shop-card-main {
    margin-left: 14px;
    flex: 1;
}
.shop-card-right-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 40px;
    background: linear-gradient(270deg, #fea805 0%, #fc6f02 100%);
    border-radius: 24px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
}
.shop-card-right-browse {
    margin-top: 10px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    text-align: center;
}

.shop-card-main-header {
    display: flex;
    align-items: center;
    height: 32px;
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 600;
    color: #111111;
}

.header-vip {
    margin-left: 10px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    object-fit: cover;
}
.shop-card-main-tags {
    display: flex;
    flex-wrap: wrap;
}
.tags-item {
    margin-top: 8px;
    margin-right: 10px;
    padding: 3px 9px;
    background: #eaf1fd;
    border-radius: 10px;
    font-size: 10px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #3072f6;
    line-height: 14px;
    max-width: 530px;
}
.tags-item-active {
    color: #ffffff;
    background: #3072f6;
}

.shop-card-main-footer {
    margin-top: 20px;
    display: flex;
}

.footer-item {
    display: flex;
}
.footer-item-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    object-fit: cover;
}
.footer-item-text {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}
.header-title {
    max-width: 400px;
}

.cover-class {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    display: none;
    z-index: 99;
    position: absolute;
    bottom: 0;
    left: 0;
}

.detail-btn {
    width: 120px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(270deg, #fea805 0%, #fc6f02 100%);
    border-radius: 24px;
    line-height: 40px;
    text-align: center;
    margin: 34px auto;
    cursor: pointer;
}
.shop-card:hover {
    cursor: pointer;
}
.shop-card:hover .cover-class {
    display: block;
}

.bottom-boder::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: calc(100% - 60px);
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    left: 30px;
}
