/* 新能源信息列表页面样式 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础变量 */
:root {
    --zh-primary-color: #258161;
    --zh-primary-light: #2a9d6e;
    --zh-primary-dark: #1f6b50;
    --zh-accent-color: #a8e6cf;
    --zh-text-primary: #333;
    --zh-text-secondary: #666;
    --zh-text-muted: #999;
    --zh-bg-primary: #ffffff;
    --zh-bg-secondary: #f8f9fa;
    --zh-bg-dark: #2c3e50;
    --zh-border-color: #e9ecef;
    --zh-shadow-light: 0 2px 8px rgba(0,0,0,0.1);
    --zh-shadow-medium: 0 4px 16px rgba(0,0,0,0.15);
    --zh-shadow-dark: 0 8px 32px rgba(0,0,0,0.2);
    --zh-radius-small: 6px;
    --zh-radius-medium: 12px;
    --zh-radius-large: 20px;
    --zh-transition: all 0.3s ease;
}

/* 重置和基础样式 */
.zh_main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fbfa 0%, #ffffff 50%, #f1f8f5 100%);
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 面包屑导航 */
.zh_breadcrumb-section {
    background: rgba(37, 129, 97, 0.05);
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 129, 97, 0.1);
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--zh-text-secondary);
}

.zh_breadcrumb a {
    color: var(--zh-primary-color);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_breadcrumb a:hover {
    color: var(--zh-primary-dark);
}

.zh_separator {
    color: var(--zh-text-muted);
}

.zh_current {
    color: var(--zh-text-primary);
    font-weight: 500;
}

/* 页面标题区域 */
.zh_page-header {
    background: linear-gradient(135deg, var(--zh-primary-color) 0%, var(--zh-primary-light) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zh_page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="15" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.zh_header-content {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.zh_page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.zh_page-title i {
    color: var(--zh-accent-color);
    font-size: 2.2rem;
}

.zh_page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

/* 统计数据行 */
.zh_stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.zh_stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.zh_stat-item i {
    font-size: 2rem;
    color: var(--zh-accent-color);
}

.zh_stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.zh_stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 搜索筛选区域 */
.zh_filter-section {
    background: var(--zh-bg-primary);
    padding: 30px 0;
    border-bottom: 1px solid var(--zh-border-color);
}

.zh_filter-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* 搜索区域 */
.zh_search-area {
    display: flex;
    justify-content: center;
}

.zh_search-form {
    max-width: 500px;
    width: 100%;
}

.zh_search-input-group {
    display: flex;
    background: var(--zh-bg-secondary);
    border-radius: var(--zh-radius-large);
    overflow: hidden;
    box-shadow: var(--zh-shadow-light);
    border: 2px solid transparent;
    transition: var(--zh-transition);
}

.zh_search-input-group:focus-within {
    border-color: var(--zh-primary-color);
    box-shadow: 0 0 0 3px rgba(37, 129, 97, 0.1);
}

.zh_search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: var(--zh-text-primary);
}

.zh_search-input::placeholder {
    color: var(--zh-text-muted);
}

.zh_search-submit {
    padding: 15px 20px;
    background: var(--zh-primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--zh-transition);
    min-width: 60px;
}

.zh_search-submit:hover {
    background: var(--zh-primary-dark);
}

/* 分类筛选 */
.zh_category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--zh-bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--zh-radius-medium);
    color: var(--zh-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--zh-transition);
    text-decoration: none;
}

.zh_filter-btn:hover {
    background: rgba(37, 129, 97, 0.1);
    color: var(--zh-primary-color);
    border-color: rgba(37, 129, 97, 0.2);
    transform: translateY(-2px);
}

.zh_filter-btn.zh_active {
    background: var(--zh-primary-color);
    color: white;
    border-color: var(--zh-primary-color);
    box-shadow: var(--zh-shadow-medium);
}

/* 工具栏区域 */
.zh_toolbar-section {
    background: var(--zh-bg-primary);
    padding: 20px 0;
    border-bottom: 1px solid var(--zh-border-color);
}

.zh_toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.zh_sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.zh_sort-label {
    font-weight: 500;
    color: var(--zh-text-primary);
    font-size: 14px;
}

.zh_sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--zh-border-color);
    border-radius: var(--zh-radius-small);
    color: var(--zh-text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: var(--zh-transition);
}

