/* 自定义CSS，修复布局和样式问题 */

:root {
    --primary-color: #0056b3;
    --secondary-color: #004494;
    --accent-color: #00a0e9;
    --light-bg: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #6c757d;
}


/* 全局盒模型，防止宽度溢出 */

* {
    box-sizing: border-box;
    /* max-width: 100%; */
}


/* 全局样式修复 */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

body {
    font-weight: 400;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    color: var(--dark-text);
    background-color: #fff;
    line-height: 1.6;
    /* 行高减小 */
}


/* 修复模块高度和间距 */

.section {
    padding: 40px 0;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.section-gray {
    background-color: #f7f9fc;
}


/* 修复导航栏 */

.navbar {
    transition: all 0.4s ease;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.95), rgba(0, 68, 148, 0.95)) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
}

.navbar.navbar-transparent {
    background-color: rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link .material-icons {
    font-size: 22px;
    margin-right: 4px;
    vertical-align: middle;
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}



/* 导航栏垂直居中对齐 */

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    /* 确保每个导航项垂直居中 */
}

.navbar .navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    height: 40px;
    /* 与按钮高度一致 */
}


/* 修复轮播图区域 */

.carousel {
    position: relative;
    margin-top: 0;
}

.carousel .page-header {
    height: 380px !important;
    /* 减小Banner高度 */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    position: relative;
}


/* GIS云平台banner特殊处理 */

.carousel .page-header.gis-cloud-banner {
    background-size: contain;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* 纯图片Banner，没有蒙版 */

.carousel .page-header.header-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* 带文字介绍的Banner，有蒙版遮罩 */

.header-filter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.header-filter .container {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.carousel .title {
    font-size: 3.9rem;
    /* 从3.5rem缩小 */
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    /* 从25px缩小 */
    letter-spacing: -0.02em;
}

.carousel .description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    /* 从1.4rem缩小 */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
    /* 从40px缩小 */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-raised {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s !important;
    font-weight: 500;
    padding: 12px 30px;
    font-size: 1.4rem;
}

.btn-raised:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-raised i {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: sub;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 7%;
    opacity: 0.7;
    transition: all 0.3s;
}

.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    z-index: 15;
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;
}

.carousel-indicators li.active {
    background-color: #fff;
    transform: scale(1.3);
    opacity: 1;
}


/* 修复卡片样式 */

.card {
    border-radius: 12px;
    /* overflow: hidden; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 20px;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
#loginModal .card:hover {
    /* transform: translateY(0px); */
    box-shadow: none;
}



.card-product {
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 280px;
    overflow: hidden;
}

.card-product:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-product:hover .card-header-image img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.card-product .btn-primary.btn-round {
    padding: 8px 20px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.card-product:hover .btn-primary.btn-round {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.card-product .card-clickable-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-product .card-body {
    padding: 10px 15px 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-product .card-description {
    text-align: left;
    height: auto;
    min-height: 0;
    overflow: visible;
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.8;
    flex-grow: 1;
}

.card-product .card-footer {
    display: none;
}

.card-header-image {
    height: 180px;
    /* 从220px减小 */
    position: relative;
    padding: 0;
    overflow: hidden;
    display: block;
    background-position: center;
    background-size: cover;
}

.card-header-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-header-image a {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: block;
    width: auto;
    height: auto;
}

.card-header-image img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.5s ease;
}

.card-title {
    font-size: 1.7rem;
    /* 从1.4rem缩小 */
    font-weight: 600;
    margin-bottom: 10px;
    /* 从15px缩小 */
    color: var(--dark-text);
}

#loginModal .card-title {
    font-size: 3rem;
}
#loginModal .btn-primary.btn-round{
    background-color: transparent !important;
    color: #2196f3 !important;
    font-weight: 400;
}
#loginModal .btn-primary.btn-round:hover{
    transform:translateY(0px);

}

.card-description {
    color: var(--light-text);
    line-height: 1.5;
    /* 从1.6减小 */
    font-size: 1.36rem;
    /* 从0.95rem缩小 */
    flex-grow: 1;
}

.card-footer {
    padding: 10px 25px 20px;
    background: transparent;
    border-top: none;
    margin-top: auto;
}

.btn-round {
    border-radius: 30px;
    padding: 8px 20px;
    /* 从10px 25px减小 */
    font-weight: 500;
    font-size: 1.36rem;
    /* 添加字体大小 */
}

.btn-round i {
    font-size: 17px;
    margin-right: 5px;
    vertical-align: text-bottom;
}


/* 修复解决方案卡片 */

.card-background {
    height: 280px;
    /* 从320px减小到280px */
    background-position: center !important;
    background-size: cover !important;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0));
    border-radius: 12px;
}

.card-background .card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 25px 15px;
    /* 调整内边距，底部减小 */
}

.card-background .card-title {
    color: white;
    font-size: 1.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.card-background .card-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    /* 从12px减小到10px */
    font-size: 1.36rem;
    flex-grow: 0;
    /* 防止卡片描述文本占用过多空间 */
}

