@charset "utf-8";

:root {
  --navy: #0B1D2E;
  --navy-light: #1A334A;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #A8883E;
  --white: #FFFFFF;
  --gray-light: #F5F6FA;
  --gray-mid: #E8E9EE;
  --gray-text: #6B7280;
  --dark-text: #1A1A2E;
  --header-h: 90px;
  --header-scroll-h: 70px;
}

body {
  color: var(--dark-text);
  font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  line-height: 1.8;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-wow-duration] {
    visibility: visible !important;
    animation: none !important;
  }
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

a {
  color: var(--dark-text);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--gold);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,1);
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header.scrolled {
  height: var(--header-scroll-h);
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.logo {
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header.scrolled .logo {
  height: var(--header-scroll-h);
}
.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  max-height: 52px;
  transition: all 0.4s ease;
}
.header.scrolled .logo img {
  max-height: 42px;
}

/* Navigation */
.navBox {
  width: 100%;
  height: 100%;
}
.navBox ul.navCont {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  margin: 0;
  padding: 0;
}
.navBox ul.navCont li.child {
  position: relative;
  height: 100%;
}
.navBox ul.navCont li.child > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}
.navBox ul.navCont li.child > a::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
  border-radius: 2px;
}
.header.scrolled .navBox ul.navCont li.child > a::after {
  bottom: 14px;
}
.navBox ul.navCont li.child > a:hover::after,
.navBox ul.navCont li.child.cur > a::after {
  width: 24px;
}
.navBox ul.navCont li.child > a span {
  display: block;
  line-height: 1.3;
}
.navBox ul.navCont li.child > a i {
  display: block;
  font-size: 11px;
  color: var(--gray-text);
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Dropdown */
.navBox ul.navCont li.child .childcont {
  position: absolute;
  top: var(--header-h);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 999;
  min-width: 200px;
}
.header.scrolled .navBox ul.navCont li.child .childcont {
  top: var(--header-scroll-h);
}
.navBox ul.navCont li.child:hover .childcont,
.navBox ul.navCont li.child .childcont.nopen {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pro-cate {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 0 !important;
}
.pro-cate .nav_w {
  padding: 10px 0;
  min-width: 220px;
}
.pro-cate .psub {
  display: block;
  padding: 0;
}
.pro-cate .psub .fl {
  width: 100%;
  padding: 0;
}
.pro-cate .psub a {
  display: block;
  padding: 10px 28px;
  color: var(--dark-text) !important;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.pro-cate .psub a:hover {
  color: var(--gold) !important;
  background: var(--gray-light);
  border-left-color: var(--gold);
  opacity: 1 !important;
}
.pro-cate .nav_img {
  display: none;
}
.pro-cate .nav_w .span-6:nth-child(1) {
  background: none;
}

/* Phone in header */
.htool {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header.scrolled .htool {
  height: var(--header-scroll-h);
}
.htool p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.4;
  text-align: right;
}
.htool p span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  font-family: 'Arial', sans-serif;
}

/* Mobile nav button */
.wapNavBtn {
  display: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.wapNavBtn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  margin: 6px auto;
  transition: all 0.3s ease;
}
.wapNavBtn.on span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.wapNavBtn.on span:nth-child(2) {
  opacity: 0;
}
.wapNavBtn.on span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  font-size: 14px;
  line-height: 2;
}
.footer a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--gold);
}

.fnav {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fnav .fw {
  flex: 1;
  min-width: 180px;
  padding-right: 30px;
}
.fnav .fw > span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.fnav .fw > span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.fnav .fl {
  width: 100%;
  margin-bottom: 4px;
}
.fnav .fl a {
  display: inline-block;
  padding: 2px 0;
  font-size: 14px;
}

.ftel {
  margin: 16px 0;
}
.ftel span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Arial', sans-serif;
  line-height: 1.3;
}

.fwx {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.fwx .fl {
  width: auto;
  text-align: center;
}
.fwx .fl img {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.1);
}
.fwx .fl span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.6;
}

.fcoy {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}
.fcoy p span {
  display: inline-block;
  margin: 0 10px;
}

/* Back to top */
.fixedTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}
.fixedTop.show {
  opacity: 1;
  visibility: visible;
}
.fixedTop i {
  color: var(--white);
  font-size: 20px;
  display: block;
  line-height: 46px;
  text-align: center;
}
.fixedTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201,169,110,0.4);
}

/* ===== TITLE STYLES ===== */
.box-title {
  text-align: center;
  margin-bottom: 40px;
}
.box-title h2,
.box-title span {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-wrap: balance;
}
.box-title h2 i,
.box-title span i {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}
.box-title p {
  font-size: 15px;
  color: var(--gray-text);
  margin-top: 8px;
  letter-spacing: 1px;
}
.box-title p::before,
.box-title p::after {
  display: none;
}

.box-title2 {
  margin-bottom: 40px;
}
.box-title2 i {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  font-style: normal;
}
.box-title2 h2 {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-top: -30px;
  text-wrap: balance;
}
.box-title2 h2 font {
  color: var(--gold);
}
.box-title2 h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

.box-title3 {
  margin-bottom: 24px;
}
.box-title3 h2 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-wrap: balance;
}
.box-title3 i {
  display: block;
  font-size: 13px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  font-style: normal;
}

.title-1 {
  text-align: center;
  margin-bottom: 40px;
}
.title-1 i {
  display: block;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(11,29,46,0.04);
  letter-spacing: 6px;
  font-style: normal;
}
.title-1 span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-top: -40px;
}
.title-1 p {
  font-size: 18px;
  color: var(--gray-text);
  margin-top: 8px;
}

.title-2 {
  margin-bottom: 24px;
}
.title-2 span {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.title-2 i {
  font-style: normal;
  color: var(--gold);
}

/* ===== PAGINATION ===== */
.pager {
  text-align: center;
  padding: 40px 0;
}
.pager ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager ul li {
  list-style: none;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.pager ul li a,
.pager ul li.active a,
.pager ul li span {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--gray-mid);
  color: var(--gray-text);
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}
.pager ul li a:hover,
.pager ul li.active a {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== BREADCRUMB ===== */
.place {
  padding: 16px 0;
  font-size: 14px;
  color: var(--gray-text);
}
.place a {
  color: var(--gray-text);
}
.place a:hover {
  color: var(--gold);
}
.place span {
  margin: 0 6px;
  color: var(--gray-mid);
}

/* ===== ARTICLE CONTENT ===== */
.article {
  background: var(--white);
  padding: 40px;
  line-height: 2;
}
.news-tit {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.tool {
  text-align: center;
  color: var(--gray-text);
  font-size: 13px;
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.tool span {
  margin: 0 10px;
}
.content {
  color: var(--dark-text);
  font-size: 15px;
  line-height: 2;
}
.content p {
  margin-bottom: 16px;
}

/* ===== MEDIA BOX ===== */
.media-box {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.media-box .icon {
  overflow: hidden;
  background: var(--gray-light);
  border-radius: 8px;
}
.media-box .icon img {
  width: 100%;
  transition: transform 0.6s ease;
}
.media-box:hover .icon img {
  transform: scale(1.08);
}

/* ===== SUBPAGE CATEGORY TABS ===== */
.module_cate {
  background: var(--gray-light);
  padding: 20px 0;
  text-align: center;
}
.module_cate span {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.subCate {
  text-align: center;
  padding: 16px 0 0;
}
.subCate li {
  display: inline-block;
  margin: 0 8px 8px;
}
.subCate li a {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
}
.subCate li a:hover,
.subCate li.active a {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== SUBNAV ACCORDION ===== */
.subtab {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
}
.sub_cont {
  border: 1px solid var(--gray-mid);
  border-top: 0;
}
.sub_cont .subNav {
  padding: 14px 24px;
  border-top: 1px solid var(--gray-mid);
  cursor: pointer;
  position: relative;
  font-size: 14px;
  transition: background 0.3s;
}
.sub_cont .subNav:hover {
  background: var(--gray-light);
}
.sub_cont .subNav:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gold);
}
.sub_cont .subNav.open:after {
  content: '-';
}
.navContent {
  display: none;
  padding: 20px 24px;
  background: var(--gray-light);
  font-size: 14px;
  line-height: 1.8;
}
.navContent p {
  margin-bottom: 8px;
}

/* ===== FORMS ===== */
.m-form .form-group {
  margin-bottom: 16px;
}
.m-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}
.m-form label i {
  color: #e74c3c;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
  box-sizing: border-box;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
textarea.form-control {
  height: 120px;
  padding: 12px 16px;
  resize: vertical;
}
.m-form .btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.m-form .btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
