       /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #0066cc;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 顶部提示文字 */
        .top-banner {
            background-color: #f0f7ff;
            padding: 8px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #0066cc;
            border-bottom: 1px solid #e0e0e0;
        }
        
        /* 导航栏 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
        }
        .logo img {
    height: 40px; /* 根据实际需要调整高度 */
    width: auto;
}
        .nav-content {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            margin-right: auto;
        }
        
        .nav-links li {
            margin-right: 20px;
        }
        
        .nav-links a {
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #0066cc;
        }
        
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        
        .auth-btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .login-btn {
            background-color: transparent;
            color: #0066cc;
            border: 1px solid #0066cc;
        }
        
        .login-btn:hover {
            background-color: #f0f7ff;
        }
        
        .register-btn {
            background-color: #0066cc;
            color: white;
            border: 1px solid #0066cc;
        }
        
        .register-btn:hover {
            background-color: #0052a3;
        }
        
        /* 广告图区域 */
        .ad-banner {
            height: 500px;
            background-color: #e0e0e0;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('/Public/mobile/zp/banner.png');
            background-size: cover;
            background-position: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        /* 广告图区域 */
        .ad-banner2 {
            height: 500px;
            background-color: #e0e0e0;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('/Public/mobile/zp/banner2.png');
            background-size: cover;
            background-position: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        /* 主标题区域 */
        .hero {
            /*background: #ffffff;*/
            color: #000;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .hero p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 服务网格 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }
        
        .service-description {
            color: #666;
            margin-bottom: 15px;
        }
        
        .service-divider {
            height: 2px;
            margin: 15px 0;
            border: none;
        }
        
        .service-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .service-price {
             
            font-size: 1.2rem;
        }
        
        /* 服务图片 */
        .service-image {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 150px;
            height: 150px;
            border-radius: 8px;
            object-fit: cover;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .service-card:hover .service-image {
            opacity: 1;
        }
        
    /* 注册按钮区域 */
.register-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
}

.register-btn-large {
    display: inline-block;
    width: 250px;
    background-color: #FFD700;
    color: #333;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    margin: 0 auto;
}

.register-btn-large:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}
        
        
        /* 颜色主题 */
        .service-green {
            border-top: 4px solid #2ecc71;
        }
        
        .service-green .service-icon {
            color: #2ecc71;
        }
        
        .service-green .service-divider {
            background-color: #2ecc71;
        }
        
         
        .service-yellow {
            border-top: 4px solid #f1c40f;
        }
        
        .service-yellow .service-icon {
            color: #f1c40f;
        }
        
        .service-yellow .service-divider {
            background-color: #f1c40f;
        }
        
         
        
        .service-blue {
            border-top: 4px solid #3498db;
        }
        
        .service-blue .service-icon {
            color: #3498db;
        }
        
        .service-blue .service-divider {
            background-color: #3498db;
        }
        
       
        
        /* 工作者展示 */
        .workers-section {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
            color: #333;
        }
        .worker-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
        .workers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .worker-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            text-align: center;
        }
        
        .worker-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #e0e0e0;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #777;
        }
        
        .worker-name {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #333;
        }
        
        .worker-role {
            color: #666;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .worker-skills {
            color: #555;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .worker-stats {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 10px;
        }
        
        .worker-price {
            color: #0066cc;
            font-weight: bold;
        }
        
        .view-more {
            text-align: center;
            margin-top: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #0052a3;
        }
        
        /* 分类区域 */
        .categories {
            background-color: white;
            padding: 40px 0;
            margin-bottom: 50px;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .category-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 10px;
        }
        
        .category-list a {
            color: #555;
            transition: color 0.3s;
        }
        
        .category-list a:hover {
            color: #0066cc;
        }
        
        /* 页脚 */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .mobile-menu-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: relative;
}

.mobile-menu-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* 下拉菜单样式 */
.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 180px;
    z-index: 1000;
    padding: 10px 0;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.mobile-dropdown a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

.mobile-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.mobile-menu-icon {
    width: 34px;
    height: 34px;
    cursor: pointer;
}

/* 手机端登录注册按钮样式 */
.mobile-auth-buttons {
    display: flex;
    gap: 8px;
}

.mobile-auth-buttons .auth-btn {
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
}

.mobile-auth-buttons .login-btn {
    background-color: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.mobile-auth-buttons .register-btn {
    background-color: #0066cc;
    color: white;
    border: 1px solid #0066cc;
}

/* 下拉菜单样式 */
.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 150px;
    z-index: 1000;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}

.mobile-dropdown a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}    /* 移动端适配 */
        @media (max-width: 768px) {
            .nav-links, .auth-buttons {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
                align-items: center;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .service-image {
                width: 120px;
                height: 120px;
            }
            
            .worker-card {
                padding: 15px;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .ad-banner {
                height: 300px;
                font-size: 1.5rem;
            }
            .ad-banner2 {
                height: 300px;
                font-size: 1.5rem;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-menu {
                display: none;
            }
        }