
/* Navbar Base */
.yanyi-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent); /* 默认淡渐变 */ */
    padding: 24px 0;
}

.products-navbar .nav-item {color: #fff;}


/* Scrolled State (JS Toggled) */
.yanyi-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    /* padding: 16px 0; */
    box-shadow: 0 4px 30px -10px rgba(220, 38, 38, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}
.yanyi-navbar.son .nav-item,
.yanyi-navbar.scrolled .nav-item {color: #000;}
/* Top Line */
.nav-top-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, #bf2626, transparent);
    opacity: 0.8;
    box-shadow: 0 0 10px #bf2626;
}

/* Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 0 40px;
}

/* Logo */
.nav-logo img {
	width: 140px;
}
.logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(to top right, #bf2626, #bf2626);
    color: white; font-weight: 900; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
    border: 1px solid #f87171;
}
.logo-text {
    font-size: 20px; font-weight: 800; color: #111827; letter-spacing: 1px;
}
#header.scroll-center .nav-logo img:nth-child(1) {display: none;}
#header.scroll-center .nav-logo img:nth-child(2) {display: block;}

/* Desktop Links */
.nav-links { display: flex; align-items: center; gap: 60px; }

.nav-item {
    font-size: 18px; font-weight: 400; color: #fff;line-height: 86px;
    text-decoration: none; position: relative; transition: color 0.3s;
}
/*.yanyi-navbar.home .nav-item {color: #000;}*/
/* .nav-item:hover { color: #111827; } */
.nav-item:hover { color: #bf2626; }

/* Active State Underline */
.nav-item::after {
    content: '';
    position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px;
    background: #bf2626; transform: scaleX(0); transition: transform 0.3s;
}
.nav-item:hover::after {
    transform: scaleX(1); /*box-shadow: 0 0 8px #bf2626;*/
}
.nav-item.cur::after {
    transform: scaleX(1); /*box-shadow: 0 0 8px #bf2626;*/
}

.header-icons { display: flex; gap: 24px; align-items: center; height: 96px; }
.header-icons img { width: 20px; height: 20px; cursor: pointer; filter: brightness(0) invert(1); transition: filter 0.3s; }

#header.scroll-center .header-icons img {filter: none;}

#main-nav .nav-item.cur {color: #bf2626;}
/* Contact Button */
.btn-contact {
    position: relative; overflow: hidden;
    background: #000; color: white;
    padding: 8px 24px; border-radius: 99px;
    font-size: 20px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s; border: 1px solid rgba(127, 29, 29, 0.3);
}
.btn-contact:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(220, 38, 38, 0.5); }

.btn-glow {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(220,38,38,0.3), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.group:hover .btn-glow { opacity: 1; }

/* Mobile Menu */
.menu-toggle {
    background: none; border: none; cursor: pointer; /*color: #111827;*/color: #fff;
}

#header.scroll-center .menu-toggle{color: #111827;}

.mobile-drawer {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: white; border-top: 1px solid #fee2e2;
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%); opacity: 0; pointer-events: none;
    transition: all 0.3s ease;
    z-index: -1;
	max-height: 80vh;
	overflow: scroll;
}
.mobile-drawer.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
}

.mobile-link {
    font-size: 16px; font-weight: 700; color: #4b5563; text-decoration: none;
    padding: 8px 0; border-bottom: 1px solid #f3f4f6;
}
.mobile-link:hover, .mobile-link.active { color: #bf2626; }

/* --- Dropdown Styles (Desktop) --- */

/* 1. 容器：相对定位，用于放置下拉菜单 */
.nav-dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* 下拉箭头图标 */
.arrow-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    transition: transform 0.3s;
}
/* Hover 时箭头旋转 */
.nav-dropdown-wrapper:hover .arrow-icon {
    transform: rotate(180deg);
}

/* 2. 下拉面板：默认隐藏 */
.dropdown-panel {
    position: absolute;
    top: 94%; /* 在导航栏正下方 */
    left: 50%;
    transform: translateX(-50%) translateY(20px); /* 初始位置稍微靠下 */
    background: white;
    min-width: 200px; /* 最小宽度 */
    padding: 12px 0 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    
    /* 隐藏状态 */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    
    /* 动画 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 顶部小三角装饰 (可选) */
.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid #f3f4f6;
    border-top: 1px solid #f3f4f6;
    display: none;
}

/* 顶部小三角装饰 (可选) */
.dropdown-panel::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* 3. 显示状态：Hover 容器时显示面板 */
.nav-dropdown-wrapper:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px); /* 上浮到正确位置 */
}

/* 4. 下拉链接样式 */
.drop-link {
    display: flex;
    flex-direction: column; /* 让标题和描述垂直排列 */
    padding: 10px 16px;
    /* border-radius: 8px; */
    text-decoration: none;
    color: #4b5563; /* gray-600 */
    transition: all 0.2s;
    white-space: nowrap; /* 防止换行 */
    text-align: center;
}

.drop-link span {
    font-size: 15px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 2px;
}

.drop-link small {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 400;
}

/* Link Hover */
.drop-link:hover {
    background-color: #fef2f2; /* red-50 */
}
.drop-link:hover span {
    color: #bf2626; /* red-600 */
    font-weight: 600;
}

/* --- Mobile Specific Styles --- */
.mobile-group-title {
    font-size: 12px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-left: 0;
}

.mobile-link.indent {
    padding-left: 16px;
    font-size: 14px;
    border-left: 2px solid #f3f4f6;
    color: #6b7280;
}
.mobile-link.indent:hover {
    border-left-color: #bf2626;
    background-color: #f9fafb;
}



#header.hover .yanyi-navbar{background-color: #fff;}
#header.hover .nav-logo img:nth-child(1) {display: none;}
#header.hover .nav-logo img:nth-child(2) {display: block;}
#header.hover .yanyi-navbar .nav-item{color: #000;}
#header.hover .header-icons img {filter: none;}

