.hero-section {
    background-image: url('../assets/products_banner.png');
}
.hero-section .img-fluid {
    max-width: 504px; /* 设置最大宽度 */
}
/* 特点卡片样式 */
.features-section {
    position: relative;
    top: -50px; /* 根据需要调整这个值以实现浮动效果 */
    z-index: 1; /* 确保浮动框在其他内容之上 */
    height: 0px;
}
.features-section img {
    height: 146px;
    object-fit: contain;
    width: 100%;
}

.product-introduction {
    background-image: url('../assets/download-1.png'); /* 设置背景图片 */
    background-size: cover; /* 确保背景图片覆盖整个区域 */
    background-position: center; /* 背景图片居中显示 */
    padding: 60px 0;
}
.product-introduction .product-content {
    font-size: 20px;
    font-weight: normal;
    line-height: 32px;
    text-align: justify; /* 浏览器可能不支持 */
    letter-spacing: 0px;
    color: #1C1C1C;
    margin-bottom: 60px;
}

.product-menu {
    height: 100%;
}
.product-menu .list-unstyled {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-menu ul {
    padding: 0;
}

.product-menu li {
    margin-bottom: 17px;
    border-radius: 2px;
    opacity: 1;
    background: linear-gradient(180deg, #F4F6F8 0%, #FEFEFE 73%);
    box-sizing: border-box;
    border: 2.2px solid #FFFFFF;
    box-shadow: 0px 7px 14px 0px rgba(49, 58, 68, 0.1);
}

.product-menu li.active a {
    background: linear-gradient(180deg, #0A86FF 0%, rgba(10, 134, 255, 0.37) 114%);
    color: #FFFFFF;
}

.product-menu a {
    text-decoration: none;
    color: #1C1C1C;
    border-radius: 4px;
    padding: 13px 9px;
    height: 100%;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.7px;
}

.product-icon {
    width: 37px;
    height: 37px;
    vertical-align: middle; /* 确保图标与文本垂直居中对齐 */
    margin-right: 8px; /* 为图标和文本之间添加间距 */
}

.product-menu a {
    text-decoration: none;
    color: #1C1C1C;
    border-radius: 4px;
    padding: 13px 9px;
    height: 100%;
    display: flex;
    font-size: 14px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.7px;
    align-items: center;  /* 垂直居中 */
}

.product-icon {
    width: 37px;
    height: 37px;
    margin-right: 8px;
    flex-shrink: 0;
}
.product-detail .bg-image-container {
    position: relative;
}
.product-detail .bg-bottom {
    position: absolute;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}
.product-detail .bg-middle {
    position: absolute;
    width: 100%;
    object-fit: cover;
    animation: slideUp 1s ease-out forwards;
    z-index: 2;
}
@keyframes slideUp {
    0% {
        transform: translateY(25%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.product-detail-content {
    background-image: url('../assets/products_introduction_mask.png');
    background-size: cover; /* 图片拉伸以覆盖整个区域 */
    background-position: center; /* 图片居中显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    min-height: 524px;
    position: relative;
    z-index: 3;
    padding: 30px 40px;
}
@keyframes fadeIn {
    to {
        opacity: 1;  /* 最终状态完全不透明 */
    }
}
.product-detail-content h3 {
    font-size: 28px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 1.4px;
    color: #1C1C1C;
    padding-top: 130px;
}

.product-detail-content p {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    text-align: justify; /* 浏览器可能不支持 */
    letter-spacing: 0px;
    color: #1C1C1C;
    text-indent: 1em; /* 设置首行缩进为1个字符 */
}
.product-detail-content .p1 {
    width: 62%;
}
.product-detail-content .p2 {
    width: 95%;
}
.product-detail-content li {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    text-align: justify; /* 浏览器可能不支持 */
    letter-spacing: 0px;
    color: #1C1C1C;
    text-indent: 1em; /* 设置首行缩进为1个字符 */
}
.product-components {
    background-image: url('../assets/BG.png'); /* 设置背景图片 */
    background-size: cover; /* 确保背景图片覆盖整个区域 */
    background-position: center; /* 背景图片居中显示 */
}

.component-row {
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.component-col {
    position: relative;
    overflow: visible;
    padding-left: 0px;
    padding-right: 0px;
    background: rgba(255, 255, 255, 0.5);
}

.component-col:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    width: 36.6%;
}

.component-col:nth-child(2) {
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
    width: 39.9%;
    margin-left: -6.6%;
}

.component-col:nth-child(3) {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    width: 36.6%;
    margin-left: -6.6%;
}
.component-row2-r,
.component-row2-l {
    padding: 20px;
    text-align: center;
    box-shadow: 0 7px 14px 0 #313a441a;
    border: 1.5px solid #FFFFFF; /* 添加白色边框 */
}

.component-row2-l p,
.component-row2-r p {
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    line-height: 36px;
    margin: 0;
}
.component-row2-l {
    background-image: linear-gradient(90deg, #0ABAFF 2%, #0abbff5e 100%);
    border-radius: 100px 0 0 100px;
}
.component-row2-r {
    background-image: linear-gradient(90deg, #0a86ff5e 1%, #0A86FF 100%);
    border-radius: 0 48px 48px 0;
}
.component-col3:nth-child(1) {
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    width: 36.6%;
}
.component-col3:nth-child(2) {
    clip-path: polygon(0 0, 82% 0, 100% 100%, 18% 100%);
    width: 39.9%;
    margin-left: -6.6%;
}
.component-col3:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    width: 36.6%;
    margin-left: -6.6%;
}
.component-box {
    padding: 20px;
    text-align: center;
}
.component-box h5 {
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    letter-spacing: 1.4px;
    color: #1C1C1C;
}

.component-box p {
    font-size: 21px;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
    letter-spacing: 0px;
    color: #1C1C1C;
}
.component-box:hover {
    background-image: linear-gradient(180deg, #0A86FF 0%, #0a86ff5e 100%);
}

.component-box:hover h5,
.component-box:hover p {
    color: #fff; /* 确保标题和段落文字也变为白色 */
}
.arrow {
    width: 80px;
    display: block;
    margin: 35px auto;
}
@media (max-width: 1400px) {
    .features-section img {
        height: 106px;
    }
    .animated-line {
        bottom: 20px;
        left: 41px;
    }
    @keyframes lineExpand {
        0% {
            width: 0;
        }
        100% {
            width: calc(100% - 82px);
        }
    }
}
@media (max-width: 1024px) {
    .animated-line {
        left: 17px;
    }
    @keyframes lineExpand {
        0% {
            width: 0;
        }
        100% {
            width: calc(100% - 34px);
        }
    }
}
@media (max-width: 992px) {
    .product-introduction {
        margin-top: 60px;
    }
    .product-menu .list-unstyled {
        display: none;
    }
    .product-detail {
        display: block !important;
        margin-bottom: 48px;
        min-height: auto;  /* 移除最小高度限制 */
    }
    .component-box p {
        font-size: 16px;
    }
    .component-box h5 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .product-introduction {
        margin-top: 160px;
    }
    .animated-line {
        left: 210px;
    }
    @keyframes lineExpand {
        0% {
            width: 0;
        }
        100% {
            width: 274px;
        }
    }
}

@media (max-width: 426px) {
    .animated-line {
        left: 63px;
    }
    @keyframes lineExpand {
        0% {
            width: 0;
        }
        100% {
            width: 274px;
        }
    }
}