/* common.css */

/* 通用样式 */
html, body {
    margin: 0;
    padding: 0;
    width: 100%; /* 页面宽度铺满 */
    height: 100%; /* 页面高度铺满 */
}
/* 通用设置 */
.container {
    margin: 0 auto; /* 居中对齐 */
    box-sizing: border-box;
}
.parent-container {
    width: 100%; /* 父容器也需要宽度 100% */
}

/* 页头样式 */
/* 页头样式 */
header {
    background-color: #ffffff;
    padding: 20px 5px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;

}

.header-container {
    display: flex; /* 使用 Flex 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: left;
    max-width: 1200px; /* 控制最大宽度 */
    margin: 0 auto; /* 居中 */
    gap: 5px; /* 增加图片和文字之间的间距 */
    padding: 0 20px; /* 添加左右内边距 */
    box-sizing: border-box;
}

.header-logo {
    max-width: 150px; /* 控制图片宽度 */
    height: auto;
    margin-right: 20px; /* 图片右侧增加间距（可选，和 gap 二选一） */
}

header p {
    margin: 0;
    font-size: 1.6em; /* 增大文字大小 */
    font-weight: 500;
}

.title-text a {
    font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* 近似图中艺术感字体 */
    font-weight: 600; /* 加粗 */
    color: #555555;   /* 图中灰色 */
    text-decoration: none; /* 去除下划线 */
    font-size: 24px;  /* 可根据视觉效果调整 */
}


/* 导航栏样式 */
nav {
    background-color: #fff;
    padding: 10px 0;
    margin-bottom: 5px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* 宽度与页头一致 */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.navigation {
    display: flex;
    gap: 20px;
}

.navigation a {
    color: #333;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.navigation a:hover {
    text-decoration: underline;
}

.search input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

/* 页脚样式 */

footer {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: self-start;
    padding: 0 20px;
    box-sizing: border-box;
}
.footer-text {
    flex: 1;
    text-align: left;
}

.footer-image {
    flex: 1;
    text-align: center;
}

.footer-coming-soon {
    flex: 1;
    text-align: right;
    color: #ccc;
}

.footer-image img {
    max-width: 200px;
}

