.w-full {
    width: 100%;
}

.w-3\/4 {
    width: 75%;
}

.w-280 {
    width: 280px;
}

.h-250 {
    height: 250px;
}

.h-300 {
    height: 300px;
    /* 新增高度为300px */
}

.w-1\/2 {
    width: 50%;
}

.h-80 {
    height: 480px;
    /* 原高度为20rem，现改为480px */
}

.h-96 {
    height: 580px;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.transition-transform {
    transition-property: transform;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

.top-0 {
    top: 0;
}

.top-1\/4 {
    top: 25%;
}

.bottom--1 {
    bottom: -1rem;
}

.bottom-4 {
    bottom: 1rem;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.left-4 {
    left: -1rem;
}

.right-4 {
    right: 1rem;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-white {
    background-color: rgb(255, 255, 255);
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.rounded-full {
    border-radius: 9999px;
}

.cursor-pointer {
    cursor: pointer;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-center {
    text-align: center;
}

.z-10 {
    z-index: 10;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.bg-gray-300 {
    background-color: rgb(209 213 219);
}

.rounded-full {
    border-radius: 9999px;
}

.bg-blue-500 {
    background-color: rgb(59 130 246);
}

.carousel-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 calc((100% - 96px) / 4);
    /* 3*32px=96px, 四张图平均分 */
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    box-sizing: border-box;
}

.carousel-slide img,
.carousel-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transform: scale(1.35);
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 添加间隔容器样式 */
.slide-inner {
    width: 100%;
    padding: 0 5px;
    /* 内部间隔 */
}

.img-big {
    transform: scale(1.35);
    /* 恢复放大至1.35倍（原1.1） */
    transform-origin: center center;
}

/* aboutus页面专用原子化/语义化样式 */
.bg-fafcff {
    background: #fafcff;
}

.bg-f5f5f5 {
    background: #f5f5f5;
}

.bg-f0ece8 {
    background: rgb(240, 236, 232);
}

.bg-f3f3f3 {
    background: rgb(243, 243, 243);
}

.bg-banner {
    background: url('/media/maxemblem/image/about-2-bg.jpg') center center/cover no-repeat;
}

.h-619 {
    height: 619.5px;
}

.max-w-520 {
    max-width: 520px;
}

.px-32 {
    padding-left: 32px;
    padding-right: 32px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.p-24 {
    padding: 24px;
}

.p-16 {
    padding: 16px;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.py-32 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.ml-20 {
    margin-left: 20%;
}

.ml-22-5 {
    margin-left: 22.5%;
}

.gap-24 {
    gap: 24px;
}

.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}

.gap-40 {
    gap: 40px;
}

.gap-20 {
    gap: 20px;
}

.flex-1 {
    flex: 1 1 0;
}

.flex-7 {
    flex: 7;
}

.flex-3 {
    flex: 3;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.self-start {
    align-self: flex-start;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-10 {
    bottom: 10px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-6 {
    border-radius: 6px;
}

.text-white {
    color: #fff;
}

.no-margin {
    margin: 0;
}

.text-1-5em {
    font-size: 1.5em;
}

.text-1-3em {
    font-size: 1.3em;
}

.text-1-1em {
    font-size: 1.1em;
}

.text-1-0-9em {
    font-size: 0.9em;
}

.text-1-0-8em {
    font-size: 0.8em;
}

.text-2-1em {
    font-size: 2.1em;
}

.text-2-5em {
    font-size: 2.5em;
}

.text-2em {
    font-size: 2em;
}

.text-24 {
    font-size: 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-bold {
    font-weight: bold;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-96 {
    margin-bottom: 96px;
}

.h-80 {
    height: 80px;
}

.h-65 {
    height: 65px;
}

.h-70 {
    height: 70px;
}

.h-280 {
    height: 280px;
}

.h-160 {
    height: 160px;
}

.h-25 {
    height: 25%;
}

.h-75 {
    height: 75%;
}

.w-220 {
    width: 220px;
}

.w-full {
    width: 100%;
}

.min-w-100 {
    min-width: 100px;
}

.shadow-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.transition-shadow {
    transition: box-shadow 0.2s;
}

.object-cover {
    object-fit: cover;
}

.object-fill {
    object-fit: fill;
}

.max-h-full {
    max-height: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.box-border {
    box-sizing: border-box;
}

.py-48 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.py-4vh {
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.px-5vw {
    padding-left: 5vw;
    padding-right: 5vw;
}

.pt-24 {
    padding-top: 24px;
}

.min-h-450 {
    min-height: 450px;
}

.list-disc {
    list-style: disc;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-48 {
    margin-bottom: 48px;
}

.m-0 {
    margin: 0;
}

.pl-20 {
    padding-left: 20px;
}

.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.aboutus-section-box {
    padding-left: var(--page-body-padding) !important;
    padding-right: var(--page-body-padding) !important;
}

.btn-outline-white {
    padding: 14px 0;
    width: min(90vw, 400px);
    font-size: 1.1em;
    border-radius: 6px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    max-width: 100%;
}

.btn-outline-white:hover {
    background: rgb(245, 245, 247);
    border-color: rgb(245, 245, 247);
    color: #2d2d2d;
}

/* create-steps/article.page-body及其子元素专用样式（原index.css相关） */
.create-steps {
    padding: var(--page-body-padding);
}

@media (max-width: 1280px) {
    .create-steps {
        padding: 2em 7em;
    }
}

@media (max-width: 960px) {
    .create-steps {
        padding: 2em 0;
    }
}

.create-steps .btn-box {
    padding: 2em 2em 0;
    text-align: center;
}

.create-steps .btn-box button {
    padding-left: 2em;
    padding-right: 2em;
}

.el-steps.el-steps--horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2em 0;
}

.el-step.is-horizontal.is-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    max-width: 33.3333%;
    box-sizing: border-box;
}

.el-step__head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.el-step__line {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin: 0 8px;
}

.el-step__line-inner {
    display: block;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    border-width: 1px;
    border-radius: 1em;
    transition: all .3s;
}

.el-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #257C79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #257C79;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.el-step__icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.el-step__main {
    text-align: center;
}

.el-step__title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: .5em;
}

.el-step__description {
    margin-top: .5em;
}

.el-step__description img {
    width: 380px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media (max-width: 960px) {
    .el-step__description img {
        width: 60px;
        height: 60px;
    }
}

.btn-box {
    text-align: center;
}

.btn-quote {
    background: rgb(21,36,69);
    color: #fff;
    border-radius: 6px;
    padding: 0.8em 2em;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-quote:hover {
    background: #1a5e5b;
}

/* aboutus-who 三列对齐优化 */
.aboutus-who-align {
    align-items: stretch;
}

.aboutus-who-col {
    min-height: 100%;
    justify-content: center;
}

.aboutus-who-imgbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

@media (max-width: 960px) {
    .aboutus-who-align {
        flex-direction: column;
        gap: 16px;
    }

    .aboutus-who-col {
        min-height: unset;
    }
}

.aboutus-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

/* 为轮播图外层容器添加最小高度 */
.carousel-outer {
    width: calc(4 * 240px + 3 * 32px);
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    margin: 0 auto 24px auto;
    position: relative;
}

@media (max-width: 1100px) {
    .carousel-outer {
        width: 100vw;
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
}

.carousel-slide {
    flex: 0 0 240px;
    width: 240px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    height: 180px;
    box-sizing: border-box;
    position: relative;
}

.carousel-slide .slide-inner {
    width: 100%;
    height: 100%;
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-big {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transform: scale(1.35);
    transform-origin: center center;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
    .carousel-slide {
        flex: 0 0 22vw;
        width: 22vw;
    }
}

@media (max-width: 700px) {
    .carousel-outer {
        width: 100vw;
        max-width: 100vw;
    }

    .carousel-slide {
        flex: 0 0 40vw;
        width: 40vw;
        height: 24vw;
    }

    .img-big {
        transform: scale(1.1);
    }
}

.text-01 {
    width: 60%;
    margin: auto;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    text-align: center;
}



.carousel-container {
    /* 添加以下样式确保容器宽度足够 */
    width: 100%;
    min-width: 100%;
    /* 隐藏原生滚动条 */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    /* 使用transform实现平滑滚动 */
    transition: transform 0.5s ease-in-out;
    /* 确保轮播项不换行 */
    flex-wrap: nowrap;
    min-width: max-content; /* 确保内容不换行 */
    /* 移除间隙，使用项目内边距控制间距 */
    gap: 0;
}

.border {
    border: #ccc solid 1px;
}

.carousel-item {
    /* 使用固定宽度替代百分比 */
    flex: 0 0 160px;
    padding: 0 4px; /* 左右各4px形成8px间隙 */
    min-width: 160px; /* 确保最小宽度 */
    /* 移除原有内边距 */
    padding: 0;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* transform: scale(1.1); */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
    position: absolute;
    top: 200px;
    margin-left: var(--page-body-padding);

}

.carousel-btn.next {
    right: 0;
    position: absolute;
    top: 200px;
    margin-right: var(--page-body-padding);

}

.max-h-500 {
    max-height: 500px;
}

.carousel-indicators {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.indicator.active {
    background: #4a6cf7;
    border-color: #4a6cf7;
}