#header.hover .nav-item:hover { color: #bf2626;font-weight: 600;}
#header.hover .nav-item.cur { color: #bf2626;font-weight: 600;}
/*#header.hover .yanyi-navbar.home .nav-item {color: #bf2626;font-weight: 600;}*/





@media (max-width: 1280px) {
	.nav-links {gap: 20px; }
}

/* Responsive Utils */
@media (max-width: 1024px) {
    .hidden-mobile { display: none !important; }

    .nav-container{padding: 0;}
    .header-icons{margin: 0 20px 0 auto;}
    
}
@media (min-width: 1025px) {
    .hidden-pc { display: none !important; }
}

@media (max-width: 576px) {
    .nav-logo img {
    	width: 80px;
    }
    .header-icons{height: 62px;}
}


#top {position: fixed;right: 52px;bottom: 60px;}
#top .item {cursor:pointer;width: 60px;height: 60px;border-radius: 50%;background: #fff;text-align: center;font-size: 14px;font-weight: 500;color: var(--mainColor);box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.10);display: flex;align-items: center;justify-content: center;flex-direction: column;}
#top .item:hover {background: var(--mainColor);color: #fff;}

@media (max-width: 768px) {
    #top {right: .3rem;bottom: .3rem;}
    #top .item{width: 1rem;height: 1rem;}
}

.my_footer_0001_0Wrap{padding: 80px 0 40px;background: url(/module/my/footer/0001/images/bottom.jpg) no-repeat center / cover;}
@media(max-width: 992px){
    .my_footer_0001_0Wrap{padding: .606rem 0 .303rem;}
}
@media(max-width: 768px){
    .my_footer_0001_0Wrap{padding: .8rem 0 .4rem;}
}

/* 顶部 CTA 区 */
#my_footer_0001_0Top{ display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 90px; }
#my_footer_0001_0Top .f-top-left h2 { font-size: 40px; font-weight: 400; color: #fff; line-height: 1.5; margin-bottom: 35px; letter-spacing: 1px; }
#my_footer_0001_0Top .f-top-left h2 strong { font-size: 48px; font-weight: 700; display: block; }

#my_footer_0001_0Top .f-btn { 
    width: 150px; height: 55px; display: flex; align-items: center; justify-content: center; 
    background-color: var(--mainColor); color: #fff; font-size: 18px; border-radius: 30px; 
    transition: all 0.3s ease; 
}
#my_footer_0001_0Top  .f-btn:hover { background-color: #bf2626; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(191, 38, 38, 0.2); }

#my_footer_0001_0Top .f-top-right { display: flex; flex-direction: column; align-items: center; gap: 12px; } 
#my_footer_0001_0Top .f-top-right img { width: 130px; height: 130px; background: #fff; border-radius: 6px; }
#my_footer_0001_0Top .f-top-right p { font-size: 16px; color: #aaa; margin: 0; }

@media(max-width: 1280px){
    #my_footer_0001_0Top .f-top-left h2 { font-size: 32px;}
    #my_footer_0001_0Top .f-top-left h2 strong { font-size: 42px;}
}
@media(max-width: 992px){
    #my_footer_0001_0Top{flex-direction: column; margin-bottom: .682rem; gap: .4rem 0;}
    #my_footer_0001_0Top .f-top-left h2 { font-size: .242rem; margin-bottom: .265rem; }
    #my_footer_0001_0Top .f-top-left h2 strong { font-size: .318rem;}

    #my_footer_0001_0Top .f-btn { width: 1.136rem; height: .417rem; font-size: .136rem; border-radius: .227rem; }

    #my_footer_0001_0Top .f-top-right { gap: .091rem; display: none;} 
    #my_footer_0001_0Top .f-top-right img { width: .985rem; height: .985rem; border-radius: .045rem; }
    #my_footer_0001_0Top .f-top-right p { font-size: .121rem;}
}
@media(max-width: 768px){
    #my_footer_0001_0Top{ gap: .5rem 0;}
    #my_footer_0001_0Top .f-top-left h2 { font-size: .32rem; margin-bottom: .4rem; }
    #my_footer_0001_0Top .f-top-left h2 strong { font-size: .42rem;}

    #my_footer_0001_0Top .f-btn { width: 2.2rem; height: .72rem; font-size: .3rem; border-radius: .36rem; }

    #my_footer_0001_0Top .f-top-right { gap: .2rem; } 
    #my_footer_0001_0Top .f-top-right img { width: 2rem; height: 2rem; border-radius: .09rem; }
    #my_footer_0001_0Top .f-top-right p { font-size: .3rem;}
}


