/* 公共样式 - 基础样式 */

/* 加载本地 WOFF2 字体 */
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('/src/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 文字先用备用字体显示，字体加载完再替换，避免闪白 */
}
@font-face {
    font-family: 'Alibaba-PuHuiTi-R';
    src: url('/src/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 文字先用备用字体显示，字体加载完再替换，避免闪白 */
}
@font-face {
    font-family: 'Alibaba-PuHuiTi-M';
    src: url('/src/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 文字先用备用字体显示，字体加载完再替换，避免闪白 */
}
@font-face {
    font-family: 'Alibaba-PuHuiTi-B';
    src: url('/src/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 文字先用备用字体显示，字体加载完再替换，避免闪白 */
}

body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
    padding: 0;
    max-width: 1920px;
    margin: 0 auto !important;
}

input {
    background-color: transparent;
    border: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.main-container {
    overflow: hidden;
}

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

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

.justify-start {
    display: flex;
    justify-content: flex-start;
}

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

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

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

.align-start {
    display: flex;
    align-items: flex-start;
}

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

.align-end {
    display: flex;
    align-items: flex-end;
}





/* index.css */

.slider-section {
    height: 1080px;
    background: url(./index/img/index-slider1.jpg) 0px 0px no-repeat;
    background-size: 1920px 1080px;
    max-width: 1920px;
    transition: background-image 0.8s ease-in-out, opacity 0.6s ease-in-out;
    position: relative;
}

.header-section {
    height: 98px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header-section.flex-col {
    overflow: hidden;
}

.header-section.submenu-active {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: auto;
}

.navigation-bar {
    width: 100%;
    max-width: 1618px;
    height: 58px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* 二级菜单显示时，navigation-bar的下边缘线 */
.header-section.submenu-active .navigation-bar::after {
    content: none;
}

/* 导航与二级菜单之间的占位条 */
.nav-submenu-spacer {
    display: none;
    height: 36px;
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
}

.header-section.submenu-active .nav-submenu-spacer {
    display: block;
}

.logo-image {
    width: 491px;
    height: 47px;
    flex-shrink: 0;
}

.header-nav-text {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.header-nav-text:hover {
    opacity: 0.8;
}

/* 二级菜单激活时的文字颜色 */
.header-section.submenu-active .header-nav-text {
    color: rgba(51, 51, 51, 1);
}

.header-section.submenu-active .header-nav-text:hover {
    opacity: 1;
}

.nav-text-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
    height: 100%;
    min-height: 58px;
}

/* 导航项容器 */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 58px;
}

/* 导航文本的悬停效果 */
.nav-item:hover .header-nav-text {
    color: rgba(229, 116, 22, 1);
    transform: translateY(-2px);
}

.nav-item.active .header-nav-text {
    color: #E47318;
}

/* 二级菜单激活时的悬停效果 */
.header-section.submenu-active .nav-item:hover .header-nav-text {
    color: #E47318;
    transform: translateY(-2px);
}

.header-section.submenu-active .nav-item.active .header-nav-text {
    color: #E47318;
}

/* 二级菜单容器（占位条下方，正常文档流，不与占位条重叠） */
.submenu-container {
    position: relative;
    width: 1618px;
    max-width: 1618px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.submenu-container.show {
    opacity: 1;
    visibility: visible;
}

/* 二级菜单内容 */
.submenu-content {
    display: none;
    padding: 30px 20px;
}

.submenu-content.active {
    display: block;
}

/* 非业务领域菜单的特殊定位 */
.submenu-content:not(#submenu-business) {
    position: relative;
}

.submenu-content:not(#submenu-business) .submenu-wrapper {
    position: relative;
    max-width: none;
    margin: 0;
}

/* 为不同的二级菜单固定左右位置，避免使用JS计算 */
.align-about .submenu-wrapper {
    left: 395px;
}

.align-innovation .submenu-wrapper {
    left: 800px;
}

.align-news .submenu-wrapper {
    left: 950px;
}

.align-contact .submenu-wrapper {
    left: 1110px;
}


/* 二级菜单包装器 */
.submenu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 业务领域特殊布局 */
.business-submenu {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding-left: 195px;
}

/* 二级菜单列 */
.submenu-column {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    min-width: 120px;
    width: 120px;
}

/* 二级菜单分类标题 */
.submenu-category {
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    white-space: nowrap;
    text-decoration: none;
}

/* 二级菜单项样式 */
.submenu-item {
    display: block;
    padding: 6px 0;
    color: rgba(51, 51, 51, 1);
    text-decoration: none;
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-bottom: none;
    position: relative;
    white-space: nowrap;
    margin-bottom: 2px;
}

.submenu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.submenu-item:hover {
    color: #E47318;
    background-color: transparent;
    padding-left: 8px;
}

.submenu-item.active {
    color: #E47318;
    background-color: transparent;
    font-weight: 500;
}

/* 单列菜单项样式 - 横向排列，样式与分类标题一致 */
.submenu-wrapper:not(.business-submenu) {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
}

.submenu-wrapper:not(.business-submenu) .submenu-item {
    padding: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submenu-wrapper:not(.business-submenu) .submenu-item:hover {
    color: #E47318;
    padding-left: 0;
    transform: translateY(-1px);
}

.submenu-wrapper:not(.business-submenu) .submenu-item.active {
    color: #E47318;
    font-weight: 500;
}

/* 响应式设计 - 移动端适配 */
@media (max-width: 768px) {
    .submenu-container {
        position: fixed;
        top: 98px;
        left: 0;
        right: 0;
        transform: none;
    }

    .submenu-content:not(#submenu-business) .submenu-wrapper {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .business-submenu {
        flex-direction: column;
        gap: 20px;
    }

    .submenu-column {
        min-width: auto;
    }

    .submenu-category {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .submenu-wrapper:not(.business-submenu) {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .submenu-wrapper:not(.business-submenu) .submenu-item {
        font-size: 16px;
    }

    .nav-text-container {
        gap: 40px;
    }
}


.search-container {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex-shrink: 0;
}

.search-input-row {
    display: flex;
    align-items: center;
}

.search-input {
    height: 31px;
    background: url(./index/img/48cf93979a571371ac0186ab1367569b.png) 0px 0px no-repeat;
    background-size: 240.5px 30.5937px;
    width: 240px;
    flex-shrink: 0;
    border: none;
    outline: none;
    padding: 9px 0 0 16px;
    color: rgba(51, 51, 51, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 22px;
}

.search-input::placeholder {
    color: rgba(153, 153, 153, 1);
}

.search-options {
    width: 164px;
    height: 14px;
    margin-left: 16px;
    flex-shrink: 0;
    display: none;
}

.search-option-product {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 18px;
}

.search-option-news {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 18px;
}

/* 二级菜单显示时，搜索选项文案改为黑色 */
.header-section.submenu-active .search-option-product,
.header-section.submenu-active .search-option-news {
    color: rgba(51, 51, 51, 1);
}

.hero-image-wrapper {
    width: 209px;
    height: 60px;
    margin: 307px 0 0 855px;
}

.hero-image {
    width: 209px;
    height: 60px;
}

.hero-title-wrapper {
    width: 937px;
    height: 46px;
    margin: 40px 0 0 492px;
}

.hero-title {
    width: 937px;
    height: 46px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-indicators {
    width: 94px;
    height: 5px;
    margin: 0px auto;
    margin-top: 550px;
}

.indicator-dot {
    width: 28px;
    height: 5px;
}

.indicator-dot {
    width: 28px;
    height: 5px;
    margin-left: 5px;
}

.indicator-dot {
    width: 28px;
    height: 5px;
    margin-left: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.indicator-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.indicator-dot.active {
    transform: scale(1.2);
}

.search-button {
    height: 31px;
    background: url(./index/img/463d8515e4dbf37569d3dfb92177e28d.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 52px;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
}

.search-button:hover {
    opacity: 0.8;
}

.search-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-background {
    width: 1920px;
    height: 1080px;
    margin-top: 1px;
}

.innovation-section {
    position: relative;
    width: 1920px;
    height: 2168px;
}

.innovation-icon-wrapper {
    width: 31px;
    height: 8px;
    margin: 317px 0 0 1270px;
}

.innovation-icon {
    width: 31px;
    height: 8px;
}

.innovation-title-wrapper {
    width: 162px;
    height: 40px;
    margin: 20px 0 0 1267px;
}

.innovation-title {
    width: 162px;
    height: 40px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 42px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
}

.innovation-subtitle-wrapper {
    width: 263px;
    height: 29px;
    margin: 33px 0 0 1268px;
}

.innovation-subtitle {
    width: 263px;
    height: 29px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
}

.innovation-description-wrapper {
    width: 514px;
    height: 169px;
    margin: 75px 0 0 1268px;
}

.innovation-description {
    width: 514px;
    height: 169px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 34px;
}

.innovation-description p,
.journal-description p {
    margin: 0;
}

.innovation-description p+p,
.journal-description p+p {
    margin-top: 10px;
}

.innovation-button-wrapper {
    width: 191px;
    height: 54px;
    margin: 80px 0 0 1268px;
}

.innovation-button {
    background-color: rgba(229, 116, 22, 1);
    border-radius: 27px;
    height: 54px;
    width: 191px;
}

.innovation-button-text {
    width: 77px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 10px 0 0 58px;
}

.innovation-content {
    width: 1788px;
    height: 1083px;
    margin: 262px 0 2px 132px;
}

.journal-section {
    width: 516px;
    height: 505px;
    margin-top: 323px;
}

.journal-icon-container {
    height: 8px;
    width: 31px;
}

.journal-icon {
    width: 31px;
    height: 8px;
}

.journal-title {
    width: 162px;
    height: 39px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 42px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin-top: 18px;
}

.journal-subtitle {
    width: 263px;
    height: 29px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 33px 0 0 1px;
}

.journal-description {
    width: 514px;
    height: 169px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 34px;
    margin: 75px 0 0 2px;
}

.journal-button {
    background-color: rgba(229, 116, 22, 1);
    border-radius: 27px;
    height: 54px;
    width: 191px;
    margin: 80px 0 0 2px;
}

.journal-button-text {
    width: 77px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 10px 0 0 58px;
}

.innovation-background {
    width: 1180px;
    height: 1083px;
}

.innovation-overlay {
    position: absolute;
    left: 0px;
    top: -1px;
    width: 1181px;
    height: 1089px;
}

.history-section {
    display: none;
    position: relative;
    width: 1918px;
    height: 1080px;
    background: url(./index/img/index-history-bg.jpg) 0px 0px no-repeat;
    background-size: 1918.06125px 1079.6200000000008px;
    margin: -1px 0 0 1px;
}

.history-icon-container {
    width: 47px;
    margin: 107px 0 0 140px;
}

.history-icon {
    width: 31px;
    height: 8px;
}

.history-header {
    width: 1642px;
    height: 43px;
    margin: 18px 0 0 136px;
}

.history-title {
    width: 169px;
    height: 39px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 42px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 51px;
}

.history-more {
    width: 92px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 20px 0 0 1341px;
}

.history-arrow {
    width: 19px;
    height: 19px;
    margin: 22px 0 0 21px;
}

.history-timeline {
    width: 1573px;
    margin: 148px 0 0 0;
}

.timeline-period-1 {
    width: 111px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin-top: 1px;
}

.timeline-period-2 {
    width: 111px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin: 1px 0 0 177px;
}

.timeline-period-3 {
    width: 112px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin: 1px 0 0 185px;
}

.timeline-period-4 {
    width: 113px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin: 1px 0 0 178px;
}

.timeline-period-5 {
    width: 112px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin: 1px 0 0 180px;
}

.timeline-current-period {
    width: 108px;
    height: 23px;
    overflow-wrap: break-word;
    font-size: 0;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin-left: 186px;
}

.timeline-current-start {
    width: 108px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
}

.timeline-current-end {
    width: 108px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
}

.timeline-line-container {
    height: 2px;
    background: url(./index/img/3e5f823f0b5b1951ee4c1151ddf9eb74.png) 0px 0px no-repeat;
    background-size: 1660.09px 2px;
    width: 1660px;
    margin: 28px 0 0 129px;
}

.timeline-line {
    width: 189px;
    height: 2px;
}

.timeline-labels {
    width: 1605px;
    height: 23px;
    margin: 29px 0 0 154px;
}

.timeline-label-1 {
    width: 141px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
}

.timeline-label-2 {
    width: 141px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 148px;
}

.timeline-label-3 {
    width: 139px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 156px;
}

.timeline-label-4 {
    width: 140px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 151px;
}

.timeline-label-5 {
    width: 141px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 151px;
}

.timeline-label-6 {
    width: 140px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 157px;
}

.history-detail {
    width: 1640px;
    height: 393px;
    margin: 112px 0 146px 137px;
}

.history-detail-icon-left {
    width: 44px;
    height: 48px;
    margin-top: 180px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.history-detail-content {
    background: linear-gradient(180deg, rgba(229, 116, 22, 0) 0%, rgba(229, 116, 22, 0.2) 30%, rgba(229, 116, 22, 0.4) 60%, rgba(229, 116, 22, 0.6) 100%);
    width: 1328px;
    height: 393px;
    margin-left: 118px;
}

.history-detail-image {
    width: 440px;
    height: 329px;
    margin: 10px 0 0 90px;
    transition: opacity 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.history-detail-text {
    width: 494px;
    margin: 20px 0px 0 131px;
    transition: opacity 0.3s ease;
}

.history-detail-period {
    width: 165px;
    /*height: 26px;*/
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 35px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 78px;
    margin-left: 1px;
}

.history-detail-title {
    width: 141px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-top: 10px;
}

.history-detail-description {
    width: 493px;
    height: 158px;
    overflow: hidden;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 23px;
    margin: 19px 0 0 1px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.history-detail-icon-right {
    width: 44px;
    height: 48px;
    margin: 180px 0 0 106px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeline-marker-1 {
    position: absolute;
    left: 211px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.timeline-marker-2 {
    position: absolute;
    left: 503px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.timeline-marker-3 {
    position: absolute;
    left: 796px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.timeline-marker-4 {
    position: absolute;
    left: 1088px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.timeline-marker-5 {
    position: absolute;
    left: 1381px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.timeline-marker-6 {
    position: absolute;
    left: 1673px;
    top: 359px;
    width: 27px;
    height: 28px;
}

.news-section {
    width: 1920px;
    margin-bottom: 60px;
}

.news-icon-container {
    height: 8px;
    background: url(./index/img/e4c17194793fba15c51bc37ec2b0d2fe.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 31px;
    margin: 93px 0 0 140px;
}

.news-header {
    width: 1639px;
    height: 40px;
    margin: 18px 0 0 138px;
}

.news-title {
    width: 171px;
    height: 40px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 42px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 51px;
}

.news-more {
    width: 92px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 23px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 3px 0 0 1335px;
}

.news-arrow {
    width: 19px;
    height: 20px;
    margin: 5px 0 0 22px;
}

.news-content {
    width: 1647px;
    /*height: 556px;*/
    margin: 68px 0 0 141px;
}

.index-news-content-list {
    margin: 0px auto;
}

.news-image-container {
    background-color: rgba(31, 81, 230, 1);
    width: 621px;
    height: 556px;
}

.news-list {
    width: 963px;
    height: 457px;
    margin-top: 42px;
}

.news-item-title-1 {
    width: 509px;
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-left: 3px;
}

.news-item-content-1 {
    width: 948px;
    height: 68px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 34px;
    margin: 20px 0 0 3px;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-content-1,
.news-item-content-2 {
    font-weight: 400;
}

.news-item-footer-1 {
    width: 940px;
    height: 31px;
    margin: 43px 0 0 1px;
}

.news-item-date-1 {
    width: 130px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
}

.news-item-read-more-1 {
    width: 123px;
    height: 24px;
    margin-top: 7px;
}

.news-item-read-text-1 {
    width: 92px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
}

.news-item-arrow-1 {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.news-item-divider {
    width: 963px;
    height: 1px;
    margin-top: 39px;
}

.news-item-title-2 {
    width: 509px;
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 53px 0 0 3px;
}

.news-item-content-2 {
    width: 948px;
    height: 68px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 34px;
    margin: 20px 0 0 3px;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-footer-2 {
    width: 940px;
    height: 31px;
    margin: 43px 0 0 1px;
}

.news-item-date-2 {
    width: 130px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
}

.news-item-read-more-2 {
    width: 123px;
    height: 24px;
    margin-top: 7px;
}

.news-item-read-text-2 {
    width: 92px;
    height: 23px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
}

.news-item-arrow-2 {
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.news-decoration {
    width: 65px;
    height: 65px;
    margin: 35px 0 0 1723px;
}

.footer-section {
    width: 100%;
    height: 650px;
    background: url(./index/img/footer-bg.jpg) 0px 0px no-repeat;
    background-size: 1920px 651px;
}

.footer-links {
    width: 1656px;
    height: 73px;
    margin: 94px 0 0 130px;
}

.footer-logo {
    width: 111px;
    height: 73px;
}

.footer-link-group-1 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 64px;
}

.footer-link-title-1 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-subtitle-1 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.footer-link-group-2 {
    width: 58px;
    height: 50px;
    margin: 8px 0 0 101px;
}

.footer-link-title-2 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-subtitle-2 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 20px 0 0 2px;
}

.footer-link-group-3 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 100px;
}

.footer-link-title-3 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-subtitle-3 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.footer-link-group-4 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 101px;
}

.footer-link-title-4 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-subtitle-4 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.footer-link-group-5 {
    width: 56px;
    height: 50px;
    margin: 8px 0 0 102px;
}

.footer-link-title-5 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-subtitle-5 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 20px;
}

.footer-dropdown {
    width: 240px;
    height: 56px;
}

.footer-dropdown-title {
    width: 135px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-left: 16px;
}

.footer-dropdown-select {
    width: 228px;
    height: 31px;
    background: url(./index/img/59d30f67646820b24e2a2064029b927c.png) 0px 0px no-repeat;
    background-size: 240.5px 30.659999999999854px;
    margin-top: 12px;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.footer-dropdown-select option {
    padding-left: 15px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-dropdown-placeholder {
    width: 153px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 10px 0 0 16px;
}

.footer-dropdown-arrow {
    width: 12px;
    height: 6px;
    margin: 14px 22px 0 37px;
}

.footer-dropdown-button {
    height: 31px;
    background: url(./index/img/4fb011a5bf770b5da2487105c2b64f6e.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 52px;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.footer-dropdown-button:hover {
    opacity: 0.8;
}


.footer-links-row-1 {
    width: 686px;
    height: 15px;
    margin-left: 305px;
}

.footer-link-1 {
    width: 70px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    text-decoration: underline;
}

.footer-link-2 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 89px;
}

.footer-link-3 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 100px;
}

.footer-link-4 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 101px;
}

.footer-link-5 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 102px;
}

.footer-links-row-2 {
    width: 1272px;
    height: 16px;
    margin: 15px 0 0 305px;
}

.footer-link-6 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 1px;
}

.footer-link-7 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 103px;
}

.footer-link-8 {
    width: 54px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 2px 0 0 1003px;
}

.footer-links-row-3 {
    width: 1482px;
    height: 31px;
    margin: 12px 0 0 305px;
}

.footer-link-9 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 3px;
}

.footer-link-10 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 3px 0 0 103px;
}

.footer-company-name {
    height: 31px;
    background: url(./index/img/24cfb31bf12a9f12e3e7c7152bd3c29e.png) 100% no-repeat;
    background-size: 100% 100%;
    margin-left: 987px;
    width: 280px;
}

.footer-company-text {
    width: 237px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    text-decoration: none;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 7px 0 0 21px;
}

.footer-links-row-4 {
    width: 1482px;
    height: 76px;
    margin: 2px 0 0 305px;
}

.footer-links-column-1 {
    width: 56px;
    height: 75px;
}

.footer-link-11 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-12 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.footer-link-13 {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.footer-links-column-2 {
    width: 56px;
    height: 46px;
    margin-left: 103px;
}

.footer-link-14 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.footer-link-15 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.footer-links-column-3 {
    width: 280px;
    height: 70px;
    margin: 6px 0 0 987px;
}

.footer-input-1 {
    height: 31px;
    background: url(./index/img/26c7d2beece54db63f3633d8dde44b19.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 280px;
}

.footer-input-text-1 {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    text-decoration: none;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 7px 0 0 21px;
}

.footer-input-2 {
    height: 31px;
    background: url(./index/img/24cfb31bf12a9f12e3e7c7152bd3c29e.png) 100% no-repeat;
    background-size: 100% 100%;
    margin-top: 8px;
    width: 280px;
}

.footer-input-text-2 {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    text-decoration: none;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 7px 0 0 21px;
}

.footer-culture-symbol {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 16px 0 0 305px;
}

.footer-divider {
    background-color: rgba(217, 217, 217, 1);
    width: 1659px;
    height: 1px;
    margin: 111px 0 0 131px;
}

.footer-copyright {
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 36px;
    margin: 50px 0 100px 0px;
}

.business-section {
    height: 1081px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    transition: background-image 0.8s ease-in-out, opacity 0.6s ease-in-out;
}

.business-background {
    width: 1920px;
    height: 1080px;
}

.business-overlay {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 1917px;
    height: 1080px;
}

.business-content {
    width: 100%;
    max-width: 1918px;
    height: 1080px;
    background: url(./index/img/1.智慧城市@2x.jpg) -2px 0px no-repeat;
    background-size: 1919.99625px 1079.9999999999998px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    transition: background-image 0.8s ease-in-out, opacity 0.6s ease-in-out;
}

.business-module {
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.business-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.business-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: url(./index/img/21baf2b3fa15478371949266a6d51eae.png) center center no-repeat;
    background-size: cover;
}

.business-module:hover .business-item {
    opacity: 0;
    visibility: hidden;
}

.business-module:hover .business-item-content {
    opacity: 1;
    visibility: visible;
}

.business-icon {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-top: 200px;
}

.business-title {
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 30px;
    margin-top: 15px;
}

.business-content-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 110px;
    margin-bottom: 50px;
}

.business-content-icon {
    /*width: 40px;
    height: 40px;*/
    object-fit: contain;
    margin-bottom: 10px;
}

.business-content-title {
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 35px;
}

.business-content-item {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 25px;
    margin: 0;
    padding: 12px 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.business-content-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.business-content-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 1);
}

.business-content-button {
    width: 195px;
    margin-top: 95px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-content-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.business-content-button-text {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 20px;
}

.business-content-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-top: 95px;
}

.history-timeline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 135px;
    padding-right: 135px;
}

.timeline-period-container {
    width: 16.666%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-period-year {
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    width: 100%;
    padding-bottom: 8px;
}

.timeline-period-title {
    color: rgba(149, 115, 86, 1);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 52px;
    margin-top: 30px;
}

.timeline-marker {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.business-item-1 {
    width: 279px;
    height: 292px;
    margin: 196px 0 0 57px;
}

.business-icon-1 {
    width: 279px;
    height: 252px;
}

.business-title-1 {
    width: 107px;
    height: 27px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 13px 0 0 86px;
}

.business-main {
    position: relative;
    width: 100%;
    max-width: 1152px;
    height: 1081px;
    background: url(./index/img/2caf05268d4fd7fdbc43bf72747764ee.png) 100% no-repeat;
    background-size: 100% 100%;
    margin: 1px auto 0;
}

.business-energy {
    width: 386px;
    height: 1080px;
    background: url(./index/img/21baf2b3fa15478371949266a6d51eae.png) 0px 0px no-repeat;
    background-size: 386.313px 1080.4700000000003px;
    margin: 2px 0 0 -2px;
}

.business-energy-header {
    width: 109px;
    height: 70px;
    margin: 215px 0 0 142px;
}

.business-energy-icon {
    width: 25px;
    height: 27px;
    margin-left: 41px;
}

.business-energy-title {
    width: 109px;
    height: 27px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-top: 16px;
}

.business-energy-line-1 {
    width: 157px;
    height: 1px;
    margin: 49px 0 0 117px;
}

.business-energy-item-1 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 156px;
}

.business-energy-line-2 {
    width: 157px;
    height: 1px;
    margin: 12px 0 0 117px;
}

.business-energy-item-2 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 156px;
}

.business-energy-line-3 {
    width: 157px;
    height: 1px;
    margin: 12px 0 0 117px;
}

.business-energy-item-3 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 10px 0 0 156px;
}

.business-energy-line-4 {
    width: 157px;
    height: 1px;
    margin: 12px 0 0 117px;
}

.business-energy-item-4 {
    width: 78px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 155px;
}

.business-energy-line-5 {
    width: 157px;
    height: 1px;
    margin: 12px 0 0 117px;
}

.business-energy-item-5 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 12px 0 0 155px;
}

.business-energy-line-6 {
    width: 157px;
    height: 1px;
    margin: 12px 0 0 117px;
}

.business-energy-button {
    border-radius: 27px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 1);
    width: 195px;
    margin: 55px 0 0 98px;
}

.business-energy-button-text {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 20px 0 0 60px;
}

.business-energy-image {
    width: 242px;
    height: 237px;
    margin: 92px 0 88px 73px;
}

.business-item-2 {
    width: 255px;
    height: 272px;
    margin: 215px 68px 0 445px;
}

.business-icon-2 {
    width: 255px;
    height: 234px;
}

.business-title-2 {
    width: 109px;
    height: 27px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 73px;
}

.business-item-3 {
    position: absolute;
    left: 526px;
    top: 236px;
    width: 319px;
    height: 251px;
}

.business-item-3-content {
    width: 214px;
    height: 204px;
    margin-left: 105px;
}

.business-title-3 {
    width: 109px;
    height: 27px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-top: 20px;
}

.business-item-3-image {
    position: absolute;
    left: 434px;
    top: 231px;
    width: 284px;
    height: 206px;
}

.business-item-3-overlay {
    background-color: rgba(22, 208, 255, 0.15);
    position: absolute;
    left: 828px;
    top: 214px;
    width: 257px;
    height: 236px;
    border: 1px dashed rgba(54, 153, 255, 1);
}

.business-item-4 {
    width: 230px;
    height: 269px;
    margin: 219px 79px 0 73px;
}

.business-icon-4 {
    width: 230px;
    height: 228px;
}

.business-title-4 {
    width: 109px;
    height: 27px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 14px 0 0 56px;
}


/*about.css*/
/* 公司介绍内容区域 */
.about-content-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 背景图包装器 */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

/* 确保背景图容器有固定高度 */
.about-content-section .banner-content-bg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

/* banner-content-container整体居于banner-content-bg上方，并且贴着banner-content-bg底部 */
.banner-content-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.banner-content-container.hidden {
    display: none;
}
/* banner-content-title左右顺序排列，宽度固定为216px */
.banner-content-title {
    width: 216px;
    height: 53px;
    background-color: rgba(92, 66, 44, 0.6);
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    text-decoration: none;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    line-height: 53px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-content-title:hover {
    background-color: rgba(92, 66, 44, 0.8);
    transform: translateY(-2px);
}

.banner-content-title.active {
    background-color: rgba(229, 116, 22, 1);
}

/* 背景图 */
.banner-content-bg {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* 背景图上的文字 */
.banner-content-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    height: 45px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
}

.banner-content-bg-text-english {
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}
/* 内容容器样式 */
.about-content-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* 公司简介部分样式 */
.company-intro-section {
    width: 90%;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}

.intro-header {
    margin-bottom: 20px;
    justify-content: flex-start;
}

.intro-icon-wrapper {
    width: auto;
    display: flex;
    justify-content: flex-start;
}

.intro-icon {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
}

.intro-title-wrapper {
    margin-bottom: 30px;
    justify-content: flex-start;
}

.intro-title {
    /*width: 170px;*/
    height: 40px;
    font-family: Alibaba-PuHuiTi;
    font-weight: bold;
    font-size: 42px;
    color: #000000;
    line-height: 51px;
    text-align: left;
}

.intro-content {
    gap: 30px;
    align-items: flex-start;
}

.intro-description {
    width: 700px;
    height: 570px;
    font-family: Alibaba-PuHuiTi;
    font-weight: 400;
    font-size: 22px;
    color: #333333;
    line-height: 39px;
    text-align: justify;
    overflow-y: auto;
    padding-right: 10px;
}

.intro-description p {
    margin: 0px;
    text-indent: 45px;
    margin-bottom: 10px;
}

/* 自定义滚动条样式 */
.intro-description::-webkit-scrollbar {
    width: 3px;
}

.intro-description::-webkit-scrollbar-track {
    background: transparent;
}

.intro-description::-webkit-scrollbar-thumb {
    background-color: rgba(229, 116, 22, 1);
    border-radius: 2px;
}

.intro-description::-webkit-scrollbar-thumb:hover {
    background-color: rgba(229, 116, 22, 0.8);
}

.intro-spacer {
    width: 20px;
}

.spacer-box {
    width: 100%;
    height: 20px;
}

.intro-image {
    width: auto;
    height: auto;
    margin-top: 10px;
    object-fit: contain;
}

/* 科技成果部分样式 */
.achievements-section {
    width: 100%;
    min-height: 950px;
    background: url(/src/images/科技成果@2x.jpg) center center no-repeat;
    background-size: cover;
    padding: 80px 20px;
    align-items: center;
}

.achievements-header {
    width: 90%;
    align-items: flex-start;
}

.achievements-icon-wrapper {
    margin-bottom: 20px;
}

.achievements-icon {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
}

.achievements-title {
    font-size: 48px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    margin-bottom: 10px;
}

.achievements-subtitle {
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    margin-bottom: 40px;
}

.achievements-icons {
    width: 100%;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: flex-start;
    margin-top: 180px;
}

.achievement-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievement-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.achievements-stats {
    width: 100%;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

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

.stat-item-second {
    margin-top: -25px;
}

.stat-description {
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    color: rgba(255, 255, 255, 1);
    line-height: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.stat-prefix {
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.stat-number {
    font-size: 48px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.stat-unit {
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner-content-bg-text {
        font-size: 36px;
        line-height: 50px;
    }

    .banner-content-title {
        font-size: 20px;
        line-height: 26px;
    }

    .banner-content-container {
        padding: 30px 15px;
        gap: 15px;
    }

    .company-intro-section {
        padding: 40px 15px;
    }

    .intro-content {
        flex-direction: column;
        gap: 20px;
    }

    .intro-image {
        max-width: 100%;
        height: auto;
    }

    .achievements-title {
        font-size: 36px;
    }

    .achievements-subtitle {
        font-size: 20px;
    }

    .achievements-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-items-group {
        flex-direction: column;
        gap: 20px;
    }
}

/* 组织架构页面样式 - 添加.structure-content-container父类限定 */
.structure-content-container .page {
    position: relative;
    width: 1920px;
    height: 2262px;
    overflow: hidden;
}

.structure-content-container .box_1 {
    width: 1920px;
    height: 2262px;
    background: url(./img/17ea0e3e9484c271c2ee55ff258fb346.png) 100% no-repeat;
    background-size: 100% 100%;
}

.structure-content-container .box_2 {
    background-image: linear-gradient(180deg, rgba(229, 236, 247, 1) 0, rgba(229, 236, 247, 1) 0, rgba(200, 215, 237, 1) 59.643555%, rgba(162, 186, 223, 1) 100%, rgba(162, 186, 223, 1) 100%);
    height: 769px;
    width: 1920px;
}

.structure-content-container .box_3 {
    background-image: linear-gradient(rgba(229, 116, 22, 0.7) 0, rgba(229, 116, 22, 0.7) 0, rgba(229, 116, 22, 0.7) 100%, rgba(229, 116, 22, 0.7) 100%);
    height: 769px;
    width: 1920px;
}

.structure-content-container .box_6 {
    height: 768px;
    background: url(./img/7adfffd417a020257852bf6683ec7cd9.png) 0px -1px no-repeat;
    background-size: 1920px 769px;
    margin-top: 1px;
    width: 1920px;
}

.structure-content-container .section_4 {
    width: 1658px;
    height: 58px;
    margin: 41px 0 0 132px;
}

.structure-content-container .image_1 {
    width: 491px;
    height: 47px;
    margin-top: 1px;
}

.structure-content-container .text_1 {
    width: 68px;
    height: 17px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 17px 0 0 133px;
}

.structure-content-container .text_2 {
    width: 69px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 15px 0 0 66px;
}

.structure-content-container .text_3 {
    width: 70px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 16px 0 0 65px;
}

.structure-content-container .text_4 {
    width: 70px;
    height: 17px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 17px 0 0 65px;
}

.structure-content-container .text_5 {
    width: 69px;
    height: 17px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 16px 0 0 65px;
}

.structure-content-container .group_14 {
    width: 240px;
    height: 58px;
    margin-left: 147px;
}

.structure-content-container .text-wrapper_1 {
    height: 31px;
    background: url(./img/7f6eb6d71a88332d48c6000b2a4d4126.png) -1px 0px no-repeat;
    background-size: 242px 31px;
    width: 240px;
}

.structure-content-container .text_6 {
    width: 137px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 16px;
}

.structure-content-container .text-wrapper_47 {
    width: 164px;
    height: 14px;
    margin: 13px 0 0 16px;
}

.structure-content-container .text_7 {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_8 {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .image-wrapper_1 {
    height: 31px;
    background: url(./img/6357e49b592dcfb99492f9b5f2cdd3a0.png) -1px 0px no-repeat;
    background-size: 53px 32px;
    margin-left: -12px;
    width: 52px;
}

.structure-content-container .thumbnail_1 {
    width: 15px;
    height: 15px;
    margin: 9px 0 0 19px;
}

.structure-content-container .text-wrapper_48 {
    width: 191px;
    height: 45px;
    margin: 213px 0 0 863px;
}

.structure-content-container .text_9 {
    width: 191px;
    height: 45px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
}

.structure-content-container .section_5 {
    width: 1518px;
    height: 53px;
    margin: 358px 0 0 201px;
}

.structure-content-container .text-wrapper_4 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    width: 216px;
}

.structure-content-container .text_10 {
    width: 70px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 20px 0 0 73px;
}

.structure-content-container .text-wrapper_5 {
    background-color: rgba(229, 116, 22, 1);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_11 {
    width: 64px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 21px 0 0 73px;
}

.structure-content-container .text-wrapper_6 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_12 {
    width: 65px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 21px 0 0 73px;
}

.structure-content-container .text-wrapper_7 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_13 {
    width: 65px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 20px 0 0 73px;
}

.structure-content-container .text-wrapper_8 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_14 {
    width: 63px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 20px 0 0 75px;
}

.structure-content-container .text-wrapper_9 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_15 {
    width: 65px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 21px 0 0 75px;
}

.structure-content-container .text-wrapper_10 {
    background-color: rgba(92, 66, 44, 0.6);
    height: 53px;
    margin-left: 1px;
    width: 216px;
}

.structure-content-container .text_16 {
    width: 65px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 69px;
    margin: 21px 0 0 75px;
}

.structure-content-container .box_7 {
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}

.structure-content-container .group_2 {
    height: 540px;
    background: url(/src/images/structure-bg.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 1550px;
    margin: 142px 0 0 156px;
}

.structure-content-container .block_5 {
    width: 179px;
    height: 37px;
    margin: 42px 0 0 713px;
}

.structure-content-container .text-wrapper_49 {
    height: 37px;
    background: url(/src/images/structure-text-bg2.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 179px;
}

.structure-content-container .text_17 {
    width: 64px;
    height: 22px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 0px 0 0 61px;
}

.structure-content-container .block_6 {
    width: 582px;
    height: 37px;
    margin: 19px 0 0 510px;
}

.structure-content-container .text-wrapper_12 {
    height: 37px;
    background: url(/src/images/structure-text-bg2.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 179px;
}

.structure-content-container .text_18 {
    width: 64px;
    height: 22px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 0px 0 0 58px;
}

.structure-content-container .text-wrapper_13 {
    height: 37px;
    background: url(/src/images/structure-text-bg2.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 179px;
}

.structure-content-container .text_19 {
    width: 107px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 0px 0 0 37px;
}

.structure-content-container .block_7 {
    width: 179px;
    height: 37px;
    margin: 18px 0 0 713px;
}

.structure-content-container .text-wrapper_14 {
    height: 37px;
    background: url(/src/images/structure-text-bg2.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 179px;
}

.structure-content-container .text_20 {
    width: 42px;
    height: 21px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 0px 0 0 72px;
}

.structure-content-container .block_8 {
    width: 736px;
    height: 36px;
    margin: 62px 0 0 437px;
}

.structure-content-container .section_6 {
    width: 736px;
    height: 36px;
}

.structure-content-container .text-wrapper_15 {
    background-color: rgba(229, 116, 22, 1);
    height: 36px;
    width: 202px;
}

.structure-content-container .text_21 {
    width: 177px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 14px;
}

.structure-content-container .text-wrapper_16 {
    background-color: rgba(229, 116, 22, 1);
    height: 36px;
    margin-left: 65px;
    width: 202px;
}

.structure-content-container .text_22 {
    width: 117px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 44px;
}

.structure-content-container .text-wrapper_17 {
    background-color: rgba(229, 116, 22, 1);
    height: 36px;
    margin-left: 65px;
    width: 202px;
}

.structure-content-container .text_23 {
    width: 117px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 42px;
}

.structure-content-container .block_9 {
    width: 1197px;
    height: 36px;
    margin: 101px 0 0 264px;
}

.structure-content-container .text-wrapper_18 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    width: 298px;
}

.structure-content-container .text_24 {
    width: 253px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 26px;
}

.structure-content-container .text-wrapper_19 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    margin-left: 227px;
    width: 202px;
}

.structure-content-container .text_25 {
    width: 157px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 22px;
}

.structure-content-container .text-wrapper_20 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    margin-left: 137px;
    width: 161px;
}

.structure-content-container .text_26 {
    width: 137px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 13px;
}

.structure-content-container .text-wrapper_21 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    margin-left: 11px;
    width: 161px;
}

.structure-content-container .text_27 {
    width: 137px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 12px;
}

.structure-content-container .block_10 {
    width: 1240px;
    height: 36px;
    margin: 35px 0 44px 49px;
}

.structure-content-container .text-wrapper_22 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 127px;
}

.structure-content-container .text_28 {
    width: 76px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
}

.structure-content-container .text-wrapper_23 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 26px;
    width: 135px;
}

.structure-content-container .text_29 {
    width: 115px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 10px;
}

.structure-content-container .text-wrapper_24 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 13px;
    width: 135px;
}

.structure-content-container .text_30 {
    width: 115px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 12px;
}

.structure-content-container .text-wrapper_25 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 12px;
    width: 127px;
}

.structure-content-container .text_31 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 25px;
}

.structure-content-container .text-wrapper_26 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 52px;
    width: 135px;
}

.structure-content-container .text_32 {
    width: 115px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 10px;
}

.structure-content-container .text-wrapper_27 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 9px;
    width: 135px;
}

.structure-content-container .text_33 {
    width: 115px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 10px;
}

.structure-content-container .text-wrapper_28 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 9px;
    width: 135px;
}

.structure-content-container .text_34 {
    width: 118px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 9px;
}

.structure-content-container .text-wrapper_29 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 55px;
    width: 135px;
}

.structure-content-container .text_35 {
    width: 115px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 10px;
}

.structure-content-container .group_10 {
    background-color: rgba(229, 116, 22, 1);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    margin: 71px 0 0 1722px;
}

.structure-content-container .image-text_2 {
    width: 36px;
    height: 34px;
    margin: 16px 0 0 14px;
}

.structure-content-container .image_2 {
    width: 27px;
    height: 14px;
    margin-left: 5px;
}

.structure-content-container .text-group_1 {
    width: 36px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-family: 301-CAI978;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 52px;
    margin-top: 5px;
}

.structure-content-container .group_11 {
    background-color: rgba(30, 30, 30, 1);
    width: 1920px;
    height: 651px;
    margin: 23px 0 2px 0;
}

.structure-content-container .block_11 {
    width: 1656px;
    height: 73px;
    margin: 95px 0 0 129px;
}

.structure-content-container .image_3 {
    width: 111px;
    height: 73px;
}

.structure-content-container .text-wrapper_50 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 64px;
}

.structure-content-container .text_36 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_37 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.structure-content-container .text-wrapper_51 {
    width: 58px;
    height: 50px;
    margin: 8px 0 0 101px;
}

.structure-content-container .text_38 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_39 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 20px 0 0 2px;
}

.structure-content-container .text-wrapper_52 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 100px;
}

.structure-content-container .text_40 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_41 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.structure-content-container .text-wrapper_53 {
    width: 56px;
    height: 49px;
    margin: 9px 0 0 101px;
}

.structure-content-container .text_42 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_43 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 19px;
}

.structure-content-container .text-wrapper_54 {
    width: 56px;
    height: 50px;
    margin: 8px 0 0 102px;
}

.structure-content-container .text_44 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_45 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 20px;
}

.structure-content-container .group_15 {
    width: 240px;
    height: 56px;
    margin: 10px 0 0 515px;
}

.structure-content-container .text_46 {
    width: 135px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-left: 16px;
}

.structure-content-container .group_12 {
    width: 240px;
    height: 31px;
    background: url(./img/921ab60a6cb651caef8a26a8a4df87f9.png) 0px 0px no-repeat;
    background-size: 241px 31px;
    margin-top: 12px;
}

.structure-content-container .text_47 {
    width: 153px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 10px 0 0 16px;
}

.structure-content-container .thumbnail_2 {
    width: 12px;
    height: 6px;
    margin: 14px 22px 0 37px;
}

.structure-content-container .image-wrapper_2 {
    height: 31px;
    background: url(./img/2e4935eeaf3dcb05b03ebc4202a51852.png) 0px 0px no-repeat;
    background-size: 53px 31px;
    width: 52px;
    margin: 35px 0 0 -12px;
}

.structure-content-container .thumbnail_3 {
    width: 14px;
    height: 13px;
    margin: 11px 0 0 21px;
}

.structure-content-container .text-wrapper_55 {
    width: 686px;
    height: 15px;
    margin-left: 304px;
}

.structure-content-container .text_48 {
    width: 70px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_49 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 89px;
}

.structure-content-container .text_50 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 100px;
}

.structure-content-container .text_51 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 101px;
}

.structure-content-container .text_52 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 102px;
}

.structure-content-container .text-wrapper_56 {
    width: 1272px;
    height: 16px;
    margin: 15px 0 0 304px;
}

.structure-content-container .text_53 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 1px;
}

.structure-content-container .text_54 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-left: 103px;
}

.structure-content-container .text_55 {
    width: 54px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 2px 0 0 1003px;
}

.structure-content-container .block_12 {
    width: 1482px;
    height: 31px;
    margin: 12px 0 0 304px;
}

.structure-content-container .text_56 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 3px;
}

.structure-content-container .text_57 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 3px 0 0 103px;
}

.structure-content-container .text-wrapper_37 {
    height: 31px;
    background: url(./img/e21ab40323d6c887f8b53bf1f6338a7b.png) 0px 0px no-repeat;
    background-size: 281px 32px;
    margin-left: 987px;
    width: 280px;
}

.structure-content-container .text_58 {
    width: 237px;
    height: 13px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 10px 0 0 21px;
}

.structure-content-container .block_13 {
    width: 1482px;
    height: 76px;
    margin: 2px 0 0 304px;
}

.structure-content-container .text-wrapper_57 {
    width: 56px;
    height: 75px;
}

.structure-content-container .text_59 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_60 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.structure-content-container .text_61 {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.structure-content-container .text-wrapper_58 {
    width: 56px;
    height: 46px;
    margin-left: 103px;
}

.structure-content-container .text_62 {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
}

.structure-content-container .text_63 {
    width: 56px;
    height: 16px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-top: 15px;
}

.structure-content-container .box_8 {
    width: 280px;
    height: 70px;
    margin: 6px 0 0 987px;
}

.structure-content-container .text-wrapper_40 {
    height: 31px;
    background: url(./img/a751eb7334f9c9286bb02632dbc0de8c.png) 0px 0px no-repeat;
    background-size: 281px 32px;
    width: 280px;
}

.structure-content-container .text_64 {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 21px;
}

.structure-content-container .text-wrapper_41 {
    height: 31px;
    background: url(/src/images/structure-text-bg2.png) 0px 0px no-repeat;
    background-size: 281px 32px;
    margin-top: 8px;
    width: 280px;
}

.structure-content-container .text_65 {
    width: 55px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-L;
    font-weight: 300;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 9px 0 0 21px;
}

.structure-content-container .text_66 {
    width: 56px;
    height: 14px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin: 16px 0 0 304px;
}

.structure-content-container .block_4 {
    background-color: rgba(217, 217, 217, 1);
    width: 1659px;
    height: 1px;
    margin: 111px 0 0 130px;
}

.structure-content-container .text_67 {
    width: 871px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin: 58px 0 101px 514px;
}

.structure-content-container .text-wrapper_59 {
    height: 85px;
    background: url(/src/images/structure-text-bg.png) 0px 0px no-repeat;
    background-size: 485px 85px;
    width: 484px;
    position: absolute;
    left: 717px;
    top: 72px;
}

.structure-content-container .text_68 {
    width: 365px;
    height: 22px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 25px 0 0 55px;
}

.structure-content-container .text-wrapper_43 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    width: 202px;
    position: absolute;
    left: 130px;
    top: 531px;
}

.structure-content-container .text_69 {
    width: 137px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 32px;
}

.structure-content-container .text-wrapper_44 {
    background-color: rgba(251, 215, 167, 1);
    height: 36px;
    width: 161px;
    position: absolute;
    left: 1627px;
    top: 531px;
}

.structure-content-container .text_70 {
    width: 136px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 9px 0 0 12px;
}

.structure-content-container .text-wrapper_45 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 175px;
    position: absolute;
    left: 1647px;
    top: 602px;
}

.structure-content-container .text_71 {
    width: 155px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 10px;
}

.structure-content-container .text-wrapper_46 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 127px;
    position: absolute;
    left: 205px;
    top: 664px;
}

.structure-content-container .text_72 {
    width: 77px;
    height: 19px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
}

/* 领导关怀 */
.leadership-content-container {
    width: 1450px;
    margin-bottom: 40px;
}

.leadership-content-body-item-image {
    width: 100%;
    max-width: 695px;
    height: 466px;
    object-fit: cover;
}

.leadership-content-container .leadership-content-header {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    margin: 80px 0 50px 0;
}

.leadership-content-container .leadership-content-body-item-text {
    width: 100%;
    max-width: 691px;
    min-height: 56px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 21px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    margin: 10px 0 10px 5px;
}

/* 领导关怀内容主体容器 - 每行显示2个项目 */
.leadership-content-container .leadership-content-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.leadership-content-container .leadership-content-body-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 10px);
}