.card-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* 解决方案模块特定样式 */

#solutions .row {
    margin-top: 15px;
    /* 减小标题和卡片之间的间距 */
    margin-left: 0;
}

#solutions .container {
    padding-bottom: 10px;
    /* 减小底部空白，从20px改为10px */
}

#solutions.section {
    padding-top: 40px;
    padding-bottom: 20px;
    /* 减小整个部分的下内边距，从40px改为20px */
}


/* 解决方案卡片按钮样式优化 */

#solutions .card-background .btn-primary.btn-round {
    padding: 6px 16px;
    /* 减小按钮内边距 */
    font-size: 1.2rem;
    /* 减小按钮字体大小 */
    margin-top: 0;
}

#solutions .card-background .btn-primary.btn-round i {
    font-size: 16px;
    /* 减小图标大小 */
    margin-right: 4px;
    /* 减小图标右边距 */
}


/* 响应式调整 */

@media (max-width: 767px) {
    .card-background {
        height: 250px;
        /* 在移动设备上进一步减小高度 */
    }

    .card-background .card-body {
        padding: 15px 20px;
        /* 在移动设备上进一步减小内边距 */
    }

    .card-background .card-title {
        font-size: 1.68rem;
        /* 移动设备上减小标题字体 */
        margin-bottom: 5px;
    }

    .card-background .card-description {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
}


/* 修复信息卡片 */

.info {
    padding: 30px;
    height: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    transition: all 0.3s;
}

.info:hover .icon {
    transform: scale(1.1);
}

.info .icon i {
    font-size: 32px;
}
.info p{
    color: var(--dark-text);
}

.info .icon-primary {
    color: var(--primary-color);
}

.icon-info {
    color: var(--accent-color);
}

.info-title {
    font-size: 1.82rem;
    margin-bottom: 15px;
    font-weight: 600;
}


/* 修复国产信创部分 */

.card-pricing {
    text-align: center;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-pricing .card-body {
    padding: 30px 20px;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.card-pricing:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 40px;
    color: white;
}

.card-icon.icon-primary {
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 12px 20px -10px rgba(0, 86, 179, 0.28);
}

.card-icon.icon-success {
    background: linear-gradient(60deg, #66bb6a, #43a047);
    box-shadow: 0 12px 20px -10px rgba(76, 175, 80, 0.28);
}

.card-icon.icon-info {
    background: linear-gradient(60deg, #26c6da, #00acc1);
    box-shadow: 0 12px 20px -10px rgba(0, 188, 212, 0.28);
}

.card-icon.icon-warning {
    background: linear-gradient(60deg, #ffa726, #fb8c00);
    box-shadow: 0 12px 20px -10px rgba(255, 152, 0, 0.28);
}



/* 主题颜色统一 */

.bg-primary,
.btn-primary,
.btn-primary.btn-raised {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary.btn-raised:hover {
    background-color: var(--secondary-color) !important;
}

.icon-primary {
    color: var(--primary-color);
}


/* 响应式修复 */

@media (max-width: 1199px) {
    .carousel .title {
        font-size: 4.2rem;
    }

    .carousel .description {
        font-size: 1.68rem;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }

    .carousel .page-header {
        min-height: 35vh;
        margin-top: 72px;
    }

    .carousel .title {
        font-size: 3.5rem;
    }

    .carousel .description {
        font-size: 1.54rem;
    }

    .title {
        font-size: 3.08rem;
    }

    .card-background {
        height: 320px;
    }

    .navbar .navbar-nav .nav-item .nav-link:after {
        display: none;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        padding: 12px 16px !important;
        border-radius: 5px;
    }

    .navbar .navbar-nav .nav-item .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    #innovation .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }

    .carousel .page-header {
        min-height: 30vh;
        margin-top: 68px;
    }

    .header-filter .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .carousel .title {
        font-size: 2.8rem;
    }

    h2.title {
        font-size: 2.52rem;
    }

    .card-background .card-title {
        font-size: 2.1rem;
    }
}


/* 修改产品卡片按钮样式 */

.btn-primary.btn-round {
    background-color: var(--primary-color);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary.btn-round:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn-primary.btn-round i {
    color: white;
}


/* 品牌故事和国产信创模块卡片高度统一 */

#brand-story .row,
#innovation .row {
    /* display: flex; */
    flex-wrap: wrap;
    align-items: stretch;
    /* 确保同一行的所有列高度相同 */
}

#brand-story .row>div,
#innovation .row>div {
    /* display: flex; */
    margin-bottom: 20px;
}

#brand-story .card,
#innovation .card {
    width: 100%;
    /* 确保卡片占满整个容器 */
    display: flex;
    flex-direction: column;
}

#brand-story .card-plain,
#innovation .card-plain {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#brand-story .card-plain .card-body,
#innovation .card-plain .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 垂直居中内容 */
    padding: 30px;
}


/* 优化国产信创左侧文字卡片 */

#innovation .card-plain .card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#innovation .card-plain .card-body p {
    font-size: 1.47rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--light-text);
}

#innovation .card-plain .card-title {
    font-size: 2.24rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}