#my_footer_0001_0Mid { display: flex; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 80px; justify-content: space-between;}
#my_footer_0001_0Mid .head {width: 25%; }
#my_footer_0001_0Mid .f-top-right { display: none; flex-direction: column; align-items: center; gap: 12px; } 
#my_footer_0001_0Mid .f-top-right img { width: 130px; height: 130px; background: #fff; border-radius: 6px; }
#my_footer_0001_0Mid .f-top-right p { font-size: 16px; color: #aaa; margin: 0; }
#my_footer_0001_0Mid .f-logo-col img { max-width: 236px; height: 71px; object-fit: contain; margin-bottom: 24px; }
#my_footer_0001_0Mid .f-logo-col p { font-size: 20px; color: #606161; }
#my_footer_0001_0Mid .f-links { width: 75%; display: flex; justify-content: space-between; }
#my_footer_0001_0Mid .f-link-col .nav_one{ margin-bottom: 30px; }
#my_footer_0001_0Mid .f-link-col h4 { font-size: 18px; color: #fff; font-weight: 600;}
#my_footer_0001_0Mid .f-link-col .li { display: block; font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 18px; transition: all 0.3s ease; }
#my_footer_0001_0Mid .f-link-col .li:hover { color: #fff; transform: translateX(5px); }
@media(max-width: 1024px){
    #my_footer_0001_0Mid{flex-direction: column;gap: .4rem 0;margin-bottom: 50px;}
    #my_footer_0001_0Mid .f-links { width: 100%; }
}
@media(max-width: 992px){
    #my_footer_0001_0Mid { padding-top: .606rem; margin-bottom: .379rem;}
    #my_footer_0001_0Mid .f-logo-col img { width: auto; height: .538rem; margin-bottom: .182rem; }
    #my_footer_0001_0Mid .f-logo-col p { font-size: .152rem; }
    #my_footer_0001_0Mid .f-link-col .nav_one{margin-bottom: .227rem;}
    #my_footer_0001_0Mid .f-link-col h4 { font-size: .136rem; }
    #my_footer_0001_0Mid .f-link-col .li { font-size: .121rem; margin-bottom: .136rem; }
	
	#my_footer_0001_0Mid .f-top-right { gap: .091rem; }
	#my_footer_0001_0Mid .f-top-right img { width: .985rem; height: .985rem; border-radius: .045rem; }
	#my_footer_0001_0Mid .f-top-right p { font-size: .121rem;}
	
	#my_footer_0001_0Mid .head { width: 100%; display: flex;align-items: center;justify-content: space-between;}
	#my_footer_0001_0Mid .f-top-right {display: flex;}
}
@media(max-width: 768px){
   
    #my_footer_0001_0Mid .f-logo-col img { width: auto; height: 1rem; }
    #my_footer_0001_0Mid .f-logo-col p { font-size: .3rem; }
    #my_footer_0001_0Mid .f-links{flex-direction: column;gap: .3rem 0;}

    #my_footer_0001_0Mid .f-links .jt{display: block; width: 3.5vw;}
    #my_footer_0001_0Mid .f-links .svg{fill: #fff; transform: scale(1) rotate(180deg);}
    #my_footer_0001_0Mid .f-link-col.cur .jt .svg{transform: scale(1) rotate(90deg);}

    #my_footer_0001_0Mid .f-link-col .nav_one{margin-bottom: 0;}
    #my_footer_0001_0Mid .f-link-col.cur .nav_one{margin-bottom: .2rem;}
    #my_footer_0001_0Mid .f-link-col h4 { font-size: .36rem; }
    #my_footer_0001_0Mid .f-link-col .li { font-size: .3rem; margin-bottom: .25rem; }

    #my_footer_0001_0Mid .f-link-col .nav_two{height: 0;overflow: hidden;}
	
	#my_footer_0001_0Mid .f-top-right { gap: .2rem; }
	#my_footer_0001_0Mid .f-top-right img { width: 2rem; height: 2rem; border-radius: .09rem; }
	#my_footer_0001_0Mid .f-top-right p { font-size: .3rem;}
}



#my_footer_0001_0Bot { display: flex; justify-content: space-between; align-items: flex-end; }
#my_footer_0001_0Bot .f-contact {} 
#my_footer_0001_0Bot .f-contact p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 2.2; margin: 0; }
#my_footer_0001_0Bot .f-copyright { text-align: right; } 
#my_footer_0001_0Bot .f-socials { display: flex; gap: 16px; margin-bottom: 25px; justify-content: flex-end; }
#my_footer_0001_0Bot .f-socials a { width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
#my_footer_0001_0Bot .f-socials a img { width: 40px; height: 40px; filter: brightness(0) invert(1); }
#my_footer_0001_0Bot .f-socials a:hover { transform: translateY(-3px); opacity: 0.8; }
#my_footer_0001_0Bot .f-copyright p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media(max-width: 992px){
    #my_footer_0001_0Bot .f-contact p { font-size: .121rem;}
    #my_footer_0001_0Bot .f-socials {gap: .121rem; margin-bottom: .189rem; }
    #my_footer_0001_0Bot .f-socials a { width: .303rem; height: .303rem; }
    #my_footer_0001_0Bot .f-socials a img { width: .303rem; height: .303rem;}
    #my_footer_0001_0Bot .f-copyright p { font-size: .121rem; }
}
@media(max-width: 768px){
    #my_footer_0001_0Bot{flex-direction: column;gap: .4rem 0;}
    #my_footer_0001_0Bot .f-contact p { font-size: .3rem;}
    #my_footer_0001_0Bot .f-socials {gap: .3rem; margin-bottom: .3rem; justify-content: center;}
    #my_footer_0001_0Bot .f-socials a { width: .606rem; height: .606rem; }
    #my_footer_0001_0Bot .f-socials a img { width: .606rem; height: .606rem;}
    #my_footer_0001_0Bot .f-copyright { text-align: center; } 
    #my_footer_0001_0Bot .f-copyright p { font-size: .3rem; }
}



#my_banner_0001_0 {position: relative;}
#my_banner_0001_0:before {content: '';position: absolute;left: 0;top: 0;width: 100%;height: 100%;background: linear-gradient(90deg, #000 0%, transparent 50%, var(---, #000) 100%);z-index: 2;}
#my_banner_0001_0 .img {padding-top: 420px;}
#my_banner_0001_0 .word {position: absolute;left: 50%;bottom: 80px;transform: translate(-50%,0);color: #fff;z-index: 2;}
#my_banner_0001_0 .title {font-weight: 500;font-size: 62px;line-height: 87px;}
#my_banner_0001_0 .subname {margin-top: 10px;font-size: 24px;font-weight: 400;line-height: 34px;}
#my_banner_0001_0 .subname span {color:var(--mainColor)}

@media (max-width: 992px) {
   #my_banner_0001_0 .img {padding-top: 70%;}
   #my_banner_0001_0 .word {position: absolute;left: 50%;bottom: auto;top: 50%; transform: translate(-50%,-50%);color: #fff;}
   #my_banner_0001_0 .title {line-height: 1.6;font-size: 0.376rem;}
   #my_banner_0001_0 .subname {line-height: 1.6;font-size: 0.271rem;margin-top: 0.15rem;}
}
@media (max-width: 768px) {
   #my_banner_0001_0 .title {font-size: 0.62rem;}
   #my_banner_0001_0 .subname {font-size: 0.24rem;margin-top: 0.2rem;}
}
@media (max-width: 576px) {
   #my_banner_0001_0 .title {font-size: 0.5rem;}
   #my_banner_0001_0 .subname {font-size: 0.36rem;margin-top: 0.2rem;}
}

#canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
			overflow: hidden;
        }
:root {
      --color-primary: #bf2626; 
      --color-vi: #bf2426; 
      --nav-width: 1800px;
      --content-width: 1520px;
      --bg-light: #f4f5f7; 
      --font-zh: 'MiSans', 'Microsoft YaHei', sans-serif;
      --font-en: 'Montserrat', sans-serif;
      --font-song: 'Noto Serif SC', 'Source Han Serif SC', 'SimSun', serif;
  }
/* ==========================================================================
   8. 创新平台 1+6 (第 4 屏)
   ========================================================================= */
   .content-wrapper { width: var(--content-width); max-width: 92%; margin: 0 auto; position: relative; z-index: 10; }
   
   
.global-section { background-color: #f5f5f5; position: relative; height: 100vh; overflow: hidden; display: flex; align-items: center;padding: 100px 0; }
.global-marquee-box { position: absolute; top: 160px; left: 0; width: 100%; overflow: hidden; z-index: 1; pointer-events: none; white-space: nowrap; }
.marquee-text { display: inline-block; font-size: 350px; font-weight: 800; color: #ffffff; opacity: 1; font-family: var(--font-en); white-space: nowrap; animation: marquee 300s linear infinite; padding-left: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.global-section-bg { z-index: 2; pointer-events: none; background-position: bottom center; background-size: contain; background-repeat: no-repeat; }
#globe-canvas-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-70%); width: 592px; height: 592px; z-index: 3; cursor: grab; border-radius: 50%; }
#globe-canvas-container:active { cursor: grabbing; }
canvas#globeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; }
.globe-shadow { position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; border-radius: 50%; box-shadow: 45px 78px 80px -10px rgba(191, 38, 38, 0.35); z-index: -1; pointer-events: none; background: transparent; }
#global-card-sz { position: absolute; top: 38%; left: 55%; z-index: 100; display: none; cursor: pointer; animation: fadeUp 0.4s ease; }
#global-card-sz img { box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-radius: 12px; display: block; }
.global-layout { display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 140px 0 60px 0; z-index: 10; position: relative; pointer-events: none; }
.global-header { pointer-events: auto; }
.global-title { font-size: 55px; font-weight: 600; color: #333; line-height: 1; letter-spacing: 2px; margin-bottom: 20px; }
.global-desc { font-size: 18px; color: #666; max-width: 500px; line-height: 1.8; font-weight: 400; text-align: justify; }
.global-bottom { display: flex; justify-content: center; gap: 80px; width: 100%; pointer-events: auto; margin-top: auto; padding-bottom: 20px; }
.g-stat-item { display: flex; align-items: center; gap: 24px; }
.g-stat-icon { width: 100px; height: 100px; border-radius: 50%; background-color: #ffffff; box-shadow: 0 10px 25px rgba(191, 38, 38, 0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-stat-icon img { width: 36px; height: 36px; object-fit: contain; }
.g-stat-text { display: flex; flex-direction: column; gap: 8px; }
.g-stat-text h3 { font-size: 30px; font-weight: 500; color: var(--color-primary); margin: 0; line-height: 1; }
.g-stat-text p { font-size: 18px; color: #666; margin: 0; line-height: 1; font-weight: 400; }

@media screen and (max-width:1024px) {
	.global-bottom {gap: 30px;}
}
@media screen and (max-width:992px) {
	.global-title { font-size: 0.414rem; margin-bottom: 0.15rem; }
	.global-desc { font-size: 0.136rem;}
	.g-stat-text h3 { font-size: 0.226rem;}
	.g-stat-text p { font-size: 0.136rem;}
	.global-section-bg {display: none;}
}
@media screen and (max-width:768px) {
	.global-section {padding: 50px 0;height: auto;}
	.global-title { font-size: 0.55rem; margin-bottom: 0.2rem; }
	.global-desc { font-size: 0.18rem;}
	.g-stat-text h3 { font-size: 0.3rem;}
	.g-stat-text p { font-size: 0.18rem;}
	.global-bottom {display: grid; grid-template-columns: repeat(1,1fr);}
	.global-layout {padding: 0;}
	#globe-canvas-container {transform: translate(0);width: 350px;height: 350px;position: relative;top: 0;left: 0;}
	canvas#globeCanvas {position: relative;z-index: 10;} 
	.global-section {flex-direction: column;}
	/* #globe-canvas-container {transform: translate(-50%, -70%);} */
	/* canvas#globeCanvas {display: none;} */
	/* #globe-canvas-container {display: none;} */
	
	.global-header {margin-top: 30px;}
	.global-bottom {margin-top: 30px;}
}
@media screen and (max-width:576px) {
	.global-desc { font-size: 0.26rem;}
	.g-stat-text p { font-size: 0.26rem;}
}



.ly_web_layout_0001_2Wrap {
    padding: 100px 0;
    background: #F9FAFB;
}

#ly_web_layout_0001_2Title {
    text-align: center;
    margin-bottom: 50px;
}

#ly_web_layout_0001_2Title .title {
    font-size: 52px;
    font-weight: 500;
    color: #121212;
    position: relative;
    padding-bottom: 14px;
}

#ly_web_layout_0001_2Title .title::after {
    content: "";
    width: 50px;
    height: 6px;
    background: linear-gradient(90deg, #820000 0%, #B43430 100%);
    border-radius: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

#ly_web_layout_0001_2Con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

#ly_web_layout_0001_2Con .item {
    background: white;
    border-radius: 30px;
    padding: 40px 40px 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #EBEDF0;
    transition: all 0.4s ease;
    grid-column: span 1;
}


#ly_web_layout_0001_2Con .item:first-child {
    grid-column: span 2;
}

#ly_web_layout_0001_2Con .bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #E4E8EF 0%, rgba(228, 232, 239, 0.2) 100%);
    transform-origin: left;
    transition: transform 0.5s ease;
}

#ly_web_layout_0001_2Con .gray {
    background: linear-gradient(90deg, #E4E8EF 0%, rgba(228, 232, 239, 0.2) 100%);
    transform: scaleX(100%);
    z-index: 0;
}

#ly_web_layout_0001_2Con .red {
    background: linear-gradient(90deg, #DC2626 0%, rgba(220, 38, 38, 0.1) 100%);
    transform: scaleX(0);
    z-index: 1;
}

#ly_web_layout_0001_2Con .icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #B43430;
    transition: all 0.5s;
}

#ly_web_layout_0001_2Con .icon .svg {
    fill: #121212;
}