/* 奇数个（第1、3、5...个）居左 */
.leadership-content-container .leadership-content-body-item:nth-child(odd) {
    align-items: flex-start;
}

/* 偶数个（第2、4、6...个）居右 */
.leadership-content-container .leadership-content-body-item:nth-child(even) {
    align-items: flex-end;
}

/*企业文化*/
.culture-content-container {
    width: 90%;
    margin-top: 70px;
    margin-bottom: 40px;
}

.culture-content-container .culture-content-body-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.culture-content-container .culture-content-body-item-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.culture-content-container .culture-content-body-item-image {
    width: 995px;
    height: 390px;
    object-fit: cover;
    flex-shrink: 0;
}

.culture-content-container .culture-content-body-item-title {
    width: auto;
    min-width: 147px;
    height: auto;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
}

.culture-content-container .culture-content-body-item-text {
    width: auto;
    height: auto;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    white-space: normal;
    line-height: 1.4;
    margin-top: 16px;
}

.culture-content-body-list-item {
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(229, 116, 22, 1);
    margin-bottom: 45px;
    min-height: 230px;
}

.culture-content-body-list-item-left {
    width: 730px;
    height: 135px;
    margin: 48px 0 0 28px;
}

.culture-content-body-list-item-left-title {
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    margin-left: 55px;
}

.culture-content-body-list-item-left-text {
    width: 731px;
    height: 89px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    white-space: nowrap;
    line-height: 21px;
    background: url(/src/images/culture-bg1.png) 0px 0px no-repeat;
    background-size: 731px 89px;
    line-height: 89px;
    margin-top: 18px;
    padding-left: 55px;
}

.culture-content-body-list-item-right {
    width: 735px;
    overflow-wrap: break-word;
    font-size: 22px;
    margin: 50px 26px 50px 22px;
    font-family: Alibaba PuHuiTi;
    color: #333333;
    line-height: 33px;
}

.culture-content-body-list-item-right p {
    margin: 0px;
    margin-bottom: 5px;
}

.culture-content-body-list-item-right span {
    color: rgba(229, 116, 22, 1);
}

/* 文化符号*/
.symbols-content-container {
    width: 90%;
    margin-top: 80px;
    margin-bottom: 130px;
}

.symbols-content-container .symbols-content-title {
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
}

.symbols-content-container .symbols-content-text {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
}

