
.header {
    border-radius: 8px;
    overflow: hidden;
    height: 124px;
    margin-bottom: 8px;
}

        h1 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }
        .recruit {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .recruit h2 {
            font-size: 18px;
            color: #e4393c;
            margin-bottom: 10px;
        }

        .recruit p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .filters {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .filter-btn {
            color: #333;
            font-size: 14px;
            background: none;
            border: none;
        }
        .item-title {
            font-size: 17px;
            line-height: 22px;
            font-weight: bold;
            color: #000;
            margin-bottom: 5px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2; /* 最多显示两行 */
        }

 /* 新增商品项图片样式 */
        .item {
            display: flex;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            background: #fff;
        }

.item-image {
    flex: 0 0 166px;
    height: 166px;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 6px;
}

.item-content {
    flex: 1;
    min-width: 0;
    padding: 7px;
}
.price {
    color: #e4393c;
    font-size: 16px;
    overflow: hidden;
    height: 21px;
    line-height: 21px;
    display: inline-block;
}
.price i{
    transform: rotate(-90deg);
    }
.original-price {
    color: #999;
    float: right;
}

.store-info {
    color: #666;
    font-size: 12px;
    width: 63%;
    height: 38px;
    overflow: hidden;
}
.store-info a{
    color: #666;
}
.distance {
    color: #648fce;
    font-size: 12px;
}
.extra-info a{
    color: #999;
}
.customer-service {
    color: #06c;
    font-weight: bold;
}
   



/* 增强版CSS */
.carousel-container {
    position: relative;
    overflow: hidden;
    user-select: none;
    width: 100%;
    max-width: 600px; /* 控制最大宽度 */
    margin: 0 auto;
}

.carousel-slider {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.image-container {
    width: 100%;
    height: 0;
    padding-bottom: 36%; /* 16:9比例 */
    position: relative;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 控制图片裁剪方式 */
    object-position: center;
}

/* 指示器样式优化 */
.indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 20px;
}

.indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: transform 0.2s;
}

.indicators span.active {
    background: #e4393c;
    transform: scale(1.2);
}

/* 按钮样式优化 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    line-height: 1;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }





.wal{
    width: 100%;
    background: #fff;
    padding: 13px 15px 0;
    margin: 0px auto 9px;
    border-radius: 20px 20px 0 0;
}

.filter-system{
    margin: 0 auto;
    overflow-y: auto;
    width: 100%;
}
.primary-filters{
    width: 760px;
    height: 34px;
    margin-top: 5px;
}
.primary-filter{
    width: 50%;
    float: left;
    text-align: center;
}
        /* 分类标签通用样式 */
        .filter-tag {
            padding: 6px 15px;
            background: #f8f8f8;
            border-radius: 15px;
            font-size: 13px;
            color: #666;
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-tag.active {
            background: #e4393c;
            color: white;
        }

        /* 操作按钮 */
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .action-btn {
            padding: 8px 25px;
            border-radius: 18px;
            border: none;
            background: #f0f0f0;
            color: #666;
        }

        .action-btn.reset {
            background: #e4393c;
            color: white;
        }
.knj{
    width: 34%;
}
.knj a{
    width: 100%;
    line-height: 26px;
    text-align: center;
    background: #ff7f1b;
    color: #fff;
    font-size: 14px;
    border-radius: 14px;
    display: inline-block;
}
.knj:nth-of-type(2) a{
    background: #77cf4b;
}
.yc,.cloned-item {display: none;}


.gundwk{
    width: 100%;
    height: 38px;
    border-radius:8px;
    overflow: hidden;
    background: #fedc54;
}
.danmu{
    width: 100%;
    font-size: 14px;
    position: relative;
    transition: transform 0.6s ease-in-out 0s;
}
.limian{
    width: 100%;
    height: 38px;
    line-height: 38px;
    color: #897500;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}
.limian span{
    color: #de3d00;
    margin: 0 5px;
}
.primary-filters a{
    padding: 3px 15px;
    font-size: 14px;
    color: #333;
 }

 .liedi{
    position: absolute;
 }
 .liedi a{
    color: #333;
    text-align: center;
    display: block;
    height: 65px;
    font-size: 12px;
    padding: 6px;
    width: 100%;
    margin: 0 auto 4px;
    overflow: hidden;
 }
.onn{
    background:#fedc54;
    border-radius: 15px;
}
 
 
 .liedi a img{
    width: 30px;
    height: 30px;
 }
.non{
    background: #fff;
    border-bottom: 3px solid #ff7f1b;
}

.jiashchik{
    position: fixed;
    top:0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: all 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
}
            .notice-header {
                padding: 10px 15px;
                border-bottom: 1px solid #eee;
                position: sticky;
                top: 0;
                background: #fedc54;
                z-index: 10;
                display: flex;
                align-items: center;
            }
            .back-btn {
                font-size: 20px;
                margin-right: 10px;
                color: #333;
                text-decoration: none;
            }
            .notice-title {
                font-size: 18px;
                font-weight: 600;
                flex: 1;
                text-align: center;
                margin-bottom: 0;
            }
            .tup{
                width: 100%;
                height: calc(100% - 50px);
                overflow-x: auto;
            }
            .tup img{
                width: 100%;
                height: auto;
            }
.jiar{
    width: 100%;
    height: 65px;
    margin: 8px auto 0;
}
.imtuo{
    width: 50px;
    height: 50px;
}
.imtuo img{
    width: 50px;
    height: 50px;
}
.kwkn{
    width: calc(100% - 65px);
}
.kwkn span{
    width: calc(100% - 70px);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
}
.kwkn font{
    font-size: 14px;
    line-height: 20px;
    height: 20px;
    width: calc(100% - 70px);
    display: block;
    color: #999;
}
.kwkn a{
    width: 60px;
    background: #fedc54;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    border-radius: 8px;
    color: #505050;
    text-align: center;
}
.hengkuang{
    width: 100%;
    height: 46px;
    padding: 5px 0px 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.dianyx{
    width: 98%;
    height: 40px;
    position: absolute;
    left:-100%;
    transition: all 0.5s;
}
.dianyx span{
    width: 36px;
    height: 36px;
    color: #585858;
    font-size: 11px;
    text-align: center;
    line-height: 12px;
    padding-top: 2px;
}
.dianyx span i{
    font-size: 18px;
    transform: rotate(-45deg);
}
.diquwaik{
    margin: 0 auto;
    overflow-y: auto;
    width: calc(100% - 38px);
    float: right;
    background: #fff;
    border-radius: 20px;
    padding: 0 15px;
    height: 36px;
}




.soukww{
    position: absolute;
    left: 1%;
    width: 98%;
    height: 44px;
    transition: all 0.5s;
}
.soukww span{
    width: 36px;
    height: 36px;
    color: #585858;
    font-size: 11px;
    text-align: center;
    line-height: 12px;
    padding-top: 2px;
}
.soukww span i{
    font-size: 18px;
}

 .ssk{
        width: calc(100% - 38px);
        height: 35px;
        margin: 0 auto 15px;
        float: left;
        background: #fff;
        border-radius: 25px;
        overflow: hidden;
    }
    .ssk input{
        width: calc(100% - 48px);
        height: 35px;
        border:none;
        border-right: none;
        padding: 0 10px;
        border-radius: 3px 0 0 3px;
        display: inline-block;
        vertical-align: middle; 
    }
    .ssk button{
        width: 45px;
        height: 29px;
        margin-right: 3px;
        border:none;
        border-left: none;
        border-radius: 20px;
        background: #fedc54;
        color: #585858;
        display: inline-block;
        vertical-align: middle; 
    }
    .ssk button i{
        line-height: 29px;
        font-size: 14px;
        }



