/* ========================================
   远辰智联·蔚县分公司 - 蓝白配色现代化样式
   ======================================== */

/* CSS变量 */
:root {
    --primary: #1a56db;
    --primary-light: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #3b82f6;
    --accent: #60a5fa;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --bg-main: #f0f4ff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(26, 86, 219, 0.15);
    --shadow-sm: 0 2px 8px rgba(26, 86, 219, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 86, 219, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 86, 219, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--bg-main);
    min-height: 100vh;
}

/* 毛玻璃效果 */
.glass-effect {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* ========================================
   导航栏
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 32px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(26, 86, 219, 0.06);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   Hero 首屏区域
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 72px 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 8px;
    font-weight: 600;
}

.hero-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    border: none;
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.45);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-hero-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ========================================
   通用区块样式
   ======================================== */
.section {
    padding: 96px 24px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 86, 219, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   企业公告区
   ======================================== */
.announcement-section {
    background: linear-gradient(180deg, transparent 0%, rgba(240, 244, 255, 0.5) 100%);
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.card {
    padding: 32px;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: white;
}

.card h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    color: var(--gray-500);
    font-size: 14.5px;
    line-height: 1.75;
}

.card .date {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 14px;
    background: rgba(26, 86, 219, 0.08);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* 远程公告标识 */
.remote-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ========================================
   企业信息公示区
   ======================================== */
.company-section {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.info-card {
    padding: 40px;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--primary);
}

.info-content {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.9;
}

.info-features {
    list-style: none;
    margin-top: 24px;
}

.info-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    color: var(--gray-600);
    font-size: 14.5px;
    border-bottom: 1px solid var(--gray-100);
}

.info-features li:last-child {
    border-bottom: none;
}

.info-features li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 7px;
}

/* ========================================
   员工风采区
   ======================================== */
.employees-section {
    background: linear-gradient(180deg, white 0%, var(--bg-main) 100%);
}

.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.employee-card {
    padding: 36px 28px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.employee-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.2);
}

.employee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.employee-card h3 {
    font-size: 19px;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 700;
}

.position {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(26, 86, 219, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12.5px;
    margin-bottom: 14px;
    font-weight: 600;
}

.desc {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

.employee-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.employee-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
}

.employee-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   发展历程时间线
   ======================================== */
.history-section {
    background: white;
}

.timeline {
    position: relative;
    padding-left: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 24px;
    width: 18px;
    height: 18px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.25);
    z-index: 1;
}

.timeline-content {
    padding: 28px 32px;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.timeline-content:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.timeline-content .year {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.8;
}

/* ========================================
   企业文化区
   ======================================== */
.culture-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, white 100%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.culture-card {
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.culture-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(26, 86, 219, 0.08);
    line-height: 1;
}

.culture-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
    color: white;
}

.culture-card h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    padding-left: 18px;
}

.culture-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.culture-card p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.9;
}

/* ========================================
   客户留言区
   ======================================== */
.message-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
}

.message-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-500);
    font-size: 14.5px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-800);
    font-size: 14.5px;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.checkbox-group label:hover {
    border-color: var(--primary);
    background: rgba(26, 86, 219, 0.04);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group span {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

.result-message {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.result-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
}

.result-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
}

/* ========================================
   页脚
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 64px 24px 32px;
}

.footer-content {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.footer-info a:hover {
    color: white;
    text-decoration: underline;
}

.footer-divider {
    width: 4px;
    height: 4px;
    background: var(--gray-600);
    border-radius: 50%;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* 动画 */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--gray-200);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        padding: 44px 28px;
    }
    
    .section {
        padding: 70px 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .announcement-grid,
    .employee-grid,
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 36px;
    }
    
    .timeline-marker {
        left: -28px;
        width: 16px;
        height: 16px;
    }
    
    .message-form-wrapper {
        padding: 32px 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .card,
    .info-card,
    .culture-card,
    .timeline-content {
        padding: 24px 20px;
    }
}