.symbols-content-container .symbols-content-image {
    width: 100%;
    height: 548px;
    /*  background-image: 
    linear-gradient(to right, #e0e0e0 1px, transparent 1px),
    linear-gradient(to bottom, #e0e0e0 1px, transparent 1px);*/
    background-size: 20px 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbols-content-container .symbols-content-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 历史沿革*/
.history-content-container {
    width: 90%;
    margin-top: 80px;
    margin-bottom: 130px;
}

.history-content-container .history-content-body {
    width: 100%;
    height: 100%;
}

.history-content-container .timeline-period-year {
    border-bottom: 1px solid rgba(170, 170, 170, 1);
    color: rgba(170, 170, 170, 1) !important;
}

.history-content-container .timeline-period-title {
    color: rgba(170, 170, 170, 1) !important;
    font-weight: normal !important;
}

.history-content-container .history-timeline {
    padding: 0px !important;
    margin: 0px !important;
}

.history-content-container .history-content-body-item-title {
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 28px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.history-content-container .history-content-body-item-content-text-year {
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 54px;
    font-family: DINPro-Bold;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 119px;
}

.history-content-container .history-content-body-item-content-text {
    width: 50%;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 38px;
}

.history-content-body-item-content-image {
    width: 50%;
}

.history-content-container .history-content-body-item-content-image span {
    display: flex;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: left;
    white-space: nowrap;
    line-height: 32px;
}

.history-content-body-item {
    width: 1340px;
    margin: 0px auto;
}

.history-content-body-item-content {
    margin-top: 10px;
    display: flex;
}

/* 历史沿革内容样式 - 偶数个第一层级子div的左边距和背景格子 */
.history-content-body-item-content>div:nth-child(even) {
    padding-left: 20px;
    position: relative;
    overflow: hidden;
}

.history-content-body-item-content>div:nth-child(even)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 5px;
    background-color: rgba(229, 116, 22, 1);
    box-shadow: 0 15px 0 0 #e0e0e0, 0 30px 0 0 #e0e0e0, 0 45px 0 0 #e0e0e0, 0 60px 0 0 #e0e0e0, 0 75px 0 0 #e0e0e0, 0 90px 0 0 #e0e0e0, 0 105px 0 0 #e0e0e0, 0 120px 0 0 #e0e0e0, 0 135px 0 0 #e0e0e0, 0 150px 0 0 #e0e0e0, 0 165px 0 0 #e0e0e0, 0 180px 0 0 #e0e0e0, 0 195px 0 0 #e0e0e0, 0 210px 0 0 #e0e0e0, 0 225px 0 0 #e0e0e0, 0 240px 0 0 #e0e0e0, 0 255px 0 0 #e0e0e0, 0 270px 0 0 #e0e0e0, 0 285px 0 0 #e0e0e0, 0 300px 0 0 #e0e0e0, 0 315px 0 0 #e0e0e0, 0 330px 0 0 #e0e0e0, 0 345px 0 0 #e0e0e0, 0 360px 0 0 #e0e0e0, 0 375px 0 0 #e0e0e0, 0 390px 0 0 #e0e0e0, 0 405px 0 0 #e0e0e0, 0 420px 0 0 #e0e0e0, 0 435px 0 0 #e0e0e0, 0 450px 0 0 #e0e0e0, 0 465px 0 0 #e0e0e0, 0 480px 0 0 #e0e0e0, 0 495px 0 0 #e0e0e0, 0 510px 0 0 #e0e0e0, 0 525px 0 0 #e0e0e0, 0 540px 0 0 #e0e0e0, 0 555px 0 0 #e0e0e0, 0 570px 0 0 #e0e0e0, 0 585px 0 0 #e0e0e0, 0 600px 0 0 #e0e0e0, 0 615px 0 0 #e0e0e0, 0 630px 0 0 #e0e0e0, 0 645px 0 0 #e0e0e0, 0 660px 0 0 #e0e0e0, 0 675px 0 0 #e0e0e0, 0 690px 0 0 #e0e0e0, 0 705px 0 0 #e0e0e0, 0 720px 0 0 #e0e0e0, 0 735px 0 0 #e0e0e0, 0 750px 0 0 #e0e0e0, 0 765px 0 0 #e0e0e0, 0 780px 0 0 #e0e0e0, 0 795px 0 0 #e0e0e0, 0 810px 0 0 #e0e0e0, 0 825px 0 0 #e0e0e0, 0 840px 0 0 #e0e0e0, 0 855px 0 0 #e0e0e0, 0 870px 0 0 #e0e0e0, 0 885px 0 0 #e0e0e0, 0 900px 0 0 #e0e0e0, 0 915px 0 0 #e0e0e0, 0 930px 0 0 #e0e0e0, 0 945px 0 0 #e0e0e0, 0 960px 0 0 #e0e0e0, 0 975px 0 0 #e0e0e0, 0 990px 0 0 #e0e0e0, 0 1005px 0 0 #e0e0e0, 0 1020px 0 0 #e0e0e0, 0 1035px 0 0 #e0e0e0;
}

.history-content-body-item-content-image img {
    max-width: 100%;
    padding-right: 20px;
}

.history-content-body-item-content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-content-body-item-content-text-year {
    display: flex;
    align-items: flex-end;
}

.history-content-body-item-content-text-year span {
    font-size: 24px;
    font-weight: 500;
    padding-left: 10px;
    line-height: 130px;
}

.history-content-body-item-content-text>div {
    text-align: justify;
    padding-right: 5px;
}

.history-content-body-item-content-text p {
    margin: 0;
    text-indent: 45px;
    margin-bottom: 10px;
}

/* 电科荣誉*/
.honor-content-container {
    width: 90%;
    margin-top: 80px;
    margin-bottom: 130px;
}

/* 业务领域-智慧城市 */
.smartcity-traffic-content-container {
    width: 90%;
    margin-top: 40px;
    margin-bottom: 130px;
}

.smartcity-traffic-content-body-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.smartcity-traffic-content-body-item>span {
    width: 55%;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 38px;
    text-align: justify;
}

.smartcity-traffic-content-body-item>span,
.water-content-body-content-item-detail {
    text-indent: 45px;
}

.smartcity-traffic-content-body-item>img {
    max-width: 45%;
    height: auto;
    object-fit: contain;
}

/* 解决方案标题与选项 */
.intro-title-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.intro-item-link {
    overflow-wrap: break-word;
    color: rgba(153, 153, 153, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    text-decoration: none;
    margin-right: 50px;
    padding-bottom: 5px;
}

    .intro-item-link.active {
        color: rgba(229, 116, 22, 1);
        border-bottom: 3px solid #E57416;
    }

.display-none {
    display: none !important;
}

/* 智慧城市-智慧园区 */
.smartcity-park-content-container {
    width: 90%;
    margin-top: 80px;
    margin-bottom: 130px;
}

/* 智慧园区 - 详情卡片布局与样式 */
.park-content-body-item-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 26px;
    /* 上下、左右间距30px */
    width: 1492px;
    margin: 0px auto;
    position: relative;
    /* 为背景图覆盖层定位 */
}

.park-content-body-item-detail-item {
    box-sizing: border-box;
    width: 731px;
    height: 384px;
    display: grid;
    /* 使用网格：左图右文（标题在上，列表在下） */
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 24px;
    align-items: start;
    position: relative;
    /* 为背景图覆盖层定位 */
}

/* 背景色：第1和第4个为#F7F7F7；第2和第3个为#F1F2F6 */
.park-content-body-item-detail-item:nth-child(1),
.park-content-body-item-detail-item:nth-child(4) {
    background: #F7F7F7;
}

.park-content-body-item-detail-item:nth-child(2),
.park-content-body-item-detail-item:nth-child(3) {
    background: #F1F2F6;
}

/* 背景图作为覆盖层图片，绝对定位在容器上方 */
.park-content-body-item-detail::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -2px;
    width: 100%;
    height: 100%;
    background-image: url('/src/product/img/smartcity-park-bg1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    /* 按原图大小显示 */
    pointer-events: none;
    /* 不阻挡鼠标事件 */
    z-index: 1;
    /* 确保在卡片上方 */
}

.park-content-body-item-detail-item-nav {
    grid-column: 1;
    grid-row: 1 / span 2;
    /* 左侧图片跨两行 */
    padding-left: 160px;
    padding-top: 40px;
}

/* 第2个和第4个卡片的图片特殊样式 */
.park-content-body-item-detail-item:nth-child(2) .park-content-body-item-detail-item-nav,
.park-content-body-item-detail-item:nth-child(4) .park-content-body-item-detail-item-nav {
    padding-left: 210px;
}

/* 右侧文字区域容器（标题+列表上下排列） */
.park-content-body-item-detail-item-title {
    display: block;
    grid-column: 2;
    grid-row: 1;
}

.park-content-body-item-detail-item-list {
    display: block;
    grid-column: 2;
    grid-row: 2;
}

.park-content-body-item-detail-item-title {
    font-family: Alibaba-PuHuiTi-R;
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    line-height: 41px;
    margin-bottom: 12px;
    padding-top: 40px;
}

.park-content-body-item-detail-item-list {
    font-family: Alibaba-PuHuiTi-R;
    font-weight: 400;
    font-size: 24px;
    color: #333333;
    line-height: 28px;
}

/* 列表项纵向依次排列，并带有小正方形标识 */
.park-content-body-item-detail-item-list>span {
    display: block;
    position: relative;
    padding-left: 16px;
    /* 给更小方块留出空间 */
    margin-top: 8px;
}

.park-content-body-item-detail-item-list>span:first-child {
    margin-top: 0;
}

.park-content-body-item-detail-item-list>span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    /* 垂直微调，使6px方块大致居中 */
    width: 4px;
    height: 4px;
    background: #E57416;
}

/* 两列排布通过固定宽度与gap实现，无需额外规则 */

