@charset "utf-8";

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        body {
            background-color: #f9f9f7;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1660px;
            margin: 0 auto;
            /*  padding: 0 20px;*/
        }
        header {
            background: linear-gradient(135deg, #1e8449, #27ae60);
            color: white;
            padding: 25px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 2px;
        }
        .slogan {
            font-size: 18px;
            opacity: 0.9;
            font-style: italic;
        }
        nav {
            background-color: #f39c12;
            padding: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .nav-container {
            max-width: 1660px;
            margin: 0 auto;
            overflow-x: auto;
            /*  white-space: nowrap;*/
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: inline-block;
            padding: 15px 0;
        }
        nav li {
            display: inline-block;
            margin: 0 12px;
            /*  position: relative;*/
        }
        nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
            display: block;
        }
        nav a:hover, nav a.active {
            background-color: #e74c3c;
            transform: translateY(-2px);
        }
        nav li:after {
            content: "";
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 15px;
            background-color: rgba(255,255,255,0.3);
        }
        nav li:last-child:after {
            display: none;
        }
        .content-section {
            background-color: white;
            /*  margin: 10px;*/
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .content-section:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            /*  background: linear-gradient(to bottom, #1e8449, #27ae60);*/
        }
        .section-title {
            color: #1e8449;
            font-size: 26px;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
        }
        .section-title:after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #1e8449, #27ae60);
        }
        .clinic-info, .doctor-info, .service-info {
            margin-bottom: 25px;
            padding: 0px;
            background-color: #f8f9fa;
            border-radius: 8px;
            /*  border-left: 4px solid #27ae60;*/
        }
        .info-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #ddd;
        }
        .info-detail {
            margin-bottom: 10px;
            font-size: 15px;
            text-decoration: none;
        }

        .info-detail a{
            text-decoration: none;
        }


        .info-label {
            font-weight: bold;
            color: #555;
            display: inline-block;
            width: auto;
            max-width: 100%;
        }
        .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;
            /*  border-radius: 8px;*/
            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);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .product-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            background-color: white;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #e74c3c;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
        }
        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        .product-info {
            padding: 20px;
        }
        .product-title {
            font-size: 17px;
            margin-bottom: 12px;
            color: #333;
            font-weight: bold;
            height: 45px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .product-price {
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .product-original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-left: 8px;
        }
        .product-link {
            display: inline-block;
            background: linear-gradient(to right, #1e8449, #27ae60);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            text-align: center;
            width: 100%;
            font-weight: bold;
        }
        .product-link:hover {
            background: linear-gradient(to right, #27ae60, #2ecc71);
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }
        .payment-info {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }
        .payment-method {
            flex: 1;
            min-width: 280px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
            text-align: center;
        }
        .payment-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .qr-code {
            width: auto;
            max-width: 100%;
            height: auto;
            margin: 15px auto;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 10px;
            background-color: white;
        }
        .rating {
            color: #f39c12;
            margin: 8px 0;
            font-size: 16px;
        }
        .feature-list {
            margin: 15px 0;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 8px;
            position: relative;
        }
        .feature-list li:before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #ddd;
            margin: 0 20px;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
            position: relative;
            padding: 5px 0;
        }
        .footer-links a:hover {
            color: white;
        }
        .footer-links a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #27ae60;
            transition: width 0.3s;
        }
        .footer-links a:hover:after {
            width: 100%;
        }
        .copyright {
            opacity: 0.8;
            font-size: 14px;
            text-align: center;
            margin-top: 20px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #27ae60;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #2ecc71;
            transform: translateY(-5px);
        }
        .tag {
            display: inline-block;
            background-color: #e8f5e9;
            color: #1e8449;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .map-container {
            height: 300px;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .gallery img {
            width: calc(33.333% - 10px);
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .expert-team {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .expert-card {
            width: calc(25% - 15px);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .expert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .expert-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .expert-info {
            padding: 15px;
        }
        .expert-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .expert-title {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }

        @media (max-width: 1200px) {
            .expert-card {
                width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .product-img {
                height: 180px;
            }
            .expert-card {
                width: calc(50% - 10px);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
            .logo {
                font-size: 28px;
            }
            .slogan {
                font-size: 16px;
            }
            nav a {
                font-size: 14px;
                padding: 6px 12px;
            }
            .content-section {
                padding: 25px;
            }
            .section-title {
                font-size: 22px;
            }
            .info-title {
                font-size: 19px;
            }
            .ad-banner {
                height: 80px;
                font-size: 18px;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }
            .product-img {
                height: 150px;
            }
            .product-info {
                padding: 15px;
            }
            .qr-code {
                width: 150px;
                height: 150px;
            }
            .expert-card {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            nav li {
                margin: 0 8px;
            }
            .content-section {
                padding: 20px;
            }
            .payment-method {
                min-width: 100%;
            }
            .gallery img {
                width: calc(50% - 8px);
            }
            .footer-links a {
                margin: 0 10px 10px;
            }
        }

        

        .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;
        }