@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.woff2') format('woff2'),
    url('../fonts/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('../fonts/AlteHaasGrotesk_Bold.woff2') format('woff2'),
    url('../fonts/AlteHaasGrotesk_Bold.woff') format('woff'),
    url('../fonts/AlteHaasGrotesk_Bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
}

:root {
  --primary-blue: #191f2f;
  --primary-blue-dark: #191f2f;
  --text-dark: #191f2f;
  --light-blue-bg: #EAF4FF;
  --border-blue-gray: #E5EDF5;
  --accent-yellow: #F6C243;
  --text-muted: #64748B;
  --surface-white: #FFFFFF;
}

/* 全局导航样式 - 最高优先级 */
html body #header {
  display: block !important;
}

html body #header .nav {
  display: block !important;
}

html body #header .nav .ui.container2 {
  max-width: 1620px !important;
  width: 88% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

html body .inner-catList > .ui.container2,
html body .p_breadcrumb > .ui.container2,
html body .p_breadcrumb .ui.container2 {
  max-width: 1620px !important;
  width: 88% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

html body #header .nav .ui.menu .logo {
  float: none !important;
  text-align: left;
  flex: 0 0 140px !important;
  margin-right: 0 !important;
  display: flex !important;
  align-items: center !important;
}

html body #header .nav .ui.menu .logo a {
  display: flex !important;
  align-items: center !important;
}

html body #header .nav .ui.menu .logo img {
  max-width: 140px !important;
  height: auto !important;
  display: block !important;
}

html body #header .sg-nav-shell {
  display: flex !important;
  flex: 1 !important;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-left: 0 !important;
  float: none !important;
  width: 100% !important;
  padding: 0 20px !important;
}

html body #header .sg-nav {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center;
  justify-content: center !important;
  gap: 15px !important;
  margin: 0 20px !important;
}

html body #header .sg-nav a.sg-nav-item,
html body #header .sg-nav button.sg-nav-item {
  flex: 0 0 auto !important;
  text-align: center !important;
  justify-content: center !important;
  display: inline-flex !important;
  white-space: nowrap !important;
}

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif !important;
}

#banner {
  margin-top: -50px !important;
}

#header {
  position: relative;
  z-index: 30;
}

.has-inner-catlist #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 21;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.has-inner-catlist .body-overflow-box {
  padding-top: 90px;
}

.has-inner-catlist .inner-catList {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: transform 0.5s ease;
}

.has-inner-catlist .inner-catList.active {
  transform: translateY(-65px);
}

.has-inner-catlist .inner-catList:hover {
  transform: translateY(0);
}

.has-inner-catlist .inner-page {
  margin-top: 55px;
}

.contact-page .contact-form-wrap {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-form-wrap h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

.contact-page .contact-form-wrap .form {
  display: flex;
  gap: 30px;
}

.contact-page .contact-form-wrap .form .left.column,
.contact-page .contact-form-wrap .form .right.column {
  flex: 1;
}

.contact-page .contact-form-wrap .form .input {
  margin-bottom: 15px;
}

.contact-page .contact-form-wrap .form .input input,
.contact-page .contact-form-wrap .form .input textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-page .contact-form-wrap .form .input input:focus,
.contact-page .contact-form-wrap .form .input textarea:focus {
  outline: none;
  border-color: #191f2f;
}

.contact-page .contact-form-wrap .form .input textarea {
  height: 200px;
  resize: none;
}

.contact-page .contact-form-wrap .form .input input::placeholder,
.contact-page .contact-form-wrap .form .input textarea::placeholder {
  color: #999;
}

.contact-page .contact-form-wrap .form .yzm {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-page .contact-form-wrap .form .yzm input {
  flex: 1;
  max-width: 150px;
}

.contact-page .contact-form-wrap .form .yzm img {
  height: 44px;
  cursor: pointer;
}

.contact-page .contact-form-wrap .form .send {
  text-align: right;
  margin-top: 15px;
}

.contact-page .contact-form-wrap .form .send input {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-page .contact-form-wrap .form .send input:hover {
  background: #191f2f;
}

.contact-page .contact-2 .visit-icon {
  display: block;
  height: 73px;
  line-height: 73px;
  font-size: 48px;
  font-style: normal;
  color: #191f2f;
}

.contact-page .contact-2 .box2 {
  display: block;
  padding: 70px 15%;
  border-radius: 10px;
  transition: .5s;
}

.contact-page .contact-2 .box2:hover {
  filter: drop-shadow(-10px 20px 100px rgba(0, 0, 0, 0.22));
  background: white;
}

.contact-page .contact-2 .box2 p {
  font-size: 14px;
  color: #474747;
  margin-top: 30px;
}

.contact-page .contact-2 .box .text {
  font-size: 14px;
  color: #474747;
  text-align: center;
  line-height: 2;
  margin: 45px 0 22px;
}

.contact-page .contact-2 .box img {
  width: 100%;
  display: block;
}

.contact-page .contact-2 .list {
  margin-top: 120px;
}

.contact-page .contact-2 .list ul {
  margin: 0 -60px;
}

.contact-page .contact-2 .list ul li {
  padding: 0 60px;
}

#header .nav {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(11, 43, 71, 0.08);
}

html body #header .nav .menu {
  position: relative;
}

html body #header .sg-nav-item {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 76px !important;
  padding: 0 16px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: color 0.25s ease !important;
}

html body #header .sg-nav-item::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  margin: 0 auto !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--primary-blue) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.25s ease !important;
}

html body #header .sg-nav-item:hover::after,
html body #header .sg-nav-item.is-open::after,
html body #header .sg-nav-item.is-active::after {
  transform: scaleX(1) !important;
}

