/* 全局样式与变量定义 */

:root {
    --primary-color: #32228b;
    --primary-dark: #120064;
    --secondary-color: #4a3abf;
    --light-color: #f8f9fa;
    --gray-color: #666;
    --dark-gray: #333;
    --success-color: #32228b;
    --success-light: rgba(34, 139, 34, 0.1);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: underline;
    padding: 0;
    background-color: transparent;
    font-weight: normal;
}

.btn-link:hover {
    color: var(--primary-dark);
}

.center-button {
    text-align: center;
    margin-top: 50px;
}


/* 导航栏样式 */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
    position: relative;
}

.main-nav ul li a {
    color: var(--dark-gray);
    padding: 5px 0;
    font-size: 1.1rem;
    position: relative;
    display: block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 500;
}


/* 下拉菜单样式 */

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}


/* 移动端菜单 */

.navbar {
    display: none;
    /* 桌面端导航默认隐藏，移动端不显示 */
}


/* 顶部固定导航（移动端） */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    /* 确保在内容上方 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}


/* 菜单按钮样式 */

.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 1000;
}


/* 侧边栏导航 */

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* 默认隐藏在右侧 */
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    /* 高于遮罩层和导航栏 */
    padding-top: 70px;
    /* 预留顶部导航高度 */
}