/* 统一国产信创右侧卡片样式 */

#innovation .row .col-md-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#innovation .row .col-md-6:last-child .row {
    flex: 1;
    margin: 0 -10px;
}

#innovation .row .col-md-6:last-child .row:first-child {
    margin-bottom: 20px;
}

#innovation .row .col-md-6:last-child .col-md-6 {
    padding: 0 10px;
    margin-bottom: 0;
    height: 100%;
}

#innovation .card-pricing {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-height: 180px;
    /* 设置最小高度确保卡片大小一致 */
}

#innovation .card-pricing .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 20px;
    text-align: center;
}

#innovation .card-pricing .card-icon {
    margin-bottom: 15px;
    width: 65px;
    height: 65px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
    /* 防止图标被压缩 */
}

#innovation .card-pricing .card-title {
    font-size: 1.33rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    width: 100%;
    /* 确保标题宽度一致 */
}


/* 调整行和列容器以确保卡片对齐 */

#innovation .row .col-md-6:last-child .row {
    margin-bottom: 20px;
    height: calc(50% - 10px);
    margin-left: 0;
    margin-right: 0;
}

#innovation .row .col-md-6:last-child .row:last-child {
    margin-bottom: 0;
}

#innovation .row .col-md-6:last-child .col-md-6 {
    padding: 0 10px;
    height: 100%;
    display: flex;
}


/* 让背景卡片在品牌故事区域保持一致高度 */

#brand-story .card-raised.card-background {
    height: 100%;
    min-height: 300px;
}


/* 统一所有模块的标题和副标题样式 */

.section .title {
    margin-top: 0;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
    position: relative;
    text-align: center;
    line-height: 1;
}

.section .description {
    font-size: 1.33rem;
    color: var(--light-text);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
}


/* 标题下的装饰线 */

.section .title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
}


/* 标题区域的上下间距统一 */

.section .row:first-child {
    margin-bottom: 15px;
}


/* 确保移动设备上也保持一致的样式 */

@media (max-width: 991px) {
    .section .title {
        font-size: 3.08rem;
    }

    .section .description {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .section .title:after {
        width: 70px;
        margin-top: 12px;
    }

    .section .row:first-child {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section .title {
        font-size: 2.52rem;
    }

    .section .description {
        font-size: 1.33rem;
        margin-bottom: 30px;
    }

    .section .title:after {
        width: 60px;
        height: 3px;
        margin-top: 10px;
    }

    .section .row:first-child {
        margin-bottom: 30px;
    }
}


/* 特别强调品牌故事和国产信创的标题样式与其他部分一致 */

#brand-story .title:after,
#innovation .title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
}


/* 确保副标题样式统一 */

#brand-story .description,
#innovation .description {
    font-size: 1.33rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}


/* 调整品牌故事和国产信创部分的标题与副标题对齐 */

#brand-story .title,
#innovation .title {
    margin-bottom: 10px;
    /* 减少标题的底部间距 */
}

#brand-story .description,
#innovation .description {
    margin-top: 0;
    /* 移除副标题顶部间距 */
    padding-top: 0;
    /* 确保没有内边距 */
}


/* 确保标题装饰线与底部文字的距离一致 */

#brand-story .title:after,
#innovation .title:after {
    margin: 10px auto 0;
    /* 减少装饰线与标题之间的距离 */
}


/* 修改品牌故事和国产信创标题为左右结构并水平居中对齐 */

#brand-story .row:first-child,
#innovation .row:first-child {
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: center;
    /* 水平居中对齐 */
}

#brand-story .row:first-child .col-md-8,
#innovation .row:first-child .col-md-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 水平居中对齐 */
    text-align: left;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

#brand-story .title,
#innovation .title {
    margin-right: 0;
    margin-bottom: 5px;
}

#brand-story .description,
#innovation .description {
    margin-bottom: 0;
}


/* 调整移动设备响应式布局 */

@media (max-width: 767px) {

    #brand-story .row:first-child .col-md-8,
    #innovation .row:first-child .col-md-8 {
        flex-direction: column;
        align-items: flex-start;
    }

    #brand-story .description,
    #innovation .description {
        text-align: left;
        margin-top: 10px;
        padding-left: 0;
    }
}


/* 进一步优化国产信创右侧卡片样式 */

#innovation .row {
    display: flex;
    align-items: stretch;
}

#innovation .row>div {
    margin-bottom: 0;
}


/* 左侧文字卡片优化 */

#innovation .card-plain {
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background-color: white;
}

#innovation .card-plain .card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


/* 右侧卡片容器优化 */

#innovation .row .col-md-6:last-child {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#innovation .row .col-md-6:last-child .row {
    height: calc(50% - 10px);
    margin: 0 -10px;
}