html body #header .sg-nav-item:hover,
html body #header .sg-nav-item.is-open,
html body #header .sg-nav-item.is-active {
  color: var(--primary-blue) !important;
}

/* 响应式媒体查询 - 最高优先级 */
@media (max-width: 1600px) {
  html body #header .sg-nav-item {
    font-size: 15px !important;
    padding: 0 12px !important;
  }
}

@media (max-width: 1400px) {
  html body #header .sg-nav-item {
    font-size: 14px !important;
    padding: 0 10px !important;
  }
}

@media (max-width: 1300px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 120px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 120px !important;
    height: auto !important;
  }
  html body #header .sg-nav-item {
    font-size: 13px !important;
    padding: 0 8px !important;
  }
  html body #header .sg-nav-tools {
    gap: 5px !important;
  }
  html body #header .sg-tool {
    padding: 0 8px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 1200px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 110px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 110px !important;
    height: auto !important;
  }
  html body #header .sg-nav-item {
    font-size: 12px !important;
    padding: 0 6px !important;
  }
}

@media (max-width: 1100px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 100px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 100px !important;
    height: auto !important;
  }
  html body #header .sg-nav-item {
    font-size: 11px !important;
    padding: 0 5px !important;
  }
  html body #header .sg-tool {
    padding: 0 6px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 1024px) {
  html body #header .nav .ui.container2 {
    width: 95% !important;
  }
  html body #header .nav .ui.menu .logo {
    flex: 0 0 90px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 90px !important;
    height: auto !important;
  }
  html body #header .sg-nav-shell {
    padding: 0 10px !important;
  }
  html body #header .sg-nav-item {
    font-size: 10px !important;
    padding: 0 4px !important;
  }
  html body #header .sg-nav-item > span,
  html body #header .sg-nav-item > img {
    font-size: 10px !important;
  }
  html body #header .sg-tool {
    min-width: 36px !important;
    height: 36px !important;
  }
}

@media (max-width: 900px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 80px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 80px !important;
    height: auto !important;
  }
  html body #header .sg-nav-item {
    font-size: 9px !important;
    padding: 0 3px !important;
  }
  html body #header .sg-nav-tools {
    gap: 3px !important;
  }
}

@media (max-width: 850px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 75px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 75px !important;
    height: auto !important;
  }
  html body #header .sg-nav {
    gap: 10px !important;
  }
  html body #header .sg-nav-item {
    font-size: 8.5px !important;
    padding: 0 2px !important;
    letter-spacing: 0.3px !important;
  }
}

@media (max-width: 800px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 70px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 70px !important;
    height: auto !important;
  }
  html body #header .sg-nav {
    gap: 8px !important;
    margin: 0 15px !important;
  }
  html body #header .sg-nav-item {
    font-size: 8px !important;
    padding: 0 1px !important;
    letter-spacing: 0.2px !important;
  }
  html body #header .sg-tool {
    min-width: 32px !important;
    height: 32px !important;
    padding: 0 4px !important;
    font-size: 10px !important;
  }
  html body #header .sg-nav-tools {
    gap: 2px !important;
  }
}

@media (max-width: 768px) {
  html body #header .nav .ui.menu .logo {
    flex: 0 0 65px !important;
  }
  html body #header .nav .ui.menu .logo img {
    max-width: 65px !important;
    height: auto !important;
  }
  html body #header .sg-nav {
    gap: 6px !important;
    margin: 0 10px !important;
  }
  html body #header .sg-nav-item {
    font-size: 7.5px !important;
    padding: 0 !important;
  }
  html body #header .sg-nav-shell {
    padding: 0 10px !important;
  }
}

/* 先确保桌面端在920px及以上显示 */
@media (min-width: 920px) {
  html body #header {
    display: block !important;
  }
  html body #mobile {
    display: none !important;
  }
}

@media (max-width: 919px) {
  /* 移动端由 JS 处理，显示 #mobile 菜单 */
  html body #header {
    display: none !important;
  }
  html body #mobile {
    display: block !important;
  }
}

html body #header .sg-nav-tools {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

html body #header .sg-tool {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 12px !important;
  border: 1px solid var(--border-blue-gray) !important;
  border-radius: 999px !important;
  background: var(--surface-white) !important;
  color: var(--text-muted) !important;
  font-size: 14px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

html body #header .sg-tool:hover,
html body #header .sg-tool[aria-expanded="true"] {
  border-color: rgba(49, 111, 218, 0.35) !important;
  box-shadow: 0 10px 24px rgba(49, 111, 218, 0.16) !important;
  transform: translateY(-1px) !important;
}

.sg-lang {
  position: relative;
}

.sg-lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  max-height: 320px;
  overflow: auto;
  padding: 10px 0;
  border: 1px solid var(--border-blue-gray);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(11, 43, 71, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.sg-lang.is-open .sg-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sg-lang-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.sg-lang-menu li a:hover {
  background: var(--light-blue-bg);
  color: var(--primary-blue);
}

/* ==================== 强制响应式规则 - 最高优先级 ==================== */
/* 桌面端：920px及以上显示桌面导航 */
@media (min-width: 920px) {
  html body #header {
    display: block !important;
  }
  html body #mobile {
    display: none !important;
  }
}

/* 移动端：919px及以下显示移动端菜单 */
@media (max-width: 919px) {
  html body #header {
    display: none !important;
  }
  html body #mobile {
    display: block !important;
  }
}

/* 额外的强制规则，防止被其他样式覆盖 */
html body #mobile {
  display: none !important;
}

@media (max-width: 919px) {
  html body #mobile {
    display: block !important;
  }
}

.sg-lang-menu img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

