/* 首页样式 */

/* 搜索栏 */
.search-bar {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    gap: 12px;
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    position: relative;
}

.search-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
}

.location-selector {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.location-selector:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
}

.location-selector:active {
    transform: scale(0.98);
    background: rgba(0, 0, 0, 0.06);
}

.location-selector .icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-left: 6px;
    display: inline-block;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.location-selector:active .icon {
    transform: rotate(180deg);
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.search-box:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.search-box:active {
    background: rgba(0, 0, 0, 0.07);
    transform: scale(0.99);
}

.search-icon {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
    opacity: 0.7;
    letter-spacing: 1px;
}

.search-placeholder {
    flex: 1;
    font-size: 14px;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* 轮播图 */
.banner-swiper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin: 0 0 24px 0;
    border-radius: 0;
}

.swiper-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide {
    position: relative;
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide:active img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.banner-text-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.swiper-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot:active::after {
    opacity: 1;
    width: 200%;
    height: 200%;
}

.dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 10px;
}

/* 主要功能入口 */
.main-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px 20px;
    padding: 24px 20px;
    background: transparent;
    margin: 0 0 24px 0;
    border-radius: 0;
    position: relative;
}

.main-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.main-nav-item:active {
    transform: scale(0.96);
}

.main-nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.main-nav-item:hover .main-nav-icon {
    transform: translateY(-3px);
}

.main-nav-item:active .main-nav-icon {
    transform: translateY(-1px);
}

.main-nav-icon .icon {
    width: 36px;
    height: 36px;
    background-size: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

.main-nav-item:hover .main-nav-icon .icon {
    transform: scale(1.08);
}

/* 每个图标的纯色 - 统一使用主题色 */
.main-nav-item:nth-child(1) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(2) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M19.36 2.64C19.85 2.16 20.05 1.5 19.93.87c-.12-.64-.59-1.18-1.22-1.36-.63-.18-1.3.01-1.78.5L4.29 13.29c-.39.39-.39 1.02 0 1.41l5.29 5.29c.39.39 1.02.39 1.41 0L21.64 7.64c.49-.48.68-1.15.5-1.78-.18-.63-.72-1.1-1.36-1.22-.63-.12-1.29.08-1.78.57l-5.29 5.29-1.41-1.41 5.29-5.29zM5.7 18.29l-3.29-3.29L12 2.29l3.29 3.29L5.7 18.29z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(3) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(4) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(5) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(6) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(7) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z'/%3E%3C/svg%3E");
}

