/* ==========================================================================
   1. 基础布局环境重置
   ========================================================================== */
/* 确保主题没有被旧代码留出的内边距撑开空白 */
body.home #page, 
body.home #main, 
body.blog #page, 
body.blog #main { 
    padding-top: 0 !important; 
}


/* ==========================================================================
   2. About Us 模块基础样式（纯手动硬编码版）
   ========================================================================== */
.about-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    color: #fff;
    scroll-margin-top: 100px; /* 修复未来点击导航锚点平滑跳转时的遮挡问题 */
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-title h2 {
    font-size: 28px;
    color: #fff;
    margin: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.about-text {
    flex: 1 1 55%;
}

.about-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}


/* ==========================================================================
   3. 按钮与数据统计样式（统一 #DD7500 橙色品牌色）
   ========================================================================== */
.about-btn {
    display: inline-block;
    background: #DD7500; /* 全站统一的精美橙色 */
    color: #fff !important;
    padding: 12px 30px;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #c56800; /* 鼠标悬停时按钮颜色变深 */
}

.about-stats {
    flex: 1 1 35%;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number span {
    font-size: 20px;
}

.stat-item p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}


/* ==========================================================================
   4. 移动端响应式适配（屏幕宽度小于 768px）
   ========================================================================== */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-stats {
        flex: 1 1 100%;
    }
    
    .stat-number {
        font-size: 30px;
    }
}
/* ==========================================================================
   5. 导航栏样式自定义（菜单居中与字体放大）
   ========================================================================== */
.navbar-nav .nav-item .nav-link {
    font-size: 18px !important;     /* 调整为你想要的大小，默认一般是 14px 或 16px */
    font-weight: 500;               /* 让导航字体稍微加粗一点，更有质感 */
    padding-left: 20px !important;  /* 适当增加菜单项之间的左右间距 */
    padding-right: 20px !important;
}

/* 如果 Products 后面有下拉菜单小箭头，微调它的间距 */
.navbar-nav .nav-item .nav-link i {
    margin-left: 6px;
}