.sg-mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  padding: 0 24px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.sg-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sg-mega-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  padding: 28px 28px 30px;
  border-top: 1px solid var(--border-blue-gray);
  background: rgba(247, 247, 247, 0.98);
  box-shadow: 0 24px 46px rgba(11, 43, 71, 0.12);
}

.sg-mega-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-mega-all {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 30px;
  font-weight: 500;
}

.sg-mega-all::after {
  content: ">";
  margin-left: 6px;
  font-size: 20px;
}

.sg-mega-tab {
  display: block;
  padding: 7px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.sg-mega-tab:hover,
.sg-mega-tab.is-active {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.sg-mega-main {
  position: relative;
}

.sg-mega-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.sg-mega-grid.is-active {
  display: grid;
}

.sg-mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 170px;
  padding: 18px 10px 10px;
  border-radius: 18px;
  background: transparent;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.sg-mega-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
}

.sg-mega-card img {
  width: 122px;
  height: 88px;
  object-fit: contain;
}

.sg-mega-card span {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

#header .search-box {
  position: absolute;
  top: calc(100% + 12px);
  right: 24px;
  width: 320px;
  padding: 16px;
  border: 1px solid var(--border-blue-gray);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(11, 43, 71, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

#header .search-box.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#header .search-box form {
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .search-box input[type="text"] {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-blue-gray);
  border-radius: 12px;
  font-size: 14px;
}

#header .search-box input[type="submit"] {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--primary-blue) url("../deye/icon-search.png") no-repeat center center;
  background-size: 18px;
  color: transparent;
}

#header .search-box .close {
  display: none;
}

#header .menu-box,
#header .h-search,
#header .yuy {
  display: none !important;
}

html body.sg-mobile-nav-open {
  overflow: hidden !important;
}

@media (max-width: 919px) {
  html body .body-overflow-box {
    padding-top: 76px !important;
  }

  html body.has-inner-catlist .inner-catList {
    display: none !important;
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  html body.has-inner-catlist #mobile + .inner-catList {
    margin-top: 0 !important;
  }

  html body.has-inner-catlist .banner,
  html body.has-inner-catlist .inner-page,
  html body.has-inner-catlist #banner {
    margin-top: 0 !important;
  }

  html body #mobile {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 76px !important;
    overflow: visible !important;
    z-index: 10010 !important;
    background: transparent !important;
  }

  html body #mobile::before {
    content: none !important;
    display: none !important;
  }

  html body #mobile .sg-mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    height: 76px !important;
    padding: 0 12px 0 18px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body #mobile .sg-mobile-header > * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body #mobile .sg-mobile-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
  }

  html body #mobile .sg-mobile-icon-btn,
  html body #mobile #menu-on {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
  }

  html body #mobile .sg-mobile-icon-btn::before,
  html body #mobile .sg-mobile-icon-btn::after {
    content: "" !important;
    position: absolute !important;
    box-sizing: border-box !important;
  }

  html body #mobile .sg-mobile-lang-btn::before {
    inset: 10px !important;
    border: 1.8px solid #191f2f !important;
    border-radius: 999px !important;
  }

  html body #mobile .sg-mobile-lang-btn::after {
    left: 50% !important;
    top: 10px !important;
    bottom: 10px !important;
    width: 0 !important;
    border-left: 1.6px solid #191f2f !important;
    transform: translateX(-50%) !important;
  }

  html body #mobile .sg-mobile-icon-btn img {
    display: none !important;
  }

  html body #mobile .sg-mobile-search-btn::before {
    left: 11px !important;
    top: 10px !important;
    width: 13px !important;
    height: 13px !important;
    border: 2px solid #191f2f !important;
    border-radius: 999px !important;
  }

  html body #mobile .sg-mobile-search-btn::after {
    right: 11px !important;
    bottom: 11px !important;
    width: 8px !important;
    height: 2px !important;
    background: #191f2f !important;
    transform: rotate(45deg) !important;
    transform-origin: center !important;
  }

  html body #mobile #menu-on i {
    display: block !important;
    position: absolute !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #191f2f !important;
    transition: transform 0.24s ease, opacity 0.24s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body #mobile #menu-on .line1 {
    transform: translateY(-6px) !important;
  }

  html body #mobile #menu-on .line2 {
    transform: translateY(0) !important;
  }

  html body #mobile #menu-on .line3 {
    transform: translateY(6px) !important;
  }

  html body #mobile.is-open #menu-on .line1 {
    transform: rotate(45deg) !important;
  }

  html body #mobile.is-open #menu-on .line2 {
    opacity: 0 !important;
  }

  html body #mobile.is-open #menu-on .line3 {
    transform: rotate(-45deg) !important;
  }

  html body #mobile .mobile-logo {
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex !important;
    flex: 0 1 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-width: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999999 !important;
  }

  html body #mobile .mobile-logo a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 140px !important;
    min-height: 36px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  html body #mobile .mobile-logo a::before {
    content: "Shinecore" !important;
    display: block !important;
    color: #191f2f !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    font-family: Arial, Helvetica, sans-serif !important;
  }

  html body #mobile .mobile-logo img,
  html body #mobile .menu-logo img {
    display: none !important;
  }

  html body #mobile .menu-logo::before {
    content: "Shinecore" !important;
    display: block !important;
    color: #191f2f !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    font-family: Arial, Helvetica, sans-serif !important;
  }

  html body #mobile .sg-mobile-overlay {
    display: none !important;
  }

  html body #mobile.is-open .sg-mobile-overlay {
    display: none !important;
  }

  html body #mobile .menu-content {
    position: fixed !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 76px) !important;
    height: calc(100dvh - 76px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
    background: #eceef2 !important;
    box-shadow: none !important;
    transform: translateY(-12px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease !important;
    z-index: 10020 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  html body #mobile.is-open .menu-content {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body #mobile .sg-mobile-panel-head {
    display: none !important;
  }

  html body #mobile .menu-list,
  html body #mobile .mob-search,
  html body #mobile .mob-yuy {
    padding: 0 !important;
  }

  html body #mobile .menu-list h3,
  html body #mobile .mob-search h3,
  html body #mobile .mob-yuy h3,
  html body #mobile .mob-share {
    display: none !important;
  }

  html body #mobile .menu-list,
  html body #mobile .mob-search {
    border-bottom: 0 !important;
  }

  html body #mobile .menu-list {
    flex: 1 1 auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  html body #mobile .menu-menu-container > ul.menu {
    display: grid !important;
    gap: 0 !important;
  }

  html body #mobile .menu-menu-container,
  html body #mobile .menu-menu-container ul,
  html body #mobile .menu-menu-container li,
  html body #mobile .mob-yuy ul,
  html body #mobile .mob-yuy li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body #mobile .menu-list ul.menu > li,
  html body #mobile .menu-list ul.sub-menu > li {
    border-bottom: 1px solid #d7dbe2 !important;
  }

  html body #mobile .menu-list ul.menu > li {
    background: #f1f2f5 !important;
  }

  html body #mobile .menu-list ul.sub-menu {
    padding: 0 18px 0 18px !important;
    background: #191f2f !important;
  }

  html body #mobile .menu-list ul.sub-menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: transparent !important;
  }

  html body #mobile .menu-list ul.sub-menu[hidden] {
    display: none !important;
  }

  html body #mobile .menu-list a {
    display: block !important;
    color: #4b5563 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    padding: 26px 18px !important;
  }

  html body #mobile .menu-list ul.sub-menu a {
    position: relative !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    padding: 16px 0 16px 30px !important;
  }

  html body #mobile .menu-list ul.sub-menu a::before {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    width: 7px !important;
    height: 7px !important;
    margin-top: -3.5px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }

  html body #mobile .menu-list a.is-active,
  html body #mobile .menu-list li.is-current > .sg-mobile-link-row > a {
    color: inherit !important;
  }

  html body #mobile .menu-list .menu-item-has-children > a {
    padding-right: 40px !important;
  }

  html body #mobile .menu-list .menu-item-has-children > .sg-mobile-link-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    min-height: 78px !important;
    padding: 0 18px !important;
    background: #f1f2f5 !important;
  }

  html body #mobile .menu-list .menu-item-has-children > .sg-mobile-link-row > a {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 26px 0 !important;
  }

  html body #mobile .sg-mobile-sub-toggle {
    position: relative !important;
    width: 22px !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  html body #mobile .sg-mobile-sub-toggle::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 9px !important;
    height: 9px !important;
    border-right: 2px solid #9ca3af !important;
    border-bottom: 2px solid #9ca3af !important;
    transform: translate(-65%, -50%) rotate(-45deg) !important;
    transition: transform 0.24s ease, border-color 0.24s ease !important;
  }

  html body #mobile .menu-item-has-children.is-expanded > .sg-mobile-link-row {
    background: #191f2f !important;
  }

  html body #mobile .menu-item-has-children.is-expanded > .sg-mobile-link-row > a {
    color: #ffffff !important;
  }

  html body #mobile .menu-item-has-children.is-expanded > .sg-mobile-link-row > .sg-mobile-sub-toggle::before {
    border-right-color: #ffffff !important;
    border-bottom-color: #ffffff !important;
    transform: translate(-50%, -30%) rotate(225deg) !important;
  }

  html body #mobile .menu-item-has-children > ul.sub-menu {
    display: none !important;
  }

  html body #mobile .menu-item-has-children.is-expanded > ul.sub-menu {
    display: block !important;
  }

  html body #mobile .mob-search form {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  html body #mobile .mob-search {
    display: none !important;
    padding: 18px !important;
    background: #eceef2 !important;
  }

  html body #mobile .mob-search input[type="text"] {
    flex: 1 1 auto !important;
    height: 46px !important;
    padding: 0 16px !important;
    border: 1px solid var(--border-blue-gray) !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    background: #f8fafc !important;
  }

  html body #mobile .mob-search input[type="submit"] {
    width: 46px !important;
    height: 46px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--primary-blue) url("../deye/icon-search.png") no-repeat center center !important;
    background-size: 18px !important;
    color: transparent !important;
  }

  html body #mobile .mob-yuy {
    display: none !important;
    padding: 18px !important;
    background: #eceef2 !important;
  }

  html body #mobile .mob-yuy ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  html body #mobile .mob-yuy a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(229, 237, 245, 0.9) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.92) !important;
  }

  html body #mobile .mob-yuy img {
    width: 18px !important;
    height: 12px !important;
    object-fit: cover !important;
  }

  html body #mobile .mob-share {
    display: none !important;
  }

  html body #mobile.show-search-panel .mob-search {
    display: block !important;
  }

  html body #mobile.show-lang-panel .mob-yuy {
    display: block !important;
  }
}

@media (max-width: 640px) {
  html body .body-overflow-box {
    padding-top: 72px !important;
  }

  html body #mobile .sg-mobile-header {
    height: 72px !important;
  }

  html body #mobile .menu-list a {
    font-size: 21px !important;
  }

  html body #mobile .mob-yuy ul {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 919px) {
  .sg-nav-shell {
    display: none;
  }
}

.wow,
.wow[style*="visibility: hidden"] {
  visibility: visible !important;
}

html body #footer {
  background-color: #191f2f !important;
  color: white !important;
}

