@charset "utf-8";

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f5f7fa;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 15px;*/
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
            color: white;
            padding: 25px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.15);
        }
        
        .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 img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo span {
            font-size: 16px;
            display: block;
            margin-top: 5px;
            opacity: 0.9;
        }
        
        .search-box {
            display: flex;
            width: 100%;
            max-width: 500px;
            margin-top: 15px;
        }
        
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-box button {
            padding: 0 20px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .search-box button:hover {
            background-color: #ff5252;
        }
        
        /* 导航样式 */
         nav {
            background-color: #ef9d1a;
            /*  position: sticky;*/
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .nav-container {
            overflow-x: auto;
            /* white-space: nowrap; */
            padding: 10px 0;
            -webkit-overflow-scrolling: touch;
            
        }
        
        .main-nav {
            display: inline-flex;
            list-style: none;city
        }
        
        .main-nav li {
            margin-right: 5px;
        }
        
        .main-nav li:last-child {
            margin-right: 0;
        }
        
        .main-nav li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border-radius: 4px;
            font-size: 15px;
        }
        
        .main-nav li a:hover {
            background-color: #f0f5ff;
            color: #1e5799;
        }
        
         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%;
        }
        
        /* 主要内容区 */
        .main-content {
            margin: 30px 0;
        }
        
        /* 内容卡片样式 */
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .card-header {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
            padding: 18px 25px;
            border-bottom: 1px solid #e0e6ed;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .card-body {
            padding: 25px;
        }
        
        /* 保险知识部分 */
        .section-content {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 22px;
            color: #1e5799;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e6ed;
        }
        
        .content-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px dashed #e0e6ed;
        }
        
        .content-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .content-item h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .content-item img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .content-item p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.8;
        }
        
        .content-item ul, .content-item ol {
            margin: 15px 0 15px 25px;
            color: #555;
        }
        
        .content-item li {
            margin-bottom: 8px;
        }
        
        .contact-info {
            
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            /*background-color: #f9fbfe;  border-left: 3px solid #1e5799;*/
        }
        
        .contact-info p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #1e5799;
            font-size: 16px;
        }
        
        /* 广告区域 */
        .ad-section {
            padding: 20px;
            background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
            border: 1px solid #ffd54f;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
            text-align: center;
            flex-direction: column;
        }
        
        .ad-section h3 {
            color: #e65100;
            margin-bottom: 10px;
        }
        
        .ad-section p {
            color: #555;
            margin-bottom: 15px;
        }
        
        .ad-section a {
            display: inline-block;
            padding: 8px 20px;
            background-color: #e65100;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .ad-section a:hover {
            background-color: #bf360c;
        }
        
        /* 保险产品展示 */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .product-card {
            border: 1px solid #e0e6ed;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-details {
            padding: 20px;
        }
        
        .product-details h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .product-details .price {
            color: #ff6b6b;
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .product-details .features {
            margin: 15px 0;
            color: #666;
            font-size: 14px;
        }
        
        .product-details .features li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
        }
        
        .product-details .features li:before {
            content: "✓";
            color: #4caf50;
            margin-right: 8px;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .product-actions a {
            flex: 1;
            text-align: center;
            padding: 10px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .product-actions .consult {
            background-color: #f0f5ff;
            color: #1e5799;
            margin-right: 10px;
        }
        
        .product-actions .consult:hover {
            background-color: #e0ecff;
        }
        
        .product-actions .buy {
            background-color: #1e5799;
            color: white;
        }
        
        .product-actions .buy:hover {
            background-color: #15467e;
        }
        
        /* 复制按钮 */
        .copy-all-btn {
            display: block;
            width: 200px;
            margin: 30px auto;
            padding: 12px;
            background-color: #2c3e50;
            color: white;
            text-align: center;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-all-btn:hover {
            background-color: #1a252f;
        }
        
        .copy-btn {
            background-color: #f0f5ff;
            border: 1px solid #d0e0ff;
            color: #1e5799;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
            margin-left: 10px;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #e0ecff;
        }
        
        /* 付款方式 */
        .payment-methods {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .payment-method {
            text-align: center;
            margin: 15px;
        }
        
        .payment-method img {
            width: 180px;
            height: 180px;
            object-fit: contain;
            margin-bottom: 10px;
            border: 1px solid #e0e6ed;
            border-radius: 5px;
            padding: 10px;
            background-color: white;
        }
        
        /* 表格样式 */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        table, th, td {
            border: 1px solid #e0e6ed;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
        }
        
        th {
            background-color: #f5f7fa;
            font-weight: bold;
        }
        
        tr:nth-child(even) {
            background-color: #f9fbfe;
        }
        
        /* 底部样式 */
        footer {
            background-color: #ef9d1a;
            color: #ecf0f1;
            padding: 40px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 15px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e82d6d;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #f8f8f8;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #3498db;
            transform: translateX(5px);
        }
        
        .contact-info p {
            font-size: 14px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #3498db;
            font-size: 18px;
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #e82d6d;
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #3498db;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 3px solid #e82d6d;
            font-size: 13px;
            color: #f8f8f8;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .search-box {
                margin: 15px auto 0;
            }
            
            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .copy-btn {
                margin: 10px 0 0 0;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .payment-methods {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .main-nav li a {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .card-header {
                padding: 15px;
                font-size: 18px;
            }
            
            .card-body {
                padding: 15px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .content-item h3 {
                font-size: 17px;
            }
        }
        
        /* 动画效果 */
        @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;
        }