  a{
	text-decoration: none;color: #333;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            padding-bottom: 60px;
        }
        
        .status-bar {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
            background-color: #f5f7fa;
            font-size: 14px;
            color: #666;
        }
        
        .status-bar-left {
            display: flex;
            align-items: center;
        }
        
        .status-bar-right {
            display: flex;
            align-items: center;
        }
        
        .status-bar i {
            margin-right: 5px;
        }
        
        .header {
            color: white;
            overflow: hidden;
            text-align: center;
		
        }
        
        .hospital-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .hospital-en {
            font-size: 12px;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .platform-title {
            font-size: 24px;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .quick-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .quick-btn {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 30px;
            color: white;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .quick-btn i {
            margin-right: 5px;
        }
        
        .service-cards {
            display: flex;
            padding: 15px;
            gap: 15px;
        }
        
        .service-card {
            flex: 1;
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            background-color: #e8f4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: #2c8be0;
            font-size: 20px;
        }
        
        .service-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .service-desc {
            font-size: 13px;
            color: #888;
        }
        
        .section {
            background-color: white;
            border-radius: 12px;
            margin: 15px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .section-more {
            font-size: 13px;
            color: #2c8be0;
            font-weight: normal;
        }
        
        .disease-category {
            margin-bottom: 25px;
        }
        
        .category-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c8be0;
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 8px;
        }
        
        .disease-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .disease-item {
            background-color: #f5f7fa;
			padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: #555;
        }
		 .disease-item:hover{
            background-color: #2c8be0;
            color: #fff;
        }
		 .disease-item a:hover{
            color: #fff;
        }

        
        .knowledge-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .knowledge-item {
            display: flex;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .knowledge-item:last-child {
            border-bottom: none;
        }
        
        .knowledge-num {
            font-size: 16px;
            font-weight: bold;
            color: #2c8be0;
            margin-right: 10px;
        }
        
        .knowledge-content {
            flex: 1;
            font-size: 14px;
        }
        
        .package-card {
            background: linear-gradient(135deg, #e8f4ff, #f0f8ff);
            border-radius: 12px;
            padding: 20px;
            margin-top: 15px;
        }
        
        .package-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .package-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .package-btn {
            background-color: #2c8be0;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .doctor-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        
        .doctor-tab {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            background-color: #f5f7fa;
            color: #666;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .doctor-tab.active {
            background-color: #2c8be0;
            color: white;
        }
        
        .doctor-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .doctor-card {
            display: flex;
            gap: 15px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .doctor-card:last-child {
            border-bottom: none;
        }
        
        .doctor-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #e8f4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c8be0;
            font-size: 24px;
            overflow: hidden;
        }
        .doctor-avatar  img{
            width: 100%;
           
           
        }
        
        .doctor-info {
            flex: 1;
        }
        
        .doctor-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .doctor-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .doctor-expertise {
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .doctor-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }
        
        .doctor-fee {
            font-size: 15px;
            font-weight: bold;
            color: #ff6b6b;
        }
        
        .doctor-stats {
            font-size: 13px;
            color: #888;
        }
        
        .appointment-btn {
            background-color: #2c8be0;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 6px 15px;
            font-size: 13px;
            font-weight: bold;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .appointment-btn.available {
            background-color: #4cd964;
        }
        /**
         .nav-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        **/
        
        .nav-bar {
            
            background-color: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: #666;
        }
        
        .nav-item.active {
            color: #2c8be0;
        }
        
        .nav-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        