html body #footer .footer-bottom {
  background-color: #191f2f !important;
}

html body #footer.sg-footer-v2 {
  background: linear-gradient(180deg, #191f2f 0%, #2564d4 100%) !important;
}

html body #footer.sg-footer-v2 a {
  color: #ffffff !important;
  font-size: 20px !important;
}

html body #footer.sg-footer-v2 .sg-footer-main {
  padding: 36px 0 28px;
}

html body #footer.sg-footer-v2 .sg-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) minmax(240px, 290px);
  gap: 26px;
  align-items: stretch;
}

html body #footer.sg-footer-v2 .sg-footer-contact,
html body #footer.sg-footer-v2 .sg-footer-center,
html body #footer.sg-footer-v2 .sg-footer-products {
  min-height: 100%;
}

html body #footer.sg-footer-v2 .sg-footer-contact {
  padding-right: 6px;
}

html body #footer.sg-footer-v2 .sg-footer-logo {
  margin-bottom: 18px;
}

html body #footer.sg-footer-v2 .sg-footer-logo img {
  display: block;
  width: 110px;
  max-width: 100%;
  height: auto;
}

html body #footer.sg-footer-v2 .sg-footer-contact-list,
html body #footer.sg-footer-v2 .sg-footer-products ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

html body #footer.sg-footer-v2 .sg-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

html body #footer.sg-footer-v2 .sg-footer-contact-list li + li {
  margin-top: 16px;
}

html body #footer.sg-footer-v2 .sg-footer-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex: 0 0 28px;
  margin-top: 1px;
}

html body #footer.sg-footer-v2 .sg-footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.55;
  flex: 1 1 0%;
  min-width: 0;
}

html body #footer.sg-footer-v2 .sg-footer-contact-text a,
html body #footer.sg-footer-v2 .sg-footer-contact-text span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html body #footer.sg-footer-v2 .sg-footer-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

html body #footer.sg-footer-v2 .sg-footer-center {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 24px;
  width: min(100%, 900px);
  justify-self: center;
}

html body #footer.sg-footer-v2 .sg-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

html body #footer.sg-footer-v2 .sg-footer-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

html body #footer.sg-footer-v2 .sg-footer-form-wrap p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-size: 15px;
}

html body #footer.sg-footer-v2 .sg-footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

html body #footer.sg-footer-v2 .sg-footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

html body #footer.sg-footer-v2 .sg-footer-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

html body #footer.sg-footer-v2 .sg-footer-field span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

html body #footer.sg-footer-v2 .sg-footer-field em {
  color: #ffd7d7;
  font-style: normal;
}

html body #footer.sg-footer-v2 .sg-footer-field input,
html body #footer.sg-footer-v2 .sg-footer-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 49, 117, 0.34);
  color: #ffffff;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 0;
  box-sizing: border-box;
  resize: vertical;
}

html body #footer.sg-footer-v2 .sg-footer-field input:focus,
html body #footer.sg-footer-v2 .sg-footer-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(12, 49, 117, 0.48);
}

html body #footer.sg-footer-v2 .sg-footer-submit {
  border: 0;
  background: #0f52c4;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

html body #footer.sg-footer-v2 .sg-footer-submit:hover {
  background: #0a46ab;
  transform: translateY(-1px);
}

html body #footer.sg-footer-v2 .sg-footer-products {
  position: relative;
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown {
  position: relative;
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown summary {
  position: relative;
  display: block;
  margin: 0;
  padding: 14px 44px 14px 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: rgba(11, 36, 94, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  list-style: none;
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown summary::-webkit-details-marker {
  display: none;
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown summary::after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-family: FontAwesome;
  font-size: 18px;
  transition: transform 0.2s ease;
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

html body #footer.sg-footer-v2 .sg-footer-products-dropdown ul {
  margin-top: 10px;
}

html body #footer.sg-footer-v2 .sg-footer-products li + li {
  margin-top: 10px;
}

html body #footer.sg-footer-v2 .sg-footer-products a {
  display: block;
  padding: 13px 16px;
  background: rgba(11, 36, 94, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px !important;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

html body #footer.sg-footer-v2 .sg-footer-products a:hover {
  background: rgba(8, 29, 82, 0.44);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(2px);
}

html body #footer.sg-footer-v2 .sg-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

html body #footer.sg-footer-v2 .sg-footer-bottom-row p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

html body #footer.sg-footer-v2 .sg-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

html body #footer.sg-footer-v2 .sg-footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 991px) {
  html body #footer.sg-footer-v2 .sg-footer-grid {
    grid-template-columns: 1fr;
  }

  html body #footer.sg-footer-v2 .sg-footer-center {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
  }
}

@media (max-width: 767px) {
  html body #footer.sg-footer-v2 .sg-footer-main {
    padding: 30px 0 22px;
  }

  html body #footer.sg-footer-v2 .sg-footer-contact-list li {
    align-items: flex-start;
  }

  html body #footer.sg-footer-v2 .sg-footer-form-row,
  html body #footer.sg-footer-v2 .sg-footer-bottom-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  html body #footer.sg-footer-v2 .sg-footer-nav {
    gap: 14px 18px;
  }

  html body #footer.sg-footer-v2 .sg-footer-contact-text a,
  html body #footer.sg-footer-v2 .sg-footer-nav a {
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
  }

  html body #footer.sg-footer-v2 .footer-bottom .ui.container2 {
    padding-left: 18px;
    padding-right: 18px;
  }

  html body #footer.sg-footer-v2 .sg-footer-bottom-row {
    gap: 12px;
    padding: 12px 0 16px;
    text-align: center;
    justify-items: center;
  }

  html body #footer.sg-footer-v2 .sg-footer-bottom-row p {
    max-width: 320px;
    font-size: 11px;
    line-height: 1.6;
  }

  html body #footer.sg-footer-v2 .sg-footer-bottom-links {
    justify-content: center;
    gap: 10px 18px;
  }

  html body #footer.sg-footer-v2 .sg-footer-bottom-links a {
    font-size: 13px !important;
    line-height: 1.4;
    white-space: nowrap;
  }
}

