@charset "utf-8";

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 15px;*/
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #1a5f9c 0%, #1e88e5 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: #ffd700;
            margin-left: 5px;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 36px;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .copy-btn, .login-btn {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
        }
        
        .copy-btn {
            background-color: #ffd700;
            color: #333;
        }
        
        .copy-btn:hover {
            background-color: #ffea00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .login-btn {
            background-color: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .login-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        /* 导航样式 */
        nav {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            /*  position: sticky;*/
            top: 0;
            z-index: 999;
            border-bottom: 1px solid #eee;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .main-nav {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            position: relative;
        }
        
        .main-nav li a {
            display: block;
            padding: 18px 22px;
            color: #444;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .main-nav li a:hover, .main-nav li a.active {
            color: #1e88e5;
            background-color: #f5f9ff;
        }
        
        .main-nav li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            width: 60%;
            height: 3px;
            background-color: #1e88e5;
            border-radius: 3px 3px 0 0;
        }
        
        .city-nav {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            background-color: #f8fafc;
            padding: 12px 0;
            border-top: 1px solid #eee;
            justify-content: center;
        }
        
        .city-nav li a {
            display: block;
            padding: 6px 18px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 20px;
            margin: 3px;
            font-size: 14px;
        }
        
        .city-nav li a:hover {
            color: #1e88e5;
            background-color: #e3f2fd;
        }
        
        /* 内容区域 */
        .content-section {
            background-color: white;
            margin: 25px 0;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f4f8;
        }
        
        .section-title {
            font-size: 24px;
            color: #1a5f9c;
            margin: 0;
            font-weight: 600;
        }
        
        .section-more {
            color: #1e88e5;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .section-more:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }
        
        .info-card {
            border: 1px solid #e0e6ed;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .info-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
            border-color: #c5d9f1;
        }
        
        .info-card h3 {
            color: #1a5f9c;
            margin-bottom: 12px;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .info-card p {
            margin-bottom: 10px;
            color: #555;
            font-size: 15px;
            line-height: 1.5;
        }
        
        .info-card .highlight {
            color: #e53935;
            font-weight: 500;
        }
        
        .info-card .expire {
            color: #e53935;
            font-weight: bold;
            font-size: 14px;
            margin-top: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-card .expire::before {
            content: '⏰';
            margin-right: 5px;
        }
        
        .info-card img {
            max-width: 100%;
            height: auto;
            margin: 15px 0;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .info-card:hover img {
            transform: scale(1.02);
        }
        
        .info-card .tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #1e88e5;
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* 广告区域 */
        .ad-section {
            width: 100%;
            height: 100px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f2 100%);
            margin: 25px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: #7a8ba9;
            font-size: 18px;
            border: 1px dashed #d1d9e6;
            transition: all 0.3s;
        }
        
        .ad-section:hover {
            background: linear-gradient(135deg, #e3e9f2 0%, #d1d9e6 100%);
            color: #5a6a8a;
        }
        
        /* 特色服务区块 */
        .feature-box {
            display: flex;
            background: linear-gradient(135deg, #1a5f9c 0%, #1e88e5 100%);
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(26, 95, 156, 0.2);
        }
        
        .feature-content {
            flex: 1;
            padding: 30px;
            color: white;
        }
        
        .feature-content h2 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-content p {
            margin-bottom: 20px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .feature-btn {
            display: inline-block;
            background-color: white;
            color: #1a5f9c;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .feature-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-image {
            flex: 1;
            background-size: cover;
            background-position: center;
        }
        
        /* 务工指南区块 */
        .guide-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .guide-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .guide-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .guide-image {
            height: 150px;
            background-size: cover;
            background-position: center;
        }
        
        .guide-content {
            padding: 20px;
        }
        
        .guide-content h3 {
            color: #1a5f9c;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .guide-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .guide-link {
            color: #1e88e5;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .guide-link::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .guide-link:hover::after {
            margin-left: 8px;
        }
        
        /* 务工商业化区块 */
        .business-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .business-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid #e0e6ed;
        }
        
        .business-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #c5d9f1;
        }
        
        .business-header {
            padding: 20px;
            background-color: #f8fafc;
            border-bottom: 1px solid #e0e6ed;
        }
        
        .business-header h3 {
            color: #1a5f9c;
            margin: 0;
            font-size: 18px;
        }
        
        .business-body {
            padding: 20px;
        }
        
        .business-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .business-icon {
            width: 40px;
            height: 40px;
            background-color: #e3f2fd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a5f9c;
            font-size: 18px;
        }
        
        .business-feature-text h4 {
            margin: 0;
            color: #333;
            font-size: 16px;
        }
        
        .business-feature-text p {
            margin: 5px 0 0;
            color: #666;
            font-size: 14px;
        }
        
        .business-footer {
            padding: 15px 20px;
            background-color: #f8fafc;
            border-top: 1px solid #e0e6ed;
            text-align: center;
        }
        
        .business-link {
            color: #1e88e5;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .business-link::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .business-link:hover::after {
            margin-left: 8px;
        }
        
        /* 务工生活服务区块 */
        .life-service {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .service-image {
            height: 160px;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            color: #1a5f9c;
            margin: 0 0 10px;
            font-size: 18px;
        }
        
        .service-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            flex: 1;
        }
        
        .service-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .service-price {
            color: #e53935;
            font-weight: bold;
            font-size: 16px;
        }
        
        .service-link {
            color: #1e88e5;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .service-link::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .service-link:hover::after {
            margin-left: 8px;
        }
        
        /* 页脚 */
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ffd700;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
            display: block;
            padding: 5px 0;
        }
        
        .footer-column ul li a:hover {
            color: #ffd700;
            transform: translateX(5px);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        
        .footer-contact p i {
            margin-right: 10px;
            color: #ffd700;
            width: 20px;
            text-align: center;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: #ffd700;
            color: #2c3e50;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 13px;
        }
        
        /* 复制提示 */
        .copy-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #4CAF50;
            color: white;
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* 二维码样式 */
        .qr-code {
            text-align: center;
            margin: 20px 0;
        }
        
        .qr-code img {
            max-width: 180px;
            height: auto;
            margin: 0 auto;
            border: 1px solid #eee;
            padding: 10px;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .qr-code p {
            margin-top: 10px;
            color: #666;
            font-size: 14px;
        }
        
        /* 手机端样式 */
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .header-actions {
                width: 100%;
                justify-content: center;
            }
            
            .main-nav {
                overflow-x: auto;
                padding-bottom: 10px;
                white-space: nowrap;
                display: block;
                -webkit-overflow-scrolling: touch;
            }
            
            .main-nav li {
                display: inline-block;
            }
            
            .main-nav li a {
                padding: 15px 18px;
            }
            
            .city-nav {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            .city-nav li {
                flex: 0 0 auto;
            }
            
            .feature-box {
                flex-direction: column;
            }
            
            .feature-image {
                height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .info-grid, .business-container, .guide-container, .life-service {
                grid-template-columns: 1fr;
            }
            
            .content-section {
                padding: 20px 15px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .footer-column {
                margin-bottom: 20px;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .content-block {
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .content-block:nth-child(1) { animation-delay: 0.1s; }
        .content-block:nth-child(2) { animation-delay: 0.2s; }
        .content-block:nth-child(3) { animation-delay: 0.3s; }
        .content-block:nth-child(4) { animation-delay: 0.4s; }
        .content-block:nth-child(5) { animation-delay: 0.5s; }
        .content-block:nth-child(6) { animation-delay: 0.6s; }
        .content-block:nth-child(7) { animation-delay: 0.7s; }
        .content-block:nth-child(8) { animation-delay: 0.8s; }
        .content-block:nth-child(9) { animation-delay: 0.9s; }
        .content-block:nth-child(10) { animation-delay: 1s; }
        
        /* 返回顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #ff4d8a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #ff7eab;
            transform: translateY(-3px);
        }

.qr-code {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
}

.ad-banner {
    width: 100%;
    max-width: 1660px;
    height: auto;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.ad-banner:hover {
    transform: translateY(-3px);
}

.zjiteminfo {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.zjiteminfo img{
    border-radius: 16px;   
}

.zjiteminfo a{
    color:#e82f6e ;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;

}
.zjiteminfo:hover {
    transform: translateY(-3px);
    border-radius: 16px; 
}




        .ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.ad-label {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }