@charset "UTF-8";
.m-width-content {
  max-width: clamp(1093.33333px, 85.41667vw, 1640px);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ====== Header ====== */
.header {
  position: fixed;
  top: 2%;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.6s ease;
}
.header .m-width-content {
  width: 100%;
}
.header.scrolled.scrolled, .header:hover.scrolled {
  top: 0;
  background-color: #fff;
}
.header.scrolled.scrolled .h_head, .header:hover.scrolled .h_head {
  padding: 0 0;
  border-radius: 0;
}
.header.scrolled .h_head, .header:hover .h_head {
  background-color: #fff;
  border-color: #fff;
}
.header.scrolled .nav_main > li > .nav_con a, .header:hover .nav_main > li > .nav_con a {
  color: #333;
}
.header .h_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(46.66667px, 3.64583vw, 70px);
  background-color: rgba(0, 44, 118, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2509803922);
  transition: all 0.6s ease;
  border-radius: 100px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(13.33333px, 1.04167vw, 20px);
}
.header .h_logo {
  flex-shrink: 0;
}
.header .h_logo a {
  display: block;
}
.header .h_logo img {
  height: clamp(26.66667px, 2.08333vw, 40px);
  width: auto;
}
.header .h_logo img.logo-light {
  display: none;
}
.header.scrolled .h_logo .logo-dark, .header:hover .h_logo .logo-dark {
  display: none;
}
.header.scrolled .h_logo .logo-light, .header:hover .h_logo .logo-light {
  display: block;
}
.header .nav_wrap {
  flex: 1;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav_main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.header .nav_main > li:hover > .nav_con a::after {
  width: 100%;
}
.header .nav_main > li > .nav_con {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header .nav_main > li > .nav_con a {
  display: block;
  position: relative;
  padding: 0 clamp(10px, 0.78125vw, 15px);
  height: clamp(46.66667px, 3.64583vw, 70px);
  line-height: clamp(46.66667px, 3.64583vw, 70px);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.6s;
  white-space: nowrap;
}
.header .nav_main > li > .nav_con a:hover {
  color: #0454ab;
}
.header .nav_main > li > .nav_con a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0454ab;
  transition: width 0.6s;
}
.header .nav_main > li > .nav_con a:hover::after {
  width: 100%;
}
.header .nav_main > li:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .dropdown_menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  z-index: 100;
}
.header .dropdown_warp {
  display: flex;
  background: #f0f0f0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  padding: clamp(26.66667px, 2.08333vw, 40px);
}
.header .dropdown_left {
  width: 60%;
}
.header .dropdown_left .dropdown_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
.header .dropdown_left ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.header .dropdown_left li {
  width: 30%;
  border-bottom: 1px solid #ccc;
}
.header .dropdown_left li a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
  text-decoration: none;
}
.header .dropdown_left li a .p_img {
  display: none;
}
.header .dropdown_left li a span {
  flex: 1;
  color: #333;
  transition: color 0.3s;
}
.header .dropdown_left li a .iconfont {
  color: #333;
  transition: color 0.3s, transform 0.3s;
  font-size: 12px;
}
.header .dropdown_left li a:hover span {
  color: #0454ab;
}
.header .dropdown_left li a:hover .iconfont {
  color: #0454ab;
  transform: translateX(3px);
}
.header .dropdown_center {
  margin-left: 5%;
  width: 35%;
  flex-shrink: 0;
}
.header .dropdown_center .dropdown_img {
  width: 100%;
  height: 100%;
}
.header .dropdown_center .dropdown_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.header .header_tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.header .search_btn {
  display: flex;
  /*background: #0454ab;*/
  width: clamp(24px, 1.875vw, 36px);
  height: clamp(24px, 1.875vw, 36px);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}