#innovation .row .col-md-6:last-child .row:first-child {
    margin-bottom: 20px;
}

#innovation .row .col-md-6:last-child .col-md-6 {
    padding: 0 10px;
    height: 100%;
    display: flex;
}


/* 卡片样式统一 */

#innovation .card-pricing {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background-color: white;
    overflow: hidden;
}

#innovation .card-pricing .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
}


/* 图标统一样式 */

#innovation .card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    margin-bottom: 15px;
    border-radius: 50%;
}

#innovation .card-icon i {
    font-size: 30px;
    line-height: 70px;
}


/* 卡片标题统一样式 */

#innovation .card-pricing .card-title {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    max-width: 90%;
}


/* 响应式调整 */

@media (max-width: 767px) {
    #innovation .row .col-md-6:last-child {
        margin-top: 20px;
    }

    #innovation .row .col-md-6:last-child .row {
        height: auto;
    }

    #innovation .row .col-md-6:last-child .col-md-6 {
        margin-bottom: 20px;
    }

    #innovation .card-pricing {
        height: auto;
        min-height: 160px;
    }
}


/* 客户模块样式 */

.clients-container {
    margin-top: 30px;
}

.clients-wrapper {
    padding: 40px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 0px;
    margin-bottom: 0px;
    background-color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.client-logo img {
    max-width: 95%;
    max-height: 160px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-logo:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.client-logo:hover img {
    transform: scale(1.15);
}


/* 响应式调整 - 客户模块 */

@media (max-width: 991px) {
    .client-logo {
        height: 160px;
        padding: 5px;
    }

    .client-logo img {
        max-height: 140px;
    }
}

@media (max-width: 767px) {
    .clients-wrapper {
        padding: 30px 15px;
    }

    .client-logo {
        height: 140px;
        padding: 0px;
        margin-bottom: 0px;
    }

    .client-logo img {
        max-height: 120px;
    }

    .client-logo:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 575px) {
    .client-logo {
        height: 120px;
        padding: 5px;
    }

    .client-logo img {
        max-height: 100px;
    }
}


/* 回到顶部按钮 */

.back-to-top {
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 24px;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #FFF !important;
    text-decoration: underline;
}


/* 响应式调整 */

@media (max-width: 767px) {
    .client-logo {
        height: 80px;
        padding: 10px;
    }

    .client-logo img {
        max-height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /* overflow: hidden; */
}

.row {
    /* display: flex; */
    flex-wrap: wrap;
    /* margin-right: -15px;
    margin-left: -15px;
    width: 100%; */
}


/* Webkit浏览器（Chrome、Safari等）隐藏滚动条 */

/* ::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
} */


/* 修复轮播图内容居中问题 */

.carousel-inner {
    width: 100%;
}

.carousel .page-header .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.carousel .page-header .row {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.carousel .page-header .col-md-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}


/* 产品logo样式优化 */

img.product-logo,.product-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    padding: 4px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}


/* 添加悬停效果 */

.card-product:hover .product-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.4));
    background-color: rgba(255, 255, 255, 0.3);
}


/* 添加产品标题到图片左下角 */

.card-product .card-image-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 1.82rem;
    font-weight: 600;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}


/* 外业精灵产品卡片特殊样式 */

.card-product:last-child .card-header-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* 确保外业精灵产品图上的文字和logo清晰可见 */

.card-product:last-child .card-header-image::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.1) 80%);
}

.card-product:last-child .product-logo {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}


/* 优化所有产品卡片的背景图片显示 */

.card-product .card-header-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* 统一所有产品卡片的遮罩效果 */

.card-product .card-header-image::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.1) 80%);
}


/* 增强标题可读性 */

.card-product .card-image-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 1.82rem;
    font-weight: 600;
}


/* 优化解决方案卡片的按钮样式 */

.card-background .btn-primary.btn-round {
    background-color: rgba(0, 86, 179, 0.85) !important;
    /* 降低原主色调的不透明度 */
    color: white;
    font-weight: 500;
    font-size: 1.33rem;
    letter-spacing: 0.02em;
    /* 增加字间距提高清晰度 */
    padding: 8px 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    text-shadow: none;
    /* 移除可能导致模糊的文字阴影 */
    border: none;
    transition: all 0.3s ease;
}

.card-background .btn-primary.btn-round:hover {
    background-color: rgba(0, 100, 200, 0.95) !important;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.card-background .btn-primary.btn-round i {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: text-bottom;
    opacity: 0.9;
    /* 图标稍微透明一点 */
}


/* 优化品牌故事卡片文字样式 */

#brand-story .card-plain .card-body {
    padding: 30px;
}

#brand-story .card-plain .card-title {
    font-size: 2.52rem;
    margin-bottom: 20px;
    color: rgba(33, 37, 41, 0.85);
    font-weight: 600;
}