#ly_web_layout_0001_2Con .title {
    margin-top: 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #121212;
}

#ly_web_layout_0001_2Con .desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5em;
    min-height: calc(1.5em * 2);
    font-weight: 300;
    color: #6B7280;
}

#ly_web_layout_0001_2Con .item:hover {
    /*border: 1px solid rgba(220, 38, 38, 0.5);*/
    box-shadow: 0px 20px 30px 0px rgba(222, 48, 48, 0.1);
}

#ly_web_layout_0001_2Con .item:hover .bar.gray {
    transform: scaleX(100%);
}

#ly_web_layout_0001_2Con .item:hover .bar.red {
    transform: scaleX(1);
}


@media (max-width: 1440px) {
    #ly_web_layout_0001_2Title .title {
        font-size: 46px;
    }
}

@media (max-width: 1366px) {
    #ly_web_layout_0001_2Title {
        margin-bottom: 40px;
    }

    #ly_web_layout_0001_2Title .title {
        font-size: 42px;
    }

    #ly_web_layout_0001_2Con .item {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .ly_web_layout_0001_2Wrap {
        padding: .6061rem 0;
    }

    #ly_web_layout_0001_2Title .title {
        font-size: .3182rem;
    }

    #ly_web_layout_0001_2Con {
        grid-template-columns: repeat(3, 1fr);
        gap: .1894rem;
    }

    #ly_web_layout_0001_2Con .item {
        padding: .2273rem;
        border-radius: .4rem;
    }
    
    #ly_web_layout_0001_2Con .title {
        margin-top: .1515rem;
        font-size: .1515rem;
        line-height: 1.5em
    }

    #ly_web_layout_0001_2Con .desc {
        margin-top: .1136rem;
        font-size: .1212rem;
    }
    
    #ly_web_layout_0001_2Con .item:hover,
    #ly_web_layout_0001_2Con .item {
        box-shadow: 0px 20px 30px 0px rgba(222, 48, 48, 0.1);
        /*border: 1px solid rgba(220, 38, 38, 0.5);*/
        transform: translateY(0);
    }

    #ly_web_layout_0001_2Con .item .bar.gray {
        transform: scaleX(100%);
    }

    #ly_web_layout_0001_2Con .item .bar.red {
        transform: scaleX(1);
    }

    #ly_web_layout_0001_2Con .item .icon {
        background: rgba(220, 38, 38, 0.1);
    }

    #ly_web_layout_0001_2Con .item .icon .svg {
        fill: #B43430;
    }
}

@media (max-width: 768px) {
    .ly_web_layout_0001_2Wrap {
        padding: .8rem 0;
    }

    #ly_web_layout_0001_2Title {
        margin-bottom: .4rem;
    }

    #ly_web_layout_0001_2Title .title {
        font-size: .48rem;
    }

    #ly_web_layout_0001_2Con {
        grid-template-columns: repeat(1, 1fr);
        gap: .3rem;
    }

    #ly_web_layout_0001_2Con .item:first-child {
        grid-column: span 1;
    }

    #ly_web_layout_0001_2Con .item {
        padding: .4rem;
    }

    #ly_web_layout_0001_2Con .title {
        margin-top: .3rem;
        font-size: .3rem;
    }

    #ly_web_layout_0001_2Con .desc {
        margin-top: .25rem;
        font-size: .28rem;
    }
}

@keyframes updown {0%{transform: translateY(-10px);}50%{transform: translateY(10px);}100%{transform: translateY(-10px);}}
@keyframes moveRotate{0%{transform: translate(-50%,-50%) rotate(0);}100%{transform: translate(-50%,-50%) rotate(360deg);}}
@keyframes scale1{0% {transform: scale(1);opacity: .6;}100% {transform: scale(1.5);opacity: .4;}}
@keyframes scale2{0% {transform: scale(1.5);opacity: .4;}100% {transform: scale(1.8);opacity: .0;}}

#index_server{padding: 130px 0 315px;}
#index_server .title{font-size: 46px;color: #333;font-family: "Misans-Medium";}
#index_server .content{width: 26.25%;margin: 100px auto 0;background: url(/images/index-server-bg.png) no-repeat center / cover;box-shadow: 25px 15px 110px 0 rgba(7,30,97,.2);border-radius: 50%;}
#index_server .content::before{content: '';padding-top: 100%;display: block;}
#index_server .content .center{display: flex;flex-direction: column;justify-content: center;align-items: center;}
#index_server .content .center .logo{width: 211px;max-width: 50%;}
#index_server .content .center .tit{font-size: 26px;color: var(--mainColor);line-height: 1.1;font-family: "Misans-Medium";text-align: center;margin-top: 15px;}
#index_server .content .center .tit span {font-size: 16px;}
#index_server .content .center .icon{width: 72px;height: 72px;border-radius: 50%;background-color: var(--mainColor);font-size: 36px;color: #fff;right: 30px;bottom: 30px;z-index: 2;}
#index_server .content .center .icon .scale1{animation:scale1 3s infinite linear;width: 100%;height: 100%;position: absolute;top: 0;left: 0;background: var(--mainColor);border-radius: 50%;z-index: -1;pointer-events: none;}
#index_server .content .center .icon .scale2{animation:scale2 3s infinite linear;width: 100%;height: 100%;position: absolute;top: 0;left: 0;background: var(--mainColor);border-radius: 50%;z-index: -1;pointer-events: none;}
#index_server .content .center .icon:hover{transform: rotate(180deg);}

