
#app {
    overflow: hidden;
}

#banner {
    background-color: #f8f8f8 !important;
    overflow: hidden;
}

.el-carousel {
    text-align: center;
    background-color: #f8f8f8 !important;
}

.el-carousel__container {
    background-color: #f8f8f8 !important;
}

.carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.el-carousel__item {
    overflow: hidden;
}

/* .el-carousel__indicators {
    bottom: 20px;
} */

.el-carousel__indicator.is-active {
    /* background-color: #409EFF; */
}

/* 卡片模式的特殊样式 */
.el-carousel--card .el-carousel__item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.el-carousel--card .el-carousel__item.is-active {
    transform: translateX(0) scale(1.15);
    width: 65%;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    left: -8%;
    transform: translateX(-50%) scale(1.15);
}

/* 调整卡片模式的容器样式，增加居中图片的宽度 */
.el-carousel--card .el-carousel__container {
    padding: 0 2px;
}

/* 确保卡片内容居中 */
.el-carousel--card .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 卡片模式的指示器位置调整 */
.el-carousel--card .el-carousel__indicators {
    bottom: 30px;
}

/* 卡片模式下图片的特殊处理 */
.el-carousel--card .carousel-item {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* 新增中间模块的样式 */
.middle-module {
    width: 100%;
    background: #f8f9fa;
    padding: 20px 0;
}

.module-container {
    max-width: 64vw;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.left-carousel {
    flex: 1;
    overflow: hidden;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 8px 0;
    position: relative;
    background: linear-gradient(135deg, #E5E5EA, #F2F2F7);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.carousel-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.08);
    border-color: rgba(160, 174, 192, 0.4);
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.04), rgba(74, 85, 104, 0.03));
}

.header-decoration {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 16px;
}

.vertical-line {
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 50%, #718096 100%);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(45, 55, 72, 0.2);
}

.decorative-dots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dot {
    width: 3px;
    height: 3px;
    background: #A0AEC0;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-header:hover .dot {
    opacity: 1;
    background: #718096;
    transform: scale(1.1);
}

.dot:nth-child(2) {
    animation-delay: 0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.2s;
}

.title-container {
    flex: 1;
    position: relative;
    padding: 0 16px;
}

.carousel-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #4A5568, transparent);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60%;
}

.carousel-header:hover .carousel-title {
    color: #1A202C;
    transform: translateX(3px);
}

.carousel-header:hover .carousel-title::after {
    transform: scaleX(1);
}

.header-badge {
    padding-right: 16px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.header-badge i {
    font-size: 16px;
    color: #A0AEC0;
    transition: all 0.3s ease;
}

.carousel-header:hover .header-badge {
    opacity: 1;
}

.carousel-header:hover .header-badge i {
    color: #718096;
    transform: scale(1.05);
}

.middle-carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.carousel-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 18px;
    width: 100%;
}

.carousel-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.carousel-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.right-news {
    flex: 1;
}

.news-tabs {
}

.news-tabs .el-tabs__header {
}

.news-tabs .el-tabs__item {
    font-size: 16px;
    font-weight: 500;
}

.news-tabs .el-tabs__item.is-active {
    color: #FD8023;
}

.news-tabs .el-tabs__item:hover {
    color: #FD8023;
}

.news-tabs .el-tabs__item i {
    margin-right: 5px;
    font-size: 16px;
}

.news-tabs .el-tabs__item:hover i {
    color: #FD8023;
}

.news-tabs .el-tabs__nav-scroll {
    background-color: #F2F2F2;
    border-radius: 4px;
    padding-top: 2px;
    padding: 5px;
}

.news-tabs .el-tabs__active-bar {
    bottom: -1px;
    background-color: #FD8023;
}

.news-list {
    height: 31vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.news-list::-webkit-scrollbar {
    display: none;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    gap: 15px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f5f7fa;
    padding-left: 10px;
}

.news-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    flex-shrink: 0;
}

