:root {
    --link-default-color: #000;
    --link-hover-color: #0066cc;
    --link-visited-color: #551a8b;
}

/* 全局样式 - 来自所有页面 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局 a 标签重构 */
a, a:link {
    color: var(--link-default-color);
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    outline: none;
}

a:hover, a:focus {
    color: var(--link-hover-color);
    text-decoration: none !important;
}

a:visited {
    color: var(--link-visited-color);
    text-decoration: none !important;
}

a:active {
    opacity: 0.8;
}

body {
    font-family: "Microsoft YaHei", "SimSun", "宋体", sans-serif;
    background: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* 顶部信息栏 - 来自所有页面 */
.header-top {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.newspaper-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 品牌标识 */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-edition {
    font-size: 14px;
    font-weight: 600;
    color: #c41e3a;
    letter-spacing: 2px;
    padding: 2px 8px;
    border-left: 2px solid #c41e3a;
    line-height: 1.4;
    white-space: nowrap;
}

.issue-info {
    font-size: 14px;
    color: #666;
}

.issue-info span {
    margin-right: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: #666;
    font-size: 14px;
}

.header-actions a:hover {
    color: #c41e3a;
}

.header-actions i {
    margin-right: 5px;
}

/* 日期栏 - 来自所有页面 */
.date-bar {
    background: #c41e3a;
    color: #fff;
    padding: 12px 0;
}

.date-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-date {
    font-size: 16px;
    font-weight: bold;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-nav a {
    color: #fff;
    font-size: 14px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 3px;
}

.date-nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* 主体内容区 - 来自所有页面 */
.main-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
}

/* 左侧目录栏 - 来自所有页面 */
.sidebar-left {
    width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-header {
    background: #c41e3a;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
}

.sidebar-header i {
    margin-right: 8px;
}

.catalog-list {
    list-style: none;
    padding: 10px 0;
}

.catalog-item {
    border-bottom: 1px solid #eee;
}

.catalog-item:last-child {
    border-bottom: none;
}

.catalog-title {
    padding: 12px 15px;
    font-weight: bold;
    color: #c41e3a;
    background: #f9f9f9;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.catalog-title:hover {
    background: #f0f0f0;
}

.catalog-title i {
    margin-right: 8px;
    transition: transform 0.3s;
}

.catalog-title.collapsed i {
    transform: rotate(-90deg);
}

.article-list {
    list-style: none;
    padding: 5px 0;
}

.article-list li {
    padding: 8px 15px 8px 35px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.article-list li:hover {
    background: #f5f5f5;
    color: #c41e3a;
    border-left-color: #c41e3a;
}

.article-list li.active {
    background: #fff0f2;
    color: #c41e3a;
    border-left-color: #c41e3a;
    font-weight: bold;
}

/* 右侧内容区 - 来自所有页面 */
.content-right {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

/* 底部版权栏 - 来自所有页面 */
.footer {
    background: #333;
    color: #ccc;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    margin: 0 15px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-info {
    font-size: 13px;
    line-height: 1.8;
}

.footer-info p {
    margin: 5px 0;
}

/* 首页特有样式 */
.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #e0e0e0 linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #eee; /* Fallback placeholder color */
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 20px;
    color: #fff;
}

.slider-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slider-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav button.active {
    background: #c41e3a;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(196, 30, 58, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.section-title {
    padding: 20px 30px;
    border-bottom: 2px solid #c41e3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2 {
    font-size: 22px;
    color: #c41e3a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title h2::before {
    content: '';
    width: 4px;
    height: 22px;
    background: #c41e3a;
    display: block;
}

.section-title .more-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.section-title .more-link:hover {
    color: #c41e3a;
}

.news-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-title {
    color: #c41e3a;
}

.news-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-list {
    padding: 30px;
}

.news-list-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.news-list-item:hover {
    background: #f9f9f9;
    padding-left: 10px;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-thumb {
    width: 200px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-list-item:hover .news-list-thumb img {
    transform: scale(1.05);
}

.news-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-list-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* 文章标题链接由全局 a 样式统一控制 */

.news-list-item:hover .news-list-title {
    color: inherit; /* Resetting the hover color from parent to allow a:hover to take effect */
}

.news-list-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.news-list-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-news {
    padding: 30px;
}

.hot-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    cursor: pointer;
    transition: all 0.3s;
}

.hot-news-item:hover {
    color: #c41e3a;
}

.hot-news-item:last-child {
    border-bottom: none;
}

.hot-news-rank {
    width: 28px;
    height: 28px;
    background: #c41e3a;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.hot-news-item:nth-child(n+4) .hot-news-rank {
    background: #999;
}

.hot-news-title {
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

/* 列表页特有样式 */
.list-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.list-breadcrumb {
    font-size: 14px;
    color: #666;
    font-weight: 700; /* 统一父容器字重，使硬编码字符继承 */
}

.list-breadcrumb a {
    color: inherit; /* 继承父容器颜色，确保与分隔符一致 */
    font-size: 14px;
    font-weight: 700;
}

/* 仅通过伪元素新增内容或调整间距，不干扰硬编码数据 */
.list-breadcrumb a::before {
    content: "\00a0"; /* 添加一个不换行空格，优化硬编码 '>' 与链接文字的间距 */
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

.list-breadcrumb a:hover {
    color: #c41e3a;
}

.list-breadcrumb a:hover::before {
    color: #666; /* 悬停时通过伪元素确保间距处的视觉稳定性 */
}

.list-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.list-filter {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-size: 14px;
    color: #666;
}

.filter-select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:hover {
    border-color: #c41e3a;
}

.filter-select:focus {
    outline: none;
    border-color: #c41e3a;
}

.filter-btn {
    padding: 6px 15px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #a01830;
}

.filter-btn i {
    margin-right: 5px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #c41e3a;
}

.search-btn {
    padding: 6px 15px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #a01830;
}

.news-list-container {
    padding: 30px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.news-item:hover {
    background: #f9f9f9;
    padding-left: 10px;
    padding-right: 10px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item-thumb {
    width: 240px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-item:hover .news-item-thumb img {
    transform: scale(1.05);
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-item-title {
    color: inherit;
}

.news-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    align-items: center;
}

.news-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-item-tag {
    padding: 2px 10px;
    background: #fff0f2;
    color: #c41e3a;
    border-radius: 3px;
    font-size: 12px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.pagination li {
    margin: 0 2px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.pagination a:hover {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}

.pagination li.active span {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
    cursor: default;
}



/* 文章页特有样式 */
.toolbar {
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.font-size-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.font-size-control span {
    font-size: 13px;
    color: #666;
}

.font-btn {
    padding: 4px 12px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.3s;
}

.font-btn:hover {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}

.fullscreen-btn {
    padding: 6px 15px;
    background: #c41e3a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    transition: background 0.3s;
}

.fullscreen-btn:hover {
    background: #a01830;
}

.fullscreen-btn i {
    margin-right: 5px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    padding: 6px 15px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.article-content {
    padding: 30px 40px;
    min-height: 600px;
}

.article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    font-size: 13px;
    color: #999;
}

.article-meta span {
    margin: 0 10px;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.article-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.article-body.font-small {
    font-size: 14px;
}

.article-body.font-medium {
    font-size: 16px;
}

.article-body.font-large {
    font-size: 18px;
}

.article-body.font-xlarge {
    font-size: 20px;
}

.article-body img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    object-fit: contain;
    box-sizing: border-box;
}

.article-body p {
    margin-bottom: 20px;
    text-indent: 2em;
    overflow: hidden;
}

.article-footer-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-nav-links {
    display: flex;
    gap: 20px;
}

.article-nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.article-nav-links a:hover {
    color: #c41e3a;
}

.article-nav-links i {
    margin: 0 5px;
}

.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
}

.fullscreen-mode .article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.fullscreen-close {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: #c41e3a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    z-index: 10000;
}

.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loading.show {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c41e3a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.overlay.show {
    display: block;
}

/* 响应式设计 - 来自所有页面 */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar-left {
        width: 100%;
    }

    .catalog-list {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .catalog-item {
        flex: 1;
        min-width: 200px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .article-list {
        display: none;
    }

    .article-list.show {
        display: block;
        position: absolute;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 100;
        min-width: 200px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .brand-logo-img {
        height: 36px;
    }

    .brand-edition {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .date-container {
        flex-direction: column;
        gap: 10px;
    }

    .banner-slider {
        height: 250px;
    }

    .slider-caption h3 {
        font-size: 18px;
    }

    .slider-caption p {
        font-size: 12px;
    }

    .news-list-item {
        flex-direction: column;
    }

    .news-list-thumb {
        width: 100%;
        height: 180px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .list-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-wrap: wrap;
    }

    .search-box {
        width: 100%;
    }

    .search-input {
        flex: 1;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item-thumb {
        width: 100%;
        height: 200px;
    }

    .news-item-meta {
        flex-wrap: wrap;
    }

    .pagination-container {
        flex-direction: column;
        gap: 10px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 3px;
    }

    .pagination li {
        margin: 0 1px;
    }

    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 13px;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
    }

    .toolbar {
        flex-direction: column;
        gap: 10px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}