/* style.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    /* margin-right: 10 px; */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    /* margin-left: 20px;    */
    cursor: pointer;
}

.nav-links li.active {
    color: #FF670B;
    /* 激活状态的颜色 */
}
.divider {
    margin: 0 20px;
    user-select: none; /* 禁止选中竖线 */
    color: #979797; 
    opacity: 0.35;      /* 可自定义颜色 */
}
.nav-links li:hover {
    color: #FF670B;
    /* 悬停状态的颜色 */
}

/* 可选：为 .active 添加下划线效果 */
/* .nav-links li.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FF670B;
    margin-top: 5px;
} */

/* 底部栏样式 */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    height: 80px;
    position: fixed;
    /* 绝对定位 */
    bottom: 0;
    /* 固定在底部 */
    left: 0;
}

.footer-content p {
    margin: 5px 0;
    font-size: 11px;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.home-container {
    text-align: center;
    /* padding: 20px; */
}

.home-image {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.description {
    font-size: 18px;
    color: #333;
    /* margin-top: 15px; */
}
.home-container1 {
    text-align: center;
    padding: 200px 300px 250px;
    box-sizing: border-box;
}

.home-image1 {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.page-content {
    /* padding: 60px 20px 0; */
}

.section {
    scroll-margin-top: 60px; /* 滚动定位时留出导航栏空间 */
    /* padding: 40px 20px; */
    border-bottom: 1px solid #eee;
}
