@charset "utf-8";

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 15px;*/
        }
        header {
            background: linear-gradient(135deg, #1a5276, #2980b9);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .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: #f39c12;
            margin-left: 5px;
        }
        .logo:before {
            content: "💰";
            margin-right: 10px;
            font-size: 36px;
        }
        .contact {
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        .contact:before {
            content: "📞";
            margin-right: 5px;
        }
        nav {
            background-color: #2980b9;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);

        }
        .nav-menu {
            display: flex;
            list-style: none;
            overflow-x: auto;
            white-space: nowrap;
            padding: 12px 0;
            -webkit-overflow-scrolling: touch;
            flex-wrap: wrap;

        }
        .nav-menu::-webkit-scrollbar {
            display: none;
        }
        .nav-menu li {
            margin-right: 10px;
        }
        .nav-menu li:last-child {
            margin-right: 0;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
            background-color: rgba(255,255,255,0.1);
            font-size: 15px;
            display: inline-block;
        }
        .nav-menu a:hover, .nav-menu a.active {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            margin-left: 15px;
            margin-right: 15px;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card-header {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 15px 20px;
            position: relative;
        }
        .card-header h3 {
            font-size: 18px;
            margin: 0;
        }
        .card-body {
            padding: 20px;
            flex-grow: 1;
        }
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 15px;
        }
        .info-item {
            margin-bottom: 8px;
        }
        .info-label {
            font-weight: bold;
            color: #555;
            display: block;
            margin-bottom: 3px;
            font-size: 14px;
        }
        .info-value {
            color: #333;
            font-size: 15px;
        }
        .card-footer {
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .btn {
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-primary {
            background-color: #f39c12;
            color: white;
        }
        .btn-primary:hover {
            background-color: #e67e22;
        }
        .btn-outline {
            border: 1px solid #3498db;
            color: #3498db;
        }
        .btn-outline:hover {
            background-color: #3498db;
            color: white;
        }
        .copy-btn {
            background-color: #f39c12;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            margin-left: 10px;
            transition: background-color 0.3s;
        }
        .copy-btn:hover {
            background-color: #e67e22;
        }
        .section-title {
            color: #1a5276;
            font-size: 24px;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
            display: flex;
            align-items: center;
        }
        .section-title:before {
            content: "🔍";
            margin-right: 10px;
            font-size: 20px;
        }
        .ad-banner {
            width: 100%;
            max-width: 1660px;
            height: 120px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            margin: 30px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            /*  border-radius: 10px;*/
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .ad-banner:before {
            content: "广告";
            position: absolute;
            top: 5px;
            right: 10px;
            font-size: 12px;
            background-color: rgba(0,0,0,0.2);
            padding: 2px 5px;
            border-radius: 3px;
        }
        .qr-container {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .qr-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            margin: 10px;
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }
        .qr-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #2980b9;
        }
        .qr-code {
            width: 150px;
            height: 150px;
            background-color: white;
            margin: 0 auto 15px;
            padding: 10px;
            border: 1px solid #eee;
        }
        .qr-desc {
            font-size: 14px;
            color: #666;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            margin-bottom: 20px;
        }
        .footer-title {
            font-size: 18px;
            margin-bottom: 20px;
            color: #f39c12;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #f39c12;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        .footer-links a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        .footer-links a:before {
            content: "→";
            margin-right: 5px;
            opacity: 0;
            transition: all 0.3s;
        }
        .footer-links a:hover:before {
            opacity: 1;
            margin-right: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 14px;
            color: #bbb;
        }
        .tag {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        .tag-blue {
            background-color: #d6eaf8;
            color: #2980b9;
        }
        .tag-orange {
            background-color: #fdebd0;
            color: #e67e22;
        }
        .tag-green {
            background-color: #d5f5e3;
            color: #27ae60;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            .contact {
                justify-content: center;
            }
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                padding: 10px 5px;
            }
            .nav-menu a {
                padding: 6px 12px;
                font-size: 14px;
            }
            .section-title {
                font-size: 20px;
            }
            .card-container {
                grid-template-columns: 1fr;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .ad-banner {
                height: 80px;
                font-size: 16px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            .logo:before {
                font-size: 28px;
            }
            .contact {
                font-size: 14px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .qr-container {
                flex-direction: column;
                align-items: center;
            }
            .qr-card {
                width: 100%;
                max-width: none;
                margin: 10px 0;
            }
        }

        .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; 
}