#index_server .content .item{z-index: 3;animation: updown 4s linear infinite 0s;}
#index_server .content .item .top{text-align: center;padding: 5px; border-radius: 50%;display: flex;font-family: "Misans-Medium";justify-content: center;align-items: center;box-shadow: 20px 40px 50px 0 rgba(7,30,97,.15);}
#index_server .content .item .txt{width: 240px;font-size: 20px;color: #333;line-height: 1.5;margin-top: 12px;position: absolute;left: 50%;transform: translateX(-50%);text-align: center;}
#index_server .content .item .top .unit{font-size: 18px;line-height: 1.6;}

#index_server .content .item1{left: -52%;top: -6%;animation-duration: 2.5s;}
#index_server .content .item1 .top{width: 145px;height: 145px;flex-direction: column;}
#index_server .content .item1 .top .num{font-size: 60px;line-height: 1;}
/* #index_server .content .item1 .top .unit{font-size: 18px;line-height: 1;} */

#index_server .content .item2{left: 117%;top: -3%;animation-duration: 3s;}
#index_server .content .item2 .top{width: 145px;height: 145px;}
#index_server .content .item2 .top .num{font-size: 50px;line-height: 1;}
/* #index_server .content .item2 .top .unit{font-size: 30px;line-height: 1;margin-top: 10px;} */

#index_server .content .item3{left: -100%;top: 60%;animation-duration: 2.6s;}
#index_server .content .item3 .top{width: 145px;height: 145px;}
#index_server .content .item3 .top .num{font-size: 60px;line-height: 1;}

#index_server .content .item4{left: -40%;top: 85%;animation-duration: 2.8s;}
#index_server .content .item4 .top{width: 145px;height: 145px;}
#index_server .content .item4 .top .num{font-size: 50px;line-height: 1;}

#index_server .content .item5{left: 172%;top: 60%;animation-duration: 3.4s;}
#index_server .content .item5 .top{width: 145px;height: 145px;}
#index_server .content .item5 .top .num{font-size: 50px;line-height: 1;}
/* #index_server .content .item5 .top .unit{font-size: 30px;line-height: 1;margin-top: 10px;} */

#index_server .content .item6{right: -40%;top: 85%;animation-duration: 3.2s;}
#index_server .content .item6 .top{width: 145px;height: 145px;}
#index_server .content .item6 .top .num{font-size: 50px;line-height: 1;}

#index_server .content .item7{left: 35%;top: -45%; animation-duration: 3.6s;}
#index_server .content .item7 .top{width: 145px;height: 145px;}
#index_server .content .item7 .top .num{font-size: 50px;line-height: 1;}

#index_server .content .item1 .top,
#index_server .content .item3 .top,
#index_server .content .item5 .top,
#index_server .content .item7 .top{background-color: var(--mainColor);color: #fff;}

#index_server .content .item2 .top,
#index_server .content .item4 .top,
/* #index_server .content .item6 .top{background-color: #fff;color: var(--mainColor);} */
#index_server .content .item6 .top{background-color: var(--mainColor);color: #fff;}

#index_server .content .round{border: 1px solid var(--mainColor);border-radius: 50%;left: 50%;top: 50%;transform: translate(-50%,-50%);pointer-events: none;}
#index_server .content .round1{width: 182%;height: 182%;opacity: .15;}
#index_server .content .round2{width: 280%;height: 280%;opacity: .12;}
#index_server .content .round3{width: 380%;height: 380%;opacity: .1;}
#index_server .content .ico{left: 50%;top: 50%;transform: translate(-50%,-50%);pointer-events: none;}
#index_server .content .ico1{width: 126%;height: 126%;animation: moveRotate 15s infinite linear;}
#index_server .content .ico1::before{content: '';position: absolute;width: 50px;height: 50px;opacity: .2;border-radius: 50%;left: 0;top: 0;background-color: var(--mainColor);}
#index_server .content .ico2{width: 195%;height: 195%;animation: moveRotate 30s infinite linear;}
#index_server .content .ico2::before{content: '';position: absolute;width: 35px;height: 35px;opacity: .1;border-radius: 50%;left: 0;top: 0;background-color: var(--mainColor);}
#index_server .content .ico3{width: 270%;height: 270%;animation: moveRotate 45s infinite linear;}
#index_server .content .ico3::before{content: '';position: absolute;width: 28px;height: 28px;opacity: .1;border-radius: 50%;left: 0;top: 0;background-color: var(--mainColor);}

@media(max-width: 1536px){
    #index_server .content .center .icon{right: 10px;bottom: 10px;}
    #index_server .content .center .tit{font-size: 22px;}

    #index_server .content .item .top{transform: scale(.8);}
    #index_server .content .item .txt{font-size: 18px;margin-top: 2px;}
}
@media(max-width: 1280px){
    #index_server .content{width: 30%;}
    #index_server .content .center .tit{font-size: 18px;margin-top: 2px;}
    #index_server .content .item .top{transform: scale(.7);}
    #index_server .content .item .txt{font-size: 16px;margin-top: -5px;}
}
@media(max-width: 1100px){
    #index_server{padding: 100px 0;}
    #index_server .content{width: 50%;margin-top: 60px;}
    #index_server .content .cont{display: none;}
    #index_server .cont_m{display: flex;flex-wrap: wrap;margin-top: 80px;}
    #index_server .cont_m .item{width: 33.333%;margin-bottom: 30px;padding-right: 30px;}
    #index_server .cont_m .item .top{display: flex;}
    #index_server .cont_m .item .top .num{font-size: 40px;color: #333;line-height: 1;font-family: "Misans-Medium";}
    #index_server .cont_m .item .top .unit{font-size: 26px;color: #333;line-height: 1;font-family: "Misans-Medium";margin-top: 10px;}
    #index_server .cont_m .item .txt{font-size: 20px;color: #333;line-height: 1.5;margin-top: 12px;}
}
@media(max-width: 750px){
    #index_server .content{width: 60%;}
    #index_server .content .center .tit{font-size: 30px;margin-top: 15px;}
    #index_server .cont_m .item{width: 50%;}
    #index_server .cont_m .item .top .num{font-size: 48px;}
    #index_server .cont_m .item .top .unit{font-size: 30px;margin-top: 15px;}
    #index_server .cont_m .item .txt{font-size: 30px;}
}
.ly_web_layout_0004_4Wrap {
    padding: 100px 0;
    background: #F9FAFB;
}