.date-day {
    background: #409EFF;
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 5px;
}

.date-year-month {
    color: #909399;
    font-size: 12px;
    text-align: center;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-title {
    color: #303133;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title:hover {
    color: #409EFF;
}

.news-subtitle {
    color: #606266;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-action {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.view-button {
    background-color: #409EFF;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-button:hover {
    background-color: #337ecc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(64, 158, 255, 0.3);
}

/* 紧凑型Apple风格服务卡片模块样式 */
.modern-services-section {
    width: 100%;
    background: linear-gradient(135deg, #F2F2F7 0%, #E5E5EA 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.modern-services-section::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="%23007AFF" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%235856D6" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.services-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 4px 0;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    border-radius: 1px;
}

.section-subtitle {
    font-size: 16px;
    color: #8E8E93;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    margin-top: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .service-card {
    --card-accent-rgb: 64, 158, 255;
    --card-accent: rgba(var(--card-accent-rgb), 1);
    --card-accent-strong: rgba(var(--card-accent-rgb), 0.45);
    --card-accent-soft: rgba(var(--card-accent-rgb), 0.15);
    --card-on-accent: #ffffff;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    padding: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px) saturate(170%);
    overflow: hidden;
    height: 64px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.services-grid .card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(var(--card-accent-rgb), 0.4), transparent 60%),
        radial-gradient(circle at 75% 0%, rgba(var(--card-accent-rgb), 0.2), transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    opacity: 0.65;
    transition: opacity 0.4s ease, transform 0.5s ease;
    transform: scale(1);
}

.services-grid .service-card:hover .card-background,
.services-grid .service-card.card-active .card-background {
    opacity: 1;
    transform: scale(1.05);
}

.services-grid .service-card:hover,
.services-grid .service-card.card-active {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 20px 45px rgba(var(--card-accent-rgb), 0.28),
        0 12px 30px rgba(15, 23, 42, 0.12);
    border-color: rgba(var(--card-accent-rgb), 0.35);
}

.services-grid .service-card:nth-child(6n + 1) {
    --card-accent-rgb: 0, 122, 255;
}

.services-grid .service-card:nth-child(6n + 2) {
    --card-accent-rgb: 255, 45, 85;
}

.services-grid .service-card:nth-child(6n + 3) {
    --card-accent-rgb: 52, 199, 89;
}

.services-grid .service-card:nth-child(6n + 4) {
    --card-accent-rgb: 255, 149, 0;
}

.services-grid .service-card:nth-child(6n + 5) {
    --card-accent-rgb: 175, 82, 222;
}

.services-grid .service-card:nth-child(6n + 6) {
    --card-accent-rgb: 0, 199, 190;
}

.services-grid .card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.services-grid .card-icon-wrapper {
    flex-shrink: 0;
    display: flex;
}

.services-grid .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(var(--card-accent-rgb), 0.45), transparent 65%),
        linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.9), rgba(var(--card-accent-rgb), 0.4));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 24px rgba(var(--card-accent-rgb), 0.25);
}

.services-grid .card-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.65), transparent 55%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.services-grid .card-icon i {
    font-size: 18px;
    color: var(--card-on-accent);
    transition: all 0.3s ease;
}

.services-grid .service-card:hover .card-icon::before {
    opacity: 1;
}

.services-grid .service-card:hover .card-icon {
    transform: scale(1.08);
    box-shadow:
        0 12px 30px rgba(var(--card-accent-rgb), 0.35),
        0 8px 18px rgba(15, 23, 42, 0.12);
}

.services-grid .card-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.25));
}

.services-grid .card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.services-grid .card-text-content {
    flex: 1;
    min-width: 0;
}

.services-grid .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 2px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-grid .service-card:hover .card-title,
.services-grid .service-card.card-active .card-title {
    color: var(--card-accent);
}