html body .init-260116-3 {
  background-color: #191f2f !important;
  color: white !important;
}

html body .init-260116-3 ul li i {
  border-right-color: white !important;
  color: white !important;
}

html body .init-260116-3 ul li p {
  color: white !important;
}

html body .sg-lang {
  display: none !important;
}

html body .yuy {
  display: none !important;
}

html body .sg-mobile-lang-btn {
  display: none !important;
}

html body .mob-yuy {
  display: none !important;
}

html body .sg-cta-btn {
  background-color: #191f2f !important;
  color: white !important;
  border-color: #191f2f !important;
  text-decoration: none !important;
  padding: 0 20px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

html body .sg-cta-btn:hover {
  background-color: #191f2f !important;
  border-color: #191f2f !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(49, 111, 218, 0.16) !important;
}

.slick-loading,
.lazyload,
.lazyloading,
img[data-src],
img[data-lazy] {
  opacity: 1 !important;
}

#banner .slick-list,
#banner .slick-track {
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
  padding: 0 !important;
}

#banner.offline-banner {
  position: relative;
  overflow: hidden;
}

#banner .offline-banner-track {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
}

#banner .offline-slide {
  position: absolute;
  inset: 0;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

#banner .slick-prev,
#banner .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
  color: transparent;
  transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

#banner:hover .slick-arrow {
  opacity: 1;
}

#banner .slick-prev {
  left: 12px;
  background-image: url("../deye/banner-btn-l.png");
}

#banner .slick-next {
  right: 12px;
  background-image: url("../deye/banner-btn-r.png");
}

#banner .slick-prev:hover,
#banner .slick-next:hover {
  background-color: var(--primary-blue-dark);
}

#banner img,
#index-body img {
  max-width: 100%;
  height: auto;
}

#banner .offline-slide.offline-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

#banner .offline-slide > a,
#banner .offline-slide > a > img,
#banner .offline-slide > a > video,
#banner .offline-slide > img {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 620px);
}

#banner .offline-slide > a > img,
#banner .offline-slide > a > video,
#banner .offline-slide > img {
  object-fit: cover;
  filter: brightness(0.72);
  transform: scale(1.02);
}

#banner .offline-slide.offline-enter > a > img,
#banner .offline-slide.offline-enter > a > video,
#banner .offline-slide.offline-enter > img {
  animation: heroZoom 5.2s ease forwards;
}

#banner .xftxt {
  position: absolute;
  left: 0;
  top: 40%;
  width: 100%;
  padding: 24px;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
}

#banner .xftxt h3,
#banner .xftxt p {
  opacity: 0;
  transform: translateY(28px);
}

#banner .offline-slide.offline-enter .xftxt h3 {
  animation: heroContent 0.7s ease 0.15s forwards;
}

#banner .offline-slide.offline-enter .xftxt p {
  animation: heroContent 0.7s ease 0.3s forwards;
}

#banner .xftxt h3 {
  max-width: 980px;
  margin: 0 auto 20px;
  color: var(--surface-white);
  font-size: clamp(1.8rem, 2.25vw, 2.1rem);
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

#banner .xftxt p {
  margin: 20px 0 0;
}

#banner .xftxt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--primary-blue-dark);
  color: var(--surface-white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

#banner ul.slick-dots {
  display: none !important;
}

#index-body .init-7 .bottom .slick-list,
#index-body .init-7 .bottom .slick-track {
  width: 100% !important;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroContent {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  #banner .offline-banner-track,
  #banner .offline-slide > a > img,
  #banner .offline-slide > a > video,
  #banner .offline-slide > img {
    height: 58vw;
    min-height: 300px;
  }

  #banner .xftxt h3 {
    max-width: 92%;
    font-size: 1.35rem;
  }
}

#index-body .init-7 .bottom.transition-module {
  overflow: hidden;
}

#index-body .init-7 .box2 {
  display: flex;
  align-items: flex-start;
}

#index-body .init-7 .box2 .title {
  width: 24%;
  padding-top: 72px;
}

#index-body .init-7 .box2 .title span.h2 {
  font-size: 28px;
  line-height: 1.45;
}

#index-body .init-7 .box2 .title span.small {
  font-size: 16px;
  margin: 18px 0 42px;
}

#index-body .init-7 .bottom {
  width: 72%;
  margin: 0;
  padding: 0 28px;
  position: relative;
  overflow: hidden;
}

#index-body .init-7 .bottom .transition-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 18px;
  transition: transform 0.55s ease;
  will-change: transform;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

#index-body .init-7 .bottom .transition-list > li {
  flex: 0 0 calc((100% - 36px) / 3) !important;
  width: calc((100% - 36px) / 3) !important;
  max-width: calc((100% - 36px) / 3) !important;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

#index-body .init-7 .bottom .transition-list > li .box {
  padding: 10px 10px 16px;
  min-height: 312px;
  box-shadow: none;
}

#index-body .init-7 .bottom .transition-list > li .box a.img {
  display: block;
  width: 100%;
  aspect-ratio: 1.4 / 0.82;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f5f8;
}

#index-body .init-7 .bottom .transition-list > li .box a.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

