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

/* 隐藏视频播放器界面，防止自动全屏播放 */
.hero-video {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 0 !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 内容区域 */
.mobile-content {
    flex: 1;
    padding-bottom: 70px;
    /* 底部菜单高度 */
}

.mobile-content.with-header {
    padding-top: 56px;
    /* 顶部导航高度 */
}

/* 底部菜单 */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgb(31, 27, 23);
    border-top: 1px solid #e4e7ed;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.menu-item.active {
    color: #ffffff;
}

.menu-icon {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-label {
    font-size: 12px;
    display: block;
}

/* 首页样式 */
.mobile-home {
    background: #f5f5f5;
    min-height: 100vh;
}

/* Loading样式 */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background: #f8f9fa;
}

.loading-spinner {
    text-align: center;
    color: #666;
}

.loading-spinner i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #667eea;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 14px;
    margin: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 全局矩形布局样式 */
.mobile-home>div,
.mobile-home .content-section,
.mobile-home .home-hero,
.mobile-home .mobile-card,
.mobile-home .service-card,
.mobile-home .case-card,
.mobile-home .partners-grid {
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.home-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 视频流式加载样式 */
.progress-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.buffering-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.buffering-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-btn.primary {
    background: rgb(179, 159, 115);
    color: white;
}

.hero-btn.primary:hover,
.hero-btn.primary:active {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn.secondary:hover,
.hero-btn.secondary:active {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* 内容区块 - 矩形布局 */
.content-section {
    padding: 20px 15px;
    background: #fff;
    margin: 0;
    margin-bottom: 1px;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
}

/* 确保所有内容区块都有分割线，包括最后一个 */
.content-section:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.content-section:last-child {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 8px;
    color: #409eff;
}

.section-more {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    float: right;
    margin-top: -30px;
}

/* 卡片样式 */
.mobile-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* 服务卡片 */
.service-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.service-icon i {
    font-size: 24px;
    color: #409eff;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* 合作伙伴网格 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.partner-item {
    background: #fff;
    border-radius: 0;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.partner-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 查看更多按钮样式 */
.load-more-section {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover {
    background: #0056b3;
}

.load-more-btn:active {
    background: #004085;
}

/* 页面列表样式 */
.page-content {
    padding: 15px;
}

.list-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.list-item:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* 加载状态 */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* 空状态 */
.empty-container {
    text-align: center;
    padding: 50px 20px;
    color: #999;
}

.empty-container i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .home-hero {
        height: 80vh;
        min-height: 400px;
    }

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

    .hero-subtitle {
        font-size: 10px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 200px;
    }
}

@media (max-width: 320px) {
    .home-hero {
        height: 70vh;
        min-height: 350px;
    }

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

    .hero-desc {
        font-size: 13px;
    }

    .content-section {
        padding: 15px 10px;
    }
}

/* 关于我们页面样式 */
.about-content {
    line-height: 1.6;
    color: #666;
}

.about-content p {
    margin-bottom: 15px;
}

.advantages-list {
    margin-top: 15px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: #409eff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-icon i {
    color: white;
    font-size: 20px;
}

.advantage-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-member {
        padding: 15px;
    }

    .member-photo {
        width: 80px;
        height: 80px;
    }

    .member-name {
        font-size: 16px;
    }
}

.team-member {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: #409eff;
}

.member-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-position {
    font-size: 14px;
    color: #409eff;
    margin-bottom: 12px;
    font-weight: 500;
    background: rgba(64, 158, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.member-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    text-align: left;
    max-height: 120px;
    overflow: hidden;
}

.contact-info {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-item i {
    margin-right: 10px;
    color: #409eff;
    font-size: 18px;
}

/* 联系我们页面样式 */
.contact-methods {
    margin-top: 15px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}


.method-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.method-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.method-info small {
    font-size: 12px;
    color: #999;
}

/* Element Plus 移动端优化 */
.el-form-item__label {
    font-weight: 500;
    color: #333;
}

.el-input__inner,
.el-textarea__inner {
    border-radius: 8px;
}

.el-button--primary {
    background: rgb(179, 159, 115);
    border: 1px solid rgb(179, 159, 115);
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(179, 159, 115, 0.2);
    transition: all 0.3s ease;
}

.el-button--primary:hover {
    background: rgb(159, 139, 95);
    border-color: rgb(159, 139, 95);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(179, 159, 115, 0.3);
}

.el-button--primary:active {
    transform: translateY(0);
}

.el-button {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.el-button:hover {
    transform: translateY(-1px);
}

.el-button:active {
    transform: translateY(0);
}

/* 通用按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 主要按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 1px solid #667eea;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    border-color: #5a6fd8;
}

/* 次要按钮样式 */
.btn-secondary {
    background: white;
    color: #6c757d;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #c6c8ca;
    color: #5a6268;
}

/* 成功按钮样式 */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: 1px solid #28a745;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1cb085 100%);
    border-color: #218838;
}

/* 危险按钮样式 */
.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
    border: 1px solid #dc3545;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #d91a72 100%);
    border-color: #c82333;
}

/* 小尺寸按钮 */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 60px;
}

/* 大尺寸按钮 */
.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
    min-width: 100px;
}

/* 块级按钮 */
.btn-block {
    display: block;
    width: 100%;
}

/* 分类按钮样式 */
.category-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-btn:hover {
    border-color: rgb(179, 159, 115);
    color: rgb(179, 159, 115);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(179, 159, 115, 0.2);
}

.category-btn.active {
    background: rgb(179, 159, 115);
    border-color: rgb(179, 159, 115);
    color: white;
    box-shadow: 0 2px 8px rgba(179, 159, 115, 0.3);
}

/* 案例分类标签样式 */
.card-category {
    display: inline-block;
    padding: 3px 8px;
    background: rgb(179, 159, 115);
    color: white;
    font-size: 11px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
}

.card-id {
    color: #999;
    font-size: 11px;
}

.card-action {
    color: rgb(179, 159, 115);
    font-weight: 500;
}

/* 加载更多按钮样式 */
.load-more-btn {
    padding: 10px 24px;
    border: 2px solid rgb(179, 159, 115);
    color: rgb(179, 159, 115);
    background: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.load-more-btn:hover {
    background: rgb(179, 159, 115);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 159, 115, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 分享按钮样式 */
.share-btn {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border: 1px solid #17a2b8;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 15px;
    margin-left: auto;
}

.share-btn:hover {
    background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
    border-color: #138496;
}

.el-select {
    width: 100%;
}

.el-pagination {
    justify-content: center;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #409eff;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 移除重复的content-section定义，保持矩形布局 */
.mobile-home {
    background: #f5f5f5;
    min-height: 100vh;
}

/* Hero区域保持矩形 */
.home-hero {
    margin: 0;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #667eea;
    font-size: 20px;
}

.section-more {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.section-more:hover {
    color: #764ba2;
}

/* 合作伙伴网格 - 矩形布局 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

/* 加载状态 */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: white;
    margin: 15px;
    border-radius: 12px;
}

/* 空状态 */
.empty-container {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    background: white;
    margin: 15px;
    border-radius: 12px;
}

.empty-container i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.empty-container p {
    font-size: 16px;
}

/* Hero区域增强 */
.home-hero {
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title,
.hero-subtitle {
    position: relative;
    z-index: 1;
}

/* 卡片样式 - 矩形 */
.mobile-card,
.service-card {
    background: white;
    border-radius: 0;
    padding: 16px;
    margin: 0;
    margin-bottom: 1px;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-card:hover,
.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.mobile-card:active,
.service-card:active {
    transform: translateY(0);
}

/* 新闻卡片 */
.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.card-content {
    padding: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.card-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.card-meta span:last-child {
    color: #667eea;
    font-weight: 500;
}

/* 服务卡片 */
.service-card {
    display: flex;
    align-items: center;
    padding: 20px 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.service-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 案例卡片 - 矩形 */
.case-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    margin-bottom: 1px;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
}

.case-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.case-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.case-content {
    padding: 16px;
}

.case-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.case-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.case-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.tech-tag {
    background: #f0f2ff;
    color: #667eea;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.case-results {
    font-size: 12px;
    color: #999;
}

/* 合作伙伴卡片 - 矩形 */
.partner-card {
    background: white;
    border-radius: 0;
    padding: 16px;
    text-align: center;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
}

.partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 8px;
    border-radius: 8px;
}

.partner-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.partner-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* 联系信息挂件样式 */
.contact-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
    width: 40px;
    height: 130px;
}

.contact-widget-trigger {
    background: rgb(30, 27, 23);
    color: white;
    border-radius: 20px 20px 20px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(177, 177, 177, 0.3);
    transition: all 0.3s ease;
    height: 120px;
    width: 40px;
    min-width: 40px;
}

.contact-widget-trigger:hover {
    background: rgb(30, 27, 23);
    box-shadow: 0 6px 20px rgba(179, 159, 115, 0.4);
    transform: translateX(-5px);
    opacity: 1;
}

.contact-widget-trigger:hover .contact-icon {
    transform: scale(1.1);
}

.contact-widget.expanded .contact-widget-trigger {
    opacity: 1;
}

.contact-text-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 5px;
    width: 100%;
}

.contact-text-vertical span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: block;
}

.contact-icon {
    font-size: 12px;
    margin-top: 5px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    color: white;
}

.contact-widget-content {
    position: absolute;
    right: 0;
    top: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-height: 50vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.contact-widget.expanded .contact-widget-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.contact-widget-header {
    background: rgb(30, 27, 23);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-widget-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-widget-header .el-icon-close,
.close-icon {
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    color: #999;
    font-weight: bold;
}

.contact-widget-header .el-icon-close:hover,
.close-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #666;
}

.contact-widget-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-widget-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-widget-item i {
    color: rgb(179, 159, 115);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.contact-item-icon {
    font-size: 18px;
    margin-right: 8px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.contact-widget-item>div {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-widget-item a {
    color: rgb(179, 159, 115);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    transition: color 0.2s ease;
}

.contact-widget-item a:hover {
    color: rgb(179, 159, 115);
    text-decoration: underline;
    opacity: 0.8;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .contact-widget {
        right: 10px;
    }

    .contact-widget-trigger {
        padding: 8px 5px;
        min-width: 40px;
        width: 40px;
    }

    .contact-widget-trigger span {
        font-size: 17px;
    }

    .contact-widget-content {
        min-width: 250px;
    }

    .contact-widget-body {
        padding: 15px;
    }
}

/* 详情页面通用样式 */
.news-detail-page,
.case-detail-page {
    padding: 16px;
    background: #f5f5f5;
    min-height: calc(100vh - 56px - 60px);
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.error-content {
    text-align: center;
    padding: 20px;
}

.error-content i {
    font-size: 48px;
    color: #f56c6c;
    margin-bottom: 16px;
}

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

/* 新闻详情页样式 */
.news-detail-content,
.case-detail-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-header,
.case-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.news-title,
.case-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.news-meta,
.case-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
}

.share-btn {
    margin-left: auto;
}

.news-cover,
.case-cover {
    width: 100%;
    overflow: hidden;
}

.news-cover img,
.case-cover img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-summary {
    padding: 16px 20px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    margin: 0;
}

.news-summary p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.news-content,
.case-description,
.case-details {
    padding: 20px;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-content p {
    margin: 0 0 16px 0;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}

.news-tags,
.case-tags {
    padding: 0 20px 20px;
}

.tag-label {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

.news-tag,
.case-tag {
    margin-right: 8px;
    margin-bottom: 4px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    padding: 0 20px;
    padding-top: 20px;
}

/* 相关新闻/案例 */
.related-news,
.related-cases {
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.related-news-list,
.related-cases-list {
    padding: 0 20px 20px;
}

.related-news-item,
.related-case-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.related-news-item:hover,
.related-case-item:hover {
    background-color: #f8f9fa;
}

.related-news-item:last-child,
.related-case-item:last-child {
    border-bottom: none;
}

.related-news-image,
.related-case-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-news-info,
.related-case-info {
    flex: 1;
}

.related-news-title,
.related-case-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-date,
.related-case-category {
    font-size: 12px;
    color: #999;
}

/* 案例详情特有样式 */
.case-info {
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
}

.info-grid {
    display: grid;
    gap: 8px;
}

.info-item {
    display: flex;
    font-size: 14px;
}

.info-label {
    color: #666;
    min-width: 80px;
}

.info-value {
    color: #333;
    flex: 1;
}

.case-gallery {
    border-top: 1px solid #eee;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    padding: 0 20px 20px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

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

.tags-container {
    padding: 0 20px 20px;
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 20px 0 0 0;
    border-radius: 0 0 8px 8px;
}

.contact-content {
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.contact-content h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
}

.contact-content p {
    font-size: 14px;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.contact-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
}

.action-buttons {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.back-btn {
    min-width: 120px;
}

/* Element Plus 图标组件样式优化 */
.method-icon {
    background: rgb(179, 159, 115);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.method-icon .el-icon {
    color: white;
    font-size: 20px;
}

.section-title .el-icon {
    color: rgb(179, 159, 115);
    margin-right: 8px;
}
