.elementor-2617 .elementor-element.elementor-element-bd39b71 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-2617 .elementor-element.elementor-element-bd39b71{padding:25px 25px 25px 25px;}.elementor-2617 .elementor-element.elementor-element-de36ffe > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){--kit-widget-spacing:20px;}.elementor-2617 .elementor-element.elementor-element-4f09a52{margin:-20px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-2617 .elementor-element.elementor-element-17ea5a3 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){--kit-widget-spacing:20px;}/* Start custom CSS for html, class: .elementor-element-4f09a52 *//* Sky Universe DIY Banner Styles */

/* 外层包裹器 - 设置背景色和内边距 */
.sky-diy-banner-wrapper {
    /* 使用了您Logo中的紫色调作为背景，形成视觉冲击 */
    background: linear-gradient(135deg, #5e00a3 0%, #8a2be2 100%);
    color: #ffffff;
    padding: 25px 0;
    margin-top: 10px; /* 与上方白色栏的间距 */
    margin-bottom: 0px; /* 与下方汽车品牌栏的间距 */
    width: 100%;
}

/* 内容容器 - 控制最大宽度并居中 */
.sky-diy-container {
    max-width: 1200px; /* 根据您网站的实际最大宽度调整 */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* 允许在小屏幕换行 */
    gap: 20px;
}

/* 单个模块块 */
.sky-diy-block {
    display: flex;
    align-items: center;
    flex: 1 1 300px; /* 弹性布局，最小宽度300px */
    background: rgba(255, 255, 255, 0.1); /* 轻微的透明背景让它更有层次感 */
    padding: 27px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* 鼠标悬停时的微动效 */
.sky-diy-block:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

/* 图标区域 */
.sky-diy-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sky-diy-icon svg {
    stroke: #ffd700; /* 将图标颜色设置为金色/黄色，突出显示 */
}

/* 文本内容区域 */
.sky-diy-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.sky-diy-content p {
    margin: 0;
    font-size: 14px;
    color: #e0e0e0; /* 稍微淡一点的白色 */
    line-height: 1.4;
}

/* 优惠码的高亮样式 */
.sky-code {
    background-color: #ffd700;
    color: #5e00a3;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

/* 针对特别强调的第三个模块（优惠模块）的可选样式 */
.sky-diy-offer {
    border: 1px solid rgba(255, 215, 0, 0.3); /* 加一个金色的边框 */
}


/* --- 移动端适配 (Responsive Design) --- */
@media (max-width: 768px) {
    .sky-diy-container {
        flex-direction: column; /* 手机上垂直排列 */
        align-items: stretch; /*以此拉伸填满宽度 */
    }
    .sky-diy-block {
        flex: auto;
        width: 100%; /* 手机上占满宽度 */
        margin-bottom: 10px;
    }
    .sky-diy-content h3 {
        font-size: 17px;
    }
}
/* ================= Sky Universe: 炫光动效 (Shimmer) CSS ================= */

/* 1. 定义光束扫过的动画：从左飞到右 */
@keyframes sky-shimmer-sweep {
    0% {
        left: -100%; /* 起始位置：在屏幕左侧外面 */
    }
    20% {
        left: 200%; /* 结束位置：飞到屏幕右侧外面 */
    }
    100% {
        left: 200%; /* 保持在外面，直到下一个循环开始 */
    }
}

/* 2. 外层包裹器 (增加定位属性) */
.sky-diy-banner-wrapper {
    /* --- 保持您原有的样式 --- */
    background: linear-gradient(135deg, #5e00a3 0%, #8a2be2 100%);
    color: #ffffff;
    padding: 25px 0;
    margin-top: 20px;
    margin-bottom: 0px;
    width: 100%;
    
    /* --- ！！！新增的关键属性！！！ --- */
    position: relative; /* 为光束提供定位基准 */
    overflow: hidden;   /* 确保光束不会溢出到页面其他地方 */
}

/* 3. 制作“光束” (The Light Beam) */
.sky-diy-banner-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* 初始状态隐藏在左侧 */
    width: 50%;  /* 光束的宽度 */
    height: 100%;
    
    /* 制作一道中间亮、两边透明的白光 */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%, /* 0.8 是透明度，数值越大光越亮 */
        rgba(255, 255, 255, 0) 100%
    );
    
    /* 让光束倾斜，更有动感 */
    transform: skewX(-25deg); 
    
    /* 动画设置：6秒循环一次 (2秒扫过，4秒等待) */
    animation: sky-shimmer-sweep 2s infinite ease-in-out;
    
    /* 确保光束不会挡住鼠标点击 */
    pointer-events: none; 
    z-index: 1; /* 确保光束在背景之上，但在文字之下(如果文字有更高z-index) */
}

/* --- 确保内容在光束之上 (可选，防止文字被光闪得看不清) --- */
.sky-diy-container {
    position: relative;
    z-index: 2; /* 让文字和图标浮在光束上面 */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c9c7ff *//* ================= Sky Universe 完美对齐 & 大图标版 ================= */

/* 1. 外层容器 */
.sky-category-wrapper {
    padding: 0px 0px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.sky-category-header h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}
.sky-category-header p {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

/* 2. 网格布局 */
.sky-category-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
    align-items: stretch;
}

/* 3. 卡片主体 */
.sky-cat-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
    position: relative;
    text-align: center;
}

.sky-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 20px rgba(94, 0, 163, 0.15);
    border-color: #5e00a3;
}

/* 4. 图片头部 */
.sky-cat-img-header {
    height: 120px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #eee;
    flex-shrink: 0; 
    border-bottom: 1px solid #f0f0f0;
}

.sky-cat-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #5e00a3;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}
.sky-cat-highlight .sky-cat-tag { background: #00bcd4; }
.sky-cat-universal .sky-cat-tag { background: #ff9800; }

/* 5. 内容区域 */
.sky-cat-content {
    padding: 5px 0px 15px 0px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    background: #fff;
}

/* 标题 */
.sky-cat-content h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #222;
    font-weight: 800;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* --- 列表完美居中方案 (重点修改) --- */
.sky-feature-list {
    padding: 0;
    list-style: none;
    min-height: 100px;
    width: 100%; /* 占满宽度 */
    
    /* 使用 Flexbox 让内容块居中 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 子元素水平居中 */
    justify-content: flex-start;
    margin-bottom: 0px;
}

.sky-feature-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    
    /* 让每一行文字的容器宽度自适应，并在父容器中居中 */
    display: inline-flex; 
    align-items: center; /* 垂直对齐图标和文字 */
    justify-content: flex-start;
    
    width: 220px; /* ！！！设置一个固定宽度，强制文字左对齐但整体块居中！！！ */
    /* 如果220px太宽或太窄，可以根据您的实际文字长度微调 */
    
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.sky-feature-list li::before {
    content: "✓";
    display: inline-block;
    width: 18px; /* 稍微加大对勾图标 */
    height: 18px;
    background: #f0f7ff;
    color: #5e00a3;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 11px;
    margin-right: 12px; /* 加大图标和文字间距 */
    flex-shrink: 0;
}

/* --- Logo 放大方案 (重点修改) --- */
.sky-cat-brands {
    margin-top: auto;
    margin-bottom: 25px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #eee;
    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px; /* 稍微拉大间距 */
    align-items: center;
    justify-items: center;
    
    height: 120px; /* 稍微加高容器 */
    width: 100%;
}

.logo-mode img {
    /* ！！！放大 Logo ！！！ */
    max-height: 45px; /* 原来是 32px，现在放大到 45px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; 
}

/* Diamond 2K 文字标 */
.sky-cat-brands span {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* 字体稍微加大 */
    color: #444;
    background: #fff;
    height: 32px; /* 高度稍微加大 */
    border-radius: 4px;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-weight: 600;
}

/* AI Box 兼容性框 */
.uni-brands {
    background: #fff8e1;
    border: 1px solid #ffe0b2;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    
    margin-top: auto;
    margin-bottom: 25px;
    
    height: 90px; 
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 按钮 + 炫光 */
.sky-cat-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #5e00a3;
    color: #fff !important; 
    font-weight: 700;
    text-decoration: none;
    font-size: 15px; /* 字体稍微加大 */
    padding: 14px 0;
    border-radius: 8px;
    border: none;
    margin-top: auto;
    
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.sky-cat-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    transition: none;
}

.sky-cat-btn:hover {
    background-color: #4b0082;
    transform: translateY(-2px);
    color: #fff !important; 
}
.sky-cat-btn:hover::after {
    left: 100%;
    transition: 0.6s ease-in-out;
}

/* 响应式 */
@media (max-width: 1100px) {
    .sky-category-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .sky-category-container {
        grid-template-columns: 1fr;
    }
    .sky-cat-img-header {
        height: 180px;
    }
    .sky-category-wrapper {
        padding: 40px 15px;
    }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-bd39b71 */.elementor-2617 .elementor-element.elementor-element-bd39b71 .subitem-title-holder .menu-title > *:not(.label-text) {
    background-image: linear-gradient(90deg, currentcolor, currentcolor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: all .3s linear;
}
.elementor-2617 .elementor-element.elementor-element-bd39b71 .subitem-title-holder:hover .menu-title > * {
    background-size: 100% 1px;
}/* End custom CSS */