#brand-story .card-plain .card-description {
    font-size: 1.61rem;
    line-height: 1.7;
    color: rgba(33, 37, 41, 0.75);
    margin-bottom: 15px;
}

#brand-story .card-plain .card-description:last-child {
    margin-bottom: 0;
}


/* 品牌故事视频卡片样式 */

.card-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
}

.card-video .card-body {
    padding: 0;
    position: relative;
    height: 100%;
}

.brand-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


/* 隐藏视频控件 */

.brand-video::-webkit-media-controls {
    display: none !important;
}

.brand-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.brand-video::-webkit-media-controls-panel {
    display: none !important;
}

.brand-video::-webkit-media-controls-play-button {
    display: none !important;
}

.brand-video::-webkit-media-controls-timeline {
    display: none !important;
}

.brand-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.brand-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.brand-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.brand-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.brand-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}


/* 播放按钮位置调整 */

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0;
}

.play-button i {
    font-size: 40px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.brand-video:playing+.video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-title {
    color: white;
    font-size: 2.1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}


/* 响应式样式调整 */

@media (max-width: 767px) {
    .card-video {
        height: 250px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        left: 15px;
        bottom: 15px;
    }

    .play-button i {
        font-size: 35px;
    }

    .video-title {
        font-size: 1.82rem;
    }
}


/* 响应式调整 */

@media (max-width: 767px) {
    #innovation .row .col-md-6:last-child .row:first-child {
        margin-bottom: 20px;
    }

    #innovation .row .col-md-6:last-child .col-md-6 {
        margin-bottom: 20px;
    }

    #innovation .card-plain .card-body {
        padding: 25px;
    }

    #innovation .card-plain .card-body p {
        font-size: 1.4rem;
    }
}


/* 证书预览相关样式 */

.certificate-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px;
}

.certificate-card:hover {
    /* 移除原hover效果 */
    box-shadow: none;
    transform: none;
}

.certificate-card:hover .certificate-preview {
    /* 移除hover时的预览效果 */
    opacity: 0;
    visibility: hidden;
}


/* 增加一个较小的视觉反馈 */

.certificate-card:active {
    opacity: 0.9;
}

.certificate-image {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


/* 点击时的全屏预览样式 */

.certificate-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 40px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.certificate-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.certificate-fullscreen .certificate-image {
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
}

.certificate-fullscreen.active .certificate-image {
    transform: scale(1);
    opacity: 1;
}

.certificate-fullscreen .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0.7;
}

.certificate-fullscreen .close-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1);
    opacity: 1;
}

.certificate-fullscreen .close-button i {
    font-size: 24px;
}


/* 证书卡片响应式调整 */

@media (max-width: 767px) {
    .certificate-fullscreen {
        padding: 20px;
    }

    .certificate-fullscreen .certificate-image {
        max-width: 95%;
        max-height: 85%;
    }

    .certificate-fullscreen .close-button {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .certificate-fullscreen .close-button i {
        font-size: 20px;
    }

    .certificate-image-display {
        height: 120px;
    }
}


/* 解决方案轮播 */

.solutions-carousel .carousel-indicators {
    display: none;
    /* 完全隐藏轮播指示器 */
}

.solutions-carousel .carousel-indicators li {
    background-color: #ccc;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.solutions-carousel .carousel-indicators li.active {
    background-color: #2196F3;
}

#solutionsCarousel .carousel-inner .card{
margin: 0 auto;
}
#solutionsCarousel .mb-3{
margin-bottom: 3rem;
}

.row.mt-4 {
    margin-top: 10px !important;
    /* 减小按钮上方间距，从mt-4(1.5rem)改为更小的值 */
}


/* 证书卡片样式 */

.certificate-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.certificate-image-container {
    width: 100%;
    padding: 15px 15px 0;
    text-align: center;
    background: #f9f9f9;
    border-radius: 12px 12px 0 0;
}

.certificate-image-display,.card img.certificate-image-display {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.certificate-card .card-body {
    padding: 15px;
    flex-grow: 1;
    text-align: center;
}

.certificate-card .card-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 500;
}

.certificate-card:hover {
    /* 移除原hover效果 */
    box-shadow: none;
    transform: none;
}

.certificate-card:hover .certificate-preview {
    /* 移除hover时的预览效果 */
    opacity: 0;
    visibility: hidden;
}


/* 增加一个较小的视觉反馈 */

.certificate-card:active {
    opacity: 0.9;
}


/* 资质认证部分新样式 */

.qualification-container {
    padding: 30px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
}

.qualification-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.qualification-icon {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 12px;
}

.qualification-title {
    font-size: 2.24rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.qualification-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin-bottom: 20px;
    border-radius: 2px;
}

.qualification-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.qualification-content p {
    font-size: 1.47rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 15px;
}

.qualification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    background-color: rgba(33, 150, 243, 0.08);
    padding: 8px 14px;
    border-radius: 50px;
    flex: 1 1 auto;
    min-width: 140px;
}

