﻿ * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: '微软雅黑', serif;
            background: #f9f6ed;
            color: #333;
            line-height: 1.6;
        }

         :root {
            --primary-color: #ed6a00;
            --secondary-color: #333;
            --accent-color: #e9c46a;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --gray-color: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: '微软雅黑', serif;
            color: var(--dark-color);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 顶部栏样式 */
        .top-header {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .welcome-text i {
            margin-right: 8px;
            color: var(--accent-color);
        }
        
        .top-actions a {
            color: white;
            margin-left: 15px;
        }
        
        .top-actions a:hover {
            color: var(--accent-color);
        }
        
        /* 主头部样式 */
        .main-header {
            background-color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .clinic-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
            margin-left: 10px;
        }
        
        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            margin-bottom: 15px;
        }
        
        .phone {
            font-size: 18px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .phone i {
            color: var(--primary-color);
            margin-right: 5px;
        }
        
        .hours {
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .search-container {
            position: relative;
        }
        
        .search-input {
            padding: 10px 15px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius);
            width: 250px;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        /* 导航菜单样式 */
        .nav-header {
            background-color: var(--primary-color);
        }
        
        .nav-menu {
            display: flex;
            justify-content: center;
        }
        
        .nav-menu li {
            position: relative;
        }
        .alert{ line-height:40px;margin-top:20px;font-size:14px;}
        .nav-menu a {
			font-size:16px;
            display: block;
            padding: 15px 25px;
            color: white;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-menu a i {
            margin-right: 8px;
        }
        
        /* 幻灯片区域 */
        .slideshow {
            position: relative;
            height: 750px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
        }
        
        .slide-title {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .slide-desc {
            font-size: 16px;
            margin-bottom: 20px;
            max-width: 600px;
        }
        
        .slide-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
        }
        
        .slide-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .slide-btn i {
            margin-left: 5px;
        }
        
        .slide-navigation {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .nav-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        /* 产品展示区域 */
        .product-showcase {
            padding: 60px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--secondary-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 15px auto;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-image {
            height: 470px;width:100%;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .product-desc {
            font-size: 14px;
            color: var(--gray-color);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-btn {
            padding: 8px 15px;
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            font-size: 14px;
            transition: var(--transition);
        }
        
        .product-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .product-action {
            text-align: center;
        }
        
        .view-all-btn {
            padding: 12px 30px;
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: var(--border-radius);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        
        .view-all-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .view-all-btn i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .view-all-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 网站底部 */
        .site-footer {
            background-color: var(--secondary-color);
            color: white;
            padding-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding-bottom: 30px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-links i {
            margin-right: 8px;
            font-size: 12px;
        }
        
        .contact-info-footer .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-header .container {
                flex-direction: column;
                align-items: center;
            }
            
            .header-right {
                align-items: center;
                margin-top: 20px;
            }
            
            .contact-info {
                align-items: center;
            }
            
            .nav-menu {
                flex-wrap: wrap;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .slideshow {
                height: 400px;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .top-header .container {
                flex-direction: column;
                text-align: center;
            }
            
            .top-actions {
                margin-top: 10px;
            }
            
            .search-input {
                width: 200px;
            }
            
            .slideshow {
                height: 300px;
            }
            
            .slide-title {
                font-size: 20px;
            }
            
            .slide-desc {
                font-size: 14px;
            }
        }
		
		
		
		
		 /* 联系方式内容区域 */
        .contact-content {
            padding: 60px 0;
            background-color: white;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .contact-title {
            font-size: 32px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
        }
        
        .contact-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 15px auto;
        }
        
        .contact-subtitle {
            font-size: 18px;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .contact-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        

        
        .contact-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .contact-card p {
            color: var(--gray-color);
            margin-bottom: 10px;
        }
        
        .contact-card a {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .contact-card a:hover {
            color: var(--secondary-color);
        }
        
        /* 地图区域 */
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            margin-bottom: 50px;
            height: 400px;
            background-color: var(--light-gray);
            position: relative;
        }
        
        .map-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
        }
        
        .map-placeholder i {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .map-placeholder p {
            font-size: 18px;
            font-weight: 500;
        }
        
        /* 联系表单 */
        .contact-form-container {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }
        
        .form-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--secondary-color);
        }
        
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: 1 / span 2;

        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondary-color);
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            grid-column: 1 / span 2;
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            justify-self: center;
            min-width: 200px;
        }
        
        .form-submit:hover {
            background-color: var(--secondary-color);
        }
		
		
		
		 /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .breadcrumb a {
            color: var(--primary-color);
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* 公司简介内容区域 */
        .about-content {
            padding: 60px 0;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .about-title {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .about-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 15px auto;
        }
        
        .about-subtitle {
            font-size: 18px;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            background-color: var(--light-color);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-image i {
            font-size: 100px;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .about-quote {
            background-color: var(--light-color);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            font-size: 18px;
            color: var(--secondary-color);
        }
        
        /* 特色服务区域 */
        .services-section {
            background-color: var(--light-color);
            padding: 60px 0;
            border-radius: var(--border-radius);
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--secondary-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 15px auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        .service-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .service-desc {
            color: var(--gray-color);
        }
        