#index-body .init-7 .bottom .transition-list > li .box .flex {
  margin-top: 18px;
}

#index-body .init-7 .bottom .transition-list > li .box a.cat {
  font-size: 11px;
  padding: 0.45em 1.1em;
}

#index-body .init-7 .bottom .transition-list > li .box time {
  font-size: 11px;
  white-space: nowrap;
}

#index-body .init-7 .bottom .transition-list > li .box h6 {
  margin: 16px 0 12px;
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  height: 3em;
}

#index-body .init-7 .bottom .transition-list > li .box p {
  font-size: 13px;
  line-height: 1.65;
  color: #4b4b4b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.9em;
}

#index-body .init-7 .bottom .transition-list > li .box a.more {
  height: 30px;
  line-height: 30px;
  font-size: 11px;
  padding: 0 1.3em;
}

#index-body .init-7 .bottom .btn div[aria-disabled="true"] {
  opacity: 0.3;
  cursor: default;
}

#index-body .init-7 .bottom .btn div {
  font-size: 44px;
  color: #1f1f1f;
}

#index-body .init-7 .bottom .btn div.prev {
  left: 2px;
  right: auto;
}

#index-body .init-7 .bottom .btn div.next {
  right: 2px;
  left: auto;
}

@media (max-width: 991px) {
  #index-body .init-7 .box2 {
    display: block;
  }

  #index-body .init-7 .box2 .title,
  #index-body .init-7 .bottom {
    width: 100%;
    margin: 0;
  }

  #index-body .init-7 .box2 .title {
    padding-top: 0;
    margin-bottom: 30px;
  }

  #index-body .init-7 .bottom {
    padding: 0;
  }

  #index-body .init-7 .bottom .transition-list > li {
    flex-basis: calc((100% - 18px) / 2) !important;
    width: calc((100% - 18px) / 2) !important;
    max-width: calc((100% - 18px) / 2) !important;
  }

  #index-body .init-7 .bottom .btn {
    margin-top: 10px;
    text-align: left;
  }

  #index-body .init-7 .bottom .btn div {
    position: static;
    transform: none;
    display: inline-flex !important;
    margin-right: 14px;
  }
}

@media (max-width: 640px) {
  #index-body .init-7 .bottom .transition-list > li {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.product-lines-module {
  padding: 56px 0 40px;
  background: var(--light-blue-bg);
}

.product-lines-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.product-lines-head h2 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.product-lines-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-lines-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-line-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface-white);
  border: 1px solid var(--border-blue-gray);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21, 45, 86, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-line-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(21, 45, 86, 0.12);
  border-color: rgba(49, 111, 218, 0.18);
}

.product-line-image {
  display: block;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-white) 0%, var(--light-blue-bg) 100%);
}

.product-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-line-card:hover .product-line-image img {
  transform: scale(1.04);
}

.product-line-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.product-line-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text-dark);
  font-weight: 700;
}

.product-line-content h3 a {
  color: inherit;
}

.product-line-content p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.product-line-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.product-line-link::after {
  content: "\2192";
  margin-left: 6px;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.product-line-card:hover .product-line-link::after {
  transform: translateX(3px);
}

@media (max-width: 1360px) {
  .product-lines-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .product-lines-module {
    padding: 46px 0 34px;
  }

  .product-lines-head h2 {
    font-size: 30px;
  }

  .product-lines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-lines-head {
    margin-bottom: 22px;
  }

  .product-lines-head h2 {
    font-size: 26px;
  }

  .product-lines-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-line-content h3 {
    font-size: 18px;
  }

  .product-line-image {
    height: 220px;
  }
}

.about-company-module {
  padding: 68px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(49, 111, 218, 0.08), transparent 38%),
    linear-gradient(180deg, var(--surface-white) 0%, var(--light-blue-bg) 100%);
}

.about-company-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 40px;
  align-items: center;
}

.about-company-media {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 43, 71, 0.14);
}

.about-company-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0.05) 0%, rgba(10, 30, 60, 0.28) 100%);
}

.about-company-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-company-module:hover .about-company-media img {
  transform: scale(1.04);
}

.about-company-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 320px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(12, 27, 53, 0.78);
  backdrop-filter: blur(12px);
  color: var(--surface-white);
  box-shadow: 0 18px 35px rgba(11, 43, 71, 0.25);
}

.about-company-badge span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-company-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.about-company-content {
  max-width: 620px;
}

.about-company-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--primary-blue-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-company-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  margin-right: 12px;
  background: var(--primary-blue-dark);
}

.about-company-content h2 {
  margin: 0 0 18px;
  color: var(--text-dark);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.12;
  font-weight: 700;
}

.about-company-copy p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-company-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--text-dark);
  color: var(--surface-white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.about-company-link::after {
  content: "\2192";
  margin-left: 8px;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.about-company-link:hover {
  background: var(--primary-blue-dark);
  box-shadow: 0 16px 28px rgba(49, 111, 218, 0.18);
  transform: translateY(-2px);
}

.about-company-link:hover::after {
  transform: translateX(3px);
}

.about-company-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-stat-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--border-blue-gray);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(11, 43, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 111, 218, 0.28);
  background-color: var(--surface-white);
  box-shadow: 0 20px 38px rgba(11, 43, 71, 0.14);
}