#ly_web_layout_0004_4Title {
    margin-bottom: 50px;
}

#ly_web_layout_0004_4Title .title {
    font-size: 52px;
    font-weight: 500;
    color: #121212;
    position: relative;
    padding-bottom: 14px;
}

#ly_web_layout_0004_4Title .title::after {
    content: "";
    width: 50px;
    height: 6px;
    background: linear-gradient(90deg, #820000 0%, #B43430 100%);
    border-radius: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
}

#ly_web_layout_0004_4Con {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
}

#ly_web_layout_0004_4Con .item {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 86px;
}

#ly_web_layout_0004_4Con .item:nth-child(2n) {
    flex-direction: row-reverse;
}

#ly_web_layout_0004_4Con .img {
    width: 49%;
    border-radius: 20px;
    background-color: #F3F4F6;
}

#ly_web_layout_0004_4Con .img::before {
    padding-top: 61.22%;
}

#ly_web_layout_0004_4Con .info {
    width: 45.625%;
    padding-right: 14.8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

#ly_web_layout_0004_4Con .title {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    color: #121212;
}

#ly_web_layout_0004_4Con .desc {
    font-weight: 300;
    font-size: 20px;
    color: #121212;
}




@media (max-width: 1440px) {
    #ly_web_layout_0004_4Title .title {
        font-size: 46px;
    }
}

@media (max-width: 1366px) {
    #ly_web_layout_0004_4Title {
        margin-bottom: 40px;
    }

    #ly_web_layout_0004_4Title .title {
        font-size: 42px;
    }

    #ly_web_layout_0004_4Con {
        gap: 60px;
    }

    #ly_web_layout_0004_4Con .item {
        border-radius: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    #ly_web_layout_0004_4Con .title {
        font-size: 30px;
        line-height: 1.5em;
    }

    #ly_web_layout_0004_4Con .desc {
        font-size: 20px;
        line-height: 1.5em;
    }

}

@media (max-width: 992px) {
    .ly_web_layout_0004_4Wrap {
        padding: .6061rem 0;
    }

    #ly_web_layout_0004_4Title {
        margin-bottom: .2273rem;
    }

    #ly_web_layout_0004_4Title .title {
        font-size: .3182rem;
    }

    #ly_web_layout_0004_4Con {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: .303rem;
    }

    #ly_web_layout_0004_4Con .item {
        flex-direction: column;
        gap: .1515rem;
    }

    #ly_web_layout_0004_4Con .item:nth-child(2n) {
        flex-direction: column;
    }

    #ly_web_layout_0004_4Con .img {
        width: 100%;
        border-radius: .4rem;
    }

    #ly_web_layout_0004_4Con .info {
        width: 100%;
        padding-right: 0;
        gap: .1136rem;
    }

    #ly_web_layout_0004_4Con .title {
        font-size: .2424rem;
    }

    #ly_web_layout_0004_4Con .desc {
        font-size: .1364rem;
    }
}

@media (max-width: 768px) {
    .ly_web_layout_0004_4Wrap {
        padding: .8rem 0;
    }

    #ly_web_layout_0004_4Title {
        margin-bottom: .4rem;
    }

    #ly_web_layout_0004_4Title .title {
        font-size: .48rem;
    }

    #ly_web_layout_0004_4Con {
        gap: .4rem;
    }

    #ly_web_layout_0004_4Con .item {
        flex-direction: column;
        gap: .3rem;
    }

    #ly_web_layout_0004_4Con .info {
        gap: .1rem;
    }

    #ly_web_layout_0004_4Con .title {
        font-size: .32rem;
    }

    #ly_web_layout_0004_4Con .desc {
        font-size: .28rem;
    }
}
.my_layout_0002_5Wrap{padding: 96px 0 201px;background: url(/module/my/layout/0002/images/bg.jpg) no-repeat center / cover;}
@media (max-width: 992px){
    .my_layout_0002_5Wrap{padding: .8rem 0;}
}

#my_layout_0002_5 .title{font-size: 48px;color: #fff;font-weight: 700;}
#my_layout_0002_5 .content{margin-top: 65px;}
#my_layout_0002_5 .li{padding: 56px 40px 43px;background-color: #fff;border-radius: 10px;height: auto;}
#my_layout_0002_5 .li .num{font-size: 48px;color: var(--mainColor);font-weight: 600;line-height: 0.625;}
#my_layout_0002_5 .li .tit{font-size: 24px;color: #1a1a1a;font-weight: 500;line-height: 1.25;margin: 37px 0 14px;}
#my_layout_0002_5 .li .brief{font-size: 18px;color: #1a1a1a;font-weight: 400;line-height: 1.667;height: 210px;overflow-y: auto;}

#my_layout_0002_5 .btn{top: 50%;transform: translateY(-50%);width: 80px;height: 80px;z-index: 2;background-color: #fff;border-radius: 50%;}
#my_layout_0002_5 .prev{left: -120px;}
#my_layout_0002_5 .next{right: -120px;}

@media(any-hover: hover){
    #my_layout_0002_5 .btn:hover{background-color: var(--mainColor);}
    #my_layout_0002_5 .btn:hover .svg{fill: #fff;}
}

