@charset "utf-8";

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 15px;*/
        }
        header {
            background: linear-gradient(135deg, #1a4b8c 0%, #1c6ea4 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 10px;
            font-size: 40px;
        }
        .logo span {
            font-size: 16px;
            margin-left: 15px;
            opacity: 0.9;
            font-weight: normal;
        }
        .contact-info {
            text-align: right;
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 30px;
        }
        .contact-info span {
            margin-left: 15px;
        }
        .contact-info .hotline {
            font-weight: bold;
            color: #ffd700;
        }
        nav {
            background-color: #1c6ea4;
            padding: 12px 0;
            /*  position: sticky;*/
            top: 0;
            z-index: 99;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 5px;
        }
        .nav-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 8px 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 30px;
            transition: all 0.3s;
            font-size: 15px;
            white-space: nowrap;
        }
        .nav-menu a:hover, .nav-menu a.active {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .nav-menu a.active {
            font-weight: bold;
            background-color: #ffd700;
            color: #1a4b8c;
        }
        .section {
            background-color: white;
            margin: 25px 0;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            /*  background: linear-gradient(to bottom, #1a4b8c, #1c6ea4);*/
        }
        .section-title {
            font-size: 24px;
            color: #1a4b8c;
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, #1a4b8c, #1c6ea4);
        }
        .copy-btn {
            background: linear-gradient(to right, #1a4b8c, #1c6ea4);
            color: white;
            border: none;
            padding: 6px 15px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .copy-btn:hover {
            background: linear-gradient(to right, #1c6ea4, #1a4b8c);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .copy-btn::before {
            content: "📋";
            margin-right: 5px;
        }
        .item-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 20px;
            margin-top: 10px;
        }
        .item-card {
            border: 1px solid #e9ecef;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            background-color: #fff;
        }
        .item-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
            border-color: #1c6ea4;
        }
        .item-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #1a4b8c, #1c6ea4);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .item-card:hover::before {
            opacity: 1;
        }
        .item-title {
            font-size: 19px;
            color: #1a4b8c;
            margin-bottom: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .item-title::before {
            content: "🔹";
            margin-right: 8px;
            font-size: 16px;
        }
        .item-desc {
            color: #555;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.7;
        }
        .item-contact {
            font-size: 14px;
            color: #444;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .item-contact span {
            background-color: #f1f8ff;
            padding: 5px 12px;
            border-radius: 15px;
            /*  display: inline-flex;*/
            align-items: center;
            width: 100%;
        }

        .item-contact a{
            text-decoration: none;
            width: 100%;
            background-color: #f1f8ff;
            padding: 5px 12px;
            border-radius: 15px;
            /*  display: inline-flex;*/
            align-items: center;
            width: 100%;
        }
        .item-contact span::before {
            margin-right: 5px;
        }
        .item-contact .contact-person::before {
            content: "👤";
        }
        .item-contact .contact-phone::before {
            content: "📞";
        }
        .item-contact .contact-wechat::before {
            content: "💬";
        }
        .item-contact .contact-url::before {
            content: "🌐";
        }
        .item-contact .contact-date::before {
            content: "📅";
        }
        .item-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #ffd700;
            color: #1a4b8c;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }
        .ad-banner {
            width: 100%;
            height: 100px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            border-radius: 8px;
            border: 2px dashed #ccc;
            position: relative;
            overflow: hidden;
        }
        .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-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;
        }
        footer {
            background: linear-gradient(135deg, #1a4b8c 0%, #143a6b 100%);
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 50px;
            position: relative;
        }
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, #ffd700, #f8c537);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffd700;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ffd700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #c8d6e5;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 5px 0;
        }
        .footer-links a:hover {
            color: #fff;
            transform: translateX(5px);
        }
        .footer-links a::before {
            content: "▹";
            margin-right: 8px;
            color: #ffd700;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .copyright {
            font-size: 14px;
            color: #c8d6e5;
        }
        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin: 0 8px;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background-color: #ffd700;
            color: #1a4b8c;
            transform: translateY(-3px);
        }
        .toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .toast.show {
            opacity: 1;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .item-list {
                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-info {
                text-align: center;
                margin-top: 10px;
            }
            .footer-column {
                flex: 0 0 50%;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: 20px;
            }
            .section-title {
                font-size: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .copy-btn {
                margin-top: 10px;
                align-self: flex-end;
            }
            .item-list {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                padding-bottom: 8px;
            }
            .nav-menu a {
                padding: 6px 15px;
                font-size: 14px;
            }
            .footer-column {
                flex: 0 0 100%;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 26px;
            }
            .logo span {
                font-size: 14px;
                margin-left: 10px;
            }
            .contact-info {
                font-size: 14px;
            }
            .section-title {
                font-size: 18px;
            }
            .item-card {
                padding: 15px;
            }
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section {
            animation: fadeIn 0.5s ease-out forwards;
        }
        .item-card {
            animation: fadeIn 0.5s ease-out forwards;
            animation-delay: calc(var(--order) * 0.1s);
        }
        .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; 
}

.zjcopyright {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
   
    
}

.zjcopyright a{
    color: #c8d6e5;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
}


 .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: 0;
            max-width: 100%;
            margin-top: 10px;
        }
        .qr-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #2980b9;
        }
        .qr-code {
            width: auto;
            max-width: 100%;
            height: auto;
            background-color: white;
            margin: 0 auto 15px;
            /*  padding: 10px;*/
            border: 1px solid #eee;
        }
        .qr-desc {
            font-size: 14px;
            color: #666;
        }