.zh_sort-btn:hover {
    background: var(--zh-bg-secondary);
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
}

.zh_sort-btn.zh_active {
    background: var(--zh-primary-color);
    color: white;
    border-color: var(--zh-primary-color);
}

.zh_view-options {
    display: flex;
    gap: 5px;
}

.zh_view-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--zh-border-color);
    color: var(--zh-text-secondary);
    cursor: pointer;
    transition: var(--zh-transition);
}

.zh_view-btn:first-child {
    border-radius: var(--zh-radius-small) 0 0 var(--zh-radius-small);
}

.zh_view-btn:last-child {
    border-radius: 0 var(--zh-radius-small) var(--zh-radius-small) 0;
    border-left: none;
}

.zh_view-btn:hover {
    background: var(--zh-bg-secondary);
    color: var(--zh-primary-color);
}

.zh_view-btn.zh_active {
    background: var(--zh-primary-color);
    color: white;
    border-color: var(--zh-primary-color);
}

/* 内容区域 */
.zh_content-section {
    padding: 40px 0 60px;
}

.zh_content-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.zh_content-wrapper.zh_active {
    opacity: 1;
    transform: translateY(0);
}

/* 信息网格 */
.zh_info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* 列表视图样式 */
.zh_info-grid.zh_list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.zh_info-grid.zh_list-view .zh_info-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 200px;
}

.zh_info-grid.zh_list-view .zh_card-image {
    width: 300px;
    flex-shrink: 0;
}

.zh_info-grid.zh_list-view .zh_card-content {
    flex: 1;
    padding: 25px;
}

.zh_info-grid.zh_list-view .zh_card-footer {
    width: auto;
    padding: 25px;
    align-self: center;
}

/* 信息卡片 */
.zh_info-card {
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
    overflow: hidden;
    transition: var(--zh-transition);
    border: 1px solid var(--zh-border-color);
    display: flex;
    flex-direction: column;
}

.zh_info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--zh-shadow-dark);
    border-color: rgba(37, 129, 97, 0.2);
}

/* 卡片图片区域 */
.zh_card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.zh_card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zh-transition);
}

.zh_info-card:hover .zh_card-thumb {
    transform: scale(1.05);
}

.zh_card-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.zh_category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(37, 129, 97, 0.9);
    color: white;
    border-radius: var(--zh-radius-small);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.zh_category-tag.zh_new {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.zh_category-tag.zh_hot {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

/* 卡片内容区域 */
.zh_card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_card-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
}

.zh_card-title a {
    color: var(--zh-text-primary);
    text-decoration: none;
    transition: var(--zh-transition);
}

.zh_card-title a:hover {
    color: var(--zh-primary-color);
}

.zh_card-excerpt {
    color: var(--zh-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* 卡片元信息 */
.zh_card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--zh-text-muted);
    gap: 15px;
}

.zh_meta-left, .zh_meta-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zh_publish-time, .zh_views, .zh_author {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 标签区域 */
.zh_card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zh_tag {
    padding: 4px 10px;
    background: var(--zh-bg-secondary);
    color: var(--zh-text-secondary);
    border-radius: var(--zh-radius-small);
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--zh-border-color);
}

.zh_tag.zh_new-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-color: rgba(255, 193, 7, 0.3);
}

.zh_tag.zh_hot-tag {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-color: rgba(220, 53, 69, 0.3);
}

/* 卡片底部 */
.zh_card-footer {
    padding: 20px 25px;
    background: rgba(37, 129, 97, 0.02);
    border-top: 1px solid var(--zh-border-color);
}

.zh_read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--zh-primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--zh-transition);
}

.zh_read-more:hover {
    color: var(--zh-primary-dark);
    gap: 12px;
}

