@charset "utf-8";

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #ff7eab, #ff4d8a);
            color: white;
            padding: 25px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 50%;
            border: 2px solid white;
        }
        
        .logo span {
            font-size: 16px;
            display: block;
            margin-top: 5px;
            opacity: 0.9;
            font-weight: normal;
        }
        
        .contact-info {
            text-align: right;
            background: rgba(255,255,255,0.2);
            padding: 10px 15px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }
        
        .contact-info p {
            margin: 5px 0;
        }
        
        /* 导航样式 */
        nav {
            background-color: #ef9d1a;
            /*  position: sticky;*/
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .city-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 5px 0;
        }
        
        .city-nav a {
            color: white;
            text-decoration: none;
            padding: 12px 18px;
            display: block;
            transition: all 0.3s;
            white-space: nowrap;
            font-size: 18px;
            position: relative;
        }
        
        .city-nav a:hover {
            background-color: #ff4d8a;
            transform: translateY(-2px);
        }
        
        .city-nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .city-nav a:hover::after {
            width: 50%;
        }
        
        /* 内容区块样式 */
        .content-block {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .content-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .block-header {
            background: linear-gradient(135deg, #ff7eab, #ff4d8a);
            color: white;
            padding: 15px 20px;
            font-size: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .block-header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
        }
        
        .copy-btn {
            background-color: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .copy-btn:hover {
            background-color: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }
        
        .copy-btn::before {
            content: "📋";
            margin-right: 5px;
        }
        
        .block-content {
            padding: 20px;
        }
        
        .item-list {
            list-style: none;
        }
        
        .item-list li {
            padding: 15px 0;
            border-bottom: 1px dashed #eee;
            transition: background 0.3s;
        }
        
        .item-list li:hover {
            background-color: #fff9fb;
        }
        
        .item-list li:last-child {
            border-bottom: none;
        }
        
        .item-list a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .item-list a:hover {
            color: #ff4d8a;
        }
        
        .item-list img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
            border-radius: 5px;
            border: 1px solid #f0f0f0;
            transition: transform 0.3s;
        }
        
        .item-list a:hover img {
            transform: scale(1.03);
        }
        
        .item-info {
            flex: 1;
        }
        
        .item-title {
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 18px;
            color: #333;
        }
        
        .item-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 8px;
        }
        
        .item-contact {
            font-size: 13px;
            color: #ff4d8a;
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        
        .item-contact::before {
            content: "☎️";
            margin-right: 5px;
        }
        
        /* 广告样式 */
        .ad-banner {
            width:100%;
            height: 120px;
            max-width: 100%;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            /*  border-radius: 8px;*/
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .ad-banner:hover {
            transform: translateY(-3px);
        }
        
        .ad-banner img {
            width: auto;
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, #ef9d1a, #ef9d1a);
            color: #aaa;
            padding: 40px 0 20px;
            font-size: 14px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff4d8a;
            display: inline-block;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-section ul li::before {
            content: "•";
            color: #ff4d8a;
            position: absolute;
            left: 0;
            top: 0;
        }
        
        .footer-section a {
            color: #f8f8f8;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 3px 0;
        }
        
        .footer-section a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .payment-method {
            width: 120px;
            margin-right: 10px;
            margin-bottom: 10px;
            background-color: white;
            padding: 8px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .payment-method img {
            max-width: 100%;
            height: auto;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            border-top: 3px solid #e82f6e;
            color: #888;
            font-size: 13px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .item-list img {
                width: 90px;
                height: 70px;
            }
            
            .item-title {
                font-size: 17px;
            }
        }
        
        @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: 15px;
            }
            
            .city-nav a {
                padding: 10px 12px;
                font-size: 16px;
            }
            
            .footer-section {
                flex: 0 0 50%;
            }
            
            .item-list img {
                width: 80px;
                height: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .city-nav a {
                padding: 8px 10px;
                font-size: 16px;
            }
            
            .block-header {
                font-size: 18px;
                padding: 12px 15px;
            }
            
            .item-list {
                flex-direction: column;
            }
            
            .item-list a {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .item-list img {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .ad-banner {
                height: 100px;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 28px;
            }
            
            .logo img {
                width: 40px;
                height: 40px;
            }
            
            .city-nav a {
                padding: 6px 8px;
                font-size: 16px;
            }
            
            .footer-section {
                flex: 0 0 100%;
                text-align: center;
            }
            
            .footer-section h3 {
                display: block;
            }
            
            .footer-section ul li {
                padding-left: 0;
            }
            
            .footer-section ul li::before {
                display: none;
            }
            
            .payment-methods {
                justify-content: center;
            }
            
            .item-title {
                font-size: 16px;
            }
            
            .item-desc {
                font-size: 13px;
            }
            
            .ad-banner {
                height: 80px;
                margin: 20px 0;
            }
        }
        
        /* 动画效果 */
        @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;
        }