/* 医疗组件样式文件 */

/* 页面Hero区域样式 */
.page-hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}



.page-hero.health-hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
}

.page-hero.about-hero {
    background: linear-gradient(135deg, #FFF3E0 0%, #FCE4EC 100%);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 搜索筛选卡片 */
.search-filter-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-filter-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-bottom: 2rem;
}

.search-filter-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-field label i {
    color: var(--primary-color);
}

/* 高级筛选 */
.advanced-filters {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    display: none;
}

.advanced-filters.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
    }
}

.advanced-filters h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: block;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 价格滑块 */
.price-range {
    position: relative;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-secondary);
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 开关样式 */
.switch-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.switch-label input[type="checkbox"] {
    display: none;
}

.switch {
    width: 44px;
    height: 24px;
    background: var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
}

.switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.switch-label input[type="checkbox"]:checked + .switch {
    background: var(--primary-color);
}

.switch-label input[type="checkbox"]:checked + .switch::after {
    transform: translateX(20px);
}

.toggle-filters {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-filters:hover {
    background: var(--primary-color);
    color: white;
}

/* 快速服务标签 */
.quick-services {
    margin-top: 30px;
}

.quick-services h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    background: var(--bg-light);
    border: 2px solid transparent;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-tag:hover,
.service-tag.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* 位置搜索 */
.location-search {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
}

.location-search h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.location-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-location {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.radius-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radius-control label {
    font-weight: 600;
    color: var(--text-secondary);
}

/* 结果控制栏 */
.results-header {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
}

.results-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.results-info {
    font-size: 1rem;
    color: var(--text-secondary);
}

.results-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-controls label {
    font-weight: 600;
    color: var(--text-secondary);
}

.sort-controls select {
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    font-weight: 500;
}

.view-controls {
    display: flex;
    gap: 8px;
}

.view-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* 侧边栏筛选 */
.sidebar-filters {
    width: 280px;
    flex-shrink: 0;
}

.filter-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.filter-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}

/* 专科筛选按钮 */
.specialty-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specialty-filter-btn {
    background: none;
    border: 2px solid transparent;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.specialty-filter-btn:hover,
.specialty-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.specialty-filter-btn i {
    width: 20px;
    text-align: center;
}

/* 地区分布 */
.district-map {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.district-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.district-item:hover {
    background: var(--bg-light);
}

.district-name {
    font-weight: 500;
    color: var(--text-primary);
}

.clinic-count {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

/* 筛选项样式 */
.service-filters,
.district-filters,
.time-filters,
.rating-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label .count {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: auto;
}

/* 评分筛选 */
.rating-filters .stars {
    margin-right: 8px;
}

.rating-filters .stars i {
    font-size: 12px;
}

/* 主要内容区域 */
.doctors-container,
.clinics-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.doctors-main,
.clinics-main {
    flex: 1;
    min-width: 0;
}

/* 医生/诊所网格 */
.doctors-grid,
.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;

}
.clinics-grid .clinic-card
{
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.doctors-grid.list-view {
    grid-template-columns: 1fr;
}

.doctors-grid.list-view .doctor-card {
    display: flex;
    align-items: center;
    padding: 20px;
}

.doctors-grid.list-view .doctor-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 20px;
}

/* 加载容器 */
.loading-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.loading-container .loading {
    margin: 0 auto 20px;
}

/* 地图视图 */
.map-view {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container {
    display: flex;
    height: 100%;
}

.clinics-map {
    flex: 1;
    background: var(--bg-secondary);
}

.map-sidebar {
    width: 300px;
    background: white;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
}

.map-results {
    padding: 20px;
}

/* 分页容器 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* 快速预约模态框 */
.quick-book-content {
    padding: 30px;
}

.quick-book-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.doctor-quick-info {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.doctor-quick-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-quick-info .info {
    flex: 1;
}

.doctor-quick-info .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.doctor-quick-info .specialty {
    color: var(--primary-color);
    font-weight: 500;
}

.form-actions .note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .doctors-container,
    .clinics-container {
        flex-direction: column;
    }
    
    .sidebar-filters {
        width: 100%;
        order: -1;
    }
    
    .filter-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .results-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .sort-controls,
    .view-controls {
        justify-content: center;
    }
    
    .doctors-grid,
    .clinics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .location-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .search-filter-card {
        padding: 24px;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
}

/* 健康资讯页面特有样式 */
.trending-topics {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    cursor: pointer;
}

.topic-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.topic-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.topic-image .el-image{
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.topic-card.featured .topic-image .el-image{
    height: 100%;
}

.topic-image .el-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.topic-card:hover .topic-image .el-image img {
    transform: scale(1.05);
}

.topic-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.topic-content {
    padding: 20px;
}

.topic-card.featured .topic-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.topic-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.topic-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.topic-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.topic-meta i {
    margin-right: 5px;
}

.health-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(1000px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
@media (min-width: 950px) {

.article-image .el-image{
    position: relative;
    height: 200px;
    overflow: hidden;
}
}
.article-image .el-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image .el-image img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-filters .category-filter{
    padding: 5px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
    margin: 5px;
}
 .category-filters .active{
     background-color: #4CAF50;
     color: #fff;
}

.article-content {
    padding: 20px;
}
@media (min-width: 900px) {
    .article-content {
        float: right;
        width: 70%;
    }
    .article-image .el-image{
        float: left;
    }
}
.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-info {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.health-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.tool-item i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-item:hover {
    background: var(--bg-light);
}

.popular-rank {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.popular-content h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.views {
    font-size: 0.8rem;
    color: var(--text-light);
}

.health-reminder {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.reminder-content {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.reminder-content:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.reminder-icon {
    width: 40px;
    height: 40px;
  /*  background: var(--primary-color);*/
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reminder-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.reminder-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.expert-consultation {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.expert-consultation h4 {
    color: white;
    margin-bottom: 10px;
}

.expert-consultation p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.health-tips {
    padding: 60px 0;
    background: var(--bg-light);
}

.tips-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.tip-card {
    flex: 0 0 100%;
    padding: 0 20px;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
}

.tip-card.active {
    opacity: 1;
    position: relative;
}

.tip-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.tips-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.tip-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-nav:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .topic-card.featured {
        grid-template-columns: 1fr;
    }
    
    .health-content-layout {
        grid-template-columns: 1fr;
    }
    
    .health-tools {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .health-tools {
        grid-template-columns: 1fr 1fr;
    }
    
    .topic-card.featured .topic-image .el-image{
        height: 200px;
    }
}