.header .search_btn svg {
  fill: #fff;
}
.header:hover .search_btn svg,
.header.scrolled .search_btn svg{
    fill:#0454ab;
}
.header:hover .lang_switch a,
.header.scrolled .lang_switch a{
    color:#0454ab;
}
.header:hover .lang_switch .trp-ls-shortcode-language a,
.header.scrolled .lang_switch .trp-ls-shortcode-language a{
    color:#fff;
}
.header .lang_switch a {
  /*background: #0454ab;*/
  width: clamp(24px, 1.875vw, 36px);
  height: clamp(24px, 1.875vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color:#fff;
}
.header .lang_switch a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.header .nav_btn {
  display: none;
  margin-left: auto;
  cursor: pointer;
}
.header .nav_btn .nav_icon_box {
  margin: 0;
  display: flex;
  align-items: center;
}
.header .nav_btn .nav_icon_box svg {
  fill: #fff;
}

/* 移动端菜单 - PC端全局隐藏 */
.menu-wap {
  display: none;
}

/* ====== Footer ====== */
.footer-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-sidebar .sidebar-item {
  width:50px;
  height:50px;
  border-radius:50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0454ab;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-sidebar .sidebar-item .sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.footer-sidebar .sidebar-item .sidebar-icon svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.footer-sidebar .sidebar-item .sidebar-pop,
.footer-sidebar .sidebar-item .sidebar-qr {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0);
  transform-origin: right center;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  z-index: 10;
}
.footer-sidebar .sidebar-item .sidebar-pop::after,
.footer-sidebar .sidebar-item .sidebar-qr::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #fff;
}
.footer-sidebar .sidebar-item .sidebar-pop .pop-title,
.footer-sidebar .sidebar-item .sidebar-qr .pop-title {
  display: inline;
  font-size: 13px;
  color: #0454ab;
  font-weight: 700;
  margin-right: 6px;
}
.footer-sidebar .sidebar-item .sidebar-pop .pop-text,
.footer-sidebar .sidebar-item .sidebar-qr .pop-text {
  display: inline;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.footer-sidebar .sidebar-item .sidebar-pop .pop-text + .pop-text,
.footer-sidebar .sidebar-item .sidebar-qr .pop-text + .pop-text {
  margin-left: 4px;
}
.footer-sidebar .sidebar-item .sidebar-qr {
  width: clamp(100px, 7.8125vw, 150px);
}
.footer-sidebar .sidebar-item .sidebar-qr .pop-title {
  display: block;
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  white-space: normal;
}
.footer-sidebar .sidebar-item .sidebar-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-sidebar .sidebar-item:hover {
  background: #0273ed;
}
.footer-sidebar .sidebar-item:hover .sidebar-pop,
.footer-sidebar .sidebar-item:hover .sidebar-qr {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer {
  width: 100%;
  position: relative;
  background: url(../images/footer-bg.jpg) no-repeat center;
  background-size: cover;
}
.footer .footer-main {
  padding: clamp(66.66667px, 5.20833vw, 100px) 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .m-width-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 1.5625vw, 30px);
  width: 75%;
}
.footer .footer-nav-col h5 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}
.footer .footer-nav-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #333;
}
.footer .footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-nav-col ul li {
  margin-bottom: 6px;
}
.footer .footer-nav-col ul a {
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}
.footer .footer-nav-col ul a:hover {
  color: #0454ab;
  padding-left: 4px;
}
.footer .footer-contact-row {
  width: 25%;
}
.footer .footer-hotline h5 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.footer .footer-hotline h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #333;
}
.footer .footer-hotline .footer-tel {
  font-size: 26px;
  font-weight: 700;
  color: #0454ab;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
  transition: color 0.3s;
}
.footer .footer-hotline .footer-tel:hover {
  color: #0679f3;
}
.footer .footer-hotline p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer .footer-hotline p a {
  color: #333;
  text-decoration: none;
}
.footer .footer-hotline p a:hover {
  color: #0454ab;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .footer-bottom .m-width-content {
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 0;
  text-align: center;
}
.footer .footer-bottom p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
.footer .footer-bottom p a {
  display: inline-block;
}
.footer .footer-bottom p a:last-child {
  margin-left: 0;
}
.footer .footer-bottom p a {
  margin-left: 10px;
  color: #333;
  text-decoration: none;
}
.footer .footer-bottom p a:hover {
  color: #0454ab;
}

