@CHARSET "UTF-8";
/* 全新现代化热卖推荐区域样式 */
.modern-hot-sales {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    width: 1200px;
    margin: 10px auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.modern-hot-sales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.header-content h2.section-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header-content p.section-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin: 5px 0 0 0;
    font-weight: 300;
}

.view-all-btn {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 117, 125, 0.2);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(108, 117, 125, 0.2);
    color: #343a40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(255, 65, 108, 0.4);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.sales-badge {
    background: #e8f5e8;
    color: #28a745;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-name {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
}

.product-name a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #007bff;
}

.price-section {
    margin-bottom: 12px;
}

.current-price {
    color: #e74c3c;
    font-size: 18px;
    font-weight: 700;
    margin-right: 8px;
}

.original-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

.rating-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}

.stars {
    color: #ffc107;
    font-size: 12px;
}

.rating-text {
    color: #666;
    font-size: 12px;
}

.add-to-cart-btn {
    width: 100%;
 
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background-color: #ddd;
    transform: translateY(-2px);
   
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .modern-hot-sales {
        width: 95%;
        margin: 10px auto;
        padding: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .modern-hot-sales {
        padding: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-content h2.section-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .modern-hot-sales {
        padding: 15px;
        border-radius: 15px;
    }
    
    .header-content h2.section-title {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .view-all-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* 动画效果增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* 兼容性修复 */
.modern-hot-sales {
    -webkit-box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-card {
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.view-all-btn {
    -webkit-backdrop-filter: blur(10px);
}

.wst-filters{width:1200px;margin-left: auto;margin-right: auto;margin-top:10px;color:#999;background:#fff}
.wst-filters div.item,.wst-address div.item{float:left;margin-right:6px;position:relative;}
.wst-filters .arrow,.wst-address .arrow{float:left;position: relative;top:2px;padding-right:12px;font-style: normal;}
.wst-filters .item .link,.wst-address .item .link{color:#666;float:left;border:0px;margin-right:5px;height:22px;line-height: 22px;}
.wst-filters .item .drop-down,.wst-address .item .drop-down{float:left;margin-right:5px;border: 1px solid #eee;display: inline-block;height: 23px;line-height: 23px;padding: 0 4px 0 8px;vertical-align: top;position: relative;background-color: #fff;  }
.wst-filters .item .drop-down .drop-down-arrow,.wst-address .item .drop-down .drop-down-arrow{display: inline-block;width: 20px;height: 20px;vertical-align: top;background: url(../img/search.png) no-repeat 4px 7px;-webkit-transition: background-position .15s ease-in-out;-moz-transition: background-position .15s ease-in-out;transition: background-position .15s ease-in-out;} 
.wst-filters .item .drop-down.hover{border-color:#df2003;border-bottom:0;z-index: 100}
.wst-address .item .drop-down.hover{border-color:#ddd;border-bottom:0;z-index: 2}
.wst-filters .item .drop-down.hover .drop-down-arrow,.wst-address .item .drop-down.hover .drop-down-arrow{background-position: 4px -44px;}
.wst-filters .item .dorp-down-layer{border: 1px solid #ddd;border-top:0;display:none;left:0px;top:22px;position:absolute;z-index: 99;background:#fff;min-width: 320px;border: 1px solid #df2003;}
.wst-address .item .dorp-down-layer{padding:10px;border: 1px solid #ddd;border-top:0;display:none;left:0px;top:22px;position:absolute;z-index: 1;background:#fff;min-width: 320px;border: 1px solid #ddd;}
.wst-filters .item .dorp-down-layer div.cat1,.wst-address .item .dorp-down-layer div.cat1{float:left;width:140px;  overflow: hidden;text-overflow: ellipsis;white-space: nowrap;padding: 4px 8px;}
.wst-filters .item .dorp-down-layer div.cat2,.wst-address .item .dorp-down-layer div.cat2{float:left;width:80px;  overflow: hidden;text-overflow: ellipsis;white-space: nowrap;padding: 4px 8px;}
.wst-filters .item .dorp-down-layer div:hover,.wst-filters .item .dorp-down-layer a:hover{color:#df2003;cursor:pointer;}
.wst-address .item .dorp-down-layer div:hover,.wst-address .item .dorp-down-layer a:hover{color:#ff8043;;cursor:pointer;}
.wst-filters .item .v-item,.wst-address .item .v-item{float:left;color:#666;border: 1px solid #ddd;cursor: pointer;display: inline-block;font-size: 12px;height: 22px;line-height: 22px;margin: 0 5px 5px 0;padding: 0 30px 0 4px;position: relative;vertical-align: top;}
.wst-filters .item .v-item:hover,.wst-address .item .v-item:hover{border-color: #e4393c;}
.wst-filters .item .v-item i,.wst-address .item .v-item i{  display: block;position: absolute;  width: 25px;height: 22px;right: 0;text-align:center;font-style: normal;top: 0;}
.wst-filters .item .v-item:hover i,.wst-address .item .v-item:hover i{background-color: #e4393c;color: #fff;}
.wst-filters .keyword,.wst-address .keyword{height:22px;line-height:22px;}
.wst-selector{width:1200px;margin-left: auto;margin-right: auto;margin-top:10px;color:#999;}
.wst-selector .head{padding-left:10px;background: #f1f1f1 none repeat scroll 0 0;border-bottom: 1px solid #ddd;height: 34px;line-height: 34px;overflow: hidden;}
.wst-selector .main{background:#fff;}
.wst-selector .item{border-bottom: 1px solid #ddd;line-height: 34px;width:1200px;height:auto;border-bottom: 1px solid #ddd;}
.wst-selector .label{float:left;width:90px;padding-left:10px;}
.wst-selector .content{float:left;width:985px;min-height: 30px;overflow: hidden;}
.wst-selector .content .s-item{float:left;margin-right:50px;color:#666;cursor:pointer}
.wst-selector .extra{float:left;width:115px;margin-top: 5px;}
.extra_more{float: left;margin-right: 10px;position: relative;width: 39px;height: 23px;line-height: 23px;padding: 0 7px 0 4px;background: #fff;visibility: hidden;color: #333;border: 1px solid #ddd;}
.extra_multi{float: left;height: 23px;line-height: 23px;border: 1px solid #DDD;padding: 0 3px 0 18px;position: relative;background: #fff;color: #333;}
.extra_multi i,.extra_more i{position: absolute;display: block;font-style: normal;width: 13px;height: 20px;background-image: url(../img/search.png);transition:all ease 0.2s;}
.extra_more i{top: 1px;right: 2px;width: 20px;background-position: 4px 7px;}
.extra_more:hover,.extra_more:hover i{color:red;background-position: 4px -10px;}
.extra_multi:hover,.extra_multi:hover i{border-color: red;color:red;background-position: 0px -84px;}
.extra_more_on i{background-position: 4px -27px!important}
.extra_more_on:hover i{background-position: 4px -44px!important}
.extra_multi i{left: 3px;top: 1px;background-position: 0 -63px;}
.multi_on{border: 2px solid #edd28b!important;background: #fffdee;height: 120px;width:1195px!important;}
.multi_btns{width: 100%;text-align: center;margin: 10px 0;}
.multi_btns a{display: inline-block;padding: 0px 7px;border: 1px solid #ddd;color: #666;background-color: #f7f7f7;border-radius: 2px;}
.multi_btns .confirm_btn{background-color: #E74649;color: #fff;margin-right: 10px;visibility:hidden;}
.multi_btns .disable_btn{background-color: #ddd;color: #fff;}
.s-item i{position: absolute;left: 0;top: 2px;background: url(../img/search.png) no-repeat 9999px 9999px;display: inline-block;height: 12px;width: 12px;background-color: #fff;border: 1px solid #f1f1f1;font-size: 0;visibility: hidden;}
.selected i{border-color: #e4393c;background-position: -1px -107px!important;}
.multi_on .s-item i{visibility: visible;}
.s_chk{padding-left: 18px;position:relative}
.brand_itembox{padding: 1px 0!important;height: 70px;margin: 10px 0;}
.brand_item{width: 10%;border: 1px solid #DDD;margin: -1px -1px 0 0!important;height:68px;overflow:hidden;text-align: center;background-color: #fff;}
.brand_item a.s_chk{visibility: hidden!important;}
.brand_itembox .selected{position: relative;z-index: 10;border-color: #e4393c!important;}
.brand_itembox .selected .g_bd_imgbox{border-color: #e4393c;}
.brand_item:hover{position: relative;z-index: 10;border-color: #e4393c;box-shadow: 2px 2px 3px rgba(0,0,0,.12);}
.brand_item:hover .g_bd_imgbox{color:#e4393c;line-height: 68px;}
.brand_item:hover .g_bd_img{display: none;}
.g_bd_img{width: 100%;height: 100%;}
.g_bd_imgbox{border:1px solid transparent;width:98%;height:68px;line-height: 28px;}
.wst-selector .item-more-box{border-top: 1px solid #ddd;position: relative;text-align: center;top: -1px;transition: border-color 0.15s ease-in-out 0s;}
.wst-selector .item-more-box .item-more{position: relative;top:-1px;border-top:0px;padding:0 40px 0 20px;background: #fff none repeat scroll 0 0;border-color: #fff #ddd #ddd; border-style: solid;border-width: 1px;color: #333;cursor: pointer;display: inline-block;height: 28px;line-height: 28px;position:relative;}
.wst-selector .item-more-box .item-more i{display: inline-block;width: 20px;height: 20px;vertical-align: top;background: url(../img/search.png) no-repeat;position:absolute;top:3px;}
.wst-selector .item-more-box .item-more i.drop-down{background-position: 4px 7px;}
.wst-selector .item-more-box .item-more i.down-hover{background-position:  4px -11px;}
.wst-selector .item-more-box .item-more i.drop-up{background-position:  4px -27px;}
.wst-selector .item-more-box .item-more i.up-hover{background-position:  4px -44px;}
.wst-selector .item-more-box .item-more i.drop-down-icon{background-position:  4px -9px;}
.wst-selector .item-more-box:hover {border-color: #e4393c;}
.wst-selector .item-more-box:hover .item-more {border-color: #fff #e4393c #e4393c;color: #e4393c;}
.wst-container .goods-side{float:left;width:210px;margin-top:10px;margin-right:5px;}
.wst-container .goods-side .title{line-height:35px;background-color: #f7f7f7;text-align: center;}
.wst-container .goods-side .guess-like{min-height:300px;border:1px solid #eee;padding-bottom:10px;}
.wst-container .goods-side .item{padding-top:10px;background:#fff;}
.wst-container .goods-side .item .img{width:200px;margin:0 auto;text-align:center;vertical-align:middle;display:block;position:relative; display:table-cell; padding:4px;}
.wst-container .goods-side .item .img  a{display:table-cell;vertical-align:middle;width:200px; height:200px;} 
.wst-container .goods-side .item .img a img{max-width:190px;max-height:190px;} 
.wst-container .goods-side .item .p-price{padding:5px;font-weight: bold;color:#C00;font-size:14px;}
.wst-container .goods-side .item .v-price{text-decoration: line-through;color:#999;margin-left: 10px;font-weight: normal;font-size:12px}
.wst-container .goods-side .hot-goods{min-height:300px;border:1px solid #eee;margin-top: 15px;padding-bottom:10px;}
.wst-container .goods-main{float:right;width:980px;margin-top:10px;position: relative;}
.goods-main .goods-filters{border-top: 1px solid #ddd;margin-bottom: 5px;position: relative;z-index:4;}
.goods-main .goods-filters .line{padding:5px;height:25px;border-bottom: 1px solid #e5e5e5;}
.goods-main .goods-filters .line2{background:#f7f7f7;}
.goods-filters .line2 a{background: #fff none repeat scroll 0 0;border: 1px solid #e9e7e7;color: #333;float: left;height: 23px;line-height: 23px;padding: 0 20px;}
.goods-filters .line2 a:hover{border:1px solid #DF2003;}
.goods-filters .line .city{float:left;width:auto;}
.goods-filters .line .chk{float:left;height: 23px;line-height: 23px;margin-right:10px;}
.goods-filters .line a.curr {background: #DF2003 none repeat scroll 0 0;border: 1px solid #DF2003;color: #fff;}
.goods-filters .line .store,.goods-filters .line .store2,.goods-filters .line .store3{float:right;width:16px;height:13px;margin:5px 0px 0px 3px;}
.goods-filters .line .store{background:url(../img/store_icon_sx.png) 0px 0px no-repeat;}
.goods-filters .line .store2{background:url(../img/store_icon_sx_sel.png) 0px 0px no-repeat;}
.goods-filters .line .store3{background:url(../img/store_icon_sx_sel_up.png) 0px 0px no-repeat;}
.wst-price-ipts{float:left;position: relative;}
input.wst-price-ipt{width:66px;height: 19px;outline: none;padding-left:18px;border: 1px solid #e9e7e7;}
input.wst-price-ipt:focus{border: 1px solid #ff8043;}
.wst-price-ipt1{position: absolute;left: 14px;top: 4px;}
.wst-price-ipt2{position: absolute;right: 74px;top: 4px;}
.wst-price-but{outline: none;background:#f7f7f7;color: #9f9696;border: 1px solid #dad7d7;cursor:pointer;}
.wst-price-but:not(.disabled):not(:disabled):active, .wst-price-but.active{background: #f1f1f1;background-clip: padding-box;}
.goods-list{width:100%;}
.goods-list .goods{width:233px;margin:5px 4px 5px 6px;border:1px solid #eee;float:left;height:430px;background:#fff;}
.goods-list .goods:hover{border:1px solid #ddd;-webkit-box-shadow:0 0 10px #ddd;  -moz-box-shadow:0 0 10px #ddd;  box-shadow:0 0 10px #ddd;}
.goods-list .goods .img{width:233px;margin:0 auto;text-align:center;vertical-align:middle;display:block;position:relative; display:table-cell; padding:4px;}
.goods-list .goods .img  a{display:table-cell;vertical-align:middle;width:233px; height:233px;} 
.goods-list .goods .img a img{max-width:210px;max-height:210px;} 
.goods-list .goods .p-price{height:26px;line-height:26px;padding:5px 0px 5px 12px;font-weight: bold;color:#C00;font-size:14px;width:113px;float:left;overflow: hidden;}
.goods-list .goods .p-hsale{padding:5px 12px 5px 0;width:93px;float:right;text-align: right;}
.goods-list .goods .p-hsale span{font-weight: bold;color:#df2003;}
.goods-list .goods .p-hsale .p-add-cart{line-height: 24px;display: block;border: 1px solid #DF2003;width: 75px;height: 24px;text-align: center;color: #DF2003;float: right;}
.goods-list .goods .p-hsale .p-add-cart:hover{background: #DF2003;color: white;}
.goods-list .goods .p-name{height: 40px;line-height: 20px;overflow: hidden;width:210px;margin-left:12px;}
.goods-list .goods .p-shop{padding:5px 5px 5px 12px;position: relative;}
.goods-list .goods .p-shop .contrast{position: absolute;padding-left: 17px;top:5px;right:10px;z-index: 1;}
.goods-list .goods .p-shop .contrast:hover{color:#e4393c;}
.goods-list .goods .p-shop .contrast i{position: absolute;top: 3px;left: 0;width: 14px;height: 14px;background: url(../img/contrast.png) 0 0 no-repeat;background-size: 100%;}
.goods-list .goods .p-mprice{color:#999;padding:5px 0px 5px 12px;width:113px;float:left;}
.goods-list .goods .p-mprice span{text-decoration: line-through;}
.goods-list .goods .p-appraise{padding:5px 5px 5px 0px;width:100px;float:right;text-align: right;}
.goods-list .goods .p-appraise span{font-weight: bold;color:#1499E5;}
.goods-list .goods .tags{padding-left:10px;}
.goods-list .goods .tags .tag{background:#DF2003;color:#ffffff;padding:0px 4px 1px 4px;margin-right:5px;border-radius:8%}
.img_list{padding-left: 5px;}
.img_list li{float:left;width: 25px;height: 25px;margin-right: 2px;box-sizing:border-box;overflow: hidden;cursor: pointer;}
.img_list li.curr{border: 1px solid red;}
.img_list li img{max-width: 100%;max-height: 100%;}
.wst-recommend,.wst-relook{margin-bottom: 20px;height:410px;border:1px solid #ddd;}
.wst-recommend .title,.wst-relook .title, .wst-gview .title{line-height:35px;background-color: #f7f7f7;padding:0 10px;border-top:2px solid #ddd;}
.tgoods-list{width:100%;}
.tgoods-list .goods{width:230px;margin:5px 0px 5px 6px;border:1px solid #ddd;float:left;}
.tgoods-list .goods:hover{border:1px solid #ddd;-webkit-box-shadow:0 0 10px #ddd;  -moz-box-shadow:0 0 10px #ddd;  box-shadow:0 0 10px #ddd;  }
.tgoods-list .goods .img{width:230px;margin:0 auto;text-align:center;vertical-align:middle;display:block;position:relative; display:table-cell; padding:4px;}
.tgoods-list .goods .img  a{display:table-cell;vertical-align:middle;width:230px; height:230px;} 
.tgoods-list .goods .img a img{max-width:223px;max-height:223px;} 
.tgoods-list .goods .p-price{padding:5px 0px 5px 5px;font-weight: bold;color:#df2003;width:120px;float:left;font-size:14px;}
.tgoods-list .goods .p-hsale{padding:5px 5px 5px 0;width:100px;float:right;text-align: right;}
.tgoods-list .goods .p-hsale span{font-weight: bold;color:#df2003;}
.tgoods-list .goods .p-hsale .p-add-cart{line-height: 15px;display: block;border: 1px solid #ff6a53;width: 75px;height: 15px;text-align: center;color: #ff6a53;float: right;}
.tgoods-list .goods .p-hsale .p-add-cart:hover{background: #ff6a53;color: white;}
.tgoods-list .goods .p-name{height: 40px;line-height: 20px;overflow: hidden;padding:0 5px;}
.tgoods-list .goods .p-shop{padding:5px;}
.tgoods-list .goods .p-mprice{color:#999;padding:5px 0px 5px 5px;width:120px;float:left;}
.tgoods-list .goods .p-mprice span{text-decoration: line-through;margin-left: 10px;font-weight: normal;}
.tgoods-list .goods .p-appraise{padding:5px 5px 5px 0;width:100px;float:right;text-align: right;}
.tgoods-list .goods .p-appraise span{font-weight: bold;color:#1499E5;}
.wst-gview{margin-top:10px;margin-bottom: 20px;height:270px;border:1px solid #ddd;}
.wst-gview .view-goods .item{float:left;position:relative;width:162px;  margin: 5px 0px 5px 6px;border:1px solid #eeeeee;float:left;background:#fff;}
.wst-gview .view-goods .item:hover{border:1px solid #ddd;-webkit-box-shadow:0 0 10px #ddd;  -moz-box-shadow:0 0 10px #ddd;  box-shadow:0 0 10px #ddd;  }
.wst-gview .view-goods .item .img{width:156px;margin:0 auto;text-align:center;vertical-align:middle;display:block;position:relative; display:table-cell; padding:4px;}
.wst-gview .view-goods .item .img  a{display:table-cell;vertical-align:middle;width:156px; height:156px;} 
.wst-gview .view-goods .item .img a img{max-width:156px;max-height:156px;} 
.wst-gview .view-goods .item .p-price{padding:5px;font-weight: bold;color:#df2003;}
.wst-gview .view-goods .item .v-price{text-decoration: line-through;color:#999;margin-left: 6px;font-weight: normal;}
/*自定义复选框-列*/
.checkbox-box-s{float:left;width:15px;height:20px;margin-top: 3px;}
.wst-checkbox-s + label {-webkit-appearance: none;background-color: #ffffff;border: 1px solid #d5d5d5;padding: 6px;display: inline-block;position: relative;}
.wst-checkbox-s + label:after {content: '\2714';color: #f1f1f1;font-size: 13px;position: absolute;top: -5px;left: 1px;}
.wst-checkbox-s:checked + label{border: 1px solid #ff8043;/* 修改选框选中颜色*/}
.wst-checkbox-s:checked + label:after {content: '\2714';color: #ff8043;font-size: 13px;position: absolute;top: -5px;left: 1px;}
.checkbox-box-s .wst-checkbox-s{position:relative;z-index:-654;left:-6px;top:-1px;}
.checkbox-box-s label{position: relative;top:-24px;left:-4px;}
.wst-no-goods{height: 50px;line-height:50px;color:red;text-align:center;font-weight:bold;}
.wst-no-goods span{color:#999;}
/*发货地*/
.tab-header{border-bottom:2px solid #df2003;width: 100%;height:20px;background: #fff;}
.tab li{display:block;margin:0px;float:left;background-color:#fff;height:20px;}
.tab-item1 a{background: #fff;color:gray;border:1px solid #ddd;float:left;min-width:80px;width:auto;text-align: center;}
.j-tab-selected1 a{background: #fff;border:2px solid #df2003;border-bottom: #fff solid 2px;}
.area{float: left;overflow: hidden;padding: 4px 8px;text-overflow: ellipsis;white-space: nowrap;width: 80px;}
.area-box li{float:left;width:80px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;padding: 4px 8px;}
/*商品对比*/
.wst-contrast{width: 100%;padding-top: 20px;padding-bottom: 29px;}
.wst-contrast .goods{background: #fff;}
.wst-contrast .goods .table,.wst-contrast .table2{width: 100%;border-collapse: collapse;table-layout: fixed;border-top: 1px solid #e4e4e4;border-left: 1px solid #e4e4e4;margin-top: -1px;}
.wst-contrast .goods .table td,.wst-contrast .goods .table th{padding: 20px 0 16px;border-right: 1px solid #e4e4e4;border-bottom: 1px solid #e4e4e4;line-height: 24px;font-family: SimSun;background: #fff;}
.wst-contrast .goods .table th{width: 125px;text-align: right;font-weight: 400;background: #f7f7f7;color: #999;}
.wst-contrast .choice{margin-left: 10px;margin-bottom: 10px;text-align: left;}
.wst-contrast .choice input{margin-right: 5px;vertical-align: middle;}
.wst-contrast .choice label {display: inline-block;height: 16px;line-height: 16px;vertical-align: middle;color: #666;}
.wst-contrast .goods-item{width: 200px;margin: 0 auto;}
.wst-contrast .goods-item:hover .operation .del{opacity: 1;}
.wst-contrast .goods-item .img{width: 100%;height: 160px;text-align: center;}
.wst-contrast .goods-item .img img{width: 160px;border: 0;vertical-align: middle;}
.wst-contrast .goods-item .name{height: 32px;overflow: hidden;margin-top: 10px;line-height: 16px;color: #333;}
.wst-contrast .goods-item .price{height: 28px;line-height: 28px;margin-top: 10px;font-family: "Microsoft YaHei";font-size: 14px;color: #e4393c;}
.wst-contrast .goods-item .price span{font-size: 20px;font-weight: 400;}
.wst-contrast .goods-item .operation{position: relative;width: 100%;height: 30px;margin-top: 13px;}
.wst-contrast .goods-item .operation .see{display: block;margin-bottom: 10px;width: 80px;height: 30px;line-height: 30px;text-align: center;background: #e4393c;color: #fff;}
.wst-contrast .goods-item .operation .see:hover{background: #e75153;}
.wst-contrast .goods-item .operation .del{position: absolute;right: 0;top: 5px;font: 12px/20px SimSun;opacity: 0;}
.wst-contrast .goods-item .operation .del:hover{color: #e4393c;}
.wst-contrast .goods-fixed{position: fixed;top: 0;z-index: 100;left: 50%;width: 1200px;margin-left: -600px;}
.wst-contrast .goods-fixed .img{float:left;width: 100px;height: 100px;}
.wst-contrast .goods-fixed .img img{width: 90px;margin-top: 5px;}
.wst-contrast .goods-fixed .name{display: none;}
.wst-contrast .goods-fixed .price,.wst-contrast .goods-fixed .operation{float:left;width: 100px;}
.wst-contrast .goods-fixed .operation .del{right:-16px;}
.wst-contrast .goods-fixed2{display: none;}
.wst-contrast .goods-fixed2 th{height: 126px;}
.wst-contrast .table2 td,.wst-contrast .table2 th{padding: 20px 0 16px;border-right: 1px solid #e4e4e4;border-bottom: 1px solid #e4e4e4;line-height: 24px;font-family: SimSun;background: #fff;}
.wst-contrast .table2 th {width: 125px;text-align: right;font-weight: 400;background: #f7f7f7;color: #999;}
.wst-contrast .table2 .left-title{margin-right: 36px;}
.wst-contrast .table2 .right-title{padding-left: 35px;width: 200px;overflow: hidden;word-wrap: break-word;}
.wst-contrast .table2 .list-box{width: 200px;padding-left: 35px;}
.wst-contrast .table2 .list-box li{float: left;height: 29px;line-height: 29px;padding: 0 13px;border: 1px solid #d7d7d7;margin-right: 6px;margin-bottom: 6px;cursor: pointer;}
.wst-contrast .table2 .list-box li.img{padding:0;height: 40px;}
.wst-contrast .table2 .list-box li img{width: 40px;height: 40px;}
.wst-contrast .table2 .list-box li:hover{color: #e4393c;}
.wst-contrast .table2 .list-box li.active{color: #e4393c;border-color: #e4393c;}
.wst-contrast .table2 .identical_0.active td{background: #f4f9fd;}
.wst-contrast .table2 .identical_1.active{display: none;}
/*商品对比*/
.wst-cont-frame{position: fixed;bottom: -200px;right: 50%;margin-right: -602px;z-index: 100;width: 986px;height: 139px;background: #fff;-moz-box-shadow: 0 0 15px rgba(221,221,221,0.8);-webkit-box-shadow: 0 0 15px rgba(221,221,221,0.8);box-shadow: 0 0 15px rgba(221,221,221,0.8);-webkit-transition: all .2s linear;transition: all .2s linear;}
.wst-cont-frame.show{bottom: 0;}
.wst-cont-frame .head{height: 32px;border: 1px solid #ddd;border-bottom: 2px solid #e23c3d;position: relative;}
.wst-cont-frame .head span{float: left;width: 80px;height: 36px;line-height: 30px;text-align: center;font: 14px/30px 'microsoft yahei';position: relative;left: -1px;margin-top: -4px;background: #fff;border: 2px solid #e23c3d;border-bottom: 0;color: #e23c3d}
.wst-cont-frame .head .close{text-align: right;position: absolute;right: 0;top: 0;padding-right: 22px;height: 30px;line-height: 30px;color: #005aa0;}
.wst-cont-frame .list{border: 2px solid #e23c3d;border-top: none;position: relative;}
.wst-cont-frame .goods{padding: 6px;color: #f1f1f1;height: 90px;overflow: hidden;}
.wst-cont-frame .term{float: left;overflow: hidden;margin-right: 10px;padding: 17px 10px 12px 0;border-right: 1px dotted #e23c3d;}
.wst-cont-frame .term:hover .info .price a{opacity: 1;}
.wst-cont-frame .term .img{float: left;margin-right: 5px;width: 48px;height: 48px;text-align: center;border: 1px solid #fff;overflow: hidden;}
.wst-cont-frame .term .info,.wst-cont-frame .list .term-empty .info{float: left;width: 140px;}
.wst-cont-frame .term .info .name{height:36px;line-height: 18px;overflow: hidden;display: block;color: #333;}
.wst-cont-frame .term .info .price span{color: #e4393c;font-size: 14px;font-family: Verdana;font-weight: bold;}
.wst-cont-frame .term .info .price a{padding-left: 10px;color: #005aa0;opacity: 0;}
.wst-cont-frame .term-empty{float: left;overflow: hidden;margin-right: 10px;padding: 17px 10px 12px 0;border-right: 1px dotted #e23c3d;}
.wst-cont-frame .term-empty .img{float: left;margin-right: 5px;width: 48px;height: 48px;text-align: center;color: #f1f1f1;border: 1px solid #fff;font: 36px/48px arial;overflow: hidden;background: #f5f5f5;}
.wst-cont-frame .term-contrast{position: absolute;right: 22px;top: 22px;width: 85px;text-align: center;}
.wst-cont-frame .term-contrast .contrast{display: block;margin: 0 auto;margin-bottom: 10px;font: bold 14px/30px verdana;width: 60px;height: 30px;line-height: 30px;text-align: center;background: #e4393c;color: #fff;}
.wst-cont-frame .term-contrast .contrast:hover{background: #e75153;}
.wst-cont-frame .term-contrast .empty{color: #005aa0;}

/* ==================== 全新现代化商品列表布局样式 ==================== */

/* 主容器 */
.modern-goods-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px 0;
    background: #f8f9fa;
}

/* 左侧边栏 */
.modern-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.recommend-section, .hot-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(223, 32, 3, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #df2003;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.section-title .icon {
    font-size: 18px;
}

.recommend-item, .hot-item {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.recommend-item:last-child, .hot-item:last-child {
    border-bottom: none;
}

.recommend-item:hover, .hot-item:hover {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px 10px;
    margin: 0 -10px;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-name {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.item-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-name a:hover {
    color: #df2003;
}

.item-price .current {
    color: #df2003;
    font-weight: 700;
    font-size: 16px;
}

.item-price .original {
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
    margin-left: 8px;
}

/* 主内容区域 */
.modern-main {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(223, 32, 3, 0.1);
}

/* 现代化工具栏 */
.modern-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-bottom: 2px solid #df2003;
    flex-wrap: wrap;
    gap: 15px;
}

.toolbar-left, .toolbar-center, .toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.sort-btn:hover {
    border-color: #df2003;
    color: #df2003;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 32, 3, 0.2);
}

.sort-btn.active {
    background: #df2003;
    border-color: #df2003;
    color: white;
    box-shadow: 0 4px 12px rgba(223, 32, 3, 0.3);
}

.sort-icon {
    font-size: 12px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.sort-icon.asc {
    transform: rotate(180deg);
}

.sort-icon.desc {
    transform: rotate(0deg);
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: #df2003;
    box-shadow: 0 0 0 2px rgba(223, 32, 3, 0.1);
}

.separator {
    color: #999;
    font-weight: 600;
}

.confirm-btn {
    padding: 8px 16px;
    background: #df2003;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.confirm-btn:hover {
    background: #c41e02;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(223, 32, 3, 0.3);
}

.pagination-mini {
    display: flex;
    gap: 8px;
}

.page-btn {
    padding: 8px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: #df2003;
    color: #df2003;
    background: #fef7f7;
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: #fafafa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.area-selector {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.dropdown-btn:hover {
    border-color: #df2003;
    color: #df2003;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.area-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.tab-item {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: #fafafa;
    color: #df2003;
}

.tab-item.active {
    color: #df2003;
    border-bottom-color: #df2003;
    background: #fef7f7;
}

.area-options {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.area-option {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.area-option:hover {
    background: #fef7f7;
    color: #df2003;
}

.filter-options {
    display: flex;
    gap: 20px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.filter-checkbox {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox:checked + .checkbox-custom {
    background: #df2003;
    border-color: #df2003;
}

.filter-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.option-text {
    transition: color 0.3s ease;
}

.filter-option:hover .option-text {
    color: #df2003;
}

/* 商品网格 */
.modern-goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 25px;
}

.modern-goods-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
}

.modern-goods-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #df2003;
}

.card-header {
    position: relative;
}

.goods-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goods-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modern-goods-card:hover .goods-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-goods-card:hover .image-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #df2003;
    color: white;
    transform: scale(1.1);
}

.image-gallery {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: #fafafa;
    overflow-x: auto;
}

.gallery-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #df2003;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.goods-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.goods-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.goods-title a:hover {
    color: #df2003;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    color: #df2003;
    font-size: 20px;
    font-weight: 700;
}

.original-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

.sales-info {
    font-size: 12px;
}

.sales-count {
    background: #e8f5e8;
    color: #28a745;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.rating-section {
    margin-bottom: 15px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    color: #666;
    font-size: 12px;
}

.shop-info {
    margin-bottom: 15px;
}

.shop-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.shop-name:hover {
    color: #df2003;
}

.shop-icon {
    font-size: 14px;
}

.goods-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tag {
    background: #fef7f7;
    color: #df2003;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(223, 32, 3, 0.2);
}

.card-footer {
    padding: 0 20px 20px;
}

.add-cart-btn {
    width: 100%;
    padding: 12px;
    background: #df2003;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-cart-btn:hover {
    background: #c41e02;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 32, 3, 0.3);
}

.cart-icon {
    font-size: 16px;
}

/* 分页器样式 */
.modern-pagination {
    padding: 30px 25px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .modern-goods-container {
        width: 95%;
        margin: 0 auto;
        padding: 15px;
    }
    
    .modern-goods-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .modern-goods-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .modern-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .modern-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .toolbar-left, .toolbar-center, .toolbar-right {
        justify-content: center;
    }
    
    .sort-options {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .modern-goods-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 600px) {
    .modern-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sort-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .price-input {
        width: 100%;
    }
    
    .filter-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .modern-goods-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .goods-image {
        height: 200px;
    }
}

/* 动画增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-goods-card {
    animation: fadeInUp 0.6s ease-out;
}

.modern-goods-card:nth-child(odd) { animation-delay: 0.1s; }
.modern-goods-card:nth-child(even) { animation-delay: 0.2s; }

/* 滚动条美化 */
.area-options::-webkit-scrollbar {
    width: 6px;
}

.area-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.area-options::-webkit-scrollbar-thumb {
    background: #df2003;
    border-radius: 3px;
}

.area-options::-webkit-scrollbar-thumb:hover {
    background: #c41e02;
}

/* 增强动画和交互效果 */
.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.filter-option.clicked {
    transform: scale(0.95);
}

.sort-icon.bounce {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* 加载状态 */
.modern-goods-card.loading {
    background: #f8f9fa;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* 工具提示 */
.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 8px;
    background: #333;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

.tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #333;
    margin-bottom: -4px;
}

/* 无商品状态 */
.no-goods-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-goods-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-goods-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.no-goods-subtext {
    font-size: 14px;
    color: #ccc;
}

/* 快速操作按钮增强 */
.action-btn.favorite.active {
    background: #ff4757;
    color: white;
}

.action-btn.compare.active {
    background: #3742fa;
    color: white;
}

/* 商品标签特殊样式 */
.tag.hot {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 107, 107, 0);
    }
}

.tag.new {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: white;
}

.tag.free-shipping {
    background: linear-gradient(45deg, #70a1ff, #5352ed);
    color: white;
}

/* 商品卡片状态 */
.modern-goods-card.sold-out {
    opacity: 0.6;
    position: relative;
}

.modern-goods-card.sold-out::after {
    content: '暂时缺货';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* 价格动画 */
.current-price {
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(223, 32, 3, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(223, 32, 3, 0.6);
    }
}

/* 评分星级动画 */
.stars {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: starShine 2s ease-in-out infinite;
}

@keyframes starShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}