.elementor-681 .elementor-element.elementor-element-3648359{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-681 .elementor-element.elementor-element-3648359.e-con{--flex-grow:1;--flex-shrink:0;}/* Start custom CSS for container, class: .elementor-element-3648359 *//* 全局变量定义 */
:root {
    --cr-primary-color: #0056b3; /* 品牌主色调，可替换为你们的企业蓝/红 */
    --cr-text-main: #333333;
    --cr-text-light: #666666;
    --cr-bg-light: #f8f9fa;
    --cr-border-color: #e5e7eb;
}

.cr-product-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--cr-text-main);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 按钮基础样式 */
.cr-btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cr-btn-primary {
    background-color: var(--cr-primary-color);
    color: #ffffff;
}
.cr-btn-primary:hover {
    background-color: #004494;
    color: #ffffff;
}
.cr-btn-secondary {
    background-color: #ffffff;
    color: var(--cr-primary-color);
    border: 2px solid var(--cr-primary-color);
}
.cr-btn-secondary:hover {
    background-color: var(--cr-primary-color);
    color: #ffffff;
}

/* 首屏区域 */
.cr-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}
.cr-hero-content {
    flex: 1;
}
.cr-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111827;
}
.cr-hero-content p {
    font-size: 1.1rem;
    color: var(--cr-text-light);
    margin-bottom: 20px;
}
.cr-hero-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.cr-hero-highlights li {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.cr-hero-image {
    flex: 1;
}
.cr-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* 技术参数区域 */
.cr-specs {
    background-color: var(--cr-bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}
.cr-specs h2 {
    text-align: center;
    margin-bottom: 30px;
}
.cr-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.cr-spec-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--cr-border-color);
    text-align: center;
}
.cr-spec-card h3 {
    font-size: 1rem;
    color: var(--cr-text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cr-spec-card p {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--cr-primary-color);
}

/* 结构与应用区域 */
.cr-features-applications {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.cr-components, .cr-applications {
    flex: 1;
}
.cr-components ul {
    padding-left: 20px;
    color: var(--cr-text-light);
}
.cr-components li {
    margin-bottom: 12px;
}
.cr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.cr-tags span {
    background: var(--cr-bg-light);
    border: 1px solid var(--cr-border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--cr-text-main);
}

/* 底部 CTA 区域 */
.cr-cta-banner {
    background-color: #111827;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
}
.cr-cta-banner h2 {
    color: #ffffff;
    margin-bottom: 15px;
}
.cr-cta-banner p {
    max-width: 600px;
    margin: 0 auto 25px auto;
    color: #9ca3af;
}

/* 移动端响应式适配 */
@media (max-width: 768px) {
    .cr-hero, .cr-features-applications {
        flex-direction: column;
    }
    .cr-hero-content h1 {
        font-size: 2rem;
    }
    .cr-specs {
        padding: 20px;
    }
}
/* --- 轮播图专属样式 --- */
.cr-hero-image {
    flex: 1;
    min-width: 0; /* 防止 flex 撑破容器 */
}

.cr-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cr-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.cr-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.cr-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2; /* 锁定图片比例，防止轮播时高度跳动 */
}

/* 左右切换按钮 */
.cr-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

.cr-slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.cr-slider-btn.prev {
    left: 15px;
}

.cr-slider-btn.next {
    right: 15px;
}

/* 底部指示器 */
.cr-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.cr-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cr-dot.active {
    background-color: #ffffff;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}/* End custom CSS */