.main-nav-item:nth-child(8) .main-nav-icon .icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.main-nav-text {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.main-nav-item:hover .main-nav-text {
    color: #333;
}

/* 分类网格（保留用于其他页面） */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 15px;
    background-color: #fff;
    margin-bottom: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1890FF 0%, #1565C0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: none;
    box-shadow: none;
    color: #fff;
    font-size: 24px;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* 不同分类图标的颜色 */
.category-item:nth-child(1) .category-icon {
    background-color: #E6F7FF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890FF'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
}

.category-item:nth-child(2) .category-icon {
    background-color: #FFF1F0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF4D4F'%3E%3Cpath d='M19.36 2.64C19.85 2.16 20.05 1.5 19.93.87c-.12-.64-.59-1.18-1.22-1.36-.63-.18-1.3.01-1.78.5L4.29 13.29c-.39.39-.39 1.02 0 1.41l5.29 5.29c.39.39 1.02.39 1.41 0L21.64 7.64c.49-.48.68-1.15.5-1.78-.18-.63-.72-1.1-1.36-1.22-.63-.12-1.29.08-1.78.57l-5.29 5.29-1.41-1.41 5.29-5.29zM5.7 18.29l-3.29-3.29L12 2.29l3.29 3.29L5.7 18.29z'/%3E%3C/svg%3E");
}

.category-item:nth-child(3) .category-icon {
    background-color: #FFF7E6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FAAD14'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
}

.category-item:nth-child(4) .category-icon {
    background-color: #E6FFFB;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2313C2C2'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z'/%3E%3C/svg%3E");
}

.category-item:nth-child(5) .category-icon {
    background-color: #F6FFED;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2352C41A'%3E%3Cpath d='M12 3L2 12h3v8h6v-6h2v6h6v-8h3L12 3zm0 2.84L18.16 11H16v7h-4v-6H8v6H4v-7H5.84L12 5.84z'/%3E%3C/svg%3E");
}

.category-item:nth-child(6) .category-icon {
    background-color: #FFF0F6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23EB2F96'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.category-item:nth-child(7) .category-icon {
    background-color: #F0F5FF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232F54EB'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

.category-item:nth-child(8) .category-icon {
    background-color: #F5F5F5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
}

.category-name {
    font-size: 12px;
    color: #333;
}

/* 区块标题 */
.section {
    margin-bottom: 24px;
    background-color: #fff;
    padding: 24px 20px;
    border-radius: 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #1890FF 0%, #1565C0 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    line-height: 1.3;
    position: relative;
}

.section-more {
    font-size: 14px;
    font-weight: 500;
    color: #1890FF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 8px;
    position: relative;
}

.section-more::after {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.section-more:hover {
    background: rgba(24, 144, 255, 0.08);
    color: #1565C0;
}

.section-more:hover::after {
    transform: translateX(2px);
}

.section-more:active {
    transform: scale(0.98);
    background: rgba(102, 126, 234, 0.12);
}

/* 限时抢购横向滚动 */
.flash-sale-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.flash-sale-scroll::-webkit-scrollbar {
    display: none;
}

.flash-sale-item {
    flex-shrink: 0;
    width: 150px;
    cursor: pointer;
}

.flash-sale-item img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
}

.item-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-price {
    margin-bottom: 6px;
}

.countdown {
    font-size: 12px;
    color: #FF4D4F;
    background-color: #fff5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* 装修套餐列表 */
.renovation-package-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.renovation-package-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.renovation-package-item:active {
    transform: scale(0.98);
}

.renovation-package-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.renovation-package-item:hover img {
    transform: translateY(-2px);
}

.package-info {
    padding: 0 4px;
}

.package-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.package-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff4757;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 12px;
    line-height: 1.4;
}

/* 服务人员展示区 */
.worker-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.worker-showcase-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(24, 144, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.worker-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.worker-showcase-item:hover::before {
    opacity: 1;
}

.worker-showcase-item:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.worker-showcase-avatar {
    position: relative;
    flex-shrink: 0;
}

.worker-showcase-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(24, 144, 255, 0.1);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
    transition: all 0.3s ease;
}

.worker-showcase-item:hover .worker-showcase-avatar img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.2);
}

.worker-showcase-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1890FF 0%, #1565C0 100%);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(24, 144, 255, 0.3);
    z-index: 1;
}

.worker-showcase-info {
    flex: 1;
    min-width: 0;
}

.worker-showcase-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.worker-showcase-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.worker-showcase-rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B00;
    letter-spacing: 0.1px;
}

.worker-showcase-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}

.worker-showcase-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.worker-showcase-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #1890FF;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.08) 0%, rgba(24, 144, 255, 0.05) 100%);
    border: 1px solid rgba(24, 144, 255, 0.15);
    border-radius: 12px;
    letter-spacing: 0.1px;
}

/* 监理人员展示区 */
.supervisor-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.supervisor-showcase-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    border: 1px solid rgba(24, 144, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.supervisor-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.supervisor-showcase-item:hover::before {
    opacity: 1;
}

.supervisor-showcase-item:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.supervisor-showcase-avatar {
    position: relative;
    flex-shrink: 0;
}

.supervisor-showcase-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(24, 144, 255, 0.1);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
    transition: all 0.3s ease;
}