/* park-content-body-function 样式 */
.park-content-body-function {
    width: 100vw;
    height: 708px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url('/src/product/img/smartcity-park-bg2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
}

.park-content-body-function-title {
    font-family: Alibaba PuHuiTi;
    font-weight: 500;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 41px;
    padding-top: 110px;
    padding-bottom: 60px;
    text-align: center;
    margin-top: 100px;
}

/* 内部内容容器宽度限制并居中 */
.park-content-body-function-title,
.park-content-body-function-list {
    max-width: 1661px;
    margin-left: auto;
    margin-right: auto;
}

.park-content-body-function-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.park-content-body-function-list-item {
    width: 265px;
    height: 372px;
    border: 1px solid #FFFFFF;
    font-family: Alibaba PuHuiTi;
    font-weight: 300;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 34px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    position: relative;
    text-align: justify;
}

.park-content-body-function-list-item b {
    text-align: left;
    display: block;
    margin-bottom: 60px;
    font-size: 30px;
    font-weight: 700;
}

/* =========================
   智慧园区 - 园区服务区块样式（作用域限定）
   仅添加 .park-content-body-service 下实际使用到的类
   ========================= */
.product-case-menu {
    background-color: rgba(247, 247, 247, 1);
    width: 550px;
    height: 150px;
    cursor: pointer;
    color: rgba(102, 102, 102, 1) ;
}
.product-case-menu.active {
    background-color: rgba(229, 116, 22, 1);
    color:white;
}
.product-park-case-detail {
    display: none;
}
.product-park-case-detail.active {
    display:block;
}
.product-case-menu-sort {
    width: 26px;
    height: 19px;
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 47px 0 0 18px;
    overflow-wrap: break-word;
}
.product-case-menu-title {
    height: 69px;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    line-height: 40px;
    margin: 42px 117px 0 35px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_53 {
    width: 1661px;
    height: 263px;
    margin: 102px 0 0 0px;
}

.park-content-body-service .text-wrapper_9 {
    background-color: rgba(229, 116, 22, 1);
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
}

.park-content-body-service .text_27 {
    width: 115px;
    height: 29px;
    color: #fff;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 117px 0 0 44px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_17 {
    background-color: #fff;
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 1432px;
}

.park-content-body-service .image-wrapper_2 {
    width: 1313px;
    height: 204px;
    margin: 30px 0 0 58px;
}

.park-content-body-service .group_16-0 {
    width: 306px;
    height: 202px;
    margin: 1px 30px 0 0;
}

.park-content-body-service .group_16-1 {
    width: 306px;
    height: 202px;
    margin: 1px 30px 0 0;
}

.park-content-body-service .group_16-2 {
    width: 306px;
    height: 202px;
    margin: 1px 30px 0 0;
}

.park-content-body-service .group_16-3 {
    width: 306px;
    height: 202px;
    margin: 1px 0 0 0;
}

.park-content-body-service .box_54 {
    width: 1661px;
    height: 558px;
    margin: 32px 0 0 0px;
}

.park-content-body-service .block_19 {
    width: 202px;
    height: 558px;
}

.park-content-body-service .text-wrapper_10 {
    background-color: rgba(229, 116, 22, 1);
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
}

.park-content-body-service .text_28 {
    width: 116px;
    height: 28px;
    color: #fff;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 117px 0 0 42px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_11 {
    background-color: rgba(229, 116, 22, 1);
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    margin-top: 32px;
    width: 202px;
}

.park-content-body-service .text_29 {
    width: 114px;
    height: 29px;
    color: #fff;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 117px 0 0 42px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_20 {
    background-color: #fff;
    width: 1432px;
    height: 558px;
    border: 1px solid rgba(229, 116, 22, 1);
}

.park-content-body-service .text-wrapper_12 {
    background-color: rgba(255, 241, 229, 1);
    height: 58px;
    width: 214px;
    margin: 40px 0 0 611px;
}

.park-content-body-service .paragraph_6 {
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    line-height: 21px;
    margin-top: 10px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_55 {
    width: 867px;
    height: 80px;
    margin: 19px 0 0 286px;
}

.park-content-body-service .text-wrapper_13 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 14px;
    width: 214px;
}

.park-content-body-service .text_30 {
    width: 157px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 29px;
    overflow-wrap: break-word;
}

.park-content-body-service .image-text_1 {
    width: 88px;
    height: 77px;
    margin: 3px 0 0 16px;
}

.park-content-body-service .box_21 {
    width: 88px;
    height: 56px;
}

.park-content-body-service .text_33 {
    width: 30px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 6px 0 0 26px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_14 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 214px;
    margin: 14px 0 0 7px;
}

.park-content-body-service .text_31 {
    width: 156px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 30px;
    overflow-wrap: break-word;
}

.park-content-body-service .image-text_2 {
    width: 98px;
    height: 80px;
    margin-left: -1px;
}

.park-content-body-service .box_22 {
    width: 98px;
    height: 63px;
}

.park-content-body-service .text_34 {
    width: 35px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 2px 0 0 29px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_15 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 214px;
    margin: 14px 0 0 17px;
}

.park-content-body-service .text_32 {
    width: 157px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 29px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_17 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 214px;
    margin: 12px 0 0 611px;
}

.park-content-body-service .text_35 {
    width: 115px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 49px;
    overflow-wrap: break-word;
}

.park-content-body-service .group_21 {
    width: 1382px;
    height: 2px;
    margin: 35px 0 0 29px;
}

.park-content-body-service .box_56 {
    width: 1037px;
    height: 203px;
    margin: 43px 0 30px 198px;
}

.park-content-body-service .box_57 {
    width: 162px;
    height: 203px;
}

.park-content-body-service .text-wrapper_18 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_36 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_19 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_37 {
    width: 116px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_20 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_38 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_21 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 19px;
    width: 162px;
}

.park-content-body-service .text_39 {
    width: 117px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 25px;
    overflow-wrap: break-word;
}

.park-content-body-service .section_13 {
    width: 2px;
    height: 198px;
    margin: 2px 0 0 66px;
}

.park-content-body-service .box_58 {
    width: 162px;
    height: 203px;
    margin-left: 62px;
}

.park-content-body-service .text-wrapper_22 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_40 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_23 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_41 {
    width: 116px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_24 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_42 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_25 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 19px;
    width: 162px;
}

.park-content-body-service .text_43 {
    width: 117px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 25px;
    overflow-wrap: break-word;
}

.park-content-body-service .section_15 {
    width: 2px;
    height: 198px;
    margin: 2px 0 0 66px;
}

.park-content-body-service .box_59 {
    width: 162px;
    height: 203px;
    margin-left: 61px;
}

.park-content-body-service .text-wrapper_26 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_44 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_27 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_45 {
    width: 116px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_28 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_46 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_29 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 19px;
    width: 162px;
}

.park-content-body-service .text_47 {
    width: 117px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 25px;
    overflow-wrap: break-word;
}

.park-content-body-service .section_17 {
    width: 2px;
    height: 198px;
    margin: 2px 0 0 66px;
}

.park-content-body-service .box_60 {
    width: 162px;
    height: 203px;
    margin-left: 62px;
}

.park-content-body-service .text-wrapper_30 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_48 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_31 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_49 {
    width: 116px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 26px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_32 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 20px;
    width: 162px;
}

.park-content-body-service .text_50 {
    width: 118px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 24px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_33 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-top: 19px;
    width: 162px;
}

.park-content-body-service .text_51 {
    width: 117px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 25px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_61 {
    width: 1661px;
    height: 263px;
    margin: 32px 0 0 0px;
}

.park-content-body-service .text-wrapper_34 {
    background-color: rgba(229, 116, 22, 1);
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
}

.park-content-body-service .text_52 {
    width: 115px;
    height: 28px;
    color: #fff;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 117px 0 0 42px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_24 {
    background-color: #fff;
    height: 263px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 1432px;
}

.park-content-body-service .box_62 {
    width: 1037px;
    height: 36px;
    margin: 59px 0 0 198px;
}

.park-content-body-service .text-wrapper_35 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_53 {
    width: 78px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 44px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_36 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_54 {
    width: 77px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 45px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_37 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 129px;
    width: 162px;
}

.park-content-body-service .text_55 {
    width: 78px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 44px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_38 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_56 {
    width: 77px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 45px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_63 {
    width: 1037px;
    height: 36px;
    margin: 20px 0 0 198px;
}

.park-content-body-service .text-wrapper_39 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_57 {
    width: 78px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 44px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_40 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_58 {
    width: 78px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 44px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_41 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 129px;
    width: 162px;
}

.park-content-body-service .text_59 {
    width: 57px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 54px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_42 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_60 {
    width: 56px;
    height: 19px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 8px 0 0 55px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_64 {
    width: 1037px;
    height: 36px;
    margin: 20px 0 56px 198px;
}

.park-content-body-service .text-wrapper_43 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    width: 162px;
}

.park-content-body-service .text_61 {
    width: 17px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 74px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_44 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_62 {
    width: 26px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 70px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_45 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 129px;
    width: 162px;
}

.park-content-body-service .text_63 {
    width: 25px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 71px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_46 {
    background-color: rgba(255, 241, 229, 1);
    height: 36px;
    margin-left: 130px;
    width: 162px;
}

.park-content-body-service .text_64 {
    width: 23px;
    height: 15px;
    color: rgba(229, 116, 22, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 21px;
    margin: 11px 0 0 72px;
    overflow-wrap: break-word;
}

.park-content-body-service .box_65 {
    width: 1663px;
    height: 150px;
    margin: 44px 0 0 0px;
}

.park-content-body-service .text-wrapper_47 {
    background-color: rgba(229, 116, 22, 1);
    width: 549px;
    height: 150px;
}

.park-content-body-service .text_65 {
    width: 26px;
    height: 19px;
    color: #fff;
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 47px 0 0 18px;
    overflow-wrap: break-word;
}

.park-content-body-service .paragraph_7 {
    height: 69px;
    color: #fff;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    line-height: 40px;
    margin: 42px 117px 0 35px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_48 {
    background-color: rgba(247, 247, 247, 1);
    width: 549px;
    height: 150px;
    margin-left: 8px;
}

.park-content-body-service .text_66 {
    width: 29px;
    height: 19px;
    color: rgba(102, 102, 102, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 47px 0 0 22px;
    overflow-wrap: break-word;
}

.park-content-body-service .paragraph_8 {
    height: 69px;
    color: rgba(102, 102, 102, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    line-height: 40px;
    margin: 42px 108px 0 39px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_49 {
    background-color: rgba(247, 247, 247, 1);
    width: 549px;
    height: 150px;
    margin-left: 8px;
}

.park-content-body-service .text_67 {
    width: 29px;
    height: 19px;
    color: rgba(102, 102, 102, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 47px 0 0 22px;
    overflow-wrap: break-word;
}

.park-content-body-service .paragraph_9 {
    height: 69px;
    color: rgba(102, 102, 102, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    line-height: 40px;
    margin: 42px 165px 0 39px;
    overflow-wrap: break-word;
}

.park-content-body-service .text-wrapper_94 {
    width: 1631px;
    margin: 36px 0 0 0px;
}

.park-content-body-service .paragraph_10 {
    height: 69px;
    color: #000;
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    line-height: 40px;
    margin-top: 2px;
    overflow-wrap: break-word;
}

.park-content-body-service .paragraph_11 {
    width: 948px;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 34px;
    overflow-wrap: break-word;
}
.park-content-body-service .paragraph_11 p {
    margin: 0;
    text-indent: 45px;
    margin-bottom: 10px;
}

.park-content-body-service .image-wrapper_3 {
    width: 1660px;
    height: 324px;
    margin: 10px 0 0 0px;
}

.park-content-body-service .group_23-0 {
    width: 541px;
    height: 322px;
    margin: 1px 20px 0 0;
    object-fit: cover;
    object-position: center;
}

.park-content-body-service .group_23-1 {
    width: 541px;
    height: 322px;
    margin: 1px 20px 0 0;
}

.park-content-body-service .group_23-2 {
    width: 541px;
    height: 322px;
    margin: 1px 0 0 0;
}

/*智慧管廊*/
.tunnel-content-body-header {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 38px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0px 20px;
    text-indent: 45px;
    text-align: justify;
}

.tunnel-content-body-item-detail {
    width: 100%;
    height: auto;
    overflow-wrap: break-word;
    color: #333333;
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 38px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tunnel-content-body-item-detail-item {
    display: block;
    box-sizing: border-box;
    width: 49%;
    background: #FFF1E5;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.tunnel-content-body-item-detail-item-title {
    display:block;
    background-color: rgba(229, 116, 22, 1);
    height: 59px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
    margin: 25px 0 0 30px;
    text-align: center;
    font-family: Alibaba PuHuiTi;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 52px;
}

.tunnel-content-body-item-detail-item-list {
    display: block;
    margin: 15px 0 0 30px;
}

.tunnel-content-body-item-detail-item:nth-child(-n+2) .tunnel-content-body-item-detail-item-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 260px));
    column-gap: 15px;
}
.tunnel-content-body-item-detail-item:nth-child(2) .tunnel-content-body-item-detail-item-list {
    grid-template-columns: repeat(2, minmax(0px, 400px));
}

.tunnel-content-body-item-detail-item-list>span {
    display: block;
    position: relative;
    padding-left: 12px;
}

.tunnel-content-body-item-detail-item-list>span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background: #E57416;
}

.tunnel-content-body-img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    margin-top: 60px;
}

.tunnel-content-body-img-item {
    width: 1920px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
}

.tunnel-content-body-img-item>img {
    width: 476px;
    height: 290px;
    margin: 0px;
    display: none;
}

.tunnel-content-body-img-item>img.show {
    display: inline-block;
}

.tunnel-content-body-img-nav {
    width: 1920px;
    margin: 0px auto;
    margin-top: 20px;
    text-align: right;
    position: relative;
    padding-right: 120px;
}

.tunnel-content-body-img-nav>img {
    margin-left: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tunnel-content-body-content>span {
    width: 1590px;
    display: block;
    margin: 0px auto;
    margin-top: 60px;
    margin-bottom: 60px;
    font-family: Alibaba PuHuiTi;
    font-weight: 400;
    font-size: 22px;
    color: #333333;
    line-height: 38px;
    text-align: justify;
}

.tunnel-content-body-content p {
    margin: 0;
    text-indent: 45px;
    margin-bottom: 10px;
}

.tunnel-content-body-content>img {
    width: 100%;
}


/* 智慧城市-智慧水务 */
.water-content-body-img>img {
    width: 100%;
    margin-bottom: 30px;
}

.water-content-body-content {
    width: 1350px;
    margin: 0px auto;
}

.water-content-body-content-item-title {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
}

.water-content-body-content-item-detail {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 38px;
    text-align: justify;
}

.water-content-body-content-item {
    margin-bottom: 30px;
}

/* 科技期刊 */
.tech-journal-content-container {
    width: 90%;
    margin: 0px auto;
    margin-bottom: 60px;
}

.tech-journal-content-item {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 85px;
}

.tech-journal-content-item-img {
    flex-shrink: 0;
}

.tech-journal-content-item-img img {
    width: 330px;
    height: 450px;
    object-fit: cover;
}

.tech-journal-content-item-img-link {
    width: 190px;
    height: 55px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 36px;
    background-color: rgba(229, 116, 22, 1);
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    text-decoration: none;
}

.tech-journal-content-item-content {
    flex: 1;
}

.tech-journal-content-item-content-title {
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-left: 2px;
}

.tech-journal-content-item-content-detail {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 36px;
    margin-top: 41px;
    text-align: justify;
}

.tech-journal-content-item-content-detail p {
    margin: 0;
    text-indent: 45px;
    margin-bottom: 15px;
}

/* 电科荣誉*/
.honor-content-body-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
}

.honor-content-body-item {
    flex: 0 0 20%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
}

.honor-content-body-item-img {
    width: 100%;
    max-width: 280px;
    height: 365px;
    overflow: hidden;
    border-radius: 8px;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.honor-content-body-item-img img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honor-content-body-item-img:hover img {
    transform: scale(1.05);
}

.honor-hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(229, 116, 22, 1);
    border-radius: 50%;
    height: 73px;
    width: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.honor-hover-overlay img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.honor-content-body-item-img:hover .honor-hover-overlay {
    opacity: 1;
}

.honor-content-body-item-detail {
    width: 100%;
    max-width: 280px;
    padding: 25px 30px;
    font-family: Alibaba PuHuiTi;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 30px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    height: 85px;
    box-sizing: border-box;
    display: none;
}

/* 新闻中心*/
.news-content-container {
    width: 1450px;
    margin: 0px auto;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* 新闻内容项布局 */
.news-content-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    min-height: 100px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-content-item:hover {
    text-decoration: none;
}

.news-content-item-left {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.news-content-item-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0 70px;
}

.news-content-item-right {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: flex-end;
}

/* 新闻内容项日期样式 */
.news-content-item-date {
    width: 160px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 24px;
    line-height: 40px;
    padding-left: 20px;
}

/* 新闻内容项标题样式 */
.news-content-item-title {
    width: 950px;
    height: 30px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    margin-bottom: 20px;
    align-self: flex-start;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 新闻内容项描述样式 */
.news-content-item-desc {
    width: 950px;
    height: 65px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    line-height: 34px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: flex-start;
}

/* 新闻内容项阅读更多样式 */
.news-content-item-read-more {
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more-text {
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 36px;
    padding-right: 30px;
    background-image: url('/src/images/news-more-nav.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果 */
.news-content-item:hover .news-content-item-date {
    color: rgba(229, 116, 22, 1);
}

.news-content-item:hover .news-content-item-title {
    color: rgba(229, 116, 22, 1);
}

.news-content-item:hover .read-more-text {
    color: rgba(229, 116, 22, 1);
    background-image: url('/src/images/news-more-nav-active.png');
}

.news-content-pagination {
    width: 600px;
    height: 25px;
    margin: 0px auto;
    text-align: center;
}

.news-content-pagination-item {
    width: 10px;
    height: 20px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 27px;
    font-family: HarmonyOS_Sans_SC_Bold;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
}

.news-content-pagination-item.active {
    color: rgba(229, 116, 22, 1);
}

.news-content-pagination-right {
    transform: rotate(180deg);
}

/* 新闻详情 */
.news-content-detail-title {
    font-family: Alibaba PuHuiTi;
    font-weight: 500;
    font-size: 32px;
    color: #E57416;
    line-height: 40px;
    margin-top: 30px;
    text-align: center;
}

.news-content-detail-content {
    font-family: Alibaba PuHuiTi !important;
    font-size: 24px !important;
    color: #333333 !important;
    line-height: 36px !important;
    margin-top: 20px;
}

.news-content-detail-content p {
    margin: 0 !important;
    text-indent: 45px !important;
    margin-bottom: 15px !important;
}

/* 新闻详情导航栏（固定在底部） */
.news-detail-navigation {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px 20px;
    z-index: 999;
    gap: 20px;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.news-detail-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail-nav-prev {
    flex: 1;
    justify-content: flex-start;
}

.news-detail-nav-center {
    flex: 0 0 auto;
    justify-content: center;
}

.news-detail-nav-next {
    flex: 1;
    justify-content: flex-end;
}

/* 导航箭头按钮（圆形）- 默认灰色 */
.news-detail-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: #CCCCCC;
}

/* 悬停时变蓝色 */
.news-detail-nav-item:hover .news-detail-nav-arrow:not(.disabled) {
    background-color: #4A90E2;
}

.news-detail-nav-arrow:hover {
    background-color: #357ABD !important;
    text-decoration: none;
}

.news-detail-nav-arrow.disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}

.news-detail-nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* 导航标题按钮（灰色圆角矩形）- 默认隐藏 */
.news-detail-nav-title {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border-radius: 20px;
    text-decoration: none;
    color: transparent;
    transition: max-width 0.3s ease, padding 0.3s ease, background-color 0.3s ease, color 0.3s ease, margin 0.3s ease;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

/* 悬停时展开显示标题 */
.news-detail-nav-item:hover .news-detail-nav-title:not(.disabled) {
    max-width: 300px;
    padding: 8px 16px;
    background-color: #F5F5F5;
    color: #666666;
    margin: 0 5px;
}

.news-detail-nav-item:hover .news-detail-nav-title:not(.disabled):hover {
    background-color: #E8E8E8;
    color: #333333;
    text-decoration: none;
}

.news-detail-nav-title.disabled {
    max-width: 0;
    padding: 0;
    background-color: transparent;
    cursor: not-allowed;
    pointer-events: none;
    color: transparent;
}

.news-detail-nav-title-text {
    font-size: 14px;
    font-family: Alibaba PuHuiTi;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.news-detail-nav-item:hover .news-detail-nav-title:not(.disabled) .news-detail-nav-title-text {
    opacity: 1;
}

/* 网格图标按钮（圆形）- 默认灰色 */
.news-detail-nav-grid {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* 悬停时变蓝色 */
.news-detail-nav-item:hover .news-detail-nav-grid {
    background-color: #4A90E2;
}

.news-detail-nav-grid:hover {
    background-color: #357ABD !important;
    text-decoration: none;
}

.news-detail-nav-grid svg {
    width: 20px;
    height: 20px;
}

/* 为所有 footer-link 类添加下划线样式 */
[class^="footer-link-"] {
    text-decoration: underline;
}

/* footer-link-8 不要下划线 */
.footer-link-8 {
    text-decoration: none;
}

/* 以下链接不要下划线 */
.innovation-button-wrapper,
.journal-button,
.history-more,
.news-more,
.news-item-title-1,
.news-item-read-text-1,
.news-item-title-2,
.news-item-read-text-2 {
    text-decoration: none;
}

/* 回到顶部悬浮框 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* 新的Footer布局样式 */
.footer-main-container {
    width: 85%;
    /* max-width: 1656px; */
    margin: 0 auto;
    /* padding: 0 130px; */
    display: flex;
    align-items: flex-start;
    /* gap: 40px; */
    margin-top: 100px;
}

/* Logo区域 */
.footer-logo-section {
    flex-shrink: 0;
    width: 120px;
    margin-right: 65px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-seari {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #E57416;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-logo-chinese {
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #333333;
    line-height: 1;
}

/* 导航列通用样式 */
.footer-nav-column {
    max-width: 70px;
    margin-right: 90px;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

/* 友情链接列特殊样式 */
.footer-nav-column:last-child {
    max-width: 300px;
    width: 300px;
    margin-right: 0;
    margin-left: auto;
}

.footer-nav-title {
    width: 56px;
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    margin-bottom: 20px;
    text-decoration: underline;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-link {
    /*width: 70px;*/
    height: 15px;
    overflow-wrap: break-word;
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    white-space: nowrap;
    line-height: 22px;
    text-decoration: underline;
}

.footer-nav-link:hover {
    color: #E57416;
    text-decoration: underline;
}

/* 友情链接特殊样式 */
.footer-dropdown-row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.footer-dropdown-section {
    margin-bottom: 15px;
}

.footer-dropdown-select {
    width: 100%;
    height: 32px;
    background: url(./index/img/59d30f67646820b24e2a2064029b927c.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    padding: 0 15px;
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 12px;
    color: #999999;
    outline: none;
    cursor: pointer;
}

.footer-dropdown-select option {
    padding: 5px 15px;
    color: #666666;
    background-color: #ffffff;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-qr-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-qr-code {
    cursor: pointer;
    width: 14px;
    height: 13px;
    margin: 11px 0 0 21px;
}

.footer-qr-code:hover {
    opacity: 0.8;
}

/* 智慧能源 能源管理 */
.smartenergy-management-content-container {
    width: 90%;
    margin-top: 40px;
    margin-bottom: 130px;
}

.smartenergy-management-content-body-item {
    background-color: rgba(255, 255, 255, 1);
    /*height: 510px;*/
    border: 1px solid rgba(229, 116, 22, 1);
    margin-bottom: 45px;
}

.smartenergy-management-content-body-item-title {
    width: 310px;
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin: 33px 0 0 56px;
}

.smartenergy-management-content-body-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 29px 0 0 56px;
}

.smartenergy-management-content-body-item-list-left-item {
    width: 91px;
    height: 22px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 23px;
    font-family: Alibaba-PuHuiTi-R;
    font-weight: NaN;
    text-align: center;
    white-space: nowrap;
    line-height: 70px;
    background-color: rgba(255, 241, 229, 1);
    height: 70px;
    margin-top: 15px;
    width: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.smartenergy-management-content-body-item-list {
    margin: 25px 0 0 56px;
}

.smartenergy-management-content-body-item-list-left {
    float: left;
    width: 255px;
}

.smartenergy-management-content-body-item-list-right {
    float: left;
    width: calc(100% - 300px);
}

.smartenergy-management-content-body-item-list-right-item {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    line-height: 30px;
    padding: 30px 0 0 30px;
    height: 101px;
    background: url(/src/product/img/smartenergy-management-bg.png) 100% no-repeat;
    background-size: 100% 100%;
    width: 100%;
    margin-bottom: 17px;
    margin-left: 30px;
}

.smartenergy-management-content-body-item-list-left-item-1 {
    margin-top: 195px;
}

.smartenergy-management-content-body-item-list-right-item-2line {
    padding-top: 25px;
}

.smartenergy-management-content-body-item-image {
    clear: both;
    padding-left: 56px;
    padding-bottom: 50px;
}
.smartenergy-management-content-body-item-image img{
    padding-right:10px;
    width: 32%;
}

.smartenergy-management-video {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.smartenergy-management-video-item {
    
}

/* 视频播放功能样式 */
.video-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: rgba(229, 116, 22, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button img {
    filter: brightness(0) invert(1);
}

/* 视频模态框样式 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    opacity: 1;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.video-modal video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s ease;
}

.video-modal-close:hover {
    background-color: rgba(255, 255, 255, 1);
}

.smartenergy-content-header {
    margin-top: 30px;
}

.smartenergy-management-content-container .culture-content-header .intro-title-wrapper {
    margin-bottom: 10px;
}

/*联联睿科*/
.smartenergy-lianlian-title {
    font-family: Alibaba PuHuiTi;
    font-size: 32px;
    color: #E57416;
    line-height: 22px;
    margin-bottom: 30px;
}

.smartenergy-lianlian-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 0px auto;
    margin-bottom: 40px;
}
.smartcity-traffic-content-body-images {
    font-family: Alibaba PuHuiTi;
    font-size: 24px;
    color: #333333;
    line-height: 36px;
}

.smartcity-traffic-content-body-images-desc {
    margin-bottom: 20px;
}
.smartcity-traffic-content-body-images > img {
    margin-bottom: 20px;
    width: 100%;
}
.smartcity-traffic-content-body-images-title {
    margin-bottom: 30px;
}
.smartcity-traffic-content-body-images-title div {
    margin-bottom: 10px;
}

.smartenergy-power-other-case {
    margin-bottom: 20px;
}
.smartenergy-power-other-case-title {
    color: #E57416;
    font-size: 30px;
}
.smartenergy-power-other-case .smartcity-traffic-content-body-images-title {
    margin-top: 30px;
}

.smartenergy-power-image-tips {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.smartcity-traffic-content-body-images-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0px auto;
    flex-wrap: wrap;
}
.smartcity-traffic-content-body-images-contact img{
    flex-shrink: 0;
    max-width: 392px;
    height: auto;
}
.smartcity-traffic-content-body-images-contact span{

}
.smartcity-traffic-content-body-images-contact p{
    margin: 8px 0;
    font-weight: bold;
}

.image-center {
    width: auto !important;
    display: block;
    margin: 0 auto;
}

/*数智互联*/
.digital-gear-content-body-case-content, .digital-smart-content-body-content, .digital-industry-content-body-content, .tunnel-content-case-body-content {
    margin-top: 40px;
    padding: 35px 20px;
    border: 1px solid #E57416;
    padding-bottom: 0px;
}
.digital-gear-content-body-case-title, .digital-smart-content-body-title, .digital-industry-content-body-title, .tunnel-content-case-body-title {
    font-family: Alibaba PuHuiTi;
    font-weight: bold;
    font-size: 32px;
    color: #E57416;
    line-height: 51px;
    margin-bottom: 10px;
}


.digital-gear-content-body-case {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.digital-gear-content-body-case-item {
    display: flex;
    background-color: #FFF1E5;
    width: calc(50% - 20px);
    height: 313px;
}

.digital-gear-content-body-case-item-content {
    flex: 1;
    margin: 45px 0 0 40px;
    display: flex;
    flex-direction: column;
}

.digital-gear-content-body-case-item-title {
    /* height: 50px; */
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 500;
    text-align: left;
    /* white-space: nowrap; */
    line-height: 40px;
    max-width: 425px;
    margin-bottom: 15px;
}

.digital-gear-content-body-case-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 28px;
    flex: 1;
    max-width: 425px;
}

.digital-gear-content-body-case-item-desc > div {
    position: relative;   /* 定位参照 */
    margin-bottom: 10px;
    padding-left: 16px;
}

.digital-gear-content-body-case-item-desc > div::before {
    content: "";
    position: absolute;
    display: block;       /* 让宽高生效 */
    left: 0;
    top: 14px;
    width: 4px;
    height: 4px;
    background: #E57416;
}

.digital-gear-content-body-case-item-img {
    max-width: 345px;
    height: 250px;
    margin: 40px 60px 0 0px;
}

.digital-gear-content-body-case2 {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}
    .digital-gear-content-body-case2 .digital-gear-content-body-case-item-desc > div {
        position: inherit;
        margin-bottom: 10px;
        padding-left: 0px;
    }
.digital-gear-content-body-case2-desc {
    width: 625px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 38px;
    flex-shrink: 0;
    text-indent: 50px;
}

.digital-gear-content-body-case2-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

.digital-gear-content-body-case2-images img {
    max-width: 220px;
    height: auto;
}

.digital-gear-content-body-case2 .digital-gear-content-body-case-item-img {
    margin: 120px 40px 0 0px;
}

.digital-gear-content-body-device-title {
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 31px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    margin-top: 55px;
}

.digital-gear-content-body-device-item {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 23px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin-left: 12px;
    margin-right: 280px;
}

.digital-gear-content-body-device-list {
    display: flex;
    flex-direction: row;
}

.digital-gear-content-body-device-item span {
    display: block;
    margin-top: 15px;
    padding-left: 16px;
    position: relative;
}

.digital-gear-content-body-device-item>span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 4px;
    height: 4px;
    background: #E57416;
}

.digital-gear-content-body-case2 .digital-gear-content-body-case-item {
    height: 460px;
}

/*智能制造*/
.digital-smart-content-body-case-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 38px;
    flex-shrink: 0;
    text-indent: 50px;
}

.digital-smart-content-body-case-img {
    background-color: rgba(255, 255, 255, 1);
    height: 395px;
    margin: 26px 0 0 0px;
    display: flex;
    flex-direction: row;
    background-image: url(/src/product/img/digital-smart-bg1.png);
    background-size: 100% 100%;
}

.digital-smart-content-body-case-img-item1 {
    background-color: rgba(255, 241, 229, 1);
    width: 338px;
    height: 340px;
    margin: 26px 0 0 30px;
    display: flex;
    flex-direction: column;
}

.digital-smart-content-body-case-img-item1-title {
    background-color: rgba(229, 116, 22, 1);
    height: 59px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
    margin: 19px 0 0 46px;
    text-align: center;
    font-family: Alibaba PuHuiTi;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 52px;
}

.digital-smart-content-body-case-img-item1-desc {
    height: 213px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 18px 0 31px 44px;
}
    .digital-smart-content-body-case-img-item1-desc > div, .digital-smart-content-body-case-tech-desc-left > div, .digital-smart-content-body-case-tech-desc-right > div, .digital-smart-content-body-case2-demo-desc > div, .digital-industry-content-body-case2-demo-item-desc-detail > div, .digital-industry-content-body-case3-team-item-desc > div {
        position: relative;
        padding-left: 16px;
    }
        .digital-smart-content-body-case-img-item1-desc > div::before, .digital-smart-content-body-case-tech-desc-left > div::before, .digital-smart-content-body-case-tech-desc-right > div::before, .digital-smart-content-body-case2-demo-desc > div::before, .digital-industry-content-body-case2-demo-item-desc-detail > div::before, .digital-industry-content-body-case3-team-item-desc > div::before {
            content: "";
            position: absolute;
            left: 0;
            top: 18px;
            width: 4px;
            height: 4px;
            background: #E57416;
        }


.digital-smart-content-body-case-img-item2 {
    width: 486px;
    height: 342px;
    margin: 26px 0 0 45px;
}

.digital-smart-content-body-case-img-item2-desc {
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 28px;
}

.digital-smart-content-body-case-img-item3 {
    width: 615px;
    height: 342px;
    margin: 26px 0 0 45px;
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;
    gap: 15px;
}

.digital-smart-content-body-case-img-item3-item {
    width: 269px;
    height: 164px;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.digital-smart-content-body-case-img-item3-desc {
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 28px;
}

.digital-smart-content-body-case-img-item4 {
    background-color: rgba(255, 241, 229, 1);
    height: 340px;
    width: 68px;
    margin: 26px 40px 0 20px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 24px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-smart-content-body-case-tech-demo {
    height: 325px;
    margin: 30px 0 0 0px;
    display: flex;
    justify-content: space-between;
}

.digital-smart-content-body-case-tech,
.digital-smart-content-body-case-demo {
    background-color: #FFF1E5;
    height: 330px;
    width: 810px;
}

.digital-smart-content-body-case-tech-title,
.digital-smart-content-body-case-demo-title {
    width: 202px;
    height: 60px;
    margin: 22px 0 0 44px;
    background-color: rgba(229, 116, 22, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 60px;
}

.digital-smart-content-body-case-tech-desc {
    margin: 18px 5px 0px 43px;
    /*display: flex;*/
    justify-content: space-between;
}

.digital-smart-content-body-case-tech-desc-left,
.digital-smart-content-body-case-tech-desc-right {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    line-height: 36px;
}

.digital-smart-content-body-case-demo-name {
    width: 647px;
    height: 29px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 15px 0 0 48px;
}

.digital-smart-content-body-case-demo-desc {
    width: 725px;
    height: 95px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 24px 0 28px 49px;
}

.digital-smart-content-body-case {
    margin-bottom: 50px;
}

.digital-smart-content-body-case2-desc>span {
    color: #E57416
}

.digital-smart-content-body-case2-img-item1-title {
    margin-top: 77px;
}

.digital-smart-content-body-case2-img-item1-desc {
    width: 250px;
}

.digital-smart-content-body-case2-img-item3 {
    margin-top: 26px;
}

.digital-smart-content-body-case2-img-item3-item img {
    margin-right: 7px;
    margin-bottom: 7px;
}

.digital-smart-content-body-case2-img-item4 {
    width: 160px;
}

.digital-smart-content-body-case2-tech {
    width: 630px;
    height: 340px;
}

.digital-smart-content-body-case2-demo {
    width: 1000px;
    height: 340px;
}

.digital-smart-content-body-case2-tech-demo {
    height: 340px;
}

.digital-smart-content-body-case2 {
    margin-bottom: 50px;
}

.digital-smart-content-body-device-title,
.digital-smart-content-body-case3-demo-title {
    margin-top: 30px;
}

.digital-smart-content-body-device-item {
    margin-right: 220px;
}

.digital-smart-content-body-case3-demo-list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.digital-smart-content-body-case3-demo-item {
    background-color: #FFF1E5;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 20px;
}

.digital-smart-content-body-case3-demo-item-title {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin-top: 20px;
}

.digital-smart-content-body-case3-demo-item-desc {
    font-family: Alibaba PuHuiTi;
    font-size: 22px;
    color: #333333;
    line-height: 36px;
}

.digital-smart-content-body-case3-demo-item-img {
    margin-top: 20px;
}

.digital-smart-content-body-case3-demo-item-title:nth-child(1) {
    height: 110px;
}

/*工业互联*/

.digital-industry-content-body-case-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 38px;
    flex-shrink: 0;
    text-indent: 50px;
    margin-top: 20px;
}

.digital-industry-content-body-case-desc>span {
    color: #E57416
}

.digital-industry-content-body-case-img {
    margin-top: 10px;
}

.digital-industry-content-body-case-img img {
    width: 100%;
    height: auto;
}

.digital-industry-content-body-case-service {
    width: 100%;
    height: 105px;
    margin: 42px 0 0 0;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    white-space: nowrap;
}

.digital-industry-content-body-case-service-title {
    background-color: #FFF1E5;
    height: 60px;
    overflow-wrap: break-word;
    font-family: Alibaba-PuHuiTi-M;
    text-align: left;
    white-space: nowrap;
    margin: 17px 0 0 44px;
    line-height: 105px;
    margin-right: 30px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 24px;
    color: #E57416;
}
.digital-industry-content-body-case-service-desc {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    padding-right: 180px;
    min-height: 120px;
    background: url(/src/product/img/smartenergy-management-bg.png) center / contain no-repeat;
    padding-left: 50px;
}

.digital-industry-content-body-case,
.digital-industry-content-body-case2,
.digital-industry-content-body-case3,
.digital-industry-content-body-case4,
.digital-industry-content-body-case5 {
    margin-bottom: 50px;
}

.digital-industry-content-body-case2-img {
    display: flex;
    justify-content: space-between;
}

.digital-industry-content-body-case2-demo {
    display: flex;
    justify-content: space-between;
}

.digital-industry-content-body-case2-demo-item {
    background-color: #FFF1E5;
    width: 815px;
    height: 525px;
}

.digital-industry-content-body-case2-demo-item-title {
    background-color: rgba(229, 116, 22, 1);
    height: 59px;
    border: 1px solid rgba(229, 116, 22, 1);
    width: 202px;
    margin: 30px 0 0 44px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    line-height: 50px;
}

.digital-industry-content-body-case2-demo-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 15px 0 0 44px;
}

.digital-industry-content-body-case2-demo-item-desc-title {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin-top: 20px;
}

.digital-industry-content-body-case2-demo-item-desc-detail {
    font-size: 22px;
}

.digital-industry-content-body-case2-demo-item-desc-details {
    display: flex;
    gap: 150px;
}

.digital-industry-content-body-case3-img {
    display: flex;
    justify-content: space-between;
    background: url(/src/product/img/digital-industry-bg1.png) center bottom no-repeat;
    padding-bottom: 15px;
}

.digital-industry-content-body-case3-img-item-title {
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    display: block;
    padding-left: 120px;
    margin-top: 45px;
}

.digital-industry-content-body-case3-img-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    white-space: nowrap;
    line-height: 36px;
    margin-top: 20px;
    display: block;
    padding-left: 120px;
}

.digital-industry-content-body-case3-img-item-1st img {
    margin-top: 9px;
}

.digital-industry-content-body-case3-team {
    margin-top: 50px;
}

.digital-industry-content-body-case3-team-title {
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 31px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
}

.digital-industry-content-body-case3-team-list {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    justify-content: space-between;
}

.digital-industry-content-body-case3-team-item {
    background-color: #FFF1E5;
    width: 535px;
    height: 620px;
}

.digital-industry-content-body-case3-team-item-title {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 38px 0 0 35px;
}

.digital-industry-content-body-case3-team-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    margin: 20px 0 0 36px;
    line-height: 35px;
    height: 170px;
}

.digital-industry-content-body-case3-team-item-img {
    margin: 20px 0 0 36px;
}

.digital-industry-content-body-case3-team-item-desc>span {
    color: #E57416;
}

.digital-industry-content-body-case3-team-item-img img {
    height: 260px;
}

.digital-industry-content-body-case4-img {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.digital-industry-content-body-case4-img-item {
    background-color: #FFF1E5;
    width: 812px;
    height: 313px;
    display: flex;
    flex-direction: row;
}

.digital-industry-content-body-case4-img-item-title {
    width: 264px;
    height: 29px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    display: block;
    margin: 37px 0 0 40px;
}

.digital-industry-content-body-case4-img-item-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    line-height: 36px;
    display: block;
    margin: 25px 0 0 40px;
    width: 475px;
}

.digital-industry-content-body-case4-img-item-desc>span {
    color: #E57416;
}

.digital-industry-content-body-case4-img-item-content {}

.digital-industry-content-body-case4-img-item>img {
    width: 182px;
    height: 285px;
    margin: 15px 72px 0 42px;
}

.digital-industry-content-body-case4-demo {
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    margin: 30px 0 0 0;
    padding-bottom: 20px;
}

.digital-industry-content-body-case4-demo-title {
    width: 289px;
    height: 32px;
    margin: 37px 0 0 0px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
}

.digital-industry-content-body-case4-demo-list {
    margin: 10px 0px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.digital-industry-content-body-case4-demo-item {
    background-color: #FFF1E5;
    width: 810px;
    height: 230px;
    display: flex;
    flex-direction: row;
}

.digital-industry-content-body-case4-demo-item-title {
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 30px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    margin: 40px 0 0 48px;
    display: block;
}

.digital-industry-content-body-case4-demo-item-desc {
    width: 340px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin: 23px 0 0 48px;
    display: block;
}

.digital-industry-content-body-case4-demo-item>img {
    width: 342px;
    height: 158px;
    margin: 41px 51px 0 42px;
}

.digital-industry-content-body-case5-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.digital-industry-content-body-case5-img-item {
    background-color: #FFF1E5;
    height: 313px;
    width: 812px;
    display: flex;
    flex-direction: row;
}

.digital-industry-content-body-case5-img-item-title {
    width: 186px;
    height: 28px;
    margin: 38px 0 0 40px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-B;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    line-height: 40px;
    display: block;
}

.digital-industry-content-body-case5-img-item-desc {
    width: 427px;
    height: 167px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 22px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    display: block;
    margin: 25px 0 0 40px;
}

.digital-industry-content-body-case5-img-item-img {
    width: 290px;
    height: auto;
    margin: 100px 27px 0 27px;
}

.digital-industry-content-body-case5-img-item-img-3rd {
    margin: 40px 27px 0 27px;
}

.digital-industry-content-body-case5-demo {
    background-color: rgba(255, 255, 255, 1);
    margin: 50px 0 0 0px;
    padding-bottom: 20px;
}

.digital-industry-content-body-case5-demo-title {
    width: 197px;
    height: 31px;
    margin: 36px 0 0 0px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 26px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
}

.digital-industry-content-body-case5-demo-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.digital-industry-content-body-case5-demo-img>img {
    padding-right: 70px;
    max-width: 50%;
}

.digital-industry-content-body-case6 img {
    width: 100%;
    height: auto;
}


.digital-incubation-content-body-item {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.digital-incubation-content-body-title {
    width: 170px;
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    display: block;
}

.digital-incubation-content-body-desc {
    width: 952px;
    height: 167px;
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    margin-top: 23px;
    display: block;
    text-indent: 50px;
}

.digital-incubation-content-body-content {
    width: 60%;
}

.digital-incubation-content-body-img {}

/* 科创平台 */
.tech-plat-header {
    justify-content: flex-start;
}

.tech-plat-header .intro-title {
    height: 55px;
    line-height: 55px;
}

.tech-plat-header-link {
    background-color: rgba(229, 116, 22, 1);
    border-radius: 27px;
    height: 55px;
    width: 191px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: center;
    white-space: nowrap;
    line-height: 55px;
    margin-left: 55px;
    text-decoration: none;
    display:none;
}
.tech-plat-content-item {
    margin-bottom: 40px;
}
.tech-plat-content-detail {
    margin-top: 20px;
}

.tech-plat-content-detail-item {
    display: flex;
    margin-top: 40px;
}

.tech-plat-content-detail-content {
    width: 100%;
}

.tech-plat-content-detail-title {
    height: 31px;
    overflow-wrap: break-word;
    color: rgba(229, 116, 22, 1);
    font-size: 32px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
    display: block;
}

.tech-plat-content-detail-desc {
    overflow-wrap: break-word;
    color: rgba(51, 51, 51, 1);
    font-size: 24px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: justify;
    line-height: 36px;
    display: block;
    margin-top: 25px;
    text-indent: 50px;
}

.tech-plat-content-detail-desc p {
    margin: 0px;
    margin-bottom: 15px;
    text-indent: 45px;
}

.tech-plat-content-detail-img {
    /*margin-left: 40px;*/
    display: none;
}

.tech-plat-content-detail-img>img {
    height: 100%;
}


/* 联系我们 */
.contact-us-content-body {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-us-content-body-map {
    width: 1050px;
    height: 530px;
}

.contact-us-content-body-detail {
    background-color: rgba(247, 247, 247, 1);
    width: 570px;
    height: 530px;
    padding: 100px 0 0 30px;
    overflow-wrap: break-word;
    color: rgba(0, 0, 0, 1);
    font-size: 19px;
    font-family: Alibaba-PuHuiTi-R;
    text-align: left;
    white-space: nowrap;
    line-height: 21px;
}

.contact-us-content-body-detail span {
    display: block;
    height: 60px;
    margin-bottom: 70px;
    line-height: 60px;
    padding-left: 70px;
    background-repeat: no-repeat;
}

.contact-us-content-body-detail span:nth-child(1) {
    background-image: url(/src/images/contact-us-nav-1.png);
}

.contact-us-content-body-detail span:nth-child(2) {
    background-image: url(/src/images/contact-us-nav-2.png);
}

.contact-us-content-body-detail span:nth-child(3) {
    background-image: url(/src/images/contact-us-nav-3.png);
    display: none;
}

.contact-us-content-body-detail span:nth-child(4) {
    background-image: url(/src/images/contact-us-nav-4.png);
}

.contact-us-content-body-detail span:nth-child(5) {
    background-image: url(/src/images/contact-us-nav-5.png);
    display: none;
}

.contact-us-content-body-detail span:nth-child(6) {
    background-image: url(/src/images/contact-us-nav-6.png);
}

.contact-us-content-body-map {}

.image-not-real-tips {
    display: block !important;
    margin: 0px !important;
    text-align: center !important;
    color: red !important;
    font-size: 18px !important;
    margin-bottom: 20px !important;
}
.smartenergy-management-content-body-item-image .image-not-real-tips {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
}