.badge-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.badge-circle i {
    color: white;
    font-size: 18px;
}

.badge-text {
    font-size: 1.26rem;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .qualification-container {
        padding: 25px;
        margin-bottom: 25px;
    }

    .qualification-badges {
        flex-direction: column;
        gap: 10px;
    }

    .badge-item {
        min-width: auto;
    }
}


/* 行业分类标签和客户列表样式 - 重新设计 */

.industry-tabs-container {
    margin: 30px 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05) inset;
}

.industry-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    width: 90%;
    max-width: 600px;
    justify-content: center;
}

.industry-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.industry-tab {
    padding: 12px 30px;
    margin: 0;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 2;
    letter-spacing: 0.5px;
}

.industry-tab:hover {
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.04);
}

.industry-tab.active {
    color: var(--primary-color);
    font-weight: 600;
}

.industry-tab.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px 3px 0 0;
}


/* 改进客户列表容器样式 */

.customers-container {
    position: relative;
    min-height: 350px;
    margin: 15px 0 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
}

.industry-customers {
    display: none;
    position: relative;
    width: 100%;
}

.industry-customers.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.customers-page {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-width: 980px;
}

.customers-page.active {
    display: flex;
}

.customers-column {
    flex: 0 0 46%;
    max-width: 46%;
    margin: 0 2%;
}

.customer-item {
    padding: 14px 15px;
    margin-bottom: 14px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.customer-item:hover {
    background-color: #e8f4ff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
    border-left: 3px solid var(--primary-color);
}

.customer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.customer-item:hover::before {
    left: 100%;
}


/* 行业客户列表底部 */

.industry-customers-footer {
    text-align: center;
    color: #6c757d;
    margin-top: 10px;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-icon {
    font-size: 20px;
    color: #0056b3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.industry-customers-footer:hover .more-icon {
    opacity: 1;
    transform: scale(1.1);
}

.customers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 5px;
}


/* 移除底部省略号的before伪元素 */

.industry-customers-footer::before {
    display: none;
}


/* 响应式调整 */

@media (max-width: 768px) {
    .industry-tabs {
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .industry-tab {
        padding: 10px 18px;
        font-size: 14px;
    }

    .customers-container {
        padding: 15px 10px;
        min-height: 300px;
    }

    .customers-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
    }

    .customers-page {
        flex-direction: column;
    }

    .customer-item {
        font-size: 13px;
        padding: 12px 10px;
        margin-bottom: 10px;
    }
}


/* 新客户模块 - 四列布局样式 */

.clients-grid-container {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    gap: 15px;
}

.industry-column {
    flex: 1;
    min-width: 22%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.industry-title {
    font-size: 1.68rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 6px 0;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.customers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.customer-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 8px;
    transition: all 0.3s ease;
}

.customer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f0f4f8;
}

.customer-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.customer-name {
    font-size: 1.26rem;
    line-height: 1.3;
    color: #333;
}

.industry-customers-footer {
    text-align: center;
    color: #6c757d;
    margin-top: 5px;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-icon {
    font-size: 20px;
    color: #0056b3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.industry-customers-footer:hover .more-icon {
    opacity: 1;
    transform: scale(1.1);
}


/* 响应式布局 */

@media (max-width: 991px) {
    .clients-grid-container {
        flex-wrap: wrap;
    }

    .industry-column {
        flex: 0 0 48%;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .industry-column {
        flex: 0 0 100%;
    }
}


/* 移除旧样式中的冲突部分 */

.industry-tabs-container,
.industry-tabs,
.industry-tab {
    /* 保持这些选择器，但重置其样式，以避免冲突 */
    display: none;
}


/* 在线产品下拉菜单样式 */

.online-products-menu {
    min-width: 240px;
    padding: 8px 0;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.online-products-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    transition: background-color 0.2s;
}

.online-products-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

.online-products-menu .material-icons {
    font-size: 20px;
    margin-right: 12px;
    color: #1976d2;
}


/* 悬浮菜单样式 */

/* 用户悬浮菜单特定样式 */

.user-floating-menu {
    min-width: 200px;
}

.user-floating-menu .menu-section {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.user-floating-menu .menu-section:last-child {
    border-bottom: none;
}

.user-floating-menu .menu-item {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    color: #333;
    text-decoration: none;
}

.user-floating-menu .menu-item:hover {
    background-color: #f8f9fa;
}

.user-floating-menu .menu-item span {
    font-size: 14px;
    color: #333;
}

.user-floating-menu .menu-desc {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.verified-tag {
    display: inline-block;
    padding: 2px 6px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 3px;
    font-size: 12px;
}

.logout-item {
    color: #dc3545 !important;
}

.logout-item span {
    color: #dc3545 !important;
}

.menu-desc .invoice-text {
    color: #dc3545;
    font-size: 100%;
    font-weight: normal;
}

/* 移动端导航栏优化 */

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 18px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
        border-radius: 4px;
    }

    .navbar .nav-link:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse {
        background-color: rgba(0, 86, 179, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        padding: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    /* 优化登录区域在移动端的显示 */
    #loginButton,
    #userInfo,
    #onlineProductEntry {
        margin-top: 5px;
        margin-left: 0 !important;
        display: flex;
        justify-content: center;
    }

    /* 增大移动端按钮点击区域 */
    .btn {
        padding: 8px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 改善用户信息显示 */
    .user-info {
        justify-content: center;
    }
}

/* 移动端产品卡片优化 */

@media (max-width: 767px) {
    .card-product {
        margin-bottom: 20px;
    }

    .card-footer {
        padding: 15px;
    }

    .card-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* 轮播图在移动端的高度 */
    .carousel-item .page-header {
        height: 60vh;
    }

    /* 让解决方案卡片在移动端更易读 */
    .card-background .card-body {
        padding: 20px 15px;
    }

    .card-background .card-title {
        font-size: 20px;
    }

    .card-background .card-description {
        font-size: 14px;
    }

    /* 客户logo墙在移动端的排列 */
    .client-logo {
        height: 80px;
        margin-bottom: 15px;
    }

    /* 证书卡片在移动端的显示 */
    .certificate-card {
        margin-bottom: 15px;
    }

    /* 页脚在移动端优化 */
    footer .footer-links {
        margin-bottom: 20px;
    }

    /* 改善移动端触摸体验 */
    .floating-menu {
        max-width: 90%;
        left: 5% !important;
    }
}

/* 添加触摸反馈效果 */

@media (max-width: 767px) {

    .card,
    .btn,
    .nav-link,
    .menu-item {
        -webkit-tap-highlight-color: transparent;
    }

    .card:active,
    .btn:active,
    .nav-link:active,
    .menu-item:active {
        opacity: 0.8;
        transition: opacity 0.2s;
    }
}

/* 解决方案轮播样式 */

.solutions-carousel {
    padding: 0;
}

.solutions-carousel .carousel-control-prev,
.solutions-carousel .carousel-control-next {
    position: absolute;
    width: 5%;
    text-align: center;
    color: #0056b3;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.solutions-carousel .carousel-control-prev {
    left: -20px;
}

.solutions-carousel .carousel-control-next {
    right: -20px;
}

.solutions-carousel .carousel-indicators {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
}

.solutions-carousel .carousel-indicators li {
    background-color: #0056b3;
    opacity: 0.5;
}

.solutions-carousel .carousel-indicators li.active {
    opacity: 1;
}

/* 解决方案卡片高度统一 */

#solutions .card-background {
    height: 250px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: left;
}
#solutions .card-background::after{content: '';height: 50%;top:auto;bottom: 0;background-color: rgba(0, 0, 0, 0.3);}

#solutions .card-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#solutions .card-background .card-title {
    font-size: 1.68rem;
    line-height: 1.3;
    font-weight: 400;
}

#solutions .card-background .card-description {
    font-size: 1.26rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .solutions-carousel .carousel-control-prev,
    .solutions-carousel .carousel-control-next {
        display: none;
    }

    #solutions .card-background {
        height: 220px;
    }
}

/* 客户logo相关样式 */

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

/* 导航栏下拉菜单样式 */

.dropdown-menu {
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    /* animation: dropdown-fade 0.2s ease; */
}

@keyframes dropdown-fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 15px;
    position: relative;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0056b3;
}

