body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

#carousel {
    position: relative;
    width: 100%;
    height: 80vh; /* 占据大半个屏幕高度 */
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片覆盖整个轮播区域 */
}

.content-section {
    padding: 50px 20px;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.text-content, .image-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

ul li i {
    margin-right: 10px;
    color: #007BFF;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer img {
    margin-top: 10px;
    width: 100px;
    height: auto;
}

/* 招聘页面特定样式 */
#positions {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#positions h1 {
    text-align: center;
    color: #007BFF;
    margin-bottom: 20px;
}

.job-listing {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-listing h2 {
    color: #007BFF;
    margin-top: 0;
}

.job-listing i {
    margin-right: 10px;
    color: #007BFF;
}

ul li i {
    color: #333;
}
