.lwl_define-container {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    background-color: #0a2056;
    /* 深蓝色 */
    color: #fff;
    font-family: Arial, sans-serif;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    padding: 40px;
    margin-bottom: 50px;
    margin-left: auto;
    /* 新增 */
    margin-right: auto;
    /* 新增 */
}

.lwl_define-left,
.lwl_define-right * {
    color: #fff !important;
    /* 确保字体为白色 */
    text-align: center;
    /* 居中对齐 */
    justify-content: center;
    /* align-items: center; */
    display: flex;
    flex-direction: column;
}

.lwl_define-left {
    flex: 1;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
}

.lwl_define-right {
    flex: 3;
    gap: 15px;
    font-size: 16px;
    align-items: flex-start;
    /* 让整体左对齐 */
}

.lwl_define-right p {
    text-align: left;
    /* 行内文字左对齐 */
    margin: 0 0 10px 0;
    display: block;
}

.lwl_define-right p::before {
    content: "– ";
}

.lwl_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.lwl_card {
    background-color: white;
    flex: 1 1 30%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lwl_card img {
    width: 100%;
    height: auto;
    display: block;
}

.lwl_card_content {
    padding: 20px;
    color: #1e1e2f;
}

.lwl_card_content h3 {
    margin: 0;
    font-size: 20px;
    color: #2c165a;
}

.lwl_card_content p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.lwl_card_content a {
    font-weight: bold;
    text-decoration: none;
    color: #2c165a;
}



@media (max-width: 900px) {
    .lwl_card {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .lwl_card {
        flex: 1 1 100%;
    }
}

.lwl_play_overlay {
    height: 220px;
    /* 你可以根据实际需要调整 */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 防止图片溢出 */
    background: #f5f5f5;
    /* 可选，给容器加个背景色 */
}

.lwl_play_overlay img {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* 保证图片完整显示且不变形 */
    display: block;
}

.lwl_orange-container {
    background-color: #FFF3E0;
    /* 淡橙色 */
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;

}

.lwl_orange-title {
    font-size: 26px;
    font-weight: bold;
    color: #FF9800;
    /* 更深的橙色 */
    margin-bottom: 8px;
    text-align: left;
}

.lwl_orange-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lwl_orange-text {
    flex: 7;
    font-size: 20px;
    color: #6d3b00;
    text-align: left;
}

.lwl_orange-btn {
    flex: 3;
    padding: 14px 28px;
    background: linear-gradient(90deg, #FFA726 0%, #FFB74D 100%);
    color: #fff;
    font-size: 17px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s;
}

.lwl_orange-btn:hover {
    background: linear-gradient(90deg, #FF9800 0%, #FFA726 100%);
}

@media (max-width: 700px) {
    .lwl_orange-content-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .lwl_orange-btn {
        width: 100%;
    }
}

/* 图片行容器 */
.img-row-container {
    display: flex;
    gap: 30px;
    /* 图片间距离，可调整 */
    max-width: 1000px;
    margin: 50px auto;
    /* 只需这样即可居中 */
    justify-content: center;
    /* 这条是关键 */
}

.img-row-container .img-item {
    flex: 1 1 0;
    /* aspect-ratio: 1/1; */
    /* 保持正方形，如果不需要可去掉 */
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    transition: box-shadow 0.3s cubic-bezier(.4, 2, .6, 1);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-row-container .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
}

.img-row-container .img-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(0, 0, 0, 0.12);
}

.img-row-container .img-item:hover img {
    transform: scale(1.04);
}

/* 响应式：手机端上下排列 */
@media (max-width: 700px) {
    .img-row-container {
        flex-direction: column;
        gap: 20px;
    }
}


.lwl_orange-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 16px;
}

.lwl_orange-title {
    font-size: 26px;
    font-weight: bold;
    color: #FF9800;
    text-align: left;
    /* 保持原有样式 */
}

.lwl_orange-title-btn {
    padding: 14px 28px;
    background: linear-gradient(90deg, #FFA726 0%, #FFB74D 100%);
    color: #fff;
    font-size: 17px;
    /* 和 .lwl_orange-btn 一样 */
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.lwl_orange-title-btn:hover {
    background: linear-gradient(90deg, #FF9800 0%, #FFA726 100%);
}

@media (max-width: 600px) {
    .lwl_orange-title-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .lwl_orange-title-btn {
        width: 100%;
    }
}

.lwl_orange-btn-group {
    flex: 3;
    display: flex;
    flex-direction: column;
    /* 垂直排列按钮 */
    gap: 12px;
    /* 按钮间距 */
    align-items: stretch;
}

.lwl_orange-btn,
.lwl_orange-title-btn {
    width: 100%;
    /* 两个按钮都占满右侧区域宽度 */
}

.lwl_orange-btn-alt {
    display: block;
    width: 100%;
    /* 让按钮自适应父级容器宽度 */
    max-width: 480px;
    /* 可选，如果不要限制注释掉。否则最大宽度不超过480px */
    margin: 32px auto;
    /* 居中+上下间距 */
    padding: 18px 28px;

    background: linear-gradient(90deg, #FFA726 0%, #FFB74D 100%);
    color: #fff;
    font-size: 22px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s, transform 0.18s cubic-bezier(.4, 2, .6, 1), box-shadow .18s;
    animation: orangePulse 1.7s infinite;
}

.lwl_orange-btn-alt:hover {
    transform: scale(1.06);
    box-shadow: 0 0 20px 6px #FFA726, 0 0 32px 8px #FFB74D;
}

/* 响应式适配：小屏幕状态拉满 */
@media (max-width: 500px) {
    .lwl_orange-btn-alt {
        max-width: 100%;
        font-size: 18px;
        min-width: 0;
    }
}

.lwl-video-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 40px 0 40px 0;
    flex-wrap: wrap;
}

.lwl-video-container {
    flex: 1 1 350px;
    max-width: 500px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: box-shadow 0.3s;
    background: #fff;
}

.lwl-video-container:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.lwl-video-thumb {
    width: 100%;
    display: block;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    position: relative;
}

.lwl-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(30, 30, 30, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lwl-video-play-btn:hover {
    background: #e5801c;
}

.lwl-video-element {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #000;
}

.lwl_play_overlay {
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.lwl_play_overlay img.lwl-video-thumb,
.lwl_play_overlay video.lwl-video-element {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.lwl_play_overlay video.lwl-video-element {
    background: #000;
    /* 可选，避免预览画面无内容时背景不统一 */
    border-radius: 0;
    /* 跟overlay一样 */
}

@media (max-width: 600px) {

    .lwl_play_overlay,
    .lwl_play_overlay img.lwl-video-thumb,
    .lwl_play_overlay video.lwl-video-element {
        height: 140px;
        /* 或自动，让高度整体跟上面容器一致 */
    }
}