/* 分页区域 */
.zh_pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.zh_pagination-wrapper {
    background: var(--zh-bg-primary);
    padding: 20px;
    border-radius: var(--zh-radius-medium);
    box-shadow: var(--zh-shadow-light);
}

/* 通用分页样式 - 适配所有可能的分页HTML结构 */
.zh_pagination-wrapper > div,
.zh_pagination-wrapper > ul,
.zh_pagination-wrapper > span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.zh_pagination-wrapper a,
.zh_pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    margin: 2px;
    color: var(--zh-text-secondary);
    text-decoration: none;
    border: 1px solid var(--zh-border-color);
    border-radius: var(--zh-radius-small);
    transition: var(--zh-transition);
    font-size: 14px;
    font-weight: 500;
    background: var(--zh-bg-primary);
}

.zh_pagination-wrapper a:hover {
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
    background: rgba(37, 129, 97, 0.05);
    transform: translateY(-2px);
}

/* 分页样式美化 */
.zh_pagination-wrapper .pagination,
.zh_pagination-wrapper ul,
.zh_pagination-wrapper .page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zh_pagination-wrapper .pagination li,
.zh_pagination-wrapper ul li,
.zh_pagination-wrapper .page-nav li {
    margin: 0;
}

.zh_pagination-wrapper .pagination a,
.zh_pagination-wrapper .pagination span,
.zh_pagination-wrapper ul a,
.zh_pagination-wrapper ul span,
.zh_pagination-wrapper .page-nav a,
.zh_pagination-wrapper .page-nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    color: var(--zh-text-secondary);
    text-decoration: none;
    border: 1px solid var(--zh-border-color);
    border-radius: var(--zh-radius-small);
    transition: var(--zh-transition);
    font-size: 14px;
    font-weight: 500;
    background: var(--zh-bg-primary);
}

.zh_pagination-wrapper .pagination a:hover,
.zh_pagination-wrapper ul a:hover,
.zh_pagination-wrapper .page-nav a:hover {
    color: var(--zh-primary-color);
    border-color: var(--zh-primary-color);
    background: rgba(37, 129, 97, 0.05);
    transform: translateY(-2px);
}

.zh_pagination-wrapper .pagination .current,
.zh_pagination-wrapper .pagination .active,
.zh_pagination-wrapper ul .current,
.zh_pagination-wrapper ul .active,
.zh_pagination-wrapper .page-nav .current,
.zh_pagination-wrapper .page-nav .active {
    color: white !important;
    background: var(--zh-primary-color) !important;
    border-color: var(--zh-primary-color) !important;
    box-shadow: var(--zh-shadow-medium);
}

.zh_pagination-wrapper .pagination .disabled {
    color: var(--zh-text-muted) !important;
    background: var(--zh-bg-secondary) !important;
    border-color: var(--zh-border-color) !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.zh_pagination-wrapper .pagination .disabled:hover {
    transform: none !important;
}

/* 上一页/下一页按钮 */
.zh_pagination-wrapper .pagination .prev,
.zh_pagination-wrapper .pagination .next {
    font-weight: 600;
}

.zh_pagination-wrapper .pagination .prev a:before {
    content: "‹ ";
    margin-right: 4px;
}

.zh_pagination-wrapper .pagination .next a:after {
    content: " ›";
    margin-left: 4px;
}

/* 首页/尾页按钮 */
.zh_pagination-wrapper .pagination .first a:before {
    content: "« ";
    margin-right: 4px;
}

.zh_pagination-wrapper .pagination .last a:after {
    content: " »";
    margin-left: 4px;
}

/* 省略号样式 */
.zh_pagination-wrapper .pagination .ellipsis {
    color: var(--zh-text-muted) !important;
    background: transparent !important;
    border: none !important;
    cursor: default !important;
}

/* 移动端分页优化 */
@media (max-width: 480px) {
    .zh_pagination-wrapper .pagination {
        gap: 4px;
    }
    
    .zh_pagination-wrapper .pagination a,
    .zh_pagination-wrapper .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 6px 8px;
        font-size: 13px;
    }
    
    /* 在小屏幕上隐藏部分页码 */
    .zh_pagination-wrapper .pagination li:not(.prev):not(.next):not(.current):not(.active) {
        display: none;
    }
    
    .zh_pagination-wrapper .pagination li.current,
    .zh_pagination-wrapper .pagination li.active {
        display: flex;
    }
    
    /* 显示当前页前后各一页 */
    .zh_pagination-wrapper .pagination li.current + li,
    .zh_pagination-wrapper .pagination li.active + li {
        display: flex;
    }
}

