:root {
  --ideal-viewport-width: 1920;
}
html {
  font-size: 19.2px;
}
body {
  width: 100%;
  max-width: 3840px;
  /* 和 JS 中 limitedWidth 最大值一致 */
  min-width: 1280px;
  /* 和 JS 中 limitedWidth 最小值一致 */
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "pingfang";
}
*,
:after,
:before {
  box-sizing: border-box;
}
/* :end */
/* 预定义样式开始 */
body,
div,
ol,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
fieldset,
legend,
input {
  margin: 0;
  padding: 0;
}
h1,
h2,
h6 {
  font-size: 100%;
}
ol,
ul {
  list-style: none;
}
img,
fieldset {
  border: 0 none;
  display: block;
}
* {
  padding: 0rem;
  margin: 0rem;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
em {
  font-style: normal;
}
/*清除浮动*/
.clr:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
.clr {
  zoom: 1;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
i {
  font-style: normal;
}
@font-face {
  font-family: "pingfang";
  src: url(../fonts/PINGFANG\ MEDIUM.TTF);
}
@font-face {
  font-family: "BOLD";
  src: url(../fonts/PINGFANG\ BOLD.TTF);
}
/* hover按钮 */
.btn-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 170px;
  height: 54px;
  border-radius: 28px;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #D9DEE6;
}
.bg-layer {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: #002454;
  border-radius: 22px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.icon-wrapper {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-text {
  position: relative;
  z-index: 2;
  margin-left: 70px;
  font-size: 14px;
  line-height: 54px;
  color: #002454;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-container:hover .bg-layer {
  width: calc(100% - 14px);
}
.btn-container:hover .btn-text {
  color: #fff;
  transform: translateX(0px);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bg-cover {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wider_nav {
  width: 100%;
}
.wider_nav-scnt {
  width: 100%;
  height: 75px;
  padding: 0 0 0 60px;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 1280px;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wider_nav-scnt .wider_nav-left {
  width: 5.5729rem;
  height: 3.3854rem;
}
.wider_nav-scnt .wider_nav-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wider_nav-scnt .wider_nav_cont {
  width: 50rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.wider_nav-scnt .wider_nav-right {
  width: 18.2813rem;
  height: 75px;
  position: relative;
  z-index: 1;
  background: transparent;
  -webkit-clip-path: polygon(15% 0, 100% 1%, 100% 100%, 0% 100%);
  clip-path: polygon(15% 0, 100% 1%, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wider_nav-scnt .wider_nav-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002454;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.9s ease-out;
}
.wider_nav-scnt .wider_nav-right-img {
  display: block;
  margin-right: 15px;
  transition: filter 0.9s ease;
  width: 22px;
  height: 22px;
  background-image: url(../image/phoneactiv.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wider_nav-scnt .wider_nav-right span {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  transition: color 1.2s ease;
}
.wider_nav-scnt.scrolled {
  background: #ffffff;
}
.wider_nav-scnt.scrolled .wider_nav-right span {
  color: #ffffff;
}
.wider_nav-scnt.scrolled .wider_nav-right-img {
  background-image: url(../image/phoneicon.png);
}
.wider_nav-scnt.scrolled .wider_nav-right::before {
  transform: scaleX(1);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-item {
  position: relative;
  cursor: pointer;
  color: #111111;
  font-size: 15px;
  height: 75px;
  line-height: 75px;
}
.nav-item a {
  color: #111111;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #002454;
  transition: width 0.3s ease;
}
.nav-item:hover {
  color: #002454;
}
.nav-item:hover .item-active {
  color: #002454;
}
.nav-item:hover::after {
  width: 100%;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}
.dropdown {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 150px;
  background: #ffffff;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 25px 0;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  line-height: initial;
  margin-bottom: 30px;
  padding: 0 20px;
}
.dropdown-item:last-child {
  margin-bottom: 0;
}
.dropdown-item:hover {
  color: #002454;
}
.arrow-icon {
  font-size: 12px;
  color: #090909;
}
.content-scroll {
  min-height: 100vh;
  width: 100%;
  background: #ffffff;
  position: relative;
}
.content-scroll .top-list-item-top {
  background: #F8FAFF;
  padding-top: 109px;
  padding-bottom: 116px;
}
.content-scroll .top-list-item-top .hist-cont {
  margin: 0 auto;
  width: 1280px;
  padding: 0 40px;
}
.content-scroll .top-list-item-top .hist-cont-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 90px;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-text {
  width: 33.8542rem;
  padding-top: 26px;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-text .hist-t01 {
  font-size: 38px;
  font-weight: 700;
  color: #002454;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-text .hist-t02 {
  font-size: 16px;
  text-align: left;
  color: #00101f;
  line-height: 28px;
  margin-top: 2.6042rem;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-text .hist-t03 {
  margin-top: 45px;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-img {
  width: 529px;
  height: 356px;
}
.content-scroll .top-list-item-top .hist-cont-top .hist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-container {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #F8FAFF;
}
.stats-container .stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stats-container .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #e6eaef;
}
.stats-container .stat-item .stat-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  line-height: 1;
}
.stats-container .stat-item .stat-top .num {
  font-size: 44px;
  font-weight: 700;
  color: #0a2558;
  letter-spacing: 0.5px;
}
.stats-container .stat-item .stat-top .symbol {
  font-size: 20px;
  color: #0a2558;
  font-weight: bold;
  margin-left: 2px;
  position: relative;
  top: -12px;
}
.stats-container .stat-item .stat-top .unit {
  font-size: 16px;
  color: #8c96a5;
  margin-left: 4px;
  font-weight: 400;
  font-family: "Microsoft YaHei", sans-serif;
}
.stats-container .stat-item .stat-top .unit.large {
  font-size: 20px;
  color: #0a2558;
  font-weight: 600;
}
.stats-container .stat-item .stat-desc {
  font-size: 16px;
  color: #8c96a5;
  letter-spacing: 0.5px;
  font-family: "Microsoft YaHei", sans-serif;
}
.advantage-section {
  width: 100%;
  background-color: #ffffff;
  padding: 124px 0 140px;
}
.advantage-section .advantage-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.advantage-section .advantage-container .sec-header {
  text-align: center;
}
.advantage-section .advantage-container .sec-header .sec-title {
  font-size: 38px;
  color: #002454;
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: 1px;
}
.advantage-section .advantage-container .sec-header .sec-line {
  width: 34px;
  height: 2px;
  background-color: #002454;
  margin: 0 auto 15px;
  border-radius: 2px;
}
.advantage-section .advantage-container .sec-header .sec-subtitle {
  font-size: 18px;
  color: #B6B8BD;
  letter-spacing: 1px;
  margin: 0;
}
.advantage-section .advantage-container .adv-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.advantage-section .advantage-container .adv-list .adv-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}
.advantage-section .advantage-container .adv-list .adv-item .img-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4f8ff 0%, #fefefe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-section .advantage-container .adv-list .adv-item .img-circle img {
  width: 85%;
  height: auto;
  object-fit: contain;
}
.advantage-section .advantage-container .adv-list .adv-item h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #002454;
  margin-bottom: 16px;
}
.advantage-section .advantage-container .adv-list .adv-item p {
  font-size: 16px;
  color: #5E6770;
  line-height: 1.6;
  margin: 0;
}
.advantage-section .advantage-container .adv-list .adv-item:hover .img-circle {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 36, 84, 0.05);
}
.advantage-section .advantage-container .adv-list .adv-item:hover h3 {
  color: #003a87;
}
.services-section {
  width: 100%;
  background-color: #F8FAFF;
  padding: 80px 0 100px;
}
.services-section .services-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.services-section .services-container .sec-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-section .services-container .sec-header .sec-title {
  font-size: 38px;
  color: #002454;
  font-weight: 700;
  margin: 0 0 15px;
}
.services-section .services-container .sec-header .sec-line {
  width: 34px;
  height: 2px;
  background-color: #002454;
  margin: 0 auto 15px;
}
.services-section .services-container .sec-header .sec-subtitle {
  font-size: 18px;
  color: #B6B8BD;
}
.services-section .services-container .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.services-section .services-container .service-grid .service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.services-section .services-container .service-grid .service-card .card-img-wrap {
  width: 100%;
  height: 305px;
  overflow: hidden;
}
.services-section .services-container .service-grid .service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services-section .services-container .service-grid .service-card .card-content {
  padding: 35px 20px;
  text-align: center;
}
.services-section .services-container .service-grid .service-card .card-content h3 {
  font-size: 20px;
  color: #002454;
  font-weight: 700;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}
.services-section .services-container .service-grid .service-card .card-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.services-section .services-container .service-grid .service-card:hover .card-img-wrap img {
  transform: scale(1.2);
}
.services-section .services-container .service-grid .service-card:hover .card-content h3 {
  color: #003a87;
}
.services-section .services-container .sec-footer {
  display: flex;
  justify-content: center;
}
.process-section {
  width: 100%;
  padding: 80px 0 160px;
  padding-bottom: 160px;
  background-color: #002454;
  background-image: repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
}
.process-section .process-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.process-section .process-container .sec-header.light-theme {
  text-align: center;
  margin-bottom: 85px;
}
.process-section .process-container .sec-header.light-theme .sec-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 15px;
}
.process-section .process-container .sec-header.light-theme .sec-line {
  width: 34px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 auto 15px;
}
.process-section .process-container .sec-header.light-theme .sec-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}
.process-section .process-container .timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
}
.process-section .process-container .timeline-wrapper .timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 3px;
}
.process-section .process-container .timeline-wrapper .process-item {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  justify-content: center;
}
.process-section .process-container .timeline-wrapper .process-item .p-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.process-section .process-container .timeline-wrapper .process-item .p-content .hex-icon img {
  width: 90px;
  height: 98px;
  object-fit: contain;
}
.process-section .process-container .timeline-wrapper .process-item .p-content .p-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.process-section .process-container .timeline-wrapper .process-item .p-node {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #002454;
  border: 4px solid #ffffff;
  position: relative;
  z-index: 2;
}
.process-section .process-container .timeline-wrapper .process-item .p-number {
  font-size: 30px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  font-family: Arial, sans-serif;
  line-height: 1;
}
.process-section .process-container .timeline-wrapper .process-item.odd .hex-icon {
  padding-bottom: 28px;
}
.process-section .process-container .timeline-wrapper .process-item.odd .p-node {
  margin-top: -106px;
}
.process-section .process-container .timeline-wrapper .process-item.odd .p-content {
  margin-bottom: auto;
}
.process-section .process-container .timeline-wrapper .process-item.odd .p-number {
  margin-bottom: 122px;
  margin-top: 40px;
}
.process-section .process-container .timeline-wrapper .process-item.even .p-title {
  padding-top: 28px;
}
.process-section .process-container .timeline-wrapper .process-item.even .p-number {
  margin-top: 122px;
  margin-bottom: 40px;
}
.process-section .process-container .timeline-wrapper .process-item.even .p-content {
  margin-top: auto;
  flex-direction: column-reverse;
}
.process-section .process-container .timeline-wrapper .process-item:hover .p-content {
  transform: scale(1.1);
}
.process-section .process-container .timeline-wrapper .process-item:hover .p-node {
  border: 4px solid #ff9000;
}
.process-section .process-container .timeline-wrapper .process-item:hover .p-number {
  color: rgba(255, 255, 255, 0.4);
}
@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.partner-section {
  width: 100%;
  background-color: #F8FAFF;
  padding-top: 116px;
  padding-bottom: 124px;
  overflow: hidden;
}
.partner-section .partner-container {
  width: 1330px;
  margin: 0 auto;
  box-sizing: border-box;
}
.partner-section .partner-container .sec-header {
  text-align: center;
}
.partner-section .partner-container .sec-header .sec-title {
  font-size: 38px;
  color: #002454;
  font-weight: 700;
  margin: 0 0 15px;
}
.partner-section .partner-container .sec-header .sec-line {
  width: 34px;
  height: 3px;
  background-color: #002454;
  margin: 0 auto 15px;
}
.partner-section .partner-container .sec-header .sec-subtitle {
  font-size: 18px;
  color: #B6B8BD;
}
.partner-section .partner-container .galaxy-wrapper {
  position: relative;
  width: 100%;
  height: 649px;
  margin: 0 auto;
  background: url(../image/dq.png) no-repeat;
  background-size: 100% 100%;
  margin-top: -30px;
}
.partner-section .partner-container .galaxy-wrapper .orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 36, 84, 0.08);
  pointer-events: none;
  z-index: 0;
}
.partner-section .partner-container .galaxy-wrapper .center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #002454;
  box-shadow: 0 0 30px rgba(0, 36, 84, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.partner-section .partner-container .galaxy-wrapper .center-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 37, 88, 0.4);
  border-radius: 50%;
  z-index: -1;
  animation: diffuse 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.partner-section .partner-container .galaxy-wrapper .center-node .center-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-section .partner-container .galaxy-wrapper .center-node .center-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-section .partner-container .galaxy-wrapper .center-node .center-content span {
  font-size: 12px;
  opacity: 0.9;
}
.partner-section .partner-container .galaxy-wrapper .partner-node {
  position: absolute;
  width: 124px;
  height: 124px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  z-index: 5;
  transition: all 0.3s ease;
  animation: floatAnim 4s ease-in-out infinite;
}
.partner-section .partner-container .galaxy-wrapper .partner-node img {
  width: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 0.3s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 36, 84, 0.15);
  z-index: 11;
}
.partner-section .partner-container .galaxy-wrapper .partner-node:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-1 {
  top: 20px;
  left: 286px;
  animation-delay: 0s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-2 {
  top: 129px;
  left: 25px;
  animation-delay: 1s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-3 {
  top: 148px;
  left: 428px;
  transform: translateX(-50%);
  animation-delay: 2s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-4 {
  top: 20px;
  right: 280px;
  animation-delay: 0.5s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-5 {
  top: 129px;
  right: 25px;
  animation-delay: 1.5s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-6 {
  top: 384px;
  left: 25px;
  animation-delay: 2.5s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-7 {
  top: 255px;
  left: 199px;
  width: 124px;
  height: 124px;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-8 {
  top: 358px;
  left: 402px;
  animation-delay: 0.8s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-13 {
  top: 494px;
  left: 263px;
  animation-delay: 3s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-9 {
  top: 148px;
  right: 421px;
  width: 124px;
  height: 124px;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-10 {
  top: 255px;
  right: 194px;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-11 {
  top: 358px;
  right: 397px;
  width: 124px;
  height: 124px;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-12 {
  top: 384px;
  right: 25px;
  animation-delay: 1.2s;
}
.partner-section .partner-container .galaxy-wrapper .partner-node.pos-14 {
  top: 494px;
  right: 258px;
  animation-delay: 2.2s;
}
@keyframes diffuse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(0, 36, 84, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    box-shadow: 0 0 20px 0 rgba(0, 36, 84, 0);
  }
}
.btn-primary {
  width: 200px !important;
}
.news-section {
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 130px;
  padding-top: 104px;
}
.news-section .news-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.news-section .news-container .news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.news-section .news-container .news-header .header-left .sub-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news-section .news-container .news-header .header-left .sub-wrapper .line {
  width: 34px;
  height: 2px;
  background-color: #002454;
  margin-right: 10px;
}
.news-section .news-container .news-header .header-left .sub-wrapper .sub-text {
  font-size: 18px;
  color: #B6B8BD;
}
.news-section .news-container .news-header .header-left .main-title {
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.news-section .news-container .news-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}
.news-section .news-container .news-content .news-featured .featured-link {
  display: block;
  text-decoration: none;
  group: featured;
}
.news-section .news-container .news-content .news-featured .featured-link .img-wrapper {
  width: 100%;
  height: 369px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 25px;
}
.news-section .news-container .news-content .news-featured .featured-link .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-section .news-container .news-content .news-featured .featured-link .meta-info .date {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}
.news-section .news-container .news-content .news-featured .featured-link .meta-info .title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 15px;
  transition: color 0.3s;
}
.news-section .news-container .news-content .news-featured .featured-link .meta-info .read-more {
  font-size: 14px;
  color: #002454;
  font-weight: 500;
  transition: opacity 0.3s;
}
.news-section .news-container .news-content .news-featured .featured-link:hover .img-wrapper img {
  transform: scale(1.05);
}
.news-section .news-container .news-content .news-featured .featured-link:hover .meta-info .title {
  color: #002454;
}
.news-section .news-container .news-content .news-list {
  display: flex;
  flex-direction: column;
}
.news-section .news-container .news-content .news-list .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 163px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
.news-section .news-container .news-content .news-list .list-item:first-child {
  padding-top: 0;
  border-top: 1px solid #f0f0f0;
}
.news-section .news-container .news-content .news-list .list-item:last-child {
  border-bottom: 1px solid #f0f0f0;
}
.news-section .news-container .news-content .news-list .list-item .item-body {
  flex: 1;
  padding-right: 20px;
}
.news-section .news-container .news-content .news-list .list-item .item-body .title {
  position: relative;
  font-size: 16px;
  color: #050505;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.5;
  padding-left: 15px;
  transition: color 0.3s;
}
.news-section .news-container .news-content .news-list .list-item .item-body .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #002454;
}
.news-section .news-container .news-content .news-list .list-item .item-body .date {
  font-size: 16px;
  color: #A4A4A4;
  padding-left: 15px;
}
.news-section .news-container .news-content .news-list .list-item .item-arrow {
  width: 20px;
  height: 20px;
  color: #002454;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.news-section .news-container .news-content .news-list .list-item .item-arrow svg {
  width: 100%;
  height: 100%;
}
.news-section .news-container .news-content .news-list .list-item:hover {
  border-bottom-color: #002454;
}
.news-section .news-container .news-content .news-list .list-item:hover .item-body .title {
  color: #002454;
}
.news-section .news-container .news-content .news-list .list-item:hover .item-arrow {
  transform: translateX(6px);
}
.site-footer {
  width: 100%;
  background-color: #172541;
  color: #ffffff;
  padding-top: 48px;
  font-size: 14px;
  margin-top: 0;
}
.site-footer .footer-container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.site-footer .footer-container .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 46px;
}
.site-footer .footer-container .footer-top .top-left {
  display: flex;
  align-items: center;
}
.site-footer .footer-container .footer-top .top-left .footer-logo {
  width: 124px;
  height: 76px;
  margin-right: 80px;
}
.site-footer .footer-container .footer-top .top-left .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-footer .footer-container .footer-top .top-left .friend-links {
  position: relative;
  width: 300px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.site-footer .footer-container .footer-top .top-left .friend-links .link-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 300px;
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-container .footer-top .top-left .friend-links .link-trigger .arrow {
  width: 18px;
  height: 8px;
  transition: transform 0.3s;
}
.site-footer .footer-container .footer-top .top-left .friend-links .link-dropdown {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 300px;
  background-color: #172541;
  border: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 10;
}
.site-footer .footer-container .footer-top .top-left .friend-links .link-dropdown li a {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  width: 300px;
}
.site-footer .footer-container .footer-top .top-left .friend-links .link-dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.site-footer .footer-container .footer-top .top-left .friend-links:hover .link-dropdown {
  display: block;
}
.site-footer .footer-container .footer-top .top-left .friend-links:hover .link-trigger .arrow {
  transform: rotate(180deg);
}
.site-footer .footer-container .footer-top .top-right {
  display: flex;
  align-items: center;
}
.site-footer .footer-container .footer-top .top-right .phone-icon {
  width: 66px;
  height: 66px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
.site-footer .footer-container .footer-top .top-right .phone-icon svg {
  width: 66px;
  height: 66px;
}
.site-footer .footer-container .footer-top .top-right .phone-text .label {
  font-size: 18px;
  margin-bottom: 8px;
}
.site-footer .footer-container .footer-top .top-right .phone-text .number {
  font-size: 28px;
  font-weight: 700;
}
.site-footer .footer-container .footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 40px;
}
.site-footer .footer-container .footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
}
.site-footer .footer-container .footer-main .links-group {
  display: flex;
  gap: 130px;
}
.site-footer .footer-container .footer-main .links-group .link-col h4 {
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 20px 0;
}
.site-footer .footer-container .footer-main .links-group .link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-container .footer-main .links-group .link-col ul li {
  margin-bottom: 12px;
}
.site-footer .footer-container .footer-main .links-group .link-col ul li a {
  color: #868C9A;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-container .footer-main .links-group .link-col ul li a:hover {
  color: #ffffff;
}
.site-footer .footer-container .footer-main .links-group .link-col.wide .sub-cols {
  display: flex;
  gap: 30px;
}
.site-footer .footer-container .footer-main .qr-group {
  display: flex;
  gap: 30px;
}
.site-footer .footer-container .footer-main .qr-group .qr-item {
  text-align: center;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box {
  position: relative;
  width: 140px;
  height: 140px;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box img {
  width: 104px;
  height: 104px;
  display: block;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box .corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #fff;
  border-style: solid;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box .tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box .tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box .bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}
.site-footer .footer-container .footer-main .qr-group .qr-item .qr-box .br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}
.site-footer .footer-container .footer-main .qr-group .qr-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.site-footer .footer-container .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .footer-container .footer-bottom .copyright-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  width: 100%;
}
.site-footer .footer-container .footer-bottom .copyright-row .left {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.site-footer .footer-container .footer-bottom .copyright-row .right {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.site-footer .footer-container .contact-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-container .contact-row .contact-item {
  display: flex;
  align-items: center;
}
.site-footer .footer-container .contact-row .contact-item span {
  font-size: 14px;
  font-weight: 400;
  color: #868c9a;
}
.site-footer .footer-container .contact-row .contact-item .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.8;
}
.side-bar-fixed {
  position: fixed;
  right: 30px;
  top: 35%;
  transform: translateY(-50%);
  width: 80px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(120px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-bar-fixed.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.side-bar-fixed .user-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  z-index: 2;
}
.side-bar-fixed .user-profile .avatar-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.side-bar-fixed .user-profile .avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-bar-fixed .user-profile .welcome-badge {
  margin-top: -15px;
  background-color: #002454;
  color: #fff;
  font-size: 14px;
  width: 84px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.side-bar-fixed .menu-list {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 15px 0px rgba(61, 67, 81, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
}
.side-bar-fixed .menu-list .divider {
  width: 40px;
  height: 1px;
  background-color: #eee;
  margin: 5px 0;
}
.side-bar-fixed .menu-list .menu-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s;
  color: #666;
}
.side-bar-fixed .menu-list .menu-item .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  color: #002454;
}
.side-bar-fixed .menu-list .menu-item .icon svg {
  width: 100%;
  height: 100%;
}
.side-bar-fixed .menu-list .menu-item .text {
  font-size: 14px;
  line-height: 1;
  color: #333F4A;
}
.side-bar-fixed .menu-list .menu-item.back-to-top .icon.arrow-up {
  color: #999;
}
.side-bar-fixed .menu-list .menu-item.back-to-top:hover .icon.arrow-up {
  color: #002454;
}
.side-bar-fixed .menu-list .menu-item:hover .popup-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.side-bar-fixed .menu-list .menu-item .popup-bubble {
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 15px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(61, 67, 81, 0.04);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  z-index: 10;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble .arrow {
  position: absolute;
  top: 50%;
  right: -6px;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble.phone-popup {
  padding: 15px 20px;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble.phone-popup .label {
  font-size: 14px;
  color: #333F4A;
  margin-bottom: 5px;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble.phone-popup .number {
  font-size: 16px;
  font-weight: 700;
  color: #002454;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble.qr-popup {
  padding: 10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-bar-fixed .menu-list .menu-item .popup-bubble.qr-popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
