
/* 导航项样式 */
.nav-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    position: relative;
}

/* 选中状态 - 上品团队 */
.nav-item.active {
    background-color: #00C08B; /* 绿色背景 */
}

.nav-item.active span {
    color: #fff; /* 保持文字为白色 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .nav-item {
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .nav-item {
        font-size: 14px;
        padding: 10px 0;
    }
}
/* PC端轮播 - 默认显示 */
.hero-slider-pc {
    position: relative;
    width: 100vw;
    max-width: none;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: block;
}

/* 手机端轮播 - 默认隐藏 */
.hero-slider-mobile {
    position: relative;
    width: 100vw;
    height: 40vh;
    overflow: hidden;
    background: #000;
    display: none;
}

/* 轮播包装器 */
.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

/* PC端幻灯片 */
.hero-slider-pc .slide {
    width: 100vw;
    height: 100vh;
}





/* PC端幻灯片背景容器 */
.hero-slider-pc .slide-bg {
    width: 100vw;
    height: 100vh;

    position: relative;
}

/* PC端幻灯片链接 */
.hero-slider-pc .slide-link {
    width: 100vw;
    height: 100vh;
    display: block;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slide-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



/* 横线分页器 */
.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
}

.pagination-line {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pagination-line:hover {
    background: rgba(255, 255, 255, 0.6);
}

.pagination-line.active {
    background: #fff;
    width: 70px;
}

/* 箭头导航 */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.slider-arrow svg {
    transition: transform 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow:hover svg {
    transform: scale(1.1);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

/* 鼠标悬停时显示箭头 */
.hero-slider-pc:hover .slider-arrow,
.hero-slider-mobile:hover .slider-arrow {
    opacity: 1;
}



/* 核心容器：五栏横向布局（桌面端） - 图片滑动效果 - 满屏显示 */
.services-container {
    display: flex;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

/* 服务板块链接样式 */
.service-item-link {
    text-decoration: none;
    flex: 1 1 20%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 鼠标悬停效果 - 变宽 */
.service-item-link:hover {
    flex: 2.5 1 50%;
    z-index: 10;
}

/* 单个服务板块内容 */
.service-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 服务板块图片 */
.service-item .service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

/* 鼠标悬停时图片放大 */
.service-item-link:hover .service-item .service-img {
    transform: scale(1.1);
}

/* 服务板块文字遮罩层 */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

/* 服务板块内容容器 - 居中显示 */
.service-item .content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 文字容器 */
.service-item .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* 中文主标题容器 */
.service-text-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

/* 第一行文字 */
.service-text-line1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 第二行文字 */
.service-text-line2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 鼠标悬停时第一行文字变大 */
.service-item-link:hover .service-text-line1 {
    font-size: 28px;
}

/* 鼠标悬停时第二行文字变大 */
.service-item-link:hover .service-text-line2 {
    font-size: 28px;
}

/* 图标样式 */
.service-item .icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    fill: #fff;
    transition: transform 0.5s ease;
}

/* 鼠标悬停时图标放大 */
.service-item-link:hover .service-item .icon-img {
    transform: scale(1.3);
}

/* 服务板块文字（保留用于兼容） */
.service-item .service-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 英文样式 */
.service-item .service-text-en {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 鼠标悬停时文字变大 */
.service-item-link:hover .service-item .service-text {
    font-size: 32px;
}

/* 鼠标悬停时英文文字变大 */
.service-item-link:hover .service-item .service-text-en {
    font-size: 15px;
}

/* 响应式适配（手机端：垂直布局+Hover变高） */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        height: auto;
        padding: 0;
        width: 100vw;
    }

    .service-item {
        flex: 1 1 100px;
        width: 100%;
        min-height: 100px;
    }

    .service-item:hover {
        flex: 2 1 200px;
    }

    .service-item .icon-img {
        width: 30px;
        height: 30px;
    }

    .service-item:hover .icon-img {
        transform: scale(1.2);
    }

    .service-item .service-text {
        font-size: 13px;
        white-space: normal;
    }

    .service-item:hover .service-text {
        font-size: 16px;
    }

    .service-item .service-text-en {
        font-size: 9px;
        white-space: normal;
    }

    .service-item:hover .service-text-en {
        font-size: 10px;
    }

    .service-text-line1,
    .service-text-line2 {
        font-size: 13px;
    }

    .service-item:hover .service-text-line1,
    .service-item:hover .service-text-line2 {
        font-size: 16px;
    }
}

/* 超小屏幕（小于480px） */
@media (max-width: 480px) {
    .services-container {
        padding: 5px 0;
    }

    .service-item {
        min-height: 80px;
    }

    .service-item .icon-img {
        width: 25px;
        height: 25px;
    }

    .service-item .service-text {
        font-size: 12px;
    }

    .service-item .service-text-en {
        font-size: 8px;
    }

    .service-text-line1,
    .service-text-line2 {
        font-size: 12px;
    }

    .content-wrapper {
        gap: 8px !important;
    }
}

/* 容器：居中+内边距 - 满屏显示 */
.portfolio-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100vw;
}

/* 行布局：控制列数与间距 */
.row {
    margin: 0;
    padding: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    flex: 1;
}

.row-two-col {
    display: flex;
    gap: 0;
    height: 100vh;
    width: 100%;
}

.row-two-col .card {
    flex: 1;
    height: 100%;
}

.row-one-col {
    width: 100%;
    height: 100vh;
}

.row-one-col .card {
    width: 100%;
    height: 100%;
}

/* 卡片基础样式：深色底+阴影 */
.card {
    position: relative;
    background-color: #1e1e1e;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}
.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* 图片适配：固定高度+比例裁剪 */
.row-two-col .card img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
    display: block;
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

.row-one-col .card img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
    display: block;
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

/* 标题通用样式：白色+抗锯齿 */
.card-title {
    position: absolute;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* 标题位置定制（匹配原图） */
.title-bottom-left {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    font-size: 14px;
}

.title-top-right {
    top: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
    font-size: 14px;
    text-align: right;
}

.title-bottom-left-nobg {
    bottom: 15px;
    left: 16px;
    font-size: 18px;
    font-weight: bold;
    background: transparent;
}

.title-bottom-left-large {
    bottom: 25px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

/* 响应式适配：手机端堆叠 */
@media (max-width: 768px) {
    .portfolio-wrap {
        height: auto;
    }

    .row {
        margin-bottom: 0;
    }

    .row-two-col {
        flex-direction: column;
        height: auto;
    }

    .row-two-col .card {
        height: 60vh;
        width: 100%;
    }

    .row-one-col {
        height: 60vh;
    }

    .row-one-col .card {
        height: 60vh;
        width: 100%;
    }

    .row-two-col .card img,
    .row-one-col .card img {
        height: 60vh;
        min-height: 60vh;
        width: 100%;
        object-fit: cover;
    }

    /* 减少各个板块的padding */
    .awards-section {
        padding: 15px 10px;
    }

    .advantage-wrap {
        padding: 10px 10px;
    }

    .clients-section {
        padding: 25px 10px;
    }

    .news-section {
        padding: 15px 10px;
    }

    .design-center-section {
        padding: 15px 10px;
    }
}

/* 响应式适配：更小屏幕 */
@media (max-width: 480px) {
    .portfolio-wrap {
        height: auto;
    }

    .row {
        margin-bottom: 0;
    }

    .row-two-col {
        flex-direction: column;
        height: auto;
    }

    .row-two-col .card {
        height: 50vh;
        width: 100%;
    }

    .row-one-col {
        height: 50vh;
    }

    .row-one-col .card {
        height: 50vh;
        width: 100%;
    }

    .row-two-col .card img,
    .row-one-col .card img {
        height: 50vh;
        min-height: 50vh;
        width: 100%;
        object-fit: cover;
    }

    /* 更小的padding */
    .awards-section {
        padding: 10px 8px;
    }

    .advantage-wrap {
        padding: 8px 8px;
    }

    .clients-section {
        padding: 10px 8px;
    }

    .news-section {
        padding: 10px 8px;
    }

    .design-center-section {
        padding: 10px 8px;
    }
}

.xiaoercms_container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 主横幅样式 - 满屏显示 */
.xiaoercms_banner {
    width:80%;
    background-color: #0d1520;
    border-radius: 0;
    padding: 60px 40px;
    margin-top:80px;
    position: relative;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height:10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 青绿色轮廓线 */
.xiaoercms_banner::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 14px;
    border: 2px solid #20c6b1;
    pointer-events: none;
}

/* 内容布局 */
.xiaoercms_banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo区域 */
.xiaoercms_logo-section {
    flex: 0 0 auto;
}

/* Logo图片样式 */
.xiaoercms_logo-section img {
    height: 60px;
    max-width: 250px;
    object-fit: contain;
}

.xiaoercms_logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.xiaoercms_logo span {
    color: #20c6b1;
}

/* 文本内容区域 */
.xiaoercms_text-section {
    flex: 1;
    min-width: 300px;
    color: white;
}

.xiaoercms_company-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.xiaoercms_company-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.xiaoercms_contact-hint {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
}

/* 按钮区域 */
.xiaoercms_button-section {
    flex: 0 0 auto;
}

.xiaoercms_contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #20c6b1;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(32, 198, 177, 0.3);
}

.xiaoercms_contact-btn:hover {
    background-color: #1ab3a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 198, 177, 0.4);
}

.xiaoercms_contact-btn:active {
    transform: translateY(0);
}

.xiaoercms_btn-text {
    margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .xiaoercms_banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .xiaoercms_button-section {
        align-self: flex-end;
    }

    .xiaoercms_banner {
        padding: 25px 30px;
    }

    /* 小屏幕Logo自适应 */
    .xiaoercms_logo-section img {
        height: 50px;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .xiaoercms_banner {
        padding: 20px 25px;
    }

    .xiaoercms_button-section {
        align-self: stretch;
    }

    .xiaoercms_contact-btn {
        display: flex;
        width: 100%;
    }

    /* 超小屏幕Logo自适应 */
    .xiaoercms_logo-section img {
        height: 40px;
        max-width: 160px;
    }
}

   

/* 标题样式 */
.xiaoercms_title {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

.xiaoercms_title span {
    color: #20c6b1;
    font-weight: 700;
}

/* 代码说明 */
.xiaoercms_code-note {
    background-color: #f8f9fa;
    border-left: 4px solid #20c6b1;
    padding: 15px;
    margin-top: 25px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #555;
}

.xiaoercms_code-note h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

/* 响应式适配：手机端垂直布局 */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    .contact-btn {
        align-self: flex-end;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 超小屏幕（手机）进一步优化 */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    .info {
        font-size: 11px;
    }
    .contact-btn {
        font-size: 12px;
        padding: 7px 14px;
    }
}

/* 主展示区域样式 */
.xiaoercms_awards-section {
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 主展示区域样式2 */
.xiaoercms_awards-section2 {
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 主展示区域样式3 */
.xiaoercms_awards-section3 {
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 主展示区域样式4 */
.xiaoercms_awards-section4 {
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 内容容器 */
.xiaoercms_awards-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* 中文文字样式 */
.xiaoercms_chinese-text {
    color: #fff;
    font-size: 68px;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* 半透明绿色英文背景 */
.xiaoercms_english-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: rgba(0, 255, 136, 0.15);
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .xiaoercms_awards-section {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .xiaoercms_awards-section2 {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .xiaoercms_awards-section3 {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .xiaoercms_awards-section4 {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .xiaoercms_chinese-text {
        font-size: 48px;
        letter-spacing: 6px;
    }

    .xiaoercms_english-bg {
        font-size: 60px;
        letter-spacing: 6px;
    }

    .awards-section {
        padding: 15px 10px;
    }

    .advantage-wrap {
        padding: 10px 10px;
    }

    .clients-section {
        padding: 15px 10px;
    }

    .news-section {
        padding: 15px 10px;
    }

    .design-center-section {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .xiaoercms_awards-section {
        padding: 10px 8px;
        margin-bottom: 8px;
    }

    .xiaoercms_awards-section2 {
        padding: 10px 8px;
        margin-bottom: 8px;
    }

    .xiaoercms_awards-section3 {
        padding: 10px 8px;
        margin-bottom: 8px;
    }

    .xiaoercms_awards-section4 {
        padding: 10px 8px;
        margin-bottom: 8px;
    }

    .awards-section {
        padding: 10px 8px;
    }

    .advantage-wrap {
        padding: 8px 8px;
    }

    .clients-section {
        padding: 10px 8px;
    }

    .news-section {
        padding: 10px 8px;
    }

    .design-center-section {
        padding: 10px 8px;
    }

    .xiaoercms_chinese-text {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .xiaoercms_english-bg {
        font-size: 60px;
        letter-spacing: 4px;
    }
}

/* 奖项模块容器：居中+内边距 - 满屏显示 */
.awards-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题区域：主标题+英文副标题 */
.awards-header {
    text-align: center;
    margin-bottom: 20px;
}
.main-title {
    font-size: 32px;
    color: #f5f5f5;
    font-weight: 800;
    letter-spacing: 1px;
}
.main-title .sub-title {
    font-size: 16px;
    color: #3CB69D;
    text-transform: uppercase;
    margin-left: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

/* 奖项列表：横向排列+滚动适配 */
.awards-list {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 20px 40px;
}

/* 单个奖项项：图标+数字+单位 */
.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* 奖项图标：统一高度+比例保持 */
.award-icon {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* 奖项图标2：统一高度+比例保持 */
.award-icon2 {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* 合作伙伴标题图片 */
.clients-title {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* 数字与单位容器：横向排列+基线对齐 */
.award-details {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

/* 奖项数字：大字体+绿色 */
.award-number {
    font-size: 48px;
    color: #3CB69D;
    font-weight: 700;
}

/* 奖项单位：小字体+同色系 */
.award-unit {
    font-size: 24px;
    color: #3CB69D;
    font-weight: 500;
}

/* 响应式适配：手机端优化 */
@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
    }
    .sub-title {
        font-size: 14px;
    }
    .awards-list {
        gap: 30px;
    }
    .award-icon {
        height: 35px;
    }
    .award-number {
        font-size: 22px;
    }
    .award-unit {
        font-size: 14px;
    }
}

/* 标题样式 */
.xiaoercms_title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: #00ff88;
    letter-spacing: 2px;
}

/* 设计理念主区域 */
.xiaoercms_design-concept {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 圆形容器区域 */
.xiaoercms_circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

/* 圆形容器内图片自适应 */
.xiaoercms_circles-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 加号连接 */
.xiaoercms_plus {
    color: #00ff88;
    font-size: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* 圆形样式 */
.xiaoercms_circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 3px solid #00ff88;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xiaoercms_circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

/* 圆形标题 */
.xiaoercms_circle-title {
    font-size: 26px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* 圆形描述文字 */
.xiaoercms_circle-desc {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 圆形底部文字 */
.xiaoercms_circle-bottom {
    font-size: 18px;
    font-weight: 600;
    color: #00ff88;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

/* 数据展示区域 */
.xiaoercms_stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    padding: 20px 30px;
    margin-top: 15px;
}

.xiaoercms_stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
}

/* PC端强制一行显示 - 提高优先级 */
@media (min-width: 992px) {
    .xiaoercms_stats {
        flex-wrap: nowrap !important;
        gap: 25px;
        padding: 20px 30px;
    }

    .xiaoercms_stat-item {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }
}

.xiaoercms_stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #3CB69D;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(60, 182, 157, 0.5);
}

.xiaoercms_stat-text {
    font-size: 16px;
    color: #eee;
}

/* 响应式设计 */
@media (min-width: 992px) {
    /* PC端强制一行显示 */
    .xiaoercms_stats {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1100px) {
    .xiaoercms_circles-container {
        flex-direction: column;
        gap: 40px;
    }

    .xiaoercms_plus {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .xiaoercms_circle {
        width: 320px;
        height: 320px;
        padding: 30px;
    }

    .xiaoercms_circle-title {
        font-size: 22px;
    }

    .xiaoercms_circle-desc {
        font-size: 15px;
    }

    /* 平板端统计两行显示 */
    .xiaoercms_stats {
        gap: 30px;
        padding: 20px 30px;
    }

    .xiaoercms_stat-item {
        min-width: 45%;
        max-width: 48%;
    }

    .xiaoercms_stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .xiaoercms_circle {
        width: 280px;
        height: 280px;
        padding: 25px;
    }

    .xiaoercms_circle-title {
        font-size: 20px;
    }

    .xiaoercms_circle-desc {
        font-size: 14px;
    }

    .xiaoercms_circle-bottom {
        font-size: 15px;
        bottom: 25px;
    }

    .xiaoercms_stats {
        flex-direction: column;
        gap: 25px;
    }

    .xiaoercms_stat-item {
        min-width: 100%;
    }

    /* 设计中心图片在手机端自适应 */
    .xiaoercms_design-centers img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    /* 圆形容器图片在手机端自适应 */
    .xiaoercms_circles-container img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* 动画效果 */
.xiaoercms_circle {
    animation: xiaoercms_floatIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.xiaoercms_circle:nth-child(1) {
    animation-delay: 0.2s;
}

.xiaoercms_circle:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes xiaoercms_floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xiaoercms_stat-item {
    animation: xiaoercms_fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.xiaoercms_stat-item:nth-child(1) { animation-delay: 0.7s; }
.xiaoercms_stat-item:nth-child(2) { animation-delay: 0.8s; }
.xiaoercms_stat-item:nth-child(3) { animation-delay: 0.9s; }
.xiaoercms_stat-item:nth-child(4) { animation-delay: 1.0s; }

@keyframes xiaoercms_fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 模块容器：居中+内边距 - 满屏显示 */
.advantage-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题区域：英文+中文层级 */
.title-group {
    text-align: center;
    margin-bottom: 20px;
}
.english-title {
    font-size: 24px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.chinese-title {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 核心优势：圆形卡片+加号 */
.core-advantages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}
.advantage-card {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #1e1e1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    position: relative;
}
/* 左侧卡片：绿色主题 */
.advantage-card.left {
    border: 3px solid #3CB69D;
}
.left .card-title {
    color: #3CB69D;
}
/* 右侧卡片：蓝色主题 */
.advantage-card.right {
    border: 3px solid #3498db;
}
.right .card-title {
    color: #3498db;
}
.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}
.card-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    max-width: 85%;
}
.plus-sign {
    font-size: 60px;
    color: #3CB69D;
    font-weight: bold;
    opacity: 0.8;
}

/* 数据统计：横向均匀分布 */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}
.stat-item {
    text-align: center;
    flex: 1;
}
.stat-number {
    font-size: 36px;
    color: #3CB69D;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: #aaa;
}

/* 底部说明：美化样式 */
.description {
    font-size: 14px;
    color: #999;
    line-height: 2;
    text-align: justify;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #3CB69D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 响应式适配：手机端垂直布局 */
@media (max-width: 768px) {
    .core-advantages {
        flex-direction: column;
        gap: 20px;
    }
    .advantage-card {
        width: 220px;
        height: 220px;
    }
    .plus-sign {
        font-size: 32px;
        margin: 10px 0;
    }
    .stats-bar {
        flex-direction: column;
        gap: 20px;
        border: none;
        padding: 0;
    }
    .english-title {
        font-size: 20px;
    }
    .chinese-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .advantage-card {
        width: 180px;
        height: 180px;
        padding: 15px;
    }
    .card-title {
        font-size: 16px;
    }
    .card-desc {
        font-size: 11px;
    }
    .stat-number {
        font-size: 26px;
    }
}

/* 客户模块容器：深色背景+背景装饰+居中 - 满屏显示 */
.clients-section {
    position: relative;
    background-color: #1A1A1A;
    background-image: url('../images/kehubj.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 背景装饰（可选：产品模糊轮廓） */
.clients-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    opacity: 0.08;
    z-index: 0;
}

/* 标题区域：英文+中文层级 */
.clients-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 15px;
}
.clients-title-en {
    font-size: 22px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.clients-title-cn {
    font-size: 38px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Logo网格：响应式多列布局 */
.clients-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 25px;
    align-items: center;
    justify-items: center;
}

/* 单个Logo项：居中容器 */
.clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    transition: background-color 0.3s ease;
}
.clients-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

/* Logo样式：统一白色+灰度处理 */
.clients-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3);
}

/* 新增：clients-logos 样式 */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.client-logo-item {
    width: 150px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.client-logo-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.client-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3);
    transition: filter 0.3s ease;
}

/* 鼠标悬停时显示原色 */
.client-logo-item:hover .client-logo {
    filter: grayscale(0%) brightness(1);
}

/* 响应式适配：手机端优化 */
@media (max-width: 768px) {
    .clients-title-cn {
        font-size: 30px;
    }
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 18px;
    }
    .clients-item {
        height: 60px;
    }
    
    /* 手机端 clients-logos 调整 */
    .clients-logos {
        gap: 15px;
    }
    
    .client-logo-item {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-title-cn {
        font-size: 24px;
    }
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 12px;
    }
    .clients-item {
        height: 50px;
    }
    
    /* 小屏幕 clients-logos 调整 */
    .clients-logos {
        gap: 10px;
    }
    
    .client-logo-item {
        width: 100px;
        height: 50px;
    }
}

/* 新闻模块容器：深色背景+内边距+居中 - 满屏显示 */
.news-section {
    background-color: #1A1A1A;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题区域：主标题+英文副标题 */
.news-header {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}
.news-title {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}
.news-subtitle {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

/* 新闻三列布局容器 */
.news-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* 单列容器 */
.news-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 第一条：大图+标题+描述 */
.news-item-main {
    background-color: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-item-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.news-img-main {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.news-content-main {
    padding: 20px;
}

/* 列表项：左图右文 */
.news-item-list {
    display: flex;
    gap: 15px;
    background-color: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    padding: 15px;
    transition: all 0.3s ease;
}

.news-item-list:hover {
    background-color: #2a2a2a;
    transform: translateX(5px);
}

.news-img-small {
    flex: 0 0 100px;
    display: block;
}

.news-img-small img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.news-content-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-title-small {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-title-small a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-title-small a:hover {
    color: #3CB69D;
}

.news-item-desc-small {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 保留原有的新闻网格样式（用于兼容） */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 新闻卡片：深色背景+阴影+圆角 */
.news-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* 新闻图片：固定高度+比例保持 */
.news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* 新闻内容容器：内边距+文字层级 */
.news-content {
    padding: 25px;
}

/* 新闻标签：小标题+深灰背景 */
.news-tag {
    font-size: 12px;
    color: #888;
    background-color: #222;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: inline-block;
}

/* 新闻主标题：白色+加粗 */
.news-item-title {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-item-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-item-title a:hover {
    color: #3CB69D;
}

/* 新闻描述：浅灰+小字体 */
.news-item-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式适配：平板/手机端调整布局 */
@media (max-width: 992px) {
    .news-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .news-columns {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-title {
        font-size: 28px;
    }
    .news-subtitle {
        font-size: 14px;
        bottom: -8px;
    }
    .news-img {
        height: 180px;
    }
    .news-img-main {
        height: 200px;
    }
    .news-item-list {
        flex-direction: column;
        gap: 12px;
    }
    .news-img-small {
        flex: none;
        width: 100%;
    }
    .news-img-small img {
        width: 100%;
        height: 160px;
    }
    .news-content {
        padding: 20px;
    }

    /* 设计中心图片在平板端自适应 */
    .xiaoercms_design-centers img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    /* 圆形容器图片在平板端自适应 */
    .xiaoercms_circles-container img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* 设计中心模块容器 - 满屏显示 */
.design-center-section {
    background-color: #1A1A1A;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题区域：英文背景字+中文主标题 */
.title-group {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}
.english-bg-text {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: 900;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.15;
    z-index: 1;
}
.chinese-main-title {
    position: relative;
    z-index: 2;
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

/* 标题区域 */
.xiaoercms_header {
    text-align: center;
    margin-bottom: 50px;
}

.xiaoercms_main-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.xiaoercms_subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

/* 设计中心展示区 */
.xiaoercms_design-centers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    width: 100%;
}

/* 设计中心内图片自适应 */
.xiaoercms_design-centers img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 单个设计中心卡片 */
.xiaoercms_center-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xiaoercms_center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* 城市建筑背景 */
.xiaoercms_city-bg {
    height: 120px;
    position: relative;
    overflow: hidden;
}

/* 不同城市的渐变背景 */
.xiaoercms_bj-bg {
    background: linear-gradient(90deg, #ff9a00 0%, #ffcc33 100%);
}

.xiaoercms_sh-bg {
    background: linear-gradient(90deg, #1e90ff 0%, #63b8ff 100%);
}

.xiaoercms_sz-bg {
    background: linear-gradient(90deg, #34c759 0%, #5cd85a 100%);
}

.xiaoercms_hz-bg {
    background: linear-gradient(90deg, #ff2d55 0%, #ff7f7f 100%);
}

/* 城市建筑剪影 */
.xiaoercms_buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.7;
}

.xiaoercms_bj-buildings {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><rect x="5" y="20" width="8" height="20" fill="%23000"/><rect x="15" y="10" width="8" height="30" fill="%23000"/><rect x="25" y="5" width="8" height="35" fill="%23000"/><rect x="35" y="15" width="8" height="25" fill="%23000"/><rect x="45" y="8" width="8" height="32" fill="%23000"/><rect x="55" y="18" width="8" height="22" fill="%23000"/><rect x="65" y="12" width="8" height="28" fill="%23000"/><rect x="75" y="22" width="8" height="18" fill="%23000"/><rect x="85" y="10" width="8" height="30" fill="%23000"/></svg>');
}

.xiaoercms_sh-buildings {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><rect x="10" y="15" width="10" height="25" fill="%23000"/><rect x="25" y="5" width="12" height="35" fill="%23000"/><rect x="42" y="20" width="8" height="20" fill="%23000"/><rect x="55" y="10" width="10" height="30" fill="%23000"/><rect x="70" y="25" width="8" height="15" fill="%23000"/><rect x="82" y="15" width="8" height="25" fill="%23000"/></svg>');
}

.xiaoercms_sz-buildings {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><rect x="8" y="20" width="8" height="20" fill="%23000"/><rect x="20" y="10" width="10" height="30" fill="%23000"/><rect x="35" y="18" width="8" height="22" fill="%23000"/><rect x="48" y="8" width="8" height="32" fill="%23000"/><rect x="60" y="15" width="10" height="25" fill="%23000"/><rect x="75" y="22" width="8" height="18" fill="%23000"/><rect x="88" y="12" width="8" height="28" fill="%23000"/></svg>');
}

.xiaoercms_hz-buildings {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40"><rect x="5" y="15" width="10" height="25" fill="%23000"/><rect x="20" y="8" width="8" height="32" fill="%23000"/><rect x="33" y="20" width="8" height="20" fill="%23000"/><rect x="46" y="10" width="10" height="30" fill="%23000"/><rect x="61" y="18" width="8" height="22" fill="%23000"/><rect x="74" y="5" width="8" height="35" fill="%23000"/><rect x="87" y="15" width="8" height="25" fill="%23000"/></svg>');
}

/* 卡片内容区 */
.xiaoercms_card-content {
    padding: 25px 20px 30px;
}

/* 城市名称 */
.xiaoercms_city-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* 不同城市颜色 */
.xiaoercms_bj-color {
    color: #ff9500;
}

.xiaoercms_sh-color {
    color: #1e90ff;
}

.xiaoercms_sz-color {
    color: #34c759;
}

.xiaoercms_hz-color {
    color: #ff2d55;
}

/* 设计中心标题 */
.xiaoercms_design-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* 地址区域 */
.xiaoercms_address {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.xiaoercms_address-line {
    margin-bottom: 8px;
}

/* 机器人图片 */
.swiper-slide .robot-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    object-fit: cover !important;
}