@media (max-width: 1800px){
    #my_layout_0002_5 .content{width: calc(100% - 160px);margin: 65px auto 0;}
    #my_layout_0002_5 .prev{left: -100px;}
    #my_layout_0002_5 .next{right: -100px;}
}
@media (max-width: 992px){
    #my_layout_0002_5 .title{font-size: .364rem;}
    #my_layout_0002_5 .content{width: calc(100% - 1.212rem);margin: .492rem auto 0;}
    #my_layout_0002_5 .li{padding: .424rem .303rem .326rem;border-radius: .076rem;}
    #my_layout_0002_5 .li .num{font-size: .364rem;}
    #my_layout_0002_5 .li .tit{font-size: .182rem;margin: .28rem 0 .106rem;}
    #my_layout_0002_5 .li .brief{font-size: .136rem;height: 1.591rem;}

    #my_layout_0002_5 .btn{width: .606rem;height: .606rem;}
    #my_layout_0002_5 .prev{left: -0.758rem;}
    #my_layout_0002_5 .next{right: -0.758rem;}
}
@media (max-width: 768px){
    #my_layout_0002_5 .title{font-size: .48rem;}
    #my_layout_0002_5 .content{width: calc(100% - 1.8rem);}
    #my_layout_0002_5 .li{border-radius: .14rem;}
    #my_layout_0002_5 .li .num{font-size: .48rem;}
    #my_layout_0002_5 .li .tit{font-size: .36rem;margin: .4rem 0 .3rem;}
    #my_layout_0002_5 .li .brief{font-size: .3rem;height: 3rem;}

    #my_layout_0002_5 .btn{width: .8rem;height: .8rem;}
    #my_layout_0002_5 .prev{left: -1rem;}
    #my_layout_0002_5 .next{right: -1rem;}
}

.ly_web_layout_0002_6Wrap {
    padding: 100px 0;
    background: #F9FAFB url(/module/ly-web/layout/0002/images/bg.jpg) repeat top left;
}

#ly_web_layout_0002_6Title {
    text-align: center;
    margin-bottom: 50px;
}

#ly_web_layout_0002_6Title .title {
    font-size: 52px;
    font-weight: 500;
    color: #121212;
    position: relative;
    padding-bottom: 14px;
}

#ly_web_layout_0002_6Title .title::after {
    content: "";
    width: 50px;
    height: 6px;
    background: linear-gradient(90deg, #820000 0%, #B43430 100%);
    border-radius: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

#ly_web_layout_0002_6Con {
    margin: 200px auto 20px;
    width: max-content;
}

#ly_web_layout_0002_6Con .img {
    margin: 0 auto;
    width: 520px;
    height: 520px;
}

#ly_web_layout_0002_6Con .item {
    position: absolute;
    z-index: 2;
    width: 350px;
    padding: 26px 20px 20px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    box-shadow: 0px 10px 30px 0px #DC262626;
    transition: all 0.4s ease;
}

#ly_web_layout_0002_6Con .item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    z-index: 5;
}

#ly_web_layout_0002_6Con .item .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #121212;
}

#ly_web_layout_0002_6Con .item .desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #121212;
}

#ly_web_layout_0002_6Con .item.item1 {
    bottom: 100%;
    right: -16%;
    transform: translateX(-50%);
    border-top: 4px solid #ea580c;
}

#ly_web_layout_0002_6Con .item.item1::before {
    bottom: -13%;
    right: 45%;
    transform: translateY(-50%) rotate(45deg);
}

#ly_web_layout_0002_6Con .item.item1:hover {
    bottom: calc(100% - 20px);
}

#ly_web_layout_0002_6Con .item.item2 {
    bottom: 49.5px;
    right: 100%;
    border-left: 4px solid #ea580c;
}

#ly_web_layout_0002_6Con .item.item2::before {
    top: 50%;
    right: -10px;
    transform: translateY(-50%) rotate(45deg);
}

#ly_web_layout_0002_6Con .item.item2:hover {
    right: calc(100% - 20px);
}

#ly_web_layout_0002_6Con .item.item3 {
    bottom: 49.5px;
    left: 100%;
    border-right: 4px solid #ea580c;
}

#ly_web_layout_0002_6Con .item.item3::before {
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
}

#ly_web_layout_0002_6Con .item.item3:hover {
    left: calc(100% - 20px);
}

#ly_web_layout_0002_6Con .item.item4 {
    bottom: 80%;
    left: 134%;
    transform: translateX(-50%);
    border-right: 4px solid #ea580c;
}

#ly_web_layout_0002_6Con .item.item4::before {
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
}

#ly_web_layout_0002_6Con .item.item4:hover {
    left: calc(134% - 20px);
}





@media (max-width: 1440px) {
    #ly_web_layout_0002_6Title .title {
        font-size: 46px;
    }
}

@media (max-width: 1366px) {
    #ly_web_layout_0002_6Title {
        margin-bottom: 40px;
    }

    #ly_web_layout_0002_6Title .title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .ly_web_layout_0002_6Wrap {
        padding: .6061rem 0;
    }

    #ly_web_layout_0002_6Title {
        margin-bottom: .2273rem;
    }

    #ly_web_layout_0002_6Title .title {
        font-size: .3182rem;
    }

    #ly_web_layout_0002_6Con {
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .2273rem;
    }

    #ly_web_layout_0002_6Con .img {
        display: none;
    }

    #ly_web_layout_0002_6Con .item {
        position: initial;
        width: 100%;
        padding: .2273rem;
        gap: .1667rem;
        top: inherit!important;
        left: inherit!important;
        transform: none!important;
        border: none !important;
        border-top: 4px solid #ea580c !important;
        border-radius: .4rem;
    }

    #ly_web_layout_0002_6Con .item::before {
        display: none;
    }

    #ly_web_layout_0002_6Con .item .title {
        font-size: .1515rem;
        line-height: 1.5em;
    }

    #ly_web_layout_0002_6Con .item .desc {
        font-size: .1212rem;
        line-height: 1.5em;
    }
}

@media (max-width: 768px) {
    .ly_web_layout_0002_6Wrap {
        padding: .8rem 0;
    }

    #ly_web_layout_0002_6Title {
        margin-bottom: .4rem;
    }

    #ly_web_layout_0002_6Title .title {
        font-size: .48rem;
    }

    #ly_web_layout_0002_6Con {
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
        gap: .4rem;
    }
    
    #ly_web_layout_0002_6Con .item .title {
        font-size: .32rem;
    }

    #ly_web_layout_0002_6Con .item .desc {
        font-size: .28rem;
    }
}