.about-stat-card strong {
  display: inline-flex;
  align-items: flex-end;
  white-space: nowrap;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 50px;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-stat-card:hover strong {
  transform: translateX(4px) scale(1.03);
  color: var(--primary-blue-dark);
}

.about-stat-card .counter {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

.about-stat-card > span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-company-module [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-company-module [data-reveal="left"] {
  transform: translateX(-34px);
}

.about-company-module [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .about-company-module [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1200px) {
  .about-company-shell {
    gap: 28px;
  }

  .about-company-media {
    min-height: 480px;
  }
}

@media (max-width: 991px) {
  .about-company-module {
    padding: 56px 0 52px;
  }

  .about-company-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-company-content {
    max-width: none;
  }

  .about-company-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-company-media {
    min-height: 360px;
    border-radius: 20px;
  }

  .about-company-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 16px 18px;
  }

  .about-company-badge strong {
    font-size: 20px;
  }

  .about-company-content h2 {
    font-size: 28px;
  }

  .about-company-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-company-stats {
    grid-template-columns: 1fr;
  }

  .about-stat-card strong {
    font-size: 42px;
  }
}

#deye-header {
  position: relative;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(11, 43, 71, 0.08);
}

#deye-header .deye-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1660px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 15px;
}

#deye-header .deye-logo {
  flex: 0 0 auto;
}

#deye-header .deye-logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 140px;
  height: 54px;
}

#deye-header .deye-logo img {
  display: block;
  width: 140px;
  height: 54px;
  object-fit: contain;
}

#deye-header .deye-shell {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-width: 0;
  margin-left: 50px;
}

#deye-header .deye-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

#deye-header .deye-nav-item {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
}

#deye-header .deye-nav-item::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

#deye-header .deye-nav-item:hover,
#deye-header .deye-nav-item.is-open,
#deye-header .deye-nav-item.is-active {
  color: var(--primary-blue);
}

#deye-header .deye-nav-item:hover::after,
#deye-header .deye-nav-item.is-open::after,
#deye-header .deye-nav-item.is-active::after {
  transform: scaleX(1);
}

#deye-header .deye-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

#deye-header .deye-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-blue-gray);
  border-radius: 999px;
  background: var(--surface-white);
  color: var(--text-muted);
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

#deye-header .deye-tool:hover,
#deye-header .deye-tool[aria-expanded="true"] {
  border-color: rgba(49, 111, 218, 0.35);
  box-shadow: 0 10px 24px rgba(49, 111, 218, 0.16);
  transform: translateY(-1px);
}

#deye-header .deye-lang {
  position: relative;
}

#deye-header .deye-lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  max-height: 320px;
  overflow: auto;
  padding: 10px 0;
  border: 1px solid var(--border-blue-gray);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(11, 43, 71, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

#deye-header .deye-lang.is-open .deye-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#deye-header .deye-lang-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#deye-header .deye-lang-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

#deye-header .deye-lang-menu li a:hover {
  background: var(--light-blue-bg);
  color: var(--primary-blue);
}

#deye-header .deye-lang-menu img {
  width: 18px;
  height: 12px;
  object-fit: cover;
}

#deye-header .deye-mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  padding: 0 24px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

#deye-header .deye-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#deye-header .deye-mega-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  padding: 28px 28px 30px;
  border-top: 1px solid var(--border-blue-gray);
  background: rgba(247, 247, 247, 0.98);
  box-shadow: 0 24px 46px rgba(11, 43, 71, 0.12);
}

#deye-header .deye-mega-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#deye-header .deye-mega-all {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 30px;
  font-weight: 500;
  text-decoration: none;
}

#deye-header .deye-mega-all::after {
  content: ">";
  margin-left: 6px;
  font-size: 20px;
}

#deye-header .deye-mega-tab {
  display: block;
  padding: 7px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

#deye-header .deye-mega-tab:hover,
#deye-header .deye-mega-tab.is-active {
  color: var(--primary-blue);
  transform: translateX(4px);
}

#deye-header .deye-mega-main {
  position: relative;
}

#deye-header .deye-mega-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

#deye-header .deye-mega-grid.is-active {
  display: grid;
}

#deye-header .deye-mega-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 170px;
  padding: 18px 10px 10px;
  border-radius: 18px;
  background: transparent;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

#deye-header .deye-mega-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 43, 71, 0.1);
}

#deye-header .deye-mega-card img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 100px;
  object-fit: contain;
}

#deye-header .deye-mega-card span {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* 发展历程布局优化 - 只优化swiper12 */
.n-about .dev {
  padding: 0.8rem 0;
}

.n-about .group-swiper {
  padding: 0 5%;
}

.n-about .dev .warptext {
  padding: 0.5rem 0 0.8rem;
}

/* 调整年份和文字之间的间距为20px */
.n-about .dev .warptext .year {
  margin-right: 20px !important;
}

/* 只修改swiper12的样式 */
.n-about #swiper12 {
  padding: 5px 0;
  width: 100% !important;
  overflow: visible !important;
}

.n-about #swiper12 .swiper-wrapper {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  width: 100% !important;
  transform: none !important;
  transition: none !important;
}

.n-about #swiper12 .swiper-slide {
  flex: 0 0 auto !important;
  width: auto !important;
  text-align: center;
  padding: 0 10px !important;
  white-space: nowrap !important;
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
  overflow: visible !important;
}

@media (max-width: 1280px) {
  .n-about .group-swiper {
    padding: 0 3%;
  }
  
  .n-about #swiper12 .swiper-slide {
    padding: 0 8px !important;
  }
}

@media (max-width: 767px) {
  .n-about .dev {
    padding: 0.5rem 0;
  }
  
  .n-about .dev .warptext {
    padding: 0.4rem 0 0.6rem;
  }
  
  .n-about .dev .warptext .year {
    margin-right: 15px !important;
  }
  
  .n-about #swiper12 .swiper-wrapper {
    justify-content: space-between !important;
  }
  
  .n-about #swiper12 .swiper-slide {
    padding: 0 5px !important;
    font-size: 0.85rem;
  }
}