.sidebar.active {
    right: 0;
    /* 显示侧边栏 */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.nav-list {
    padding: 0 20px;
}

.nav-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.nav-list a {
    color: #333;
    font-size: 1rem;
    display: block;
    padding: 5px 0;
}

.nav-list a.active {
    color: #32228b;
    font-weight: bold;
}


/* 移动端子菜单样式 */

.nav-list .dropdown-menu {
    margin-left: 20px;
    margin-top: 10px;
    position: static;
    box-shadow: none;
    min-width: auto;
    padding: 0;
}


/* 英雄区域 */

.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


/* 公司文化区域 */

.company-culture {
    padding: 100px 0;
    background-color: var(--light-color);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.culture-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(50, 34, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.company-values {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.company-values h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.company-values ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.company-values ul li {
    margin-bottom: 10px;
    color: var(--gray-color);
}


/* 招聘岗位区域 */

.job-openings {
    padding: 100px 0;
    background-color: white;
}

.job-listings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.job-listing {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.job-listing:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
    background-color: var(--light-color);
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.job-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.job-category {
    background-color: rgba(50, 34, 139, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.job-location {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 10px;
}

.job-details {
    padding: 30px;
}

.job-details h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    margin-top: 25px;
}

.job-details h4:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--gray-color);
}

.job-details ul li {
    margin-bottom: 10px;
}

.job-apply {
    margin-top: 30px;
    text-align: center;
}


/* 申请流程区域 */

.application-process {
    padding: 100px 0;
    background-color: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(100% + 10px);
    width: calc(100% - 20px);
    height: 2px;
    background-color: #e0e0e0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.step p {
    color: var(--gray-color);
    font-size: 0.9rem;
}


/* 员工福利区域 */

.employee-benefits {
    padding: 100px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.benefit-item:hover .benefit-icon {
    background-color: white;
    color: var(--primary-color);
}

.benefit-item:hover p {
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 6
}


/* 联系我们 */

.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex-basis: 40%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #32228b;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.2rem;
    color: #32228b;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
}

.contact-form {
    flex-basis: 60%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #32228b;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


/* 页脚 */

.footer {
    background-color: #333;
    color: white;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-products ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-products ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-products ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-products ul li a:hover {
    color: #32228b;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: #32228b;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #32228b;
}


/* 响应式设计 */

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .navbar {
        padding: 15px 30px;
    }
    .navbar.scrolled {
        padding: 10px 30px;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .mobile-menu {
        display: block;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .advantages-grid,
    .products-grid,
    .cases-grid,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about {
        padding: 80px 0;
    }
    .about::after {
        display: none;
    }
    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .about-image {
        position: static;
        transform: none;
        width: 100%;
    }
    .contact-content {
        flex-direction: column;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 响应式调整：桌面端显示传统导航 */

@media (min-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .header {
        display: none;
        /* 桌面端隐藏移动端导航 */
    }
    .sidebar,
    .overlay {
        display: none;
        /* 桌面端隐藏侧边栏和遮罩层 */
    }
    .main-nav .nav-links {
        display: flex;
        gap: 25px;
    }
    .main-nav a {
        color: #333;
        font-size: 1rem;
    }
    .main-nav a.active {
        color: #32228b;
        font-weight: bold;
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        min-width: 200px;
        display: none;
    }
    .dropdown {
        position: relative;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .main {
        margin-top: 70px;
        /* 适配桌面端导航高度 */
    }
}


/* 公司文化区域基础样式优化 */

.company-culture {
    padding: 80px 0;
    /* 略微减少整体padding，避免移动端过长 */
}


/* 文化网格布局响应式调整 */

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* 自动适应列数，最小宽度250px */
    gap: 20px;
    /* 统一间距，移动端更紧凑 */
    margin-bottom: 40px;
    /* 减少底部间距 */
}

.culture-item {
    padding: 30px 20px;
    /* 减少内边距，适配小屏幕 */
}

.culture-icon {
    width: 50px;
    /* 缩小图标容器 */
    height: 50px;
    font-size: 1.2rem;
    /* 图标大小适配 */
}

.culture-item h3 {
    font-size: 1.3rem;
    /* 标题字体调整 */
    margin-bottom: 15px;
}

.culture-item p {
    font-size: 0.95rem;
    /* 正文字体缩小 */
    line-height: 1.5;
    /* 优化行高，提升可读性 */
}


/* 公司价值观区域适配 */

.company-values {
    padding: 30px 20px;
    /* 减少内边距 */
}

.company-values h3 {
    font-size: 1.3rem;
    /* 标题适配 */
}

.company-values p,
.company-values ul li {
    font-size: 0.95rem;
    /* 正文适配 */
    line-height: 1.6;
}


/* 移动端专属调整（屏幕宽度<768px） */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        /* 缩小标题字体 */
    }
    .section-subtitle {
        font-size: 1rem;
        /* 副标题适配 */
        margin-bottom: 40px;
        /* 减少底部间距 */
    }
    .culture-grid {
        grid-template-columns: 1fr;
        /* 移动端强制单列布局 */
        gap: 15px;
        /* 进一步缩小间距 */
    }
    .culture-item {
        padding: 25px 15px;
        /* 更紧凑的内边距 */
    }
    .company-values {
        padding: 25px 15px;
    }
    .company-values ul {
        padding-left: 15px;
        /* 减少列表缩进，适配小屏幕 */
    }
    .company-values ul li {
        margin-bottom: 12px;
        /* 增加列表项间距，提升可读性 */
    }
}


/* 平板设备适配（768px-1023px） */

@media (min-width: 768px) and (max-width: 1023px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 平板显示2列 */
    }
}


/* 申请流程区域适配优化 */

.application-process {
    padding: 100px 0;
    background-color: var(--light-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    /* 允许步骤换行 */
    justify-content: center;
    /* 水平居中 */
    gap: 20px;
    margin-top: 60px;
    position: relative;
}


/* 步骤连接线：仅在桌面端显示 */

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    /* 确保步骤在连接线之上 */
    flex: 1;
    /* 自动分配宽度 */
    min-width: 120px;
    /* 最小宽度，避免过窄 */
    max-width: 180px;
    /* 最大宽度，避免过宽 */
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
    /* 确保数字在连接线之上 */
}

.step h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.step p {
    color: var(--gray-color);
    font-size: 0.9rem;
}


/* 移除步骤之间的独立连接线（改用整体连接线） */

.step:not(:last-child)::after {
    display: none;
}


/* 员工福利区域适配优化 */

.employee-benefits {
    padding: 100px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* 自动适配列数，最小宽度280px */
    gap: 30px;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    height: 100%;
    /* 确保同排卡片高度一致 */
    display: flex;
    flex-direction: column;
    /* 垂直排列内容 */
    justify-content: center;
    /* 垂直居中 */
}

.benefit-icon {
    width: 60px;
    height: 60px;
    /* 补全之前不完整的高度定义 */
    background-color: rgba(50, 34, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--gray-color);
    flex-grow: 1;
    /* 让描述文本占满剩余空间，确保卡片底部对齐 */
}


/* 分设备精细化调整 */


/* 移动端设备（<768px） */

@media (max-width: 767px) {
    .application-process {
        padding: 80px 0;
    }
    .process-steps {
        flex-direction: column;
        /* 步骤垂直排列 */
        align-items: center;
        /* 水平居中 */
        gap: 40px;
        /* 增加垂直间距 */
    }
    .process-steps::before {
        display: none;
        /* 移动端隐藏连接线 */
    }
    .step {
        max-width: 100%;
        /* 占满屏幕宽度 */
        width: 90%;
        /* 留少量左右边距 */
        display: flex;
        /* 步骤数字和内容横向排列 */
        align-items: center;
        text-align: left;
        /* 文本左对齐 */
    }
    .step-number {
        margin: 0 20px 0 0;
        /* 仅右侧有间距 */
        flex-shrink: 0;
        /* 防止数字框被压缩 */
    }
    .employee-benefits {
        padding: 80px 0;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        /* 移动端单列展示 */
        gap: 20px;
    }
}


/* 平板设备（768px-1023px） */

@media (min-width: 768px) and (max-width: 1023px) {
    .process-steps {
        gap: 15px;
    }
    .step {
        min-width: 110px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 平板双列展示 */
    }
}


/* 大屏设备（>1200px） */

@media (min-width: 1200px) {
    .process-steps {
        gap: 30px;
    }
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 大屏三列展示 */
    }
}