@charset "utf-8";

:root {
            --primary-color: #2a5caa;
            --secondary-color: #f8b500;
            --accent-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #333;
            --text-light: #777;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.7;
            font-size: 16px;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #3a7bd5 100%);
            color: #ea51bd;
            padding: 25px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            /*  position: sticky;*/
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 30px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .hotline {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 10px 15px;
            border-radius: 30px;
            transition: var(--transition);
        }
        
        .hotline:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }
        
        .hotline i {
            font-size: 20px;
            margin-right: 8px;
        }
        
        .hotline span {
            font-size: 18px;
            font-weight: 600;
        }
        
        nav {
            margin: 20px 0;
            width: 100%;
        }
        
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
        }
        
        .nav-links li a {
            color: #ea51bd;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 20px;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.1);
            white-space: nowrap;
            font-size: 15px;
            display: flex;
            align-items: center;
        }
        
        .nav-links li a i {
            margin-right: 5px;
        }
        
        .nav-links li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .nav-links li.active a {
            background-color: var(--secondary-color);
            color: #ea51bd;
            font-weight: 600;
        }
        
        .search-box {
            display: flex;
            width: 100%;
            max-width: 600px;
            margin: 20px 0;
        }
        
        .search-box input {
            padding: 14px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 100%;
            font-size: 16px;
            outline: none;
            box-shadow: var(--shadow);
        }
        
        .search-box button {
            padding: 0 25px;
            background-color: var(--secondary-color);
            color: #333;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
        }
        
        .search-box button:hover {
            background-color: #ffc300;
        }
        
        /* 主要内容样式 */
        main {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 28px;
            margin: 40px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            color: var(--primary-color);
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 24px;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 25px;
            padding-left: 35px;
        }

        .zj-section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-top: 50px;
            text-align: center;
            margin-bottom: 25px;
            padding: 10px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .card {
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
        }
        
        .card-img-container {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .card-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .card-subtitle .rating {
            color: var(--secondary-color);
            margin-left: 10px;
            font-weight: bold;
        }
        
        .card-detail {
            margin-bottom: 12px;
            display: flex;
        }
        
        .card-detail-label {
            font-weight: 600;
            min-width: 90px;
            color: var(--primary-color);
        }
        
        .card-detail-value {
            flex: 1;
        }
        
        .card-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        
        .skill-tag {
            background-color: #e3f2fd;
            color: var(--primary-color);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 13px;
        }
        
        .card-contact {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed var(--border-color);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .contact-item i {
            margin-right: 5px;
            font-size: 18px;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn i {
            margin-right: 5px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #1e4b9b;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            color: #333;
        }
        
        .btn-secondary:hover {
            background-color: #e6ac00;
            transform: translateY(-2px);
        }
        
        /* 广告样式 */
        .ad-container {
            width: 100%;
            margin: 40px 0;
            position: relative;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        
        .ad-label {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 12px;
            z-index: 1;
        }
        
        .ad-content {
            padding: 20px;
            text-align: center;
            width: 100%;
        }
        
        .ad-title {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .ad-text {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .ad-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
        }
        
        .ad-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }
        
        /* 特色服务区 */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .feature-desc {
            color: var(--text-light);
            font-size: 15px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #2a5caa;
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            padding: 15px;
        }
        
        .footer-section {
            flex: 1;
            min-width: auto;
            max-width: 100%;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo span {
            color: var(--secondary-color);
        }
        
        .footer-about {
            color: #ea51bd;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: #ea51bd;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-color);
            color: #ea51bd;
            transform: translateY(-3px);
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a {
            color: #ea51bd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .footer-links li a i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .footer-links li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact li i {
            margin-right: 10px;
            color: var(--secondary-color);
            font-size: 18px;
            margin-top: 3px;
        }
        
        .footer-contact span {
            flex: 1;
            color: #ea51bd;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #eb08d5;
            color: #ea51bd;
            font-size: 16px;
        }
        
        /* 复制按钮 */
        .copy-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
        }
        
        .copy-btn:hover {
            background-color: #1e4b9b;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }
        
        .copy-btn i {
            font-size: 24px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                align-items: stretch;
            }
            
            .header-right {
                margin-top: 15px;
                justify-content: flex-start;
            }
            
            .search-box {
                max-width: 100%;
            }
            
            .section-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                gap: 5px;
                justify-content: center;
            }
            
            .nav-links li a {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .copy-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            
            .hotline span {
                font-size: 16px;
            }
            
            .card-title {
                font-size: 20px;
            }
            
            .card-detail {
                flex-direction: column;
            }
            
            .card-detail-label {
                margin-bottom: 3px;
            }
            
            .card-contact {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        /* 图标字体模拟 */
        i {
            font-style: normal;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        i.phone:before {
            content: "📞";
        }
        
        i.home:before {
            content: "🏠";
        }
        
        i.user:before {
            content: "👤";
        }
        
        i.star:before {
            content: "⭐";
        }
        
        i.calendar:before {
            content: "📅";
        }
        
        i.money:before {
            content: "💰";
        }
        
        i.clock:before {
            content: "⏰";
        }
        
        i.search:before {
            content: "🔍";
        }
        
        i.copy:before {
            content: "📋";
        }
        
        i.wechat:before {
            content: "💬";
        }
        
        i.shield:before {
            content: "🛡️";
        }
        
        i.medal:before {
            content: "🏅";
        }
        
        i.certificate:before {
            content: "📜";
        }
        
        i.heart:before {
            content: "❤️";
        }
        
        i.info:before {
            content: "ℹ️";
        }
        
        i.ad:before {
            content: "📢";
        }
        
        i.baby:before {
            content: "👶";
        }
        
        i.clean:before {
            content: "🧹";
        }
        
        i.food:before {
            content: "🍳";
        }
        
        i.car:before {
            content: "🚗";
        }
        
        i.company:before {
            content: "🏢";
        }
        
        i.product:before {
            content: "🛍️";
        }
        
        i.industry:before {
            content: "🏭";
        }
        
        i.monetization:before {
            content: "💲";
        }
    
    .ad-section, .ad-container,.ad-banner {
    background-color: white;
    /*  border: 1px solid #eaeff5;*/
    border-radius: 0px;
    padding: 0px;
    margin: 10px auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);    
    max-width: 1660px;
}

.ad-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    color: #666;
    font-size: 18px;
    min-height: auto;
    /*  border: 1px dashed #ccc;*/

}


.ad-section, .ad-container,.ad-banner {
    position: relative;
    width: 100%;
    max-width: 1660px;
    height: auto;
    min-height: auto;
    background-color: white;    
    /*background: linear-gradient(135deg, #f5f5f5, #e0e0e0); */ 
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*  border-radius: 8px;*/
    overflow: hidden;
    /* padding: 15px; */
    text-align: center;
    border: 1px dashed #ccc;
}

.ad-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #999;
    font-weight: bold;
    opacity: 0.5;
}

.ad-banner span {
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
    padding: 5px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.ad-banner span::before {
    content: "📞";
    margin-right: 8px;
}

.ad-label {
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: bold;
}





    /* 统一链接样式 - 保持原按钮样式 */
    .copy-link, 
    .text-link,
    .back-to-top-link {
        display: inline-block;
        padding: 10px 15px;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    /* 主要链接样式（原btn-primary） */
    .copy-link, 
    .text-link.primary {
        background: #4CAF50;
    }
    
    /* 次要链接样式（原btn-secondary） */
    .text-link.secondary {
        background: #6c757d;
    }
    
    /* 悬停效果 */
    .copy-link:hover, 
    .text-link.primary:hover {
        background: #45a049;
    }
    
    .text-link.secondary:hover {
        background: #5a6268;
    }
    
    .copy-link i, 
    .text-link i,{
        margin-right: 5px;
    }
       .back-to-top-link {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: none;
        width: 50px;
        height: 50px;
        background-color: #4a6cf7;
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 24px;
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .back-to-top-link:hover {
        background-color: #3a5ce4;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .back-to-top-link:active {
        transform: translateY(0);
    }
    
    /* 固定位置的复制链接 */
    .copy-link {
        position: fixed;
        right: 20px;
        bottom: 160px;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }