/* 游戏详情页样式 - 仅PC端 */

.detail-main {
    background: #f5f5f5;
    padding: 20px 0;
    min-height: 800px;
}

/* 面包屑导航 */
.breadcrumb {
    background: white;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B35;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* 主布局 */
.detail-layout {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

/* 游戏详情卡片 */
.game-detail-card {
    background: white;
    padding: 20px;
}

/* 游戏标题区域 */
.game-title-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
    position: relative;
}

.game-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.game-title-text {
    flex: 1;
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.version-label {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.update-time-box {
    position: absolute;
    top: 0;
    right: 80px;
    font-size: 12px;
    color: #666;
}

/* 游戏信息与二维码区域 */
.game-info-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

/* 游戏信息表格 */
.game-info-table {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

/* 二维码区域 */
.qrcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.qrcode-box {
    width: 120px;
    height: 120px;
    padding: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-text {
    font-size: 12px;
    color: #666;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.info-row {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.8;
}

.info-label {
    color: #666;
    min-width: 75px;
}

.info-value {
    color: #333;
    display: flex;
    align-items: center;
}

.rating-star {
    color: #ddd;
    font-size: 14px;
    margin-right: 2px;
}

.rating-star.filled {
    color: #FFB400;
}

/* 投票条区域 */
.vote-bar-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.vote-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-thumb {
    font-size: 18px;
}

.vote-progress-bar {
    flex: 1;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vote-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.like-fill {
    background: #FF6B35;
}

.dislike-fill {
    background: #ccc;
}

.vote-count {
    font-size: 12px;
    color: #666;
    min-width: 60px;
    text-align: right;
}

/* 下载按钮区域 */
.download-action-buttons {
    display: flex;
    gap: 15px;
}

.btn-download {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    border-radius: 30px;
    background: #FF6B35;
    color: white;
}

.android {
    width: 100%;
}

.ios {
    width: 100%;
}

.btn-primary:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    border-radius: 30px;
    background: #ccc;
    color: white;
}

/*.btn-secondary:hover {*/
/*    background: #FB8C00;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);*/
/*}*/

.btn-icon {
    color: #fff;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    object-fit: contain;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.btn-text-wrapper small {
    font-size: 11px;
    opacity: 0.9;
}

/* 右侧栏 */
.sidebar-area {
    display: none;
}

.sidebar-box:last-child {
    border-bottom: none;
}

.sidebar-box-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
}

/* 侧边栏列表 */
.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:first-child {
    padding-top: 18px;
}

.sidebar-item:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.sidebar-item:hover {
    background: rgba(255, 107, 53, 0.05);
    padding-left: 5px;
    padding-right: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 4px;
}

.sidebar-icon {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.sidebar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sidebar-game-name {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.sidebar-game-meta {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta-sep {
    margin-left: 5px;
}

/* 侧边栏标签 */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-tag {
    padding: 4px 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 11px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sidebar-tag:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

/* 底部内容布局 */
.bottom-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    margin-top: 15px;
}

/* 详情标签页容器 */
.detail-tabs-container {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 底部右侧栏 */
.bottom-sidebar {
    height: 2350px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.bottom-sidebar::-webkit-scrollbar {
    width: 8px;
}

.bottom-sidebar::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.bottom-sidebar::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 4px;
}

.bottom-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* 标签页导航 */
.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    background: white;
}

.tab-nav-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-nav-btn:hover {
    color: #FF6B35;
}

.tab-nav-btn.active {
    color: #FF6B35;
    font-weight: 600;
}

.tab-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF6B35;
}

/* 标签页内容 */
.tabs-content {
    padding: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* 区块标题 */
.section-heading {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 12px;
    border-left: 3px solid #FF6B35;
    font-weight: 600;
    line-height: 1.4;
}

/* 简介区块 */
.intro-section {
    margin-bottom: 25px;
}

.section-content {
    line-height: 1.8;
    color: #666;
    font-size: 14px;
}

.section-content p {
    margin: 0 0 12px 0;
}

.intro-image {
    text-align: center;
    margin: 15px 0;
}

.intro-image img {
    max-width: 100%;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

/* 游戏特色 */
.features-section {
    margin-bottom: 25px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    margin-bottom: 12px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-title {
    font-size: 15px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.8;
    text-indent: 0;
}

/* 手游优势 */
.advantage-section {
    margin-bottom: 25px;
}

/* 关键所在 */
.key-section {
    margin-bottom: 25px;
}

.key-notice {
    display: flex;
    gap: 12px;
    background: #fff9e6;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #FFC107;
}

.notice-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.notice-list {
    margin: 0;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.notice-list li {
    margin-bottom: 8px;
}

/* 游戏截图预览 */
.preview-section {
    margin-bottom: 0;
}

/* 游戏截图轮播图样式 */
.preview-section .screenshot-gallery-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.preview-section .screenshot-gallery-wrapper {
    position: relative;
    margin: auto;
    width: 60%;
    height: 100%;
}

.preview-section .screenshot-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.preview-section .screenshot-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.preview-section .screenshot-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.preview-section .screenshot-gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.preview-section .screenshot-gallery-indicators .screenshot-gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-section .screenshot-gallery-indicators .screenshot-gallery-indicator.active {
    background: #FF6B35;
    width: 24px;
    border-radius: 4px;
}

.preview-section .screenshot-gallery-indicators .screenshot-gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.preview-section .screenshot-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
}

.preview-section .screenshot-gallery-container:hover .screenshot-gallery-btn {
    opacity: 1;
}

.preview-section .screenshot-gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.preview-section .screenshot-gallery-prev {
    left: 15px;
}

.preview-section .screenshot-gallery-next {
    right: 15px;
}

/* 游戏截图画廊 */
.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.screenshots-gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshots-gallery img:hover {
    opacity: 0.85;
}

/* 图片查看弹窗 */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* ========== 专题详情页样式 ========== */

/* 简化版专题横幅 */
.zt-banner-simple {
    position: relative;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zt-banner-simple .zt-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.zt-banner-simple .zt-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zt-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.zt-banner-title {
    font-size: 24px;
    color: white;
    margin: 0;
    font-weight: 600;
}

/* 专题信息框 */
.zt-info-box {
    background: white;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.zt-info-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.4;
}

.zt-info-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.zt-info-author::before {
    content: '📦 ';
}

.zt-info-date::before {
    content: '🕐 ';
}

.zt-info-desc {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 14px;
    color: #666;
}

.zt-info-desc p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* 限制行数为4 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 隐藏超出部分 */
    margin: 0;
}

.zt-info-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.zt-info-tag-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.zt-info-tag {
    padding: 4px 12px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zt-info-tag:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

/* 游戏网格 */
.zt-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.zt-grid-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zt-grid-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.zt-grid-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.zt-grid-content {
    padding: 15px;
}

.zt-grid-name {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zt-grid-rating {
    margin-bottom: 8px;
    font-size: 14px;
}

.zt-grid-meta {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.zt-grid-time,
.zt-grid-size {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zt-grid-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #FFF3E0;
    color: #FF9800;
    font-size: 11px;
    border-radius: 3px;
    margin-bottom: 8px;
    width: fit-content;
}

.zt-grid-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 42px;
}

.zt-grid-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zt-grid-btn {
    flex: 1;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #1565C0 100%);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zt-grid-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #1565C0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.zt-grid-comment {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.zt-grid-comment::before {
    content: '💬 ';
}

/* 同类专题 */
.related-zt-section {
    background: white;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.related-zt-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #FF6B35;
    font-weight: 600;
}

.related-zt-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-zt-item {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-zt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-zt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.related-zt-item:hover .related-zt-img {
    transform: scale(1.1);
}

.related-zt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-zt-name {
    font-size: 14px;
    color: white;
    font-weight: 500;
    text-align: center;
}

/* ========== 游戏列表页样式 ========== */

/* 主布局 */
.gl-main {
    background: #f5f5f5;
    padding: 20px 0;
    min-height: 100vh;
}

.gl-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}

/* 内容区域 */
.gl-content {
    background: white;
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 列表项 */
.gl-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

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

.gl-item:hover {
    background: #f9f9f9;
}

.gl-item-link {
    flex-shrink: 0;
}

.gl-item-img {
    width: 240px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.gl-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gl-item-title {
    color: #000;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.gl-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gl-item-title a:hover {
    color: #FF6B35;
}

.gl-item-desc {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.gl-item-meta {
    display: flex;
    gap: 20px;
    margin-top: auto;
    font-size: 13px;
    color: #999;
}

/* 分页 */
.gl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 30px 20px;
}

.gl-page-item {
    padding: 8px 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gl-page-item:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.gl-page-item.current {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.gl-page-item.active {
    background: #f0f0f0;
    color: #333;
}

/* 右侧边栏 */
.gl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gl-sidebar-box {
    background: white;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gl-sidebar-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
    font-weight: 600;
}

/* 侧边栏列表 */
.gl-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gl-sidebar-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gl-sidebar-item:first-child {
    padding-top: 0;
}

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

.gl-sidebar-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.gl-sidebar-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.gl-sidebar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.gl-sidebar-name {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gl-sidebar-meta {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 侧边栏游戏网格 */
.gl-sidebar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}

.gl-sidebar-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.gl-sidebar-game:hover {
    transform: translateY(-2px);
    background: #f8f9fa;
}

.gl-sidebar-game-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.gl-sidebar-game-name {
    font-size: 10px;
    color: #666;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 1.2;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 侧边栏排行 */
.gl-sidebar-rank {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gl-rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.gl-rank-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.gl-rank-num.top {
    background: #E74C3C;
    color: white;
}

.gl-rank-link {
    flex: 1;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.gl-rank-link:hover {
    color: #FF6B35;
}

/* ========== 文章详情页样式 ========== */

/* 主布局 */
.article-main {
    background: #f5f5f5;
    padding: 20px 0;
    min-height: 100vh;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}

/* 文章内容区 */
.article-content {
    background: white;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.article-title {
    font-size: 28px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.4;
}

/* 文章元信息 */
.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    color: #999;
}

.article-meta span {
    display: flex;
    align-items: center;
}

/* 游戏信息卡片 */
.game-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.game-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.game-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-card-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.game-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.game-card-meta span {
    padding: 3px 8px;
    background: white;
    border-radius: 3px;
}

.game-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 15px 0;
    flex: 1;
}

.download-btn-large {
    padding: 12px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #E65100 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.download-btn-large:hover {
    background: linear-gradient(135deg, #E65100 0%, #E65100 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* 游戏截图 */
.game-screenshot {
    margin-bottom: 25px;
}

.screenshot-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* 文章章节 */
.article-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    padding-left: 12px;
    border-left: 4px solid #FF6B35;
}

.section-content {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.section-content p {
    margin: 0 0 15px 0;
    text-indent: 4ch;
    line-height: 2.5;
}

.section-content p img {
    width: 80%;
    display: block;
    margin: auto;
}

/* 多图展示 */
.multi-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.multi-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.multi-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 相关文章 */
.related-articles {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.related-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.related-item:hover {
    color: #FF6B35;
}

/* 右侧边栏 */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-box {
    background: white;
    border-radius: 4px;
    padding: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
}

.sidebar-title {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.sidebar-tabs {
    display: flex;
    gap: 10px;
}

.tab-item {
    padding: 5px 12px;
    font-size: 13px;
    color: #666;
    background: #f0f0f0;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: #e0e0e0;
    color: #333;
}

.tab-item.active {
    background: #FF6B35;
    color: white;
}

/* 推荐列表 */
.recommend-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recommend-item:first-child {
    padding-top: 0;
}

.recommend-item:last-child {
    padding: 10px;
    border-bottom: none;
    align-items: center;
}

.recommend-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.recommend-icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.recommend-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.recommend-name {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-meta {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 排行榜列表 */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.rank-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.rank-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.rank-num.top {
    background: #E74C3C;
    color: white;
}

.rank-text {
    flex: 1;
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.rank-item:hover .rank-text {
    color: #FF6B35;
}

/* 热门列表 */
.hot-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hot-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hot-item:first-child {
    padding-top: 0;
}

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

.hot-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.hot-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.hot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.hot-name {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-category {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 游戏推荐网格 */
/*.game-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    gap: 10px;*/
/*}*/

.grid-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.grid-game-item:hover {
    transform: translateY(-3px);
}

.grid-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
}

.grid-game-name {
    font-size: 12px;
    color: #666;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.permission-link {
    color: #FF6B35;
    background: none;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.permission-modal.show {
    opacity: 1;
}

.permission-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.permission-modal.show .permission-modal-content {
    transform: translateY(0);
}

.permission-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.permission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.permission-header h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.permission-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.permission-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.permission-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.permission-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.permission-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.permission-footer {
    padding: 15px 20px;
    text-align: right;
    border-top: 1px solid #eee;
}

.permission-confirm {
    background: linear-gradient(135deg, #FF6B35, #E65100);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ========== 网站地图样式 ========== */

/* 主布局 */
.sitemap-main {
    background: #f5f5f5;
    padding: 20px 0;
}

.sitemap-container {
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

/* 标题区域 */
.sitemap-title-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.sitemap-title-bar {
    width: 6px;
    height: 30px;
    background: #FF6B35;
    margin-right: 15px;
    border-radius: 3px;
}

.sitemap-title {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* 分类组 */
.sitemap-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sitemap-category-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.sitemap-category-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 主分类按钮 */
.category-main-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
    margin-right: 20px;
}

.category-main-btn:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* 子分类链接 */
.subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.subcategory-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subcategory-link:hover {
    background: #f0f0f0;
    color: #FF6B35;
}

/* 滚动按钮 */
.scroll-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover {
    background: #E65100;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* 页脚容器 */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 友情链接样式 */
.friendship-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.friendship-item {

    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 20px;
    margin-bottom: 20px;
    white-space: normal;
    max-width: 1200px;

}

.friendship-header {
    display: block;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 15px;

}

.friendship-header h3 {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    margin-bottom: 20px;
}

.friendship-header a {
    color: white;
    text-decoration: none;
}

.links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.link-item {
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.link-item:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* 页脚导航 */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

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

.footer-link:hover {
    color: #FF6B35;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .sitemap-container {
        padding: 20px 15px;
    }

    .sitemap-category-group {
        flex-direction: column;
        align-items: stretch;
    }

    .category-main-btn {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
    }

    .subcategories {
        gap: 10px;
    }

    .subcategory-link {
        font-size: 13px;
        padding: 5px 10px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .scroll-buttons {
        right: 10px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ========== 关于我们页面样式 ========== */

/* 主布局 */
.about-main {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
}

.about-container {
    padding-top: 70px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

/* 左侧导航菜单 */
.about-sidebar {
    width: 180px;
    background: #FF6B35;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
    flex-shrink: 0;
    position: relative;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-left: 6px solid transparent;
    font-size: 14px;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #FF6B35;
}

.sidebar-item.active::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.sidebar-text {
    font-size: 14px;
    font-weight: 400;
}

.sidebar-arrow {
    font-size: 10px;
    opacity: 0.6;
}

.sidebar-item.active .sidebar-arrow {
    display: none;
}

/* 中央内容区域 */
.about-content {
    flex: 1;
    background: white;
    padding: 25px 35px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

/* 面包屑导航 */
.about-breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

/* 文章内容 */
.about-article {
    max-width: 100%;
}

.about-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 25px 0;
    font-weight: 600;
    line-height: 1.3;
}

.about-text {
    line-height: 1.7;
    color: #555;
    font-size: 14px;
}

.about-text p {
    margin: 0 0 18px 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* 服务项目 */
.about-services {
    margin: 20px 0;
}

.service-item {
    margin-bottom: 20px;
    padding: 15px 18px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #FF6B35;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-title {
    font-size: 15px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.service-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.about-conclusion {
    font-weight: 600;
    color: #FF6B35;
    font-size: 15px;
    text-align: center;
    margin: 25px 0 0 0;
    padding: 12px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-radius: 6px;
    border: 1px solid #e0f0e0;
}

/* 右侧装饰区域 */
.about-decoration {
    width: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.decoration-header {
    position: absolute;
    top: 25px;
    right: 15px;
    text-align: right;
    z-index: 3;
}

.decoration-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.decoration-characters {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
}

.character {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.character::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
}

.character::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background: #333;
    border-radius: 1px;
}

.character-1 {
    margin-right: 1px;
}

.character-2 {
    transform: scale(0.85);
    opacity: 0.7;
}

/* 花朵装饰 */
.decoration-flower {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 150px;
    background: linear-gradient(to bottom,
    #9c27b0 0%,
    #ba68c8 25%,
    #ce93d8 50%,
    #e1bee7 75%,
    #f3e5f5 90%,
    transparent 100%);
    border-radius: 3px;
    opacity: 0.5;
    filter: blur(0.5px);
}

.decoration-flower::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 15px;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom,
    #8bc34a 0%,
    #aed581 50%,
    #c8e6c9 100%);
    border-radius: 2px;
    transform: rotate(-12deg);
}

.decoration-flower::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 30px;
    width: 3px;
    height: 18px;
    background: linear-gradient(to bottom,
    #8bc34a 0%,
    #aed581 50%,
    #c8e6c9 100%);
    border-radius: 1px;
    transform: rotate(8deg);
}

/* 页脚 */
.about-footer {
    background: white;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-nav {
    margin-bottom: 12px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF6B35;
}

.footer-separator {
    color: #ccc;
    margin: 0 8px;
}

.footer-copyright {
    color: #999;
    font-size: 11px;
    margin: 0;
}

/* 关于我们页面响应式设计 */
@media (max-width: 1024px) {
    .about-decoration {
        width: 180px;
    }

    .about-content {
        padding: 20px 25px;
    }
}

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

    .about-sidebar {
        width: 100%;
        order: 2;
    }

    .sidebar-nav {
        display: flex;
        padding: 8px 0;
        overflow-x: auto;
    }

    .sidebar-item {
        white-space: nowrap;
        flex-shrink: 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 15px;
    }

    .sidebar-item.active {
        border-left: none;
        border-bottom-color: #FF6B35;
    }

    .sidebar-item.active::after {
        display: none;
    }

    .about-content {
        order: 1;
        padding: 18px 15px;
    }

    .about-decoration {
        display: none;
    }

    .about-title {
        font-size: 20px;
    }

    .service-item {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 15px 10px;
    }

    .about-title {
        font-size: 18px;
    }

    .about-text {
        font-size: 13px;
    }

    .service-title {
        font-size: 14px;
    }

    .service-desc {
        font-size: 12px;
    }
}