/* 推荐区域 */
.zh_recommendation-section {
    background: var(--zh-bg-secondary);
    padding: 60px 0;
    margin-top: 40px;
}

.zh_section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.zh_section-title i {
    color: var(--zh-primary-color);
}

.zh_recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.zh_recommendation-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--zh-bg-primary);
    border-radius: var(--zh-radius-medium);
    text-decoration: none;
    color: var(--zh-text-primary);
    transition: var(--zh-transition);
    box-shadow: var(--zh-shadow-light);
    border: 1px solid var(--zh-border-color);
}

.zh_recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zh-shadow-medium);
    color: var(--zh-text-primary);
}

.zh_rec-image {
    width: 80px;
    height: 80px;
    border-radius: var(--zh-radius-small);
    overflow: hidden;
    flex-shrink: 0;
}

.zh_rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_rec-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.zh_rec-content p {
    margin: 0;
    font-size: 13px;
    color: var(--zh-text-secondary);
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh_container {
        padding: 0 15px;
    }
    
    .zh_page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_stats-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .zh_filter-box {
        gap: 20px;
    }
    
    .zh_category-filters {
        gap: 10px;
    }
    
    .zh_filter-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .zh_toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .zh_sort-options {
        justify-content: center;
    }
    
    .zh_view-options {
        align-self: center;
    }
    
    .zh_info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zh_info-grid.zh_list-view .zh_info-card {
        flex-direction: column;
        height: auto;
    }
    
    .zh_info-grid.zh_list-view .zh_card-image {
        width: 100%;
        height: 200px;
    }
    
    .zh_card-content {
        padding: 20px;
        gap: 12px;
    }
    
    .zh_card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .zh_recommendation-grid {
        grid-template-columns: 1fr;
    }
    
    .zh_recommendation-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .zh_page-header {
        padding: 40px 0;
    }
    
    .zh_page-title {
        font-size: 1.6rem;
    }
    
    .zh_page-subtitle {
        font-size: 1rem;
    }
    
    .zh_search-input-group {
        border-radius: var(--zh-radius-medium);
    }
    
    .zh_search-input, .zh_search-submit {
        padding: 12px 15px;
    }
    
    .zh_category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .zh_filter-btn {
        white-space: nowrap;
    }
    
    .zh_card-content {
        padding: 15px;
    }
    
    .zh_card-footer {
        padding: 15px;
    }
    
    .zh_section-title {
        font-size: 1.5rem;
    }
}

/* 动画效果 */
@keyframes zh_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_info-card {
    animation: zh_fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
.zh_category-filters::-webkit-scrollbar {
    height: 6px;
}

.zh_category-filters::-webkit-scrollbar-track {
    background: var(--zh-bg-secondary);
    border-radius: 3px;
}

.zh_category-filters::-webkit-scrollbar-thumb {
    background: var(--zh-primary-color);
    border-radius: 3px;
}

.zh_category-filters::-webkit-scrollbar-thumb:hover {
    background: var(--zh-primary-dark);
}

/* 加载动画 */
@keyframes zh_pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.zh_loading {
    animation: zh_pulse 1.5s ease-in-out infinite;
}

/* 悬浮效果增强 */
.zh_info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 129, 97, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--zh-transition);
    pointer-events: none;
}

.zh_info-card:hover::before {
    opacity: 1;
}

/* 成功样式补充 */
.zh_success-message {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    padding: 12px 20px;
    border-radius: var(--zh-radius-small);
    border: 1px solid rgba(40, 167, 69, 0.2);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    padding: 12px 20px;
    border-radius: var(--zh-radius-small);
    border: 1px solid rgba(220, 53, 69, 0.2);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
