/* 全新Banner区域样式 - 融合现代化与古风元素 */
.new-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
}

/* 古风水墨背景 */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(100, 116, 139, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(100, 116, 139, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20,20 Q50,5 80,20 T140,20 Q170,5 180,20 T200,50 Q185,80 200,110 T180,150 Q170,170 150,160 T110,180 Q80,190 50,180 T20,150 Q5,120 20,90 T0,50 Q5,30 20,20 Z" fill="none" stroke="rgba(148, 163, 184, 0.05)" stroke-width="1"/></svg>');
    background-size: cover, cover, 300px;
    opacity: 0.6;
    z-index: 0;
}

/* 现代化粒子背景 */
.particle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) {
    width: 5px;
    height: 5px;
    top: 10%;
    left: 20%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 5s;
}

.particle:nth-child(4) {
    width: 4px;
    height: 4px;
    bottom: 20%;
    right: 25%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    bottom: 60%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: 1s;
}

/* 古风纹理 */
.ink-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><path d="M10,50 Q30,30 50,50 T90,50 Q110,30 130,50 T170,50 Q190,30 210,50 T250,50 Q270,30 290,50" stroke="rgba(148, 163, 184, 0.03)" fill="none" stroke-width="1"/><path d="M20,100 Q60,60 100,100 T180,100 Q220,60 260,100" stroke="rgba(148, 163, 184, 0.02)" fill="none" stroke-width="1"/></svg>');
    background-size: 400px;
    opacity: 0.4;
    z-index: 1;
}

/* 现代化动态光效 */
.modern-light {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.modern-light:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: lightFlow 15s ease-in-out infinite;
}

.modern-light:nth-child(2) {
    bottom: 20%;
    right: 15%;
    animation: lightFlow 18s ease-in-out infinite reverse;
}

/* 古风飘动元素 */
.ink-drop {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.3) 0%, transparent 70%);
    filter: blur(3px);
    z-index: 2;
    animation: inkDrop 20s linear infinite;
}

.ink-drop:nth-child(1) {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.ink-drop:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 5s;
}

.ink-drop:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

/* 现代化数据流 */
.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.data-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(56, 189, 248, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
    animation: particleFlow 12s linear infinite;
}

.data-particle:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
}

.data-particle:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.data-particle:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 9s;
}

/* 古风装饰线条 */
.ink-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
    z-index: 2;
    animation: lineFlow 25s ease-in-out infinite;
}

.ink-line:nth-child(1) {
    top: 30%;
    left: 5%;
    width: 200px;
    animation-delay: 0s;
}

.ink-line:nth-child(2) {
    top: 65%;
    right: 10%;
    width: 150px;
    animation-delay: 5s;
}

/* Banner两侧动态装饰图 - 重新设计 */
.banner-side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    z-index: 2;
    opacity: 0.8;
}

.banner-side-decoration.left {
    left: 3%;
}

.banner-side-decoration.right {
    right: 3%;
}

/* 左侧装饰图 - 古风云纹图案 */
.banner-side-decoration.left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,30 C30,20 40,25 50,30 C60,35 70,30 80,40 C70,50 60,45 50,50 C40,55 30,50 20,60 C30,70 40,65 50,70 C60,75 70,70 80,80" fill="none" stroke="%2338bdf8" stroke-width="1.5" opacity="0.4"/><path d="M15,25 C25,15 35,20 45,25 C55,30 65,25 75,35 C65,45 55,40 45,45 C35,50 25,45 15,55 C25,65 35,60 45,65 C55,70 65,65 75,75" fill="none" stroke="%230ea5e9" stroke-width="1" opacity="0.3"/></svg>') center/contain no-repeat;
    animation: rotateSlow 25s linear infinite;
}

/* 右侧装饰图 - 现代科技感图案 */
.banner-side-decoration.right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2338bdf8" stroke-width="1" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="none" stroke="%230ea5e9" stroke-width="1" opacity="0.2"/><path d="M30,30 L70,70 M70,30 L30,70" stroke="%2338bdf8" stroke-width="1" opacity="0.4"/><circle cx="50" cy="50" r="5" fill="%230ea5e9" opacity="0.6"/></svg>') center/contain no-repeat;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

/* 装饰图内部元素 - 增加动态粒子效果 */
.banner-side-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.8) 0%, transparent 70%);
    filter: blur(1px);
    transform: translate(-50%, -50%);
    animation: innerFloat 8s ease-in-out infinite;
}

/* Banner内容区域 */
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* 古风印章徽章 */
.banner-seal {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 50%;
    margin-bottom: 30px;
    position: relative;
    animation: sealRotate 20s linear infinite;
}

.banner-seal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(148, 163, 184, 0.5)" stroke-width="2"/><path d="M30,30 Q50,20 70,30 T90,50 Q80,70 70,70 T50,90 Q30,80 30,70 T10,50 Q20,30 30,30 Z" fill="none" stroke="rgba(148, 163, 184, 0.3)" stroke-width="1"/></svg>') center/contain no-repeat;
}

/* 标题样式 - 融合古风与现代 */
.banner-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9, #0284c7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    text-align: center;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
}

/* 副标题样式 */
.banner-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 描述文本 */
.banner-description {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 40px;
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 古风装饰框 */
.decorative-frame {
    position: relative;
    padding: 30px;
    margin: 40px 0;
    display: inline-block;
    text-align: center;
}

.decorative-frame::before,
.decorative-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #38bdf8;
}