.nav-dropdown-icon {
    font-size: 16px;
    color: #999;
}

.dropdown-item:hover .nav-dropdown-icon {
    color: #0056b3;
}

/* 确保移动端下拉菜单正确显示 */

@media (max-width: 991px) {
    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        border: none;
        margin: 0;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 2.8rem;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .nav-dropdown-icon {
        color: rgba(255, 255, 255, 0.5);
    }

    .dropdown-item:hover .nav-dropdown-icon {
        color: #fff;
    }
}

/* 响应式导航菜单 */

@media (max-width: 991px) {}

/* 下拉菜单三角形图标 */

.dropdown-toggle-custom {
    position: relative;
    padding-right: 15px !important;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* 导航链接激活状态 */

.nav-link-active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@media (max-width: 991px) {
    .dropdown-arrow {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* 添加证书展示样式 */

.qualification-certificates {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
}

.certificate-item {
    width: 30%;
    height: 135px;
    /* 增加一点高度 */
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.qualification-certificate-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ISO证书裁剪显示 */

.iso-certificate-container {
    height: 100%;
    overflow: hidden;
}

.iso-certificate {
    max-height: none;
    object-fit: cover;
    object-position: top;
    height: 220px;
    /* 调整裁剪高度 */
    margin-top: -15px;
}

/* 证书预览 */

.certificate-preview {
    display: none;
}

.certificate-item:hover {
    border-color: #2196F3;
}

/* 资质认证容器样式 */

.qualification-container {
    height: calc(100% - 20px);
    /* 减去一些距离与右侧对齐 */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

/* 让qualification-content区域可以伸展填充空间 */

.qualification-content {
    flex-grow: 1;
    margin-bottom: 0;
}

/* 消除右侧红框空白 */

#innovation .certificate-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

/* 确保每行都有相同的高度 */

#innovation .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* 左右两列等高 */

#innovation .col-md-6 {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* 确保右侧卡片标题下方没有多余空间 */

#innovation .card-body {
    padding-bottom: 10px;
}

.qualification-badges {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#innovation .mt-3 .card-title {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
}

#innovation .mt-3 .col-md-6 {
    display: flex;
}

/* 证书标签样式修改 */

.qualification-badges {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
}

.badge-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.badge-circle i {
    color: white;
    font-size: 20px;
}

.badge-text {
    font-size: 1.19rem;
    color: #333;
    text-align: center;
}

/* 减小证书区域上方内容的间距 */

.qualification-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.qualification-title {
    margin: 0 0 0 10px;
    font-size: 2.24rem;
    /* 增大标题 */
}

.qualification-icon {
    color: #0056b3;
    /* 网站主题色 */
    font-size: 24px;
    background: linear-gradient(135deg, #0056b3, #004494);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 5px;
}

.qualification-divider {
    margin-bottom: 15px;
    height: 1px;
    background-color: #eee;
    width: 100%;
}

.qualification-content p {
    margin-bottom: 10px;
    font-size: 1.4rem;
    /* 增大字体 */
    line-height: 1.5;
    /* 增大行高 */
}

/* 使底部两个证书卡片高度一致 */

#innovation .mt-3 .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#innovation .mt-3 .certificate-image-container {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#innovation .mt-3 .certificate-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#innovation .mt-3 .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 证书标签样式修改 - 减小占用空间 */

.qualification-badges {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 0;
}

.badge-item {
    display: flex;
    flex-direction: row;
    /* 改为水平排列 */
    align-items: center;
    margin: 0 10px;
}

.badge-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    /* 右侧间距替代底部间距 */
    margin-bottom: 0;
    /* 取消底部间距 */
}

.badge-circle i {
    color: white;
    font-size: 16px;
}

.badge-text {
    font-size: 1.12rem;
    color: #333;
    white-space: nowrap;
    /* 防止文字换行 */
}

/* 缩小证书图片区域 */

.qualification-certificates {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}

.certificate-item {
    width: 30%;
    height: 135px;
    /* 减小高度 */
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

/* 调整资质认证容器高度 */

.qualification-container {
    height: calc(100% - 10px);
    /* 与右侧对齐 */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

/* 调整标签图标颜色与导航栏保持一致 */

.badge-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056b3, #004494);
    /* 使用与导航栏相同的渐变色 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-circle i {
    color: white;
    font-size: 16px;
}

/* 修改资质认证证书项，移除点击效果 */

.qualification-certificates .certificate-item {
    width: 30%;
    height: 135px;
    border: 1px solid #ddd;
    padding: 6px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
    cursor: default;
    /* 移除鼠标手型指针 */
    position: relative;
}

/* 移除证书鼠标悬停效果 */

.qualification-certificates .certificate-item:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

/* 禁用资质认证中证书的预览功能 */

.qualification-certificates .certificate-preview {
    display: none;
}

/* 移除资质认证中证书的certificate-card类相关效果 */

.qualification-certificates .certificate-item.certificate-card:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 保留右侧荣誉证书的点击效果 */

#innovation .col-md-6:last-child .certificate-card {
    cursor: pointer;
}

#innovation .col-md-6:last-child .certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* 页面右侧悬浮导航 */

.page-navigation {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 8px;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.page-navigation.show {
    opacity: 1;
    visibility: visible;
}

/* 删除nav-title相关样式 */

.page-navigation .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-navigation .nav-menu li {
    margin: 6px 0;
}

.page-navigation .nav-item {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-navigation .nav-item:hover {
    background: rgba(0, 86, 179, 0.1);
    color: #0056b3;
}

.page-navigation .nav-item.active {
    background: linear-gradient(135deg, #0056b3, #004494);
    color: #fff;
}

.page-navigation .nav-item i {
    font-size: 20px;
    margin-right: 8px;
}

.page-navigation .nav-item span {
    font-size: 12px;
    white-space: nowrap;
}

/* 媒体查询 - 小屏幕隐藏文字只显示图标 */

@media (max-width: 1200px) {
    .page-navigation {
        right: 10px;
        padding: 10px 5px;
    }

    /* 删除nav-title相关媒体查询样式 */
    .page-navigation .nav-item span {
        display: none;
    }

    .page-navigation .nav-item i {
        margin-right: 0;
    }

    .page-navigation .nav-item {
        padding: 5px;
        justify-content: center;
    }
}

/* 在移动设备上隐藏导航 */

@media (max-width: 768px) {
    .page-navigation {
        display: none;
    }
}