/* 基础样式 */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 顶部信息栏 */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.top-bar .address, .top-bar .icp {
    font-size: 14px;
    color: #666;
}

/* 导航栏 */
.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: 20px;
    font-weight: bold;
    color: #007bff !important;
}

.navbar-nav > li > a {
    font-size: 16px;
    color: #333 !important;
    padding: 15px 20px;
}

.navbar-nav > li > a:hover, .navbar-nav > li.active > a {
    color: #007bff !important;
    background-color: #f8f9fa !important;
}

/* 轮播图 */
.carousel {
    margin-bottom: 30px;
}

.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;
}

.carousel-caption h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 16px;
}

/* 公司简介 */
.company-intro {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.company-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007bff;
}

.company-intro p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.company-intro img {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 主要业务 */
.business {
    padding: 60px 0;
}

.business h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.business-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

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

.business-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.business-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.business-item p {
    font-size: 14px;
    color: #666;
}

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

.news h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

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

.news-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-item h3 a {
    color: #333;
    text-decoration: none;
}

.news-item h3 a:hover {
    color: #007bff;
}

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

.news-item p {
    font-size: 14px;
    color: #666;
}

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

.contact h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
}

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

.contact-form label {
    font-weight: normal;
    color: #333;
}

.contact-form input, .contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

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

footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #007bff;
}

footer p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ccc;
}

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

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

footer ul li a {
    color: #ccc;
    text-decoration: none;
}

footer ul li a:hover {
    color: #007bff;
}

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

/* 按钮样式 */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .carousel-inner > .item > img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
    
    .company-intro, .business, .news, .contact {
        padding: 30px 0;
    }
    
    .company-intro h2, .business h2, .news h2, .contact h2 {
        font-size: 24px;
    }
    
    .business-item {
        margin-bottom: 30px;
    }
}

/* 通用页面样式 */
.page-header {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.page-header h1 {
    font-size: 28px;
    color: #007bff;
    margin: 0;
}

/* 产品列表样式 */
.product-list {
    margin-bottom: 30px;
}

.product-item {
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-item .product-info {
    padding: 20px;
}

.product-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* 案例列表样式 */
.case-list {
    margin-bottom: 30px;
}

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

.case-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.case-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.case-item p {
    font-size: 14px;
    color: #666;
}

/* 新闻列表样式 */
.news-list {
    margin-bottom: 30px;
}

.news-list .news-item {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.news-list .news-item:last-child {
    border-bottom: none;
}

.news-list .news-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

.news-list .news-item p {
    font-size: 14px;
    color: #666;
}

/* 招聘信息样式 */
.recruitment-list {
    margin-bottom: 30px;
}

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

.recruitment-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.recruitment-item .info {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.recruitment-item .description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: normal;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* 地图样式 */
.map {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.map-container {
    height: 400px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.map-placeholder p {
    margin: 10px 0;
    color: #666;
}

/* 常见问题样式 */
.faq {
    padding: 60px 0;
}

.faq h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.panel-group .panel {
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.panel-group .panel-heading {
    background-color: #f8f9fa;
    border-radius: 5px 5px 0 0;
}

.panel-group .panel-title a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px;
}

.panel-group .panel-title a:hover {
    color: #007bff;
}

.panel-group .panel-body {
    padding: 15px;
    color: #666;
}

/* 产品服务页面样式 */
.product-section {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.product-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007bff;
}

.product-section img {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.product-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-section ul li {
    margin-bottom: 10px;
    color: #666;
}

/* 关于我们页面样式 */
.business-scope {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.business-scope h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

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

.scope-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.scope-item p {
    font-size: 14px;
    color: #666;
}

.culture {
    padding: 60px 0;
}

.culture h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.culture h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.culture p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

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

.history h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #007bff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #007bff;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.timeline-item:nth-child(even) .timeline-content {
    float: right;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        float: none !important;
    }
}

/* 成功案例页面样式 */
.case-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.case-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.case-item img {
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.case-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

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

.case-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.case-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.case-item ul li {
    margin-bottom: 10px;
    color: #666;
}

/* 招聘中心页面样式 */
.company-benefits {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.company-benefits h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.company-benefits ul {
    padding-left: 20px;
}

.company-benefits ul li {
    margin-bottom: 10px;
    color: #666;
}

.company-benefits ul li i {
    color: #007bff;
    margin-right: 10px;
}

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

.recruitment-process h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.recruitment-process ol {
    padding-left: 20px;
}

.recruitment-process ol li {
    margin-bottom: 10px;
    color: #666;
}

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

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #007bff;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

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

.apply-form label {
    font-weight: normal;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.apply-form input, .apply-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

.apply-form input:focus, .apply-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    outline: none;
}

.apply-form .help-block {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* 联系我们页面样式 */
.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.info-item i {
    font-size: 24px;
    color: #007bff;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

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

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #007bff;
}

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

.contact-form label {
    font-weight: normal;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.contact-form input, .contact-form select, .contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    outline: none;
}

.contact-form button {
    padding: 12px 30px;
    font-size: 16px;
}