/* 全局样式 */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    color: #23527c;
    text-decoration: none;
}

/* 导航栏 */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar-nav > li > a {
    font-size: 16px;
    padding: 15px 20px;
}

.navbar-nav > li > a:hover {
    background-color: #f8f9fa;
}

/* 轮播图 */
.carousel {
    margin-top: 50px;
}

.carousel-inner > .item > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

/* 页面标题 */
.page-header {
    margin-top: 50px;
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    margin: 0;
    font-size: 36px;
    color: #333;
}

/* 区块样式 */
section {
    padding: 60px 0;
}

section h2 {
    margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
}

section h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

/* 关于我们 */
.about-section {
    padding: 60px 0;
}

.about-section img {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 产品服务 */
.products-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.product-item {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item i {
    color: #337ab7;
    margin-bottom: 20px;
}

/* 成功案例 */
.cases-section {
    padding: 60px 0;
}

.case-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
}

.case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

/* 新闻资讯 */
.news-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.news-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.news-item h3 {
    margin-top: 0;
}

.news-item .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-item .read-more {
    color: #337ab7;
    font-weight: bold;
}

/* 联系我们 */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-form {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.contact-form h3 {
    margin-top: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* 招聘中心 */
.recruitment-section {
    padding: 60px 0;
}

.sidebar {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

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

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: block;
    padding: 10px;
    color: #333;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover,
.sidebar ul li.active a {
    background-color: #337ab7;
    color: #fff;
}

.benefits li {
    margin-bottom: 10px;
}

.benefits i {
    color: #337ab7;
    margin-right: 10px;
}

.job-search {
    margin-bottom: 30px;
}

.job-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-header h3 {
    margin: 0;
}

.job-tags {
    display: flex;
    gap: 10px;
}

.salary {
    color: #e74c3c;
    font-weight: bold;
}

.job-body {
    margin-bottom: 20px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.apply-btn {
    padding: 8px 20px;
    background-color: #337ab7;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #23527c;
    color: #fff;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination li a {
    color: #337ab7;
}

.pagination li.active a {
    background-color: #337ab7;
    border-color: #337ab7;
}

/* 页脚 */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

footer h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

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

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

footer .text-center {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-inner > .item > img {
        height: 300px;
    }
    
    .product-item,
    .case-item,
    .news-item {
        margin-bottom: 20px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-tags {
        margin-top: 10px;
    }
    
    .job-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .apply-btn {
        margin-top: 10px;
    }
}

/* 产品服务页面 */
.product-content {
    margin-bottom: 30px;
}

.product-content .product-item {
    margin-bottom: 40px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
}

.product-content .product-item h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.product-content .product-item img {
    margin-bottom: 20px;
}

.product-content .product-item ul {
    margin-bottom: 20px;
}

/* 成功案例页面 */
.cases-content {
    margin-bottom: 30px;
}

.cases-content .case-item {
    margin-bottom: 30px;
}

/* 新闻资讯页面 */
.news-content {
    margin-bottom: 30px;
}

.news-content .news-item {
    margin-bottom: 30px;
}

.hot-news li {
    margin-bottom: 10px;
}

.hot-news li a {
    color: #333;
    transition: all 0.3s ease;
}

.hot-news li a:hover {
    color: #337ab7;
    padding-left: 5px;
}

/* 联系我们页面 */
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info .info-item i {
    margin-right: 20px;
    color: #337ab7;
}

.contact-info .info-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    margin-right: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #337ab7;
}

.required {
    color: #e74c3c;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-container {
    height: 400px;
    margin-top: 30px;
}

.faq-section {
    padding: 60px 0;
}

.faq-section .panel-group {
    margin-bottom: 30px;
}

.faq-section .panel-heading {
    background-color: #f8f9fa;
}

.faq-section .panel-title a {
    display: block;
    padding: 10px 0;
    color: #333;
    transition: all 0.3s ease;
}

.faq-section .panel-title a:hover {
    color: #337ab7;
}

.faq-section .panel-title a:before {
    content: '\e114';
    font-family: 'Glyphicons Halflings';
    float: right;
    transition: all 0.3s ease;
}

.faq-section .panel-title a.collapsed:before {
    content: '\e080';
}

/* 时间线样式 */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #337ab7;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid #337ab7;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
}

/* 团队介绍样式 */
.team-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.team-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px);
}

.team-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.team-item p {
    margin-bottom: 5px;
}

/* 企业文化样式 */
.culture-section {
    padding: 60px 0;
}

.culture-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item i {
    color: #337ab7;
    margin-bottom: 20px;
}

.culture-item h3 {
    margin-bottom: 15px;
}