.services-grid .card-description {
    font-size: 12px;
    color: #4b5563;
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-grid .service-card:hover .card-description,
.services-grid .service-card.card-active .card-description {
    color: #111827;
}

.services-grid .card-footer {
    flex-shrink: 0;
}

.services-grid .card-button {
    background: linear-gradient(135deg, rgba(var(--card-accent-rgb), 0.95), rgba(var(--card-accent-rgb), 0.6));
    border: 1px solid rgba(var(--card-accent-rgb), 0.4);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--card-on-accent);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.services-grid .card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.45s ease;
}

.services-grid .service-card:hover .card-button::before {
    left: 130%;
}

.services-grid .service-card:hover .card-button {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(var(--card-accent-rgb), 0.35);
}

.services-grid .card-button i {
    transition: transform 0.3s ease;
    font-size: 7px;
}

.services-grid .service-card:hover .card-button i {
    transform: translateX(2px);
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 14px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(142, 142, 147, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
}

.service-card::before {
    content: none;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 158, 255, 0.05), rgba(24, 144, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-background {
    opacity: 1;
}

.service-card.card-active .card-background {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.12);
}

.service-card.card-active {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.12);
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.card-icon-wrapper {
    flex-shrink: 0;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-icon::before {
    opacity: 1;
}

.service-card:hover .card-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon i {
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-text-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0 0 2px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card:hover .card-title {
    color: #007AFF;
}

.card-description {
    font-size: 12px;
    color: #8E8E93;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card:hover .card-description {
    color: #636366;
}

.card-footer {
    flex-shrink: 0;
}

.card-button {
    background: linear-gradient(135deg, #007AFF, #0A84FF);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.service-card:hover .card-button::before {
    left: 100%;
}

.service-card:hover .card-button {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 122, 255, 0.3);
}

.card-button i {
    transition: transform 0.3s ease;
    font-size: 7px;
}

.service-card:hover .card-button i {
    transform: translateX(1px);
}

@media (max-width: 768px) {
    .modern-services-section {
        padding: 16px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .section-title {
        font-size: 18px;
    }

    .services-grid .service-card {
        height: 56px;
        padding: 12px;
    }

    .services-grid .card-content {
        gap: 8px;
    }

    .services-grid .card-icon {
        width: 24px;
        height: 24px;
    }

    .services-grid .card-icon i {
        font-size: 14px;
    }

    .services-grid .card-title {
        font-size: 14px;
    }

    .services-grid .card-description {
        font-size: 12px;
    }

    .services-grid .card-button {
        padding: 5px 10px;
        font-size: 10px;
    }
}



/* 现代Apple风格底部卡片样式 */
.bottom-card {
    width: 100%;
    background: #F5F5F7;
    padding: 40px 0;
    position: relative;
}

.bottom-card-container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.bottom-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.bottom-card-header h2 {
    font-size: 30px;
    font-weight: 700;
    color:  #007AFF;
    margin: 0 0 8px 0;
    text-align: center;
}

.bottom-card-header p {
    font-size: 16px;
    color: #8E8E93;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
}

/* 底部卡片网格布局 */
.bottom-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 底部卡片样式 - 继承上方卡片的Apple风格 */
.bottom-card .service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(142, 142, 147, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    min-height: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottom-card .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.2);
}

/* 底部卡片内容样式 */
.bottom-card .card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.bottom-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bottom-card .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.bottom-card .icon-wrapper img {
    width: 22px;
    height: 22px;
}

/* 使用Apple系统颜色为底部卡片图标设置颜色 */
.bottom-card .service-card:nth-child(1) .icon-wrapper {
    background: linear-gradient(135deg, #007AFF, #0A84FF);
}

.bottom-card .service-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #FF3B30, #FF6B6B);
}

.bottom-card .service-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #34C759, #30D158);
}

.bottom-card .service-card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #FF9500, #FFAD33);
}

.bottom-card .icon-wrapper i {
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.bottom-card .service-card:hover .icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-card .service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1E;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.bottom-card .service-card:hover h3 {
    color: #007AFF;
}

.bottom-card .service-card p {
    font-size: 14px;
    color: #8E8E93;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
    flex: 1;
    display: block;
    overflow: visible;
}

.bottom-card .service-card:hover p {
    color: #636366;
}

.bottom-card .card-overlay {
    margin-top: 12px;
}

.bottom-card .el-button {
    background: linear-gradient(135deg, #007AFF, #0A84FF) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.bottom-card .el-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3) !important;
}

/* 底部卡片移动端响应式 */
@media (max-width: 768px) {
    .bottom-card {
        padding: 24px 0;
    }

    .bottom-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bottom-card .service-card {
        min-height: 160px;
        height: auto;
        padding: 16px;
    }

    .bottom-card .icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .bottom-card .icon-wrapper i {
        font-size: 18px;
    }

    .bottom-card .service-card h3 {
        font-size: 15px;
        margin: 0;
    }

    .bottom-card .service-card p {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .bottom-card .card-overlay {
        margin-top: 8px;
    }

    .bottom-card .el-button {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
}




.card-overlay .el-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(64, 158, 255, 0.4);
}



/* 确保页面容器有相对定位，让返回顶部按钮正确定位 */
body {
    position: relative;
}

/* 右侧固定侧边栏样式 */
.right-sidebar {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 8px;
    background: #f8f8f8;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.sidebar-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #409EFF, #1890FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-button .wechat-icon {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* 返回顶部按钮隐藏时不占空间 */
.sidebar-button.back-to-top-btn {
    transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, margin 0.3s ease;
}

.sidebar-button.back-to-top-btn:not(.show) {
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.sidebar-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(64, 158, 255, 0.35);
    background: linear-gradient(135deg, #53A8FF, #2B7FFF);
}


/* 统一的现代弹窗样式 */
.qr-popup,
.phone-popup,
.address-popup,
.news-popup {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 158, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(64, 158, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 200px;
    transform-origin: right center;
}

.wechat-btn:hover .qr-popup,
.phone-btn:hover .phone-popup,
.address-btn:hover .address-popup,
.news-btn:hover .news-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

.qr-content,
.phone-content,
.address-content {
    text-align: center;
}

.qr-content img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-content:hover img {
    transform: scale(1.05);
}

.qr-content p,
.phone-content p,
.address-content p,
.news-content p {
    margin: 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.news-content .news-title {
    font-size: 14px;
    font-weight: normal;
    color: #303133;
    margin: 8px 0;
    line-height: 1.5;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content .news-date {
    font-size: 12px;
    color: #909399;
    margin-top: 8px;
}

.phone-number {
    font-size: 20px !important;
    font-weight: 700;
    color: #409EFF !important;
    background: linear-gradient(135deg, #409EFF, #1890FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px !important;
}

.address-content img {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.address-content:hover img {
    transform: scale(1.05);
}

.address-content p:last-child {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 4px;
}

/* 现代化箭头样式 */
.qr-arrow,
.phone-arrow,
.address-arrow,
.news-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(64, 158, 255, 0.2);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.qr-arrow::after,
.phone-arrow::after,
.address-arrow::after,
.news-arrow::after {
    content: '';
    position: absolute;
    right: -7px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.95);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* 右侧悬浮二维码样式 */
.floating-qr {
    position: fixed;
    right: 20px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 9998;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.2s ease;
}

.floating-qr:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.floating-qr-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.floating-qr:hover .floating-qr-image {
    transform: scale(1.05);
}

.floating-qr-text {
    margin: 0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.floating-qr:hover .floating-qr-text {
    color: #409EFF;
}

/* 返回顶部按钮显示状态样式 */
.sidebar-button.back-to-top-btn.show {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sidebar-button.back-to-top-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(64, 158, 255, 0.35);
    background: linear-gradient(135deg, #53A8FF, #2B7FFF);
}

.sidebar-button.back-to-top-btn i {
    transition: transform 0.3s ease;
}

.sidebar-button.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* 自定义标签页样式 - 完全符合图片效果 */
.custom-tabs {
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #E5E5EA, #F2F2F7) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    padding: 1px 0 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.custom-tabs .tab-item {
    padding: 8px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #2D3748 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    position: relative !important;
    margin: 0 4px !important;
}

.custom-tabs .tab-item.active {
    background-color: #409EFF !important;
    color: white !important;
}

.custom-tabs .tab-item:hover:not(.active) {
    background-color: #e6f3ff !important;
    color: #409EFF !important;
}

.custom-tabs .tab-separator {
    width: 1px !important;
    height: 20px !important;
    background-color: #e4e7ed !important;
    margin: 0 8px !important;
}

.custom-tabs .more-link {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 10px 20px !important;
    color: #999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 12px !important;
    margin-left: auto !important;
}

.custom-tabs .more-link:hover {
    color: #409EFF !important;
}

.custom-tabs .more-link i {
    font-size: 12px !important;
}

.tab-content {
    margin-top: 20px;
}

/* 搜索栏样式 */
.search-bar {
    margin-bottom: 15px;
}

/* 通知栏和全局搜索栏样式 */
.notification-search-bar {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.80), rgba(24, 144, 255, 0.80));
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
    backdrop-filter: blur(10px);
}

.notification-search-container {
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
}

.notification-area {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    overflow: hidden;
    min-width: 0;
    height: 36px;
}

.notification-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.notification-label {
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.notification-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
    min-width: 0;
}

.notification-date {
    font-size: 14px;
    opacity: 0.9;
    flex-shrink: 0;
}

.global-search-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.global-search-input {
    height: 36px;
    padding: 0 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
    width: 250px;
    background: white;
}

.global-search-button {
    height: 36px;
    width: 40px;
    background: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.global-search-button:hover {
    background: #f5f7fa;
}

.global-search-button i {
    font-size: 18px;
    color: #409EFF;
}

/* 搜索弹窗样式 */
.search-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.search-dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.search-dialog-content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    max-height: 75vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.search-dialog-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #303133;
}

.search-dialog-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-dialog-close:hover {
    background: #f5f7fa;
}

.search-dialog-close i {
    font-size: 18px;
    color: #909399;
}

.search-dialog-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-dialog-input-area {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 12px;
}

.dialog-search-input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dialog-search-input:focus {
    border-color: #409EFF;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1);
}

.dialog-search-button {
    height: 44px;
    padding: 0 24px;
    background: linear-gradient(135deg, #409EFF, #1890FF);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.dialog-search-button:hover {
    background: linear-gradient(135deg, #53A8FF, #2B7FFF);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
}

.dialog-search-button i {
    font-size: 16px;
}

.search-results-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.search-results-empty,
.search-results-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #909399;
}

.search-results-empty i,
.search-results-loading i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-results-empty p,
.search-results-loading p {
    margin: 0;
    font-size: 14px;
}

.search-results-loading i {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result-item {
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: #409EFF;
    background: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.1);
}

.search-result-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #303133;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-title:hover {
    color: #409EFF;
}

.search-result-subtitle {
    font-size: 14px;
    color: #606266;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 搜索关键词高亮样式 */
.search-highlight {
    color: #ff4d4f;
    font-weight: 600;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.search-result-date {
    font-size: 12px;
    color: #909399;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .notification-search-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }

    .notification-area {
        width: 100%;
        flex-wrap: wrap;
    }

    .global-search-area {
        width: 100%;
    }

    .global-search-input {
        width: 100%;
        flex: 1;
    }

    .search-dialog-content {
        width: 95%;
        max-height: 90vh;
    }

    .search-dialog-input-area {
        flex-direction: column;
    }

    .dialog-search-button {
        width: 100%;
        justify-content: center;
    }
}
