/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* 颜色定义 */
.text-gold {
    color: #c9a55c;
}

.bg-gold {
    background-color: #c9a55c;
}

.text-red {
    color: #dc3545;
}

/* 按钮样式 */
.btn-gold {
    background-color: #c9a55c;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: #b8944c;
    color: #fff;
}

.btn-outline-gold {
    border: 1px solid #c9a55c;
    color: #c9a55c;
    background-color: transparent;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: #c9a55c;
    color: #fff;
}

/* 标题样式 */
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #c9a55c;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 间距 */
.py-10 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mt-8 {
    margin-top: 80px;
}

.mb-8 {
    margin-bottom: 80px;
}

/* 顶部导航栏 */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #c9a55c;
}

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

/* 首屏大图 */
.hero {
    height: 100vh;
    background-image: url('https://p11-doubao-search-sign.byteimg.com/tos-cn-i-be4g95zd3a/945850419668975622~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792290502&x-signature=1qpDqWlow9y0MP9gIAJY4njrcv8%3D');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* 页面标题 */
.page-header {
    padding: 120px 0 60px;
    background-image: url('https://p11-doubao-search-sign.byteimg.com/labis/4091710c6bb7c88cc85f8d3992c4b3e0~tplv-be4g95zd3a-image.jpeg?lk3s=feb11e32&x-expires=1792290502&x-signature=KVGDvnFD81IBdD2H7IBwRdBuLQs%3D');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

/* 服务项目 */
.service-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-item .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* 案例项目 */
.case-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.case-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.case-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.case-item .card-img-top {
    height: 200px;
    object-fit: cover;
}

.case-features {
    margin-top: 15px;
}

.case-features span {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    color: #666;
}

.case-features i {
    margin-right: 5px;
    color: #c9a55c;
}

/* 新闻项目 */
.news-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.news-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.news-date {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #c9a55c;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more:hover {
    color: #b8944c;
    padding-left: 10px;
}

/* 联系信息 */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #c9a55c;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #c9a55c;
    color: #fff;
    transform: translateY(-5px);
}

/* 联系表单 */
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: #c9a55c;
    box-shadow: none;
}

/* 地图 */
.map-container {
    height: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map {
    height: 100%;
    width: 100%;
}

/* 页脚 */
.footer {
    background-color: #333;
    color: #fff;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #c9a55c;
}

.footer ul {
    list-style: none;
}

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

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

.footer ul li a:hover {
    color: #c9a55c;
}

.footer ul li i {
    margin-right: 10px;
    color: #c9a55c;
}

/* 发展历程 */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #c9a55c;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #c9a55c;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* 企业文化 */
.culture-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.culture-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
}

.culture-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.culture-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.culture-item .card:hover .culture-icon {
    background-color: #c9a55c;
    color: #fff;
    transform: rotateY(180deg);
}

.culture-icon i {
    font-size: 32px;
    color: #c9a55c;
    transition: color 0.3s;
}

.culture-item .card:hover .culture-icon i {
    color: #fff;
}

/* 管理团队 */
.team-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.team-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
}

.team-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-item .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    width: 200px;
    margin: 20px auto;
}

/* 服务内容 */
.service-gallery {
    margin-bottom: 30px;
}

.gallery-item {
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

.service-features {
    margin-top: 30px;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 5px;
}

.service-process {
    margin-top: 30px;
}

.service-process h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-steps {
    position: relative;
    padding-left: 30px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #c9a55c;
}

.step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #c9a55c;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #c9a55c;
    color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 案例筛选 */
.filter-buttons {
    margin-bottom: 20px;
}

.filter-buttons .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 40px;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

/* 客户评价 */
.testimonial-slider {
    position: relative;
}

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

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
    padding: 30px;
}

.testimonial-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    font-size: 20px;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: #666;
}

/* 招聘流程 */
.recruitment-process .process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
}

.recruitment-process .process-steps::before {
    display: none;
}

.recruitment-process .step {
    flex: 0 0 calc(20% - 20px);
    padding-left: 0;
    text-align: center;
    margin-bottom: 0;
}

.recruitment-process .step::before {
    display: none;
}

.recruitment-process .step-number {
    position: relative;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
}

/* 职位列表 */
.job-filters {
    margin-bottom: 30px;
}

.job-item {
    transition: transform 0.3s;
}

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

.job-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.job-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.job-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.job-info {
    margin-bottom: 15px;
}

.job-info span {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #666;
}

.job-info i {
    margin-right: 5px;
    color: #c9a55c;
}

.job-description {
    margin-bottom: 15px;
}

.job-requirements h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.job-requirements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9a55c;
}

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

.salary {
    font-size: 18px;
    font-weight: bold;
    color: #c9a55c;
}

/* 员工福利 */
.benefit-item {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
}

.benefit-item .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.benefit-item .card:hover .benefit-icon {
    background-color: #c9a55c;
    color: #fff;
    transform: rotateY(180deg);
}

.benefit-icon i {
    font-size: 32px;
    color: #c9a55c;
    transition: color 0.3s;
}

.benefit-item .card:hover .benefit-icon i {
    color: #fff;
}

/* 常见问题 */
.faq-section .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 0;
}

.faq-section .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.faq-section .btn-link:hover {
    color: #c9a55c;
    text-decoration: none;
}

.faq-section .btn-link:focus {
    text-decoration: none;
    box-shadow: none;
}

.faq-section .card-body {
    padding: 15px;
    border-top: 1px solid #f5f5f5;
}

/* AI智能客服 */
.ai-assistant {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.ai-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #c9a55c;
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.ai-toggle-btn:hover {
    background-color: #b8944c;
    transform: scale(1.1);
}

.ai-toggle-btn i {
    font-size: 24px;
}

.ai-chat-window {
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 350px;
    height: 450px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
}

.ai-chat-header {
    padding: 15px;
    background-color: #c9a55c;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header h3 {
    margin: 0;
    font-size: 18px;
}

.ai-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.ai-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.ai-message,
.user-message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
}

.ai-message {
    background-color: #f5f5f5;
    align-self: flex-start;
}

.user-message {
    background-color: #c9a55c;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
}

.ai-chat-input {
    padding: 15px;
    border-top: 1px solid #f5f5f5;
    display: flex;
}

.ai-chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.ai-chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c9a55c;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ai-chat-input button:hover {
    background-color: #b8944c;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .py-10 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mt-8 {
        margin-top: 40px;
    }

    .mb-8 {
        margin-bottom: 40px;
    }

    .recruitment-process .step {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }

    .ai-chat-window {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .py-10 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mt-8 {
        margin-top: 30px;
    }

    .mb-8 {
        margin-bottom: 30px;
    }

    .recruitment-process .step {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .ai-chat-window {
        width: 280px;
        height: 350px;
    }
}

/* 图片懒加载 */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-image.loaded {
    opacity: 1;
}

/* 滚动动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* 3D酒店虚拟漫游 */
.virtual-tour {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.virtual-tour iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tour-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tour-control-btn {
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tour-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}