/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #dde1e5;
    color: rgb(239, 9, 9);
    text-align: center;
    padding: 0px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: rgb(9, 9, 9);
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 20px;
     color: rgba(30, 47, 46, 0.897);
    border-bottom: 1px solid #ccc;
}
/* 底部网站地图 导航菜单的居中  */
.containerA {
            max-width: 100%;          
            padding: 0 30px;
            width: 100%;
            display: block;
        }
/* 现代化页脚 */
.footer-modernA {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); /* 与网站地图相同的深蓝灰色渐变背景 */
    color: white;                    /* 白色文字 2c3e50  dbe1e8*/
    text-align: center;              /* 文本居中对齐 */
    padding: 10px 10px;             /* 内边距：上下40px，左右20px */
    font-size: 0.9rem;               /* 字体大小：0.9rem */
    margin-top: 0px;                /* 顶部外边距：10px，减小与网站地图的距离 */
}

/* 页脚段落样式 */
.footer-modernA p {
    margin-bottom: 5px;             /* 底部外边距：10px */
    line-height: 1.6;                /* 行高：1.6倍 */
}

/* 页脚链接样式 */
.footer-modernA a {
    color: rgb(198, 0, 0);                    /* 白色文字 */
    text-decoration: none;           /* 去除链接默认下划线 */
    transition: var(--transition);   /* 统一过渡效果 */
}

/* 页脚链接悬停效果 */
.footer-modernA a:hover {
    color: var(--accent-color);                  /* 悬停时文字颜色变为浅灰色 */
    text-decoration: none;           /* 保持无下划线 */
}



 responsive-img {
    max-width: 20%; /* 宽度不超过容器 */
    height: auto; /* 高度自动，保持宽高比 */
    display: block; /* 消除图片底部默认空白 */
  }


/* 英雄区域样式 */
.hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* 网站地图样式 */
.site-map {
    background-color: #555 !important;
    padding: 40px 20px;
    color: #fff !important;
}

.site-map .container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-map h3 {
    color: #fff !important;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.site-map ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-map ul ul {
    margin-top: 10px;
}

.site-map li {
    margin-bottom: 8px !important;
}

.site-map a {
    color: #fff !important;
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.site-map a:hover {
    opacity: 0.7;
    color: #fff !important;
}

.site-map .section-title {
    font-weight: bold;
    margin-bottom: 10px;
}