/*! style-enhancements.css ve769197d */
/* Generated: 2026-01-14 13:50:34 */
/* Domain: chn-my-qmh.com */
/* Advanced styling techniques */
/* Optimized rendering */
/* Enhanced visual appeal */

.css_404edd {
    /* Random class Cd5566982 fingerprint optimization */
    display: none;
}

/**
 * Template9 - Ant Design 企业级风格增强样式
 */

/* 移动端菜单 */
.ant-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.ant-mobile-menu.active {
    display: block;
}

.ant-mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.ant-mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--ant-background-light);
    box-shadow: var(--ant-shadow-2);
    transform: translateX(100%);
    transition: transform 0.3s;
}

.ant-mobile-menu.active .ant-mobile-menu-content {
    transform: translateX(0);
}

.ant-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--ant-border-color-split);
}

.ant-mobile-menu-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.ant-mobile-menu-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--ant-text-primary);
    cursor: pointer;
    padding: 4px;
}

.ant-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ant-mobile-nav-list li {
    border-bottom: 1px solid var(--ant-border-color-split);
}

.ant-mobile-nav-link {
    display: block;
    padding: 16px;
    color: var(--ant-text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.ant-mobile-nav-link:hover {
    background: var(--ant-background);
    color: var(--ant-primary);
}

/* 移动端菜单按钮 */
.ant-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ant-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ant-text-primary);
    transition: all 0.3s;
}

.ant-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ant-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ant-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 响应式 */
@media (max-width: 768px) {
    .ant-mobile-menu-toggle {
        display: flex;
    }
    
    .ant-main-nav {
        display: none;
    }
}

/* 统计数字样式 */
.ant-stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--ant-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ant-stat-label {
    font-size: 14px;
    color: var(--ant-text-secondary);
}

/* 企业级数据展示卡片 */
.ant-stat-card {
    background: var(--ant-background-light);
    border: 1px solid var(--ant-border-color-split);
    border-radius: var(--ant-radius-sm);
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.ant-stat-card:hover {
    border-color: var(--ant-primary);
    box-shadow: var(--ant-shadow-2);
}

/* 标签页样式 */
.ant-tabs {
    border-bottom: 1px solid var(--ant-border-color-split);
    margin-bottom: 24px;
}

.ant-tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}

.ant-tabs-item {
    padding: 12px 24px;
    font-size: 14px;
    color: var(--ant-text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.ant-tabs-item:hover {
    color: var(--ant-primary);
}

.ant-tabs-item.active {
    color: var(--ant-primary);
    border-bottom-color: var(--ant-primary);
}

.ant-tabs-content {
    padding: 24px 0;
}

/* 表单样式 */
.ant-form-item {
    margin-bottom: 24px;
}

.ant-form-label {
    display: block;
    font-size: 14px;
    color: var(--ant-text-primary);
    margin-bottom: 8px;
}

.ant-form-control {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid var(--ant-border-color);
    border-radius: var(--ant-radius-base);
    transition: all 0.3s;
}

.ant-form-control:focus {
    outline: none;
    border-color: var(--ant-primary);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

/* 时间线样式 */
.ant-timeline {
    position: relative;
    padding-left: 24px;
}

.ant-timeline-item {
    position: relative;
    padding-bottom: 32px;
    border-left: 2px solid var(--ant-border-color-split);
}

.ant-timeline-item:last-child {
    border-left: none;
}

.ant-timeline-dot {
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ant-primary);
    border: 2px solid var(--ant-background-light);
}

.ant-timeline-content {
    margin-left: 16px;
}

.ant-timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ant-text-primary);
    margin-bottom: 8px;
}

.ant-timeline-description {
    font-size: 14px;
    color: var(--ant-text-secondary);
    line-height: 1.6;
}

/* 文章侧边栏 */
.ant-sidebar {
    background: var(--ant-background-light);
    border: 1px solid var(--ant-border-color-split);
    border-radius: var(--ant-radius-sm);
    padding: 24px;
}

.ant-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ant-text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ant-border-color-split);
}

.ant-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ant-sidebar-item {
    margin-bottom: 12px;
}

.ant-sidebar-link {
    display: block;
    font-size: 14px;
    color: var(--ant-text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.ant-sidebar-link:hover {
    color: var(--ant-primary);
}
