
/* 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; }
}



  :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;
  }
  /* ==========================================================================
   5. 首屏 Banner
   ========================================================================= */
.hero { position: relative; height: 100vh; overflow: hidden; display: flex; align-items: center; z-index: 1; background: #08080a; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%); z-index: 1; pointer-events: none; }
.hero-inner {margin: 0 auto; height: 100%; position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end;}
.hero-text-box { opacity: 1; transform: translateY(40px);left: 50%;  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards; text-align: left; margin: 0;}
.zh-title { font-family: var(--font-song); font-size: 52px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; letter-spacing: 4px; text-shadow: 0 4px 20px rgba(0,0,0,0.6); color: #fff;}
.subtitle { font-size: 28px; font-weight: 400; color: rgba(255, 255, 255, 0.95); max-width: 900px; line-height: 1.6; margin-bottom: 0; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }


@media screen and (max-width:992px) {
	.zh-title {font-size: 0.511rem; margin-bottom: 0.15rem;}
	.subtitle {font-size: 0.213rem; }
}
@media screen and (max-width:768px) {
	.zh-title {font-size: 0.52rem; margin-bottom: 0.2rem;}
	.subtitle {font-size: 0.24rem; }
}
/* =========================================
   PC 端样式 (> 992px) - 使用 PX
   ========================================= */
#impact-section {display: none;}
#impact-section.impact-section{position:relative;background-color:var(--mainColor);padding:64px 0;color:white;overflow:hidden;background-image:linear-gradient(45deg,rgba(255,255,255,0.03) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.03) 50%,rgba(255,255,255,0.03) 75%,transparent 75%,transparent);background-size:20px 20px}
#impact-section .impact-glow-line{position:absolute;top:0;left:0;width:100%;height:1px;background:linear-gradient(90deg,transparent,#fca5a5,transparent);box-shadow:0 0 20px rgba(255,255,255,0.8);opacity:0.8}
#impact-section .impact-grid{display:grid;grid-template-columns:repeat(4,1fr);align-items:center}
#impact-section .impact-item{position:relative;text-align:center;padding:0 20px;cursor:default;transition:transform 0.3s ease}
#impact-section .impact-item:not(:last-child)::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:60%;background-color:rgba(254,202,202,0.3)}
#impact-section .impact-num,#impact-section .impact-num-static{font-size:48px;font-weight:800;line-height:1.2;margin-bottom:8px;text-shadow:0 2px 10px rgba(0,0,0,0.1);transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1)}
#impact-section .impact-item:hover .impact-num,#impact-section .impact-item:hover .impact-num-static{transform:scale(1.15);text-shadow:0 5px 15px rgba(0,0,0,0.2)}
#impact-section .impact-label{font-size:16px;font-weight:500;color:#fee2e2;margin-bottom:4px}
#impact-section .impact-sub{font-size:12px;color:#fca5a5;text-transform:uppercase;letter-spacing:0.05em;opacity:0.8;transition:opacity 0.3s}
#impact-section .impact-item:hover .impact-sub{opacity:1;color:white}

/* =========================================
   移动端/平板端样式 (≤ 992px) - 使用 REM
   ========================================= */
@media (max-width: 992px) {
	#impact-section.impact-section {padding: 0.481rem 0;}
	#impact-section .impact-num,
	#impact-section .impact-num-static{font-size:0.361rem;}
	#impact-section .impact-label{font-size:0.1203rem;}
	#impact-section .impact-sub{font-size:0.09rem;}
}
@media (max-width: 768px) {
	#impact-section.impact-section {padding: 0.64rem 0;}
	#impact-section .impact-num,
	#impact-section .impact-num-static{font-size:0.48rem;}
	#impact-section .impact-label{font-size:0.16rem;}
	#impact-section .impact-sub{font-size:0.12rem;}
	#impact-section .impact-grid{grid-template-columns:repeat(2,1fr);gap: 20px;}
	#impact-section .impact-item:not(:last-child)::after {display: none;}
}
@media (max-width: 576px) {
	#impact-section .impact-label{font-size:0.26rem;}
	#impact-section .impact-sub{font-size:0.24rem;}
}
/* ==========================================================================
   1. 走进研一 (第 1 屏) 
   ========================================================================= */
.fp-container { height: 100vh; width: 100vw; position: relative; overflow: hidden; }
.fp-wrapper { width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1); }
.section { min-height: 100vh; width: 100%; position: relative; display: flex; align-items: center; overflow: hidden;padding: 100px 0; }

.section-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; z-index: 1; }
.content-wrapper { width: var(--content-width); max-width: 92%; margin: 0 auto; position: relative; z-index: 10; }


