.breadcrumb{background-color:#f1f1f1 !important;padding:15px 0 10px 0;margin-left:5px}.breadcrumb-box{height:250px;background-color:#f1f1f1}.breadcrumb-title{font-size:4vw;color:#666;text-align:center;padding-top:2vw}.order-btn{font-size:16px;padding:8px 2vw;border:1px solid #999;background-color:#fff;color:#999}.order-btn:focus{outline:none !important}.page-header{border-bottom:0px}.btn{border-radius:0px !important}@media (max-width: 768px){.breadcrumb-box{height:auto !important}}

.goods-item {
    display: flex;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.goods-items {

    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.goods-image {
    width: 200px;
    flex-shrink: 0;
}
.goods-items .goods-images img {
    width: 60%;
}
.goods-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.goods-info {
    flex: 1;
    padding: 0 20px;
    max-width: 500px;
}

.goods-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.goods-title {
    font-size: 18px;
    margin: 0;
    margin-right: 10px;
}

.country-flag img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.goods-tag {
    font-size: 12px;
    padding: 2px 8px;
    background: rgba(24,97,199,0.1);
    color: #1861c7;
    border-radius: 4px;
}

.goods-tags span {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

.goods-desc {
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}

.price-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 15px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-item {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 32px;
    box-sizing: border-box;
}

.price-item.member {
    background: #ef6920;
    color: #fff;
}

.price-item.normal {
    border: 1px solid #536083;
    color: #536083;
}

.btn-buy {
    display: inline-block;
    padding: 8px 25px;
    background: #1861c7;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.btn-buy:hover {
    background: #1254b3;
    color: #fff;
    text-decoration: none;
}

.goods-video {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-end;
    width: 320px;
}

.goods-video img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.goods-video img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 视频弹框样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

#modalVideo {
    width: 100%;
    background: black;
}

@media (max-width: 767px) {
    .container {
        padding: 0 8px;
    }

    .goods-item {
        flex-direction: column;
        padding: 12px;
        margin: 8px auto;
        border-radius: 8px;
        width: 80%;
        max-width: 400px;
    }
    
    .goods-image {
        width: 120px;
        margin: 0 auto 12px;
    }
    
    .goods-info {
        padding: 0;
        max-width: 100%;
    }

    .goods-header {
        margin-bottom: 10px;
    }
    
    .goods-video {
        width: 100%;
        margin-top: 12px;
        justify-content: center;
        gap: 8px;
    }

    .goods-video img {
        width: 70px;
        height: 70px;
    }
    
    .price-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin: 12px 0;
    }

    .price-wrapper {
        gap: 8px;
        margin: 0;
    }
    
    .price-item {
        height: 28px;
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .btn-buy {
        min-width: 140px;
        max-width: 180px;
        text-align: center;
        margin: 0;
        font-size: 13px;
        padding: 6px 20px;
    }

    .goods-title {
        font-size: 15px;
    }

    .goods-desc {
        font-size: 12px;
        line-height: 1.5;
        margin: 10px 0;
    }

    .goods-tags span {
        font-size: 11px;
        padding: 1px 8px;
        margin: 0 4px 4px 0;
    }

    .goods-tag {
        font-size: 11px;
        padding: 1px 6px;
    }

    .country-flag img {
        width: 24px;
        margin-right: 8px;
    }

    .top-banner-container {
        height: 140px;
        margin-bottom: 10px;
    }

    .top-banner-container img {
        height: 100%;
        object-position: center;
    }
}

.top-banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.top-banner-container img {
    width: 100%;
    display: block;
    object-fit: cover;
}