@media screen and (max-width: 1023px) {
  /* 手机菜单 start */
  #page {
    background: #FFFFFF;
  }
  .btn-nav {
    position: relative;
    top: 0;
    right: 0;
    margin-left: 20px;
    background: transparent;
    border: none;
    padding: 6px 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99999;
    display: block;
    width: 25px;
    float: right;
  }
  .btn-nav .icon-bar {
    display: block;
    margin: 6px 0;
    width: 25px;
    height: 2px;
    background-color: #0454ab;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 999999;
  }
  .innerPage .btn-nav .icon-bar,
  .fixed .btn-nav .icon-bar {
    background-color: #0C0F4D;
  }
  .mm-opening .top {
    -webkit-transform: translateY(8px) rotateZ(45deg);
    transform: translateY(8px) rotateZ(45deg);
  }
  .mm-opening .bottom {
    -webkit-transform: translateY(-8px) rotateZ(-45deg);
    transform: translateY(-8px) rotateZ(-45deg);
  }
  .mm-opening .middle {
    width: 0;
  }
  /* 手机菜单 end */
  .header .m-width-content {
    padding: 0 20px;
  }
  /* ---- Header Mobile ---- */
  .header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #fff;
  }
  .header .h_head {
    height: 52px;
    border-radius: 0;
    background: #fff;
    border: none;
    padding: 0 0;
  }
  .header .h_logo img {
    height: 28px;
  }
  .header .h_logo img.logo-dark {
    display: none;
  }
  .header .h_logo img.logo-light {
    display: block;
  }
  .header .nav_wrap {
    display: none;
  }
  .header .search_btn {
    width: 20px;
    height: 20px;
  }
  .header .search_btn svg {
    width: 14px;
    height: 14px;
  }
  .header .lang_switch a {
    width: 20px;
    height: 20px;
    font-size:10px;
  }
  .header .lang_switch a img {
    width: 100%;
    height: 100%;
  }
  /* ---- Footer Mobile ---- */
  .footer .footer-main {
    padding: 50px 0 80px;
  }
  .footer .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
  }
  .footer .footer-nav-col h5 {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  .footer .footer-nav-col h5::after {
    width: 20px;
    height: 2px;
  }
  .footer .footer-nav-col ul a {
    font-size: 13px;
  }
  .footer .footer-contact-row {
    width: 100%;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
  }
  .footer .footer-hotline h5 {
    font-size: 16px;
  }
  .footer .footer-hotline .footer-tel {
    font-size: 22px;
  }
  .footer .footer-bottom {
    padding: 14px 0;
  }
  .footer .footer-bottom p {
    font-size: 12px;
  }
  /* ---- Sidebar Float ---- */
  .footer-sidebar .sidebar-item {
    width: 36px;
    height: 36px;
  }
  .footer-sidebar .sidebar-item .sidebar-icon {
    width: 36px;
    height: 36px;
  }
  .footer-sidebar .sidebar-item .sidebar-icon svg {
    width: 16px;
    height: 16px;
  }
  /* ---- Mobile Menu Panel ---- */
  .menu-wap {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    z-index: 99999;
  }
  .menu-wap.active {
    display: block;
  }
  .menu-wap .menu-wap-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .menu-wap.active .menu-wap-mask {
    opacity: 1;
  }
  .menu-wap .menu-wap-panel {
    position: absolute;
    top: 0;
    right: -85%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .menu-wap.active .menu-wap-panel {
    right: 0;
  }
  .menu-wap .menu-wap-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0 30px;
  }
  .menu-wap .menu-wap-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu-wap .menu-wap-nav > li {
    border-bottom: 1px solid #f0f0f0;
  }
  .menu-wap .menu-wap-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  .menu-wap .menu-wap-nav > li > a:active {
    color: #0454ab;
  }
  .menu-wap .menu-wap-nav > li > a .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .menu-wap .menu-wap-nav > li.open > a .arrow {
    transform: rotate(-135deg);
  }
  .menu-wap .menu-wap-nav > li .sub-nav {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
  }
  .menu-wap .menu-wap-nav > li .sub-nav li a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    border-top: 1px solid #eee;
    transition: color 0.2s;
  }
  .menu-wap .menu-wap-nav > li .sub-nav li a:active {
    color: #0454ab;
  }
  .menu-wap .menu-wap-nav > li.open .sub-nav {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