.about-section { background-color: #b43430; color: #fff; min-height: 100vh;} 
.about-layout { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 100px; width: 1520px;margin: auto;}
.about-top { text-align: center; display: flex; flex-direction: column; align-items: center; }
.about-title { font-size: 55px; font-weight: 600; letter-spacing: 2px; margin-bottom: 35px; }

/* 优化点：放宽至 1400px 确保仅在 br 处折行 */
.about-desc { font-size: 18px; line-height: 2; opacity: 0.95; max-width: 1400px; margin-bottom: 45px; }

.about-btn { 
	min-width: 150px; height: 50px; border: 1px solid rgba(255,255,255,0.6); border-radius: 25px; 
	display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; 
}
.about-btn:hover { background: #fff; color: var(--color-primary); font-weight: 600; }

.about-bottom { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.a-stat-divider { width: 1px; height: 200px; background: rgba(255,255,255,0.2); flex-shrink: 0; }


.a-stat-item { 
	flex: 1; display: flex; flex-direction: column; align-items: center; gap: 15px; 
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
/* body[data-current-section="1"] .a-stat-item { opacity: 1; transform: translateY(0); }
body[data-current-section="1"] .a-stat-item:nth-child(2) { transition-delay: 0.1s; }
body[data-current-section="1"] .a-stat-item:nth-child(4) { transition-delay: 0.3s; }
body[data-current-section="1"] .a-stat-item:nth-child(6) { transition-delay: 0.5s; }
body[data-current-section="1"] .a-stat-item:nth-child(8) { transition-delay: 0.7s; } */

.a-stat-icon { height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 5px; }
.a-stat-icon img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }

.a-stat-num { font-size: 72px; font-weight: 700; font-family: var(--font-en); line-height: 1; margin: 0; }
.a-stat-text { font-size: 22px; opacity: 0.9; margin: 0; }

@media screen and (max-width:1366px) {
	.about-desc {font-size: 16px;}
}
@media screen and (max-width:992px) {
	.section { padding: 0.752rem 0; }
	.about-desc {font-size: 0.135rem;}
	.about-title { font-size: 0.414rem;margin-bottom: 0.263rem; }
	.about-btn { height: 0.376rem;font-size: 0.12rem;border-radius: 99px;}
	
	.a-stat-num { font-size: 0.46rem;}
	.a-stat-text { font-size: 0.165rem;}
}
@media screen and (max-width:768px) {
	.section { padding: 1rem 0; }
	.about-desc {font-size: 0.18rem;}
	.about-title { font-size: 0.55rem;margin-bottom: 0.35rem; }
	.about-btn { height: 0.5rem;font-size: 0.16rem;}
	.a-stat-num { font-size: 0.72rem;}
	.a-stat-text { font-size: 0.22rem;}
	.a-stat-divider {display: none;}
	.about-bottom {display: grid;gap: 0.5rem;grid-template-columns: repeat(2,1fr);}
}
@media screen and (max-width:576px) {
	.about-desc {font-size: 0.3rem;}
	.about-title { font-size: 0.52rem;}
	.about-btn { font-size: 0.26rem;}
	.a-stat-num { font-size: 0.52rem;}
	.a-stat-text { font-size: 0.24rem;}
}

/* ==========================================================================
   6. 产品版块 (第 2 屏)
   ========================================================================= */
.prod-section { background-color: var(--bg-light); }
.prod-layout { display: flex; flex-direction: column; height: 100%; position: relative; justify-content: center; }
.prod-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; }
.prod-title { font-size: 55px; font-weight: 600; color: #333; line-height: 1; letter-spacing: 2px; margin: 0; }
.prod-desc { font-size: 18px; color: #666; font-weight: 400; margin: 0; }

.prod-body { display: flex; align-items: center; width: 100%; position: relative; min-height: 550px; margin-top: -40px; }
.prod-left { width: 450px; flex-shrink: 0; display: flex; flex-direction: column; z-index: 20; }
.timeline-box { position: relative; display: flex; flex-direction: column; flex: 1; }
.t-line-bg { position: absolute; left: 5px; top: 36px; bottom: 36px; width: 2px; background: rgba(0,0,0,0.06); z-index: 1; }

.t-item { position: relative; height: 72px; transition: margin 0.4s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; z-index: 2; }
.t-item.active { margin: 44px 0; }
.t-item:first-child.active { margin-top: 0; }
.t-item:last-child.active { margin-bottom: 0; }

.t-dot { position: absolute; left: 0; top: 36px; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: #ffffff; border: 2px solid #e0e0e0; transition: all 0.3s; }
.t-text { position: absolute; left: 40px; top: 36px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 4px; font-size: 22px; color: #666; font-weight: 500; transition: opacity 0.3s ease; white-space: nowrap; pointer-events: none; }
.t-sub { font-size: 16px; color: #999; font-weight: 400; line-height: 1; }
.t-icon-wrap { position: absolute; left: -21px; top: 36px; transform: translateY(-50%); width: 54px; height: 54px; border: 6px solid var(--color-vi); border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.2s ease; }
.t-icon-wrap img { width: 24px; height: 24px; object-fit: contain; }

.t-card { position: absolute; left: 48px; top: 36px; transform: translateY(-50%); width: 320px; height: 80px; background: #ffffff; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); display: flex; justify-content: space-between; align-items: center; padding: 0 30px; border: 1px solid rgba(0,0,0,0.02); pointer-events: none; }
.t-card-titles { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.t-card-titles h4 { font-size: 22px; color: #333; font-weight: 600; margin: 0; line-height: 1; }
.t-card-sub { font-size: 14px; color: #999; margin: 0; font-weight: 400; line-height: 1; }
.t-card .arrow { width: 24px; height: 24px; object-fit: contain; }

.t-item.active .t-text { opacity: 0; }
.t-item.active .t-dot { opacity: 0; }
.t-item.active .t-card { opacity: 1; visibility: visible; }
.t-item.active .t-icon-wrap { opacity: 1; visibility: visible; }

.slider-wrapper { position: absolute; left: 550px; top: 0; bottom: 0; right: -25vw; display: flex; align-items: center; overflow: hidden; pointer-events: none; }
.slider-mask-left { position: absolute; left: -50px; top: 0; width: 150px; height: 100%; background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%); z-index: 15; pointer-events: none; }
.slider-mask-right { position: absolute; right: -150px; top: 0; width: 600px; height: 100%; background: linear-gradient(to left, var(--bg-light) 30%, transparent 100%); z-index: 15; pointer-events: none; }
.slider-track { display: flex; gap: 190px; width: max-content; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); padding-left: 40px; align-items: center; pointer-events: auto; }

.prod-card { position: relative; width: 720px; height: 550px; flex-shrink: 0; opacity: 0.3; transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.prod-card.active { opacity: 1; }

.p-circle { position: absolute; left: 80px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; background: #ffffff; border-radius: 50%; box-shadow: 0 30px 60px rgba(0,0,0,0.04); }
.p-img { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; object-fit: contain; z-index: 2; filter: drop-shadow(15px 20px 25px rgba(0,0,0,0.1)); }

.p-red-card { position: absolute; left: 480px; top: 50%; transform: translateY(-50%); background-color: var(--color-vi); border-radius: 12px; padding: 45px 40px; box-shadow: 0 15px 40px rgba(191, 38, 38, 0.25); z-index: 5; }
.p-red-card ul { display: flex; flex-direction: column; gap: 22px; list-style: none; margin: 0; padding: 0; }
.p-red-card li { position: relative; padding-left: 18px; color: #fff; font-size: 18px; font-weight: 500; letter-spacing: 1px; line-height: 1.2; white-space: nowrap; }
.p-red-card li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background-color: #fff; border-radius: 50%; }

@media screen and (max-width:1440px) {
	.slider-wrapper {left: 450px;}
}

@media screen and (max-width:1280px) {
	.slider-wrapper {left: 400px;}
	.prod-header {display: block;}
	.prod-desc {margin-top: 30px;}
}
	
@media screen and (max-width:1024px) {
	.prod-body {display: block;}
	.slider-wrapper {left: 0;position: relative;}
	.prod-left {width: 100%;}
}

@media screen and (max-width:992px) {
	.prod-header { margin-bottom: 0.602rem; }
	.prod-title { font-size: 0.414rem;}
	.prod-desc { font-size: 0.135rem; }
	.t-item { height: 0.541rem;}
	.t-item.active { margin: 0.33rem 0; }
	.t-text {font-size: 0.165rem;}
	.t-card-titles h4 {font-size: 0.165rem;}
	.t-card .arrow {width: 0.18rem;height: 0.18rem;}
	.t-card {height: 0.602rem;}
	
	.p-red-card {padding: 0.338rem 0.301rem;}
	.p-red-card li {font-size: 0.136rem;}
	.slider-mask-right,
	.slider-mask-left {display: none;}
	.slider-track {padding-left: 0;}
	.t-sub {font-size: 0.12rem;}
}
@media screen and (max-width:768px) {
	.prod-header { margin-bottom: 0.602rem; }
	.prod-title { font-size: 0.55rem;}
	.prod-desc { font-size: 0.18rem; margin-top: 0.3rem;}
	.t-item { height: 0.72rem;}
	.t-item.active { margin: 0.22rem 0; }
	.t-text {font-size: 0.22rem;}
	.t-card-titles h4 {font-size: 0.22rem;}
	.t-card .arrow {width: 0.24rem;height: 0.24rem;}
	.t-card {height: 0.8rem;}
	
	.prod-card {height: auto;display: flex;flex-direction: column;align-items: center;}
	.p-img {position: relative;top: 0;transform: translateY(0);width: 50%;height: auto;}
	.p-red-card {position: relative;left: 0;transform: translateY(0);top: 0;width: auto;display: inline-block;margin-top: 0.3rem;}
	
	.p-red-card {padding: 0.45rem 0.4rem;}
	.p-red-card li {font-size: 0.18rem;}
	.slider-mask-right,
	.slider-mask-left {display: none;}
	.slider-track {padding-left: 0;}
	
	.slider-wrapper {margin-top: 0.3rem;}
	
	.prod-left {margin-bottom: 100px;}
	.t-sub {font-size: 0.16rem;}
	
	.p-circle  {left: 120px;}
}
@media screen and (max-width:576px) {
	.prod-desc { font-size: 0.3rem;}
	.t-text {font-size: 0.3rem;}
	.t-card-titles h4,
	.t-sub {font-size: 0.26rem;}
	.p-red-card li {font-size: 0.3rem;}
	.prod-card {align-items: flex-start;}
	.p-circle  {left: 0;}
}
/* ==========================================================================
   8. 创新平台 1+6 (第 4 屏)
   ========================================================================= */
.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;}
}

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

:root{
    --content-width: 1520px;
}

#ly_web_index_esg_0001_5 {padding: 0; position: relative; height: 100vh; overflow: hidden; background: #08080a; }
#ly_web_index_esg_0001_5 .video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
#ly_web_index_esg_0001_5 .esg-giant-text { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%); width: var(--content-width); max-width: 92%; font-size: 150px; font-weight: 800; font-family: var(--font-en); line-height: .9em; margin-top: 50px; z-index: 1; pointer-events: none; background: linear-gradient(to top, transparent 10%, rgba(255,255,255,0.85) 40%, #ffffff 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#ly_web_index_esg_0001_5 .esg-fg { position: absolute; z-index: 2; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; object-fit: cover; }
#ly_web_index_esg_0001_5 .esg-layout { display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding-top: 140px; padding-bottom: 60px; z-index: 10; position: relative; }

#ly_web_index_esg_0001_5 .esg-title { font-family: var(--font-zh); font-size: 55px; font-weight: 600; color: #fff; letter-spacing: 2px; line-height: 1; }
#ly_web_index_esg_0001_5 .esg-bottom-area { width: 100%; display: flex; flex-direction: column; gap: 40px; }
#ly_web_index_esg_0001_5 .esg-middle { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; }
#ly_web_index_esg_0001_5 .esg-dynamic-content { position: relative; flex: 1; min-height: 160px; }
#ly_web_index_esg_0001_5 .esg-panel { position: absolute; bottom: 0; left: 0; opacity: 0; visibility: hidden; transition: all 0.4s ease; transform: translateY(20px); }
#ly_web_index_esg_0001_5 .esg-panel.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
#ly_web_index_esg_0001_5 .esg-panel h3 { font-size: 36px; font-weight: 600; color: #fff; margin-bottom: 15px; }
#ly_web_index_esg_0001_5 .esg-panel p { font-size: 20px; color: rgba(255,255,255,0.9); line-height: 1.7; margin: 0; }
#ly_web_index_esg_0001_5 .esg-right-icon { position: relative; width: 225px; height: 225px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; }
#ly_web_index_esg_0001_5 .esg-circle-spin { position: absolute; inset: 0; width: 100%; height: 100%; animation: ly_web_index_esg_0001_5Spin 12s linear infinite; filter: brightness(0) invert(1); opacity: 0.8;}
#ly_web_index_esg_0001_5 .esg-arrow { width: 32px; height: 32px; z-index: 2; filter: brightness(0) invert(1); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
#ly_web_index_esg_0001_5 .esg-right-icon:hover .esg-arrow { transform: rotate(45deg); }
#ly_web_index_esg_0001_5 .esg-tabs { display: flex; gap: 15px; width: 100%; }
#ly_web_index_esg_0001_5 .esg-tab { flex: 1; display: flex; flex-direction: column; align-items: center; cursor: pointer; opacity: 0.2; transition: opacity 0.3s; }
#ly_web_index_esg_0001_5 .esg-tab.active, 
#ly_web_index_esg_0001_5 .esg-tab:hover { opacity: 1; }
#ly_web_index_esg_0001_5 .esg-tab .tab-text { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 28px; }
#ly_web_index_esg_0001_5 .esg-tab .tab-line { width: 100%; max-width: 496px; height: 3px; background-color: #fff; }


@media (max-width: 1920px) {
    #ly_web_index_esg_0001_5 .esg-giant-text{font-size: 135px;}
    #ly_web_index_esg_0001_5 .esg-right-icon{width: 210px; height: 210px;}
}
@media (max-width: 1680px) {
    #ly_web_index_esg_0001_5 .esg-layout {padding-top: 120px;}
    #ly_web_index_esg_0001_5 .esg-giant-text{top: 47%; font-size: 120px;}
    
    #ly_web_index_esg_0001_5 .esg-panel h3 { font-size: 32px; line-height: 1.5em; margin-bottom: 10px;}
    #ly_web_index_esg_0001_5 .esg-panel p{font-size: 18px; line-height: 1.6em;}
    #ly_web_index_esg_0001_5 .esg-right-icon{width: 190px; height: 190px;}
    
    #ly_web_index_esg_0001_5 .esg-tab .tab-text{margin-bottom: 22px;}
}
@media (max-width: 1536px) {
    #ly_web_index_esg_0001_5 .esg-layout {padding-top: 110px;}
    #ly_web_index_esg_0001_5 .esg-tab .tab-text{margin-bottom: 18px;}
}
@media (max-width: 1440px) {
    #ly_web_index_esg_0001_5 .esg-giant-text{font-size: 110px;}
    #ly_web_index_esg_0001_5 .esg-dynamic-content{min-height: 140px;}
}
@media (max-width: 1366px) {
    #ly_web_index_esg_0001_5 {height: calc(100vh - 97px);}
    #ly_web_index_esg_0001_5 .esg-layout {padding-top: 100px;}
    #ly_web_index_esg_0001_5 .esg-dynamic-content{min-height: auto;}
    #ly_web_index_esg_0001_5 .esg-panel h3 { font-size: 30px; }
    #ly_web_index_esg_0001_5 .esg-panel p{font-size: 16px;}
    #ly_web_index_esg_0001_5 .esg-right-icon{width: 180px; height: 180px;}
    
    #ly_web_index_esg_0001_5 .esg-bottom-area{gap: 35px;}
    
    #ly_web_index_esg_0001_5 .esg-tab .tab-text{margin-bottom: 15px;}
    #ly_web_index_esg_0001_5 .esg-tab .tab-text{font-size: 18px;}
}
@media (max-width: 1280px) {
	#ly_web_index_esg_0001_5 .esg-title {font-size: 42px; line-height: 1.6;}
}
@media (max-width: 1050px) {
    #ly_web_index_esg_0001_5 .esg-giant-text{font-size: 94px;}
    #ly_web_index_esg_0001_5 .esg-panel h3 { font-size: 26px; }
    #ly_web_index_esg_0001_5 .esg-right-icon{width: 160px; height: 160px;}
    #ly_web_index_esg_0001_5 .esg-arrow{width: 26px; height: 26px;}
}
@media (max-width: 992px) {
    #ly_web_index_esg_0001_5 .esg-giant-text {font-size: .7121rem; margin-top: .303rem; }

    #ly_web_index_esg_0001_5 .esg-layout { padding-top: .4545rem; padding-bottom: .4545rem; }

	#ly_web_index_esg_0001_5 .esg-title {font-size: 0.376rem;}
    #ly_web_index_esg_0001_5 .esg-bottom-area { gap: .2273rem; }
    #ly_web_index_esg_0001_5 .esg-panel h3 { font-size: .197rem; margin-bottom: .0758rem; }
    #ly_web_index_esg_0001_5 .esg-panel p { font-size: .1212rem;  }
    #ly_web_index_esg_0001_5 .esg-right-icon { width: 1.2121rem; height: 1.2121rem; }
    #ly_web_index_esg_0001_5 .esg-arrow { width: .197rem; height: .197rem; }
    #ly_web_index_esg_0001_5 .esg-tabs { gap: .1136rem;  }
    #ly_web_index_esg_0001_5 .esg-tab .tab-text { font-size: .1364rem; margin-bottom: .1136rem; }
}
@media (max-width: 768px) {
    #ly_web_index_esg_0001_5{height: max-content;background-image: url(/module/ly-web/index/esg/0001/images/bg-esg.jpg);background-position: center top;background-repeat: no-repeat;background-size: cover;}
	#ly_web_index_esg_0001_5 .esg-fg  {display: none;}
    #ly_web_index_esg_0001_5 .video-bg{object-position: left;display: none;}
    #ly_web_index_esg_0001_5 .esg-giant-text {font-size: .82rem; margin-top: .3rem; top: 18%; background: none; -webkit-background-clip: text; -webkit-text-fill-color: #fff;color: #fff;}

    #ly_web_index_esg_0001_5 .esg-layout { padding: .8rem 0; }

	#ly_web_index_esg_0001_5 .esg-title {margin-bottom: .4rem; font-size: 0.52rem;}
    #ly_web_index_esg_0001_5 .esg-bottom-area { gap: .3rem; }
    #ly_web_index_esg_0001_5 .esg-panel{position: relative; bottom: inherit; left: inherit; opacity: 1; visibility: visible; transform: translateY(0); position: relative;}
    #ly_web_index_esg_0001_5 .esg-dynamic-content { display: flex; flex-direction: column; gap: .4rem;margin-top: 40%;}
    #ly_web_index_esg_0001_5 .esg-panel h3 { font-size: .36rem; margin-bottom: .15rem; }
    #ly_web_index_esg_0001_5 .esg-panel p { font-size: .28rem;  }
    #ly_web_index_esg_0001_5 .esg-right-icon {display: none; width: 1.6rem; height: 1.6rem; }
    #ly_web_index_esg_0001_5 .esg-arrow { width: .28rem; height: .28rem; }
    #ly_web_index_esg_0001_5 .esg-tabs {display: none; gap: .15rem;  }
    #ly_web_index_esg_0001_5 .esg-tab .tab-text { font-size: .28rem; margin-bottom: .15rem; }
}
:root{
    --color-primary: #B43430;
}

#ly_web_index_news_0001_6 {padding: 120px 0; background-color: #ffffff; }
#ly_web_index_news_0001_6 .ly_web_index_news_0001_6-bg{background: url() no-repeat center bottom/100% 100%;}

#ly_web_index_news_0001_6 .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; width: 100%; position: relative; z-index: 2;}
#ly_web_index_news_0001_6 .news-title { font-size: 55px; font-weight: 600; color: #333; line-height: 1; letter-spacing: 2px; }
        
#ly_web_index_news_0001_6 .news-body { position: relative; width: 100%; }
#ly_web_index_news_0001_6 .news-grid { width: 100%; display: flex; justify-content: space-between;}
#ly_web_index_news_0001_6 .news-card { width: 30.92%; gap: 0; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; flex-shrink: 0;}
#ly_web_index_news_0001_6 .n-img { width: 100%; }
#ly_web_index_news_0001_6 .n-img:before{padding-top: 60.6%;}

#ly_web_index_news_0001_6 .n-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
#ly_web_index_news_0001_6 .n-title { font-size: 20px; font-weight: 500; color: #333; margin-bottom: 12px; line-height: 1.5; transition: color 0.3s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
#ly_web_index_news_0001_6 .n-date { font-size: 16px; color: #888; transition: color 0.3s; margin-bottom: 16px;}
#ly_web_index_news_0001_6 .n-desc { font-size: 16px; color: #888; line-height: 1.6; transition: color 0.3s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

#ly_web_index_news_0001_6 .text-card{padding: 40px 30px;}
#ly_web_index_news_0001_6 .n-text-item {display: block; border-bottom: 1px solid #f0f0f0; padding-bottom: 24px; margin-bottom: 16px; transition: all 0.3s; }
#ly_web_index_news_0001_6 .n-text-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
#ly_web_index_news_0001_6 .n-text-item .n-title { -webkit-line-clamp: 2; font-size: 18px; margin-bottom: 10px; }
#ly_web_index_news_0001_6 .n-text-item .n-date {margin-bottom: 0;}

#ly_web_index_news_0001_6 .news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(191, 38, 38, 0.15); }
#ly_web_index_news_0001_6 .news-grid-item:hover .n-title,
#ly_web_index_news_0001_6 .n-text-item:hover .n-title { color: var(--color-primary); }
#ly_web_index_news_0001_6 .news-grid-item:hover .n-desc, 
#ly_web_index_news_0001_6 .news-grid-item:hover .n-date ,
#ly_web_index_news_0001_6 .n-text-item:hover .n-date { color: #555; }


@media (max-width: 1280px) {
	#ly_web_index_news_0001_6 {padding: 80px 0;}
	#ly_web_index_news_0001_6 .news-header{margin-bottom: 30px;}
	#ly_web_index_news_0001_6 .news-title {font-size: 42px; line-height: 1.6;}
}
@media (max-width: 1024px) {
    #ly_web_index_news_0001_6 .news-grid{flex-wrap: wrap; gap: 30px;}
    #ly_web_index_news_0001_6 .news-card{width: 47.92%;}
    #ly_web_index_news_0001_6 .text-card{width: 100%;}
}
@media (max-width: 992px) {
	#ly_web_index_news_0001_6 {padding: 0.602rem 0;}
	#ly_web_index_news_0001_6 .news-header{margin-bottom: .2273rem;}
	#ly_web_index_news_0001_6 .news-title {font-size: 0.376rem;}

    #ly_web_index_news_0001_6 .n-content { padding: .2273rem; }
    #ly_web_index_news_0001_6 .n-title { font-size: .1515rem; margin-bottom: .0909rem; }
    #ly_web_index_news_0001_6 .n-date { font-size: .1212rem; margin-bottom: .1212rem;}
    #ly_web_index_news_0001_6 .n-desc { font-size: .1212rem;}

    #ly_web_index_news_0001_6 .text-card{padding: .303rem; }
    #ly_web_index_news_0001_6 .n-text-item { padding-bottom: .1818rem; margin-bottom: .1212rem; }
    #ly_web_index_news_0001_6 .n-text-item .n-title {font-size: .1364rem; margin-bottom: .0758rem; }
	
    #ly_web_index_news_0001_6 .news-card{border-radius: .1515rem;}
    #ly_web_index_news_0001_6 .news-card,
    #ly_web_index_news_0001_6 .news-card:hover { transform: translateY(0); box-shadow: none; }
    #ly_web_index_news_0001_6 .news-grid-item:hover .n-title,
    #ly_web_index_news_0001_6 .n-text-item:hover .n-title { color: #333; }
    #ly_web_index_news_0001_6 .news-grid-item:hover .n-desc, 
    #ly_web_index_news_0001_6 .news-grid-item:hover .n-date ,
    #ly_web_index_news_0001_6 .n-text-item:hover .n-date { color: #888; }
}
@media (max-width: 768px) {
	#ly_web_index_news_0001_6 {padding: 0.8rem 0;}
	#ly_web_index_news_0001_6 .news-header{margin-bottom: .3rem;}
	#ly_web_index_news_0001_6 .news-title {font-size: 0.52rem;}

    #ly_web_index_news_0001_6 .news-grid{gap: .3rem;}
    
    #ly_web_index_news_0001_6 .n-content { padding: .4rem; }
    #ly_web_index_news_0001_6 .n-title { font-size: .34rem; margin-bottom: .1rem; }
    #ly_web_index_news_0001_6 .n-date { font-size: .26rem; margin-bottom: .15rem;}
    #ly_web_index_news_0001_6 .n-desc { font-size: .26rem;}

    #ly_web_index_news_0001_6 .news-card{border-radius: .2rem;}
    #ly_web_index_news_0001_6 .news-card{width: 100%;}
    #ly_web_index_news_0001_6 .text-card{padding: .4rem;}
    #ly_web_index_news_0001_6 .n-text-item { padding-bottom: .2rem; margin-bottom: .2rem; }
    #ly_web_index_news_0001_6 .n-text-item .n-title {font-size: .34rem; margin-bottom: .15rem; }
}