.decorative-frame::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.decorative-frame::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* 优化统计数据区域样式 */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px auto;
    width: 100%;
    text-align: center;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 0 10px;
    position: relative;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1.2;
    display: block;
}

.stat-label {
    color: #94a3b8;
    font-size: 1rem;
}

/* 按钮容器 */
.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

/* 古风与现代融合按钮 - 美化版本 */
.btn-ancient-modern {
    position: relative;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    animation: buttonPulse 2s infinite;
}

/* 按钮脉冲动画 */
@keyframes buttonPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

/* 主要按钮样式 */
.btn-primary-ancient {
    background: linear-gradient(135deg, #0ea5e9, #0284c7, #0369a1);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
    letter-spacing: 1px;
    animation: primaryButtonGlow 3s infinite alternate;
}

@keyframes primaryButtonGlow {
    0% {
        box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
    }
    100% {
        box-shadow: 0 8px 30px rgba(2, 132, 199, 0.6);
    }
}

.btn-primary-ancient:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.6);
    background: linear-gradient(135deg, #0284c7, #0ea5e9, #0369a1);
    animation: none;
}

.btn-primary-ancient:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

/* 按钮发光效果 */
.btn-primary-ancient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
    z-index: -1;
    border-radius: 50px;
}

.btn-primary-ancient:hover::before {
    left: 100%;
}

/* 按钮内发光效果 */
.btn-primary-ancient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-primary-ancient:hover::after {
    opacity: 1;
}

/* 次要按钮样式 */
.btn-secondary-ancient {
    background: transparent;
    color: #38bdf8;
    border: 2px solid #38bdf8;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
    animation: secondaryButtonFloat 4s infinite ease-in-out;
}

@keyframes secondaryButtonFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
    }
}

.btn-secondary-ancient:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(2, 132, 199, 0.15));
    color: #0ea5e9;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    border-color: #0ea5e9;
    animation: none;
}

.btn-secondary-ancient:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

/* 按钮图标动画 */
.btn-ancient-modern i {
    transition: all 0.3s ease;
    font-size: 1.2rem;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.btn-primary-ancient:hover i {
    transform: translateX(3px);
    animation: none;
}

.btn-secondary-ancient:hover i {
    transform: rotate(15deg);
    animation: none;
}

/* 按钮波纹效果 */
.btn-ancient-modern .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* 动画定义 */
@keyframes lightFlow {
    0% {
        opacity: 0.3;
        transform: scale(1) translate(0, 0);
    }
    25% {
        opacity: 0.5;
        transform: scale(1.1) translate(15px, 10px);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05) translate(10px, -10px);
    }
    75% {
        opacity: 0.6;
        transform: scale(1.15) translate(-10px, 15px);
    }
    100% {
        opacity: 0.3;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes inkDrop {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(15px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0) translateX(30px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(20px) translateX(-15px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
}

@keyframes particleFlow {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

@keyframes lineFlow {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(30px);
        opacity: 0.6;
    }
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

@keyframes sealRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* 新增动画 - 缓慢旋转 */
@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 新增动画 - 脉冲发光 */
@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
        filter: blur(0.5px);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
        filter: blur(1px);
    }
}

/* 新增动画 - 内部元素浮动 */
@keyframes innerFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateX(0) translateY(0);
        opacity: 0.7;
    }
    25% {
        transform: translate(-50%, -50%) translateX(5px) translateY(-5px);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) translateX(0) translateY(0);
        opacity: 0.8;
    }
    75% {
        transform: translate(-50%, -50%) translateX(-5px) translateY(5px);
        opacity: 0.9;
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .new-banner {
        padding: 80px 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-side-decoration {
        width: 100px;
        height: 100px;
    }
    
    .banner-side-decoration.left {
        left: 2%;
    }
    
    .banner-side-decoration.right {
        right: 2%;
    }
    
    .stats-container {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .new-banner {
        padding: 60px 0;
        min-height: auto;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .btn-ancient-modern {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .stats-container {
        gap: 20px;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
        flex: 0 0 30%;
        margin: 0 auto;
    }
    
    .banner-side-decoration {
        display: none;
    }
    
    .banner-content {
        padding: 0 15px;
    }
}

/* 平板和小型设备优化 */
@media (max-width: 600px) {
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 80px;
        flex: 1 1 100%;
        margin: 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .stat-label {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .new-banner {
        padding: 40px 0;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .decorative-frame {
        padding: 20px;
    }
    
    .decorative-frame::before,
    .decorative-frame::after {
        width: 25px;
        height: 25px;
    }
    
    .btn-ancient-modern {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .stats-container {
        gap: 15px;
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 80px;
        flex: 1 1 100%;
        margin: 5px 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .banner-buttons {
        gap: 15px;
    }
    
    .stats-container .stat-item {
        position: relative;
        padding: 5px 0;
    }
    
    .stats-container .stat-number {
        display: inline-block;
        margin-right: 8px;
    }
    
    .stats-container .stat-label {
        display: inline-block;
        vertical-align: middle;
    }
}

/* 专门针对超小屏幕设备优化 */
@media (max-width: 375px) {
    .banner-title {
        font-size: 1.6rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .stats-container {
        margin: 20px 0;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding-left: 20px;
    }
    
    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0;
        display: inline;
        min-width: 70px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        display: inline;
    }
    
    .decorative-frame {
        padding: 15px;
    }
    
    .banner-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-ancient-modern {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
}