.supervisor-showcase-item:hover .supervisor-showcase-avatar img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.2);
}

.supervisor-showcase-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(82, 196, 26, 0.3);
    z-index: 1;
}

.supervisor-showcase-info {
    flex: 1;
    min-width: 0;
}

.supervisor-showcase-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.supervisor-showcase-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.supervisor-showcase-rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B00;
    letter-spacing: 0.1px;
}

.supervisor-showcase-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}

.supervisor-showcase-projects {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.supervisor-showcase-project {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #52C41A;
    background: linear-gradient(135deg, rgba(82, 196, 26, 0.08) 0%, rgba(82, 196, 26, 0.05) 100%);
    border: 1px solid rgba(82, 196, 26, 0.15);
    border-radius: 12px;
    letter-spacing: 0.1px;
}

/* 设计师展示区 */
.designer-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.designer-showcase-item {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.designer-showcase-item:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.designer-showcase-cover {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.designer-showcase-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.designer-showcase-item:active .designer-showcase-cover img {
    transform: scale(1.05);
}

.designer-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: #fff;
}

.designer-showcase-avatar {
    margin-bottom: 8px;
}

.designer-showcase-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.designer-showcase-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
}

.designer-showcase-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.designer-showcase-rating-value {
    font-size: 12px;
    font-weight: 600;
    color: #FAAD14;
    margin-left: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.designer-showcase-info {
    padding: 12px;
    background-color: #fff;
}

.designer-showcase-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
    line-height: 1.4;
}

.designer-showcase-meta {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.1px;
}

.designer-showcase-meta span:not(:last-child) {
    margin-right: 4px;
}

/* 甄选套餐轮播 */
.package-carousel {
    position: relative;
    margin: 0;
    padding: 0 20px;
}

.package-carousel-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 20px 20px 20px;
    margin: 0 -20px 0 -20px;
}

.package-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.package-card {
    flex-shrink: 0;
    width: calc(100vw - 72px);
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.package-card:active {
    transform: scale(0.98);
}

.package-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.package-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    color: #fff;
}

.package-card-header {
    flex: 0 0 auto;
}

.package-card-name {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.package-card-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1890FF 0%, #1565C0 100%);
    border-radius: 2px;
}

.package-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.package-card-features li {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.package-card-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #1890FF;
}

.package-card-price {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.package-card-price::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1890FF 0%, #1565C0 100%);
    border-radius: 2px;
}

.package-card-footer {
    background: #fff;
    padding: 12px 20px;
    border-radius: 0;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.package-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-card-time {
    font-size: 12px;
    color: #1a1a1a;
    letter-spacing: 0.1px;
    line-height: 1.4;
}

.package-card-benefits {
    font-size: 12px;
    color: #1a1a1a;
    letter-spacing: 0.1px;
    line-height: 1.4;
}

.package-card-button {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1890FF 0%, #1565C0 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
    min-width: 100px;
}

.package-card-button:active {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    transform: scale(0.98);
}

.package-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.package-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D0D0D0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-carousel-dot.active {
    width: 20px;
    border-radius: 3px;
    background-color: #1890FF;
}

/* 商品/服务网格 */
.product-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.product-item,
.service-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-item::before,
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-item:hover::before,
.service-item:hover::before {
    opacity: 1;
}

.product-item:active,
.service-item:active {
    transform: scale(0.97);
}

.product-item img,
.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.product-item:hover img,
.service-item:hover img {
    transform: translateY(-4px) scale(1.02);
}

.product-item:active img,
.service-item:active img {
    transform: translateY(-1px) scale(0.98);
}

.product-name,
.service-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -0.2px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-item:hover .product-name,
.service-item:hover .service-name {
    color: #333;
}

.product-price,
.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff4757;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.product-price::before,
.service-price::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-price::before,
.service-item:hover .service-price::before {
    opacity: 1;
}

