* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  /* touch-action: none; */
  /* ÃƒÂ©Ã‹Å“Ã‚Â²ÃƒÂ¦Ã‚Â­Ã‚Â¢ÃƒÂ¨Ã‚Â§Ã‚Â¦ÃƒÂ¦Ã¢â‚¬ËœÃ‚Â¸ÃƒÂ©Ã‚Â»Ã‹Å“ÃƒÂ¨Ã‚Â®Ã‚Â¤ÃƒÂ¨Ã‚Â¡Ã…â€™ÃƒÂ¤Ã‚Â¸Ã‚Âº */
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* ÃƒÂ¥Ã‚Â¯Ã‚Â¼ÃƒÂ¨Ã‹â€ Ã‚ÂªÃƒÂ¦Ã‚Â Ã‚ÂÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgb(255, 255, 255);
  z-index: 1000;
  display: flex;
  transition: height 0.3s ease;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 200px;
  transition: padding 0.3s ease;
}

.mobile-navbar {
  display: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  display: flex;
  line-height: 72px;
  box-sizing: border-box;
}

.logo img {
  height: 56px;
  margin: 8px;
  line-height: 72px;
  margin-right: 35px;
}

.logo-text {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  width: 320px;
}

.nav-links {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
  position: relative;
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 4px;
  background: #8bcce5;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.nav-links a.menu {
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  margin-right: 10px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.menu.active {
  color: #000;
}

.nav-links a.menu:hover {
  color: #000000;
}

.split-line {
  width: 2px;
  height: 20px;
  background: #d9d9d9;
  display: inline-block;
}

.lang-switch {
  display: inline-block;
  text-decoration: none;
  color: #666666;
}

.lang-switch .lang.active {
  display: inline-block;
  text-decoration: none;
  color: #8bcce5;
}

.lang-switch a {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.nav-links a.search {
  text-decoration: none;
  width: 24px;
  height: 24px;
  background: #d0aa40;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .search img {
  width: 14px;
  height: 14px;
}

/* ÃƒÂ§Ã‚Â¡Ã‚Â¬ÃƒÂ¤Ã‚Â»Ã‚Â¶ÃƒÂ¥Ã…Â Ã‚Â ÃƒÂ©Ã¢â€šÂ¬Ã…Â¸ÃƒÂ¤Ã‚Â¼Ã‹Å“ÃƒÂ¥Ã…â€™Ã¢â‚¬â€œ */
.swiper-container {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* ÃƒÂ§Ã‚Â§Ã‚Â»ÃƒÂ¥Ã…Â Ã‚Â¨ÃƒÂ§Ã‚Â«Ã‚Â¯ÃƒÂ¨Ã‚ÂÃ…â€œÃƒÂ¥Ã‚ÂÃ¢â‚¬Â¢ÃƒÂ¦Ã‚Â¿Ã¢â€šÂ¬ÃƒÂ¦Ã‚Â´Ã‚Â»ÃƒÂ§Ã…Â Ã‚Â¶ÃƒÂ¦Ã¢â€šÂ¬Ã‚Â */
.nav-active .nav-links {
  transform: translateY(0);
}

.nav-active .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  top: 2px;
}

.nav-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-active .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* ÃƒÂ¥Ã¢â‚¬Å“Ã‚ÂÃƒÂ¥Ã‚ÂºÃ¢â‚¬ÂÃƒÂ¥Ã‚Â¼Ã‚ÂÃƒÂ¦Ã¢â‚¬â€œÃ‚Â­ÃƒÂ§Ã¢â‚¬Å¡Ã‚Â¹ */
@media (min-width: 1600px) {
  .navbar-container {
    padding: 0 200px;
  }

  .content {
    padding: 0 200px;
  }
}

@media (min-width: 1500px) and (max-width: 1599px) {
  .navbar-container {
    padding: 0 150px;
  }

  .content {
    padding: 0 150px;
  }
}

@media (min-width: 1400px) and (max-width: 1499px) {
  .navbar-container {
    padding: 0 115px;
  }

  .content {
    padding: 0 115px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-container {
    padding: 0 30px;
  }

  .navbar-container .nav-links a.menu {
    margin-right: 20px;
  }

  .content {
    padding: 0 30px;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .navbar-container {
    padding: 0 30px;
  }

  .navbar-container .nav-links a.menu {
    margin-right: 10px;
  }

  .navbar-container .nav-links {
    gap: 0px;
  }

  .content {
    padding: 0 30px;
  }
}

/* ÃƒÂ¦Ã‚Â¡Ã…â€™ÃƒÂ©Ã‚ÂÃ‚Â¢ÃƒÂ§Ã‚Â«Ã‚Â¯ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
@media (min-width: 900px) {
  .swiper-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .swiper-slide {
    transform: translateZ(0);
    /* ÃƒÂ§Ã‚Â¡Ã‚Â¬ÃƒÂ¤Ã‚Â»Ã‚Â¶ÃƒÂ¥Ã…Â Ã‚Â ÃƒÂ©Ã¢â€šÂ¬Ã…Â¸ */
    will-change: transform;
    /* ÃƒÂ©Ã‚Â¢Ã¢â‚¬Å¾ÃƒÂ¦Ã‚ÂÃ‚ÂÃƒÂ§Ã‚Â¤Ã‚ÂºÃƒÂ¦Ã‚ÂµÃ‚ÂÃƒÂ¨Ã‚Â§Ã‹â€ ÃƒÂ¥Ã¢â€žÂ¢Ã‚Â¨ */
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    /* ÃƒÂ¥Ã‚Â¹Ã‚Â³ÃƒÂ¦Ã‚Â»Ã¢â‚¬ËœÃƒÂ¥Ã…Â Ã‚Â¨ÃƒÂ§Ã¢â‚¬ÂÃ‚Â»ÃƒÂ¦Ã¢â‚¬ÂºÃ‚Â²ÃƒÂ§Ã‚ÂºÃ‚Â¿ */
  }

  .swiper-slide .bg-img {
    width: 100% !important;
    height: 100% !important;
  }

  /* .swiper-slide:last-child {
    height: 568px !important;
  } */
}

/* ÃƒÂ§Ã‚Â§Ã‚Â»ÃƒÂ¥Ã…Â Ã‚Â¨ÃƒÂ§Ã‚Â«Ã‚Â¯ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â */
@media (max-width: 900px) {
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar {
    display: none;
  }

  .mobile-navbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-navbar .navbar-container {
    padding: 0 20px;
  }

  .content {
    padding: 0 20px;
  }

  .mobile-navbar .logo-text {
    display: none;
  }

  .mobile-navbar .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    opacity: 0;
    visibility: hidden;
  }

  .mobile-navbar.nav-active .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-navbar .nav-links a {
    padding: 10px 0;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
  }

  .mobile-navbar .nav-links a:hover {
    color: #000000;
    background-color: #8bcce5;
  }

  .mobile-navbar .menu-toggle {
    display: block;
  }

  .mobile-navbar .search img {
    height: 28px;
  }

  .swiper-container {
    overflow: visible;
    height: auto;
    margin-top: 72px;
  }

  .swiper-wrapper {
    flex-direction: column;
  }

  .swiper-slide {
    width: 100% !important;
    /* height: 100vh !important; */
    min-height: 600px;
    scroll-snap-align: start;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
  }

  .swiper-slide img {
    position: relative;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
  }

  .swiper-slide:last-child {
    height: 498px !important;
    width: 100%; /* ÃƒÂ¥Ã‚Â®Ã‚Â¹ÃƒÂ¥Ã¢â€žÂ¢Ã‚Â¨ÃƒÂ¥Ã‚Â®Ã‚Â½ÃƒÂ¥Ã‚ÂºÃ‚Â¦ */
    height: 300px; /* ÃƒÂ¥Ã‚Â®Ã‚Â¹ÃƒÂ¥Ã¢â€žÂ¢Ã‚Â¨ÃƒÂ©Ã‚Â«Ã‹Å“ÃƒÂ¥Ã‚ÂºÃ‚Â¦ */
    overflow: hidden; /* ÃƒÂ©Ã…Â¡Ã‚ÂÃƒÂ¨Ã¢â‚¬â€Ã‚ÂÃƒÂ¦Ã‚ÂºÃ‚Â¢ÃƒÂ¥Ã¢â‚¬Â¡Ã‚ÂºÃƒÂ§Ã…Â¡Ã¢â‚¬Å¾ÃƒÂ©Ã†â€™Ã‚Â¨ÃƒÂ¥Ã‹â€ Ã¢â‚¬Â  */
    position: relative;
  }

  .ss1 .conter-content .title {
    font-size: 30px !important;
  }

  .title-line {
    width: 60px !important;
    height: 2px !important;
    margin-top: -12px !important;
  }

  .ss1 .item-list .ss1-item img {
    height: 29px !important;
    object-fit: contain !important;
    margin-bottom: 13px !important;
  }

  .ss1-bg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
  }

  .ss1 .item-list .ss1-item > div {
    display: flex !important;
    flex-direction: column !important;
  }

  .ss1 .item-list .ss1-item img {
  }

  .ss2-info-value {
    font-size: 30px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .ss2 {
    height: auto !important;
  }

  .ss2 .ss2-bottom {
    position: inherit !important;
    bottom: 0px !important;
    height: 120px !important;
  }

  .ss2-info {
    height: 120px !important;
  }
  .ss3 .ss3-content {
    display: block !important;
  }

  .ss3-content-left {
    display: none !important;
  }

  .swiper-slide img {
    width: auto !important;
  }

  .swiper-slide {
    width: 100% !important;
    /* height: fit-content !important;
    min-height: auto !important; */
  }

  .swiper-slide:first-child {
    height: calc(100vh - 70px) !important;
  }

  .ss4-content {
    display: block !important;
  }

  .ss4-left {
    width: 100% !important;
  }

  .ss5-map {
    display: none !important;
  }

  .circle-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .ss5-top-option {
    display: none !important;
  }

  .ss5-footer {
    display: block !important;
    line-height: 26px !important;
    margin-top: 10px !important;
  }

  .ss3-top {
    margin-top: 50px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .ss3-top-right {
    display: flex !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }

  .ss3-top-right a {
    font-size: 14px !important;
    margin-left: 0px !important;
  }

  .ss3 .ss3-content {
    margin-top: 20px !important;
  }

  .swiper-slide:nth-child(3) {
    height: 900px !important;
  }
  /* .ss3-top-right {
    display: none !important;
  } */

  .ss4-right {
    display: none !important;
    margin-bottom: 20px !important;
  }

  .ss4-left-info {
    display: block !important;
  }

  body > div > div > div:nth-child(2) > div {
    position: static !important;
  }

  body > div > div > div:nth-child(2) > img {
    display: none !important;
  }

  body > div > div > div:nth-child(4) > div {
    position: static !important;
    padding-bottom: 20px;
  }

  body > div > div > div:nth-child(4) > img {
    position: fixed !important;
  }
  .ss5-top {
    width: 100% !important;
    margin-top: 76px !important;
  }

  .ss5-content {
    grid-template-columns: 1fr !important;
  }

  .circle-btn .btn-popup img {
    width: 60px !important;
    height: 60px !important;
  }

  .circle-btn .btn-popup {
    top: 59px !important;
    width: 112px !important;
  }
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100%);
  /* height: calc(100% - 72px); */
  /* text-align: center; */
  color: white;
  /* background-color: #3335; */
  transform: translateZ(0);
}

.ss1 {
  height: 100%;
  width: 100%;
  /* position: relative; */
}

.ss1 .conter-content {
  top: 40%;
  position: absolute;
}

.ss1 .conter-content .title {
  /* display: inline-block; */
  font-weight: 500;
  font-size: 68px;
  color: #ffffff;
  line-height: 95px;
  text-shadow: 7px 6px 14px #191919;
}

.ss1 .conter-content .title-line {
  width: 128px;
  height: 4px;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 24px;
}

.ss1 .item-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100vw;
  background-color: #4a83ba;
}

.ss1-bg {
  object-fit: cover;
  position: absolute;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.ss1-title {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.ss1-bg.active-bg {
  display: block;
  opacity: 1;
}

.ss1-title.active-title {
  display: block;
  opacity: 1;
}

.ss1 .item-list .ss1-item {
  text-decoration: none;
  height: 140px;
  background: #4a83ba;
  transition: background 0.3s ease;
}

.ss1 .item-list .ss1-item.ss1-active {
  background: linear-gradient(to bottom, #85c5e2, #4a84b6);
}

.ss1 .item-list .ss1-item > div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 140px;
}

.ss1 .item-list .ss1-item::after {
  position: relative;
  top: -90px;
  display: block;
  content: " ";
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.ss1 .item-list .ss1-item:nth-child(1)::after {
  display: none;
  content: " ";
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.ss1 .item-list .ss1-item img {
  width: 40px;
  height: 56px;
  margin-right: 10px;
  /* margin-bottom: 24px; */
}

.ss2 {
  height: 100%;
  width: 100%;
  position: relative;
}

.ss2 img {
  position: absolute;
  top: 0px;
  right: 0px;
}

.ss2-title-top {
  font-weight: bold;
  font-size: 80px;
  line-height: 80px;
  background-image: linear-gradient(to right, #4982ba, #8bcce5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-top: 84px;
}

.ss2-title {
  margin-top: 15px;
  margin-bottom: 37px;
  font-weight: 500;
  font-size: 40px;
  color: #000000;
}

p.ss2-content {
  text-indent: 2em;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 40px;
}

.ss2 .ss2-bottom {
  position: absolute;
  bottom: 60px;
  height: 302px;
  width: 100%;
  background: #fafbfb;
  display: flex;
}

.ss2-info {
  flex: 1;
  text-align: center;
  line-height: 300px;
}

.ss2-info .ss2-info-value {
  font-weight: 600;
  font-size: 47px;
  line-height: 66px;
  background-image: linear-gradient(to right, #4982ba, #8bcce5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-top: 55px;
  margin-bottom: 25px;
}

.ss2-info .ss2-info-title {
  font-weight: 400;
  font-size: 25px;
  color: #000000;
  line-height: 40px;
}

.ss3 {
  height: 100%;
  width: 100%;
  position: relative;
}

.ss3 .ss3-top {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}

.ss3 .ss3-content {
  margin-top: 55px;
  display: flex;
  gap: 40px;
}

.ss3 .ss3-top-left {
  font-weight: bold;
  font-size: 40px;
  display: flex;
}

.ss3-top-left-xw {
  color: rgba(73, 130, 186, 1);
  font-weight: 500;
}

.ss3-top-left-zx {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
}

.ss3-top-left-hd {
  -webkit-text-stroke: 1px rgba(207, 207, 207, 1);
  overflow-wrap: break-word;
  color: rgba(216, 216, 216, 0);
  margin-left: 15px;
}

.ss3-top-right {
  display: flex;
}

.ss3-top-right a {
  text-decoration: none;
  background-color: rgba(222, 222, 222, 1);
  border-radius: 26px;
  height: 46px;
  width: 144px;
  line-height: 46px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: rgba(35, 49, 47, 1);
  margin-left: 24px;
}

.ss3-top-right a.active {
  background-color: rgba(74, 131, 187, 1);
  color: rgba(255, 255, 255, 1);
}

.ss3-content-left {
  flex: 1;
  background-color: #fff;
  border-radius: 20px;
  height: fit-content;
}

.ss3-content-left img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 510px;
}

.article-list {
  display: flex;
  gap: 2px;
  position: relative;
  height: 600px;
}
.article-item {
  width: 94px;
}

.article-img {
  display: none;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 517px;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-img.active {
  display: block;
}

.article-time {
  margin-top: 423px;
  width: 94px;
  height: 97px;
  background: #4a83bb;
  text-decoration: none;
  color: #fff;
  position: absolute;
  z-index: 3;
}

.article-time.active {
  background: #ffffff;
  color: #000;
  display: block;
}

.article-date {
  line-height: 35px;
  font-size: 24px;
  text-align: center;
  margin-top: 13px;
}

.article-year {
  line-height: 40px;
  font-size: 18px;
  text-align: center;
}

.article-title {
  color: #000000;
  font-size: 22px;
  /* padding: 24px 35px; */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 24px 0px;
  padding: 0px 35px;
  display: none;
  position: absolute;
  bottom: 0px;
  width: 100%;
  top: 518px;
  left: 0px;
  box-sizing: border-box;
  height: 32px;
}

.article-title.active {
  display: -webkit-box;
}
/* 
.ss3-content-left > div:last-child {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
} */

.ss3-content-right {
  flex: 1;
  gap: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}

.ss3-content-right-item {
  display: none;
}

.ss3-active {
  display: block;
}

.ss3-content-right .time-line {
  position: absolute;
  left: 0px;
  top: 50px;
  height: calc(100% - 100px);
  width: 50px;
  border-right: solid 1px #9dbad6;
  z-index: -1;
}

.ss3-content-item {
  display: flex;
}

.ss3-timeline {
  min-width: 100px;
  height: 100px;
  box-shadow: 0px 7px 20px 0px rgba(74, 131, 187, 0.2);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: column;
}

.ss3-date {
  overflow-wrap: break-word;
  color: #000000;
  font-size: 22px;
  font-family: PingFangSC-Medium;
  font-weight: 500;
}

.ss3-year {
  color: #000000;
  font-size: 16px;
  font-family: PingFangSC-Medium;
  font-weight: 500;
}

.ss3-document {
  margin-left: 32px;
}

.ss3-doc-title {
  color: #000000;
  font-size: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.ss3-doc-content {
  color: #999999;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ss4-title {
  margin-top: 82px;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
}

.ss4-content {
  margin-top: 26px;
  /* height: 638px; */
  width: 100%;
  display: flex;
}

.ss4-left {
  width: 44%;
  background-color: #4a83bb;
  /* height: 638px; */
  color: #fff;
  padding: 23px 47px;
  box-sizing: border-box;
}

.ss4-left .ss4-left-title {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 25px;
}

.ss4-left .ss4-left-content {
  font-weight: 400;
  font-size: 21px;
  line-height: 34px;
  text-indent: 2em;
  height: 335px;
}

.ss4-left-info {
  display: flex;
  margin-top: 50px;
}

.ss4-code {
  width: 160px;
  height: 160px;
  background: #ffffff;
  border-radius: 8px;
}

.ss4-info {
  margin: 2px 0px 13px 28px;
  font-weight: 400;
  font-size: 20px;
}

.ss4-info div {
  margin-bottom: 8px;
}

/* .ss4-left  */

.ss4-right {
  width: 56%;
  background: #1c3c5a66;
  /* height: 638px; */
  padding: 25px 24px;
}

.ss4-select-group {
}

.ss4-right-opton {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.ss4-select-group {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: end;
}

.ss4-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffffb9;
  color: #333333;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 8px 24px 8px 12px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  min-width: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.3s ease;
}

.ss4-select:hover {
  border-color: #8bcce5;
}

.ss4-select:focus {
  outline: none;
  border-color: #4a83bb;
}

.ss4-right-opton a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 0px 20px;
  display: inline-block;
  height: 44px;
  line-height: 44px;
}

.ss4-right-opton .ss4-right-option-item a.active {
  background: #d0aa40;
}

.ss4-table-content {
  height: 484px;
  width: 100%;
  overflow: auto;
  position: relative;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 6px 0px;
  font-size: 20px;
  background-color: #d0aa40;
  color: #fff;
  margin-top: 10px;
}

.ss4-table {
  color: #fff;
  font-size: 14px;
  color: #ffffff;
  width: 100%;
  border: none;
  border-collapse: collapse;
  display: none;
}
/*  */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa49;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 4px;
  border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

.ss4-active {
  display: inline-table;
}

.ss4-table thead th {
  text-align: left;
  padding: 0px 16px;
  height: 44px;
  background: #4a83bb;
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ss4-table tbody tr {
  height: 44px;
}

.ss4-table tbody td {
  text-align: left;
  padding: 0px 16px;
}

/* .ss4-table tbody tr:nth-child(odd) {
      background: #4A83BB;
    } */

.ss4-table tbody tr:nth-child(even) {
  background: #003362;
}

.ss5 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.ss5-top {
  width: 100%;
  /* margin-top: 76px; */
  margin-top: calc(75vh - 512px);
  display: flex;
  justify-content: space-between;
  /* text-align: end; */
}

.ss5-top a {
  display: flex;
  justify-content: space-between;
}

.ss5-top-option {
  display: flex;
}

.ss5-top .circle-btn {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3b3b3b;
  margin-right: 46px;
  position: relative;
}

.ss5-top .circle-btn img {
  width: 32px;
  height: 32px;
}

.circle-btn .btn-popup {
  position: absolute;
  display: none;
  top: 77px;
  width: 160px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  z-index: 100;
  color: #4982ba;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}

.circle-btn .btn-popup img {
  width: 120px;
  height: 120px;
}

.circle-btn:hover .btn-popup {
  position: absolute;
  display: block;
  width: 160px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  z-index: 100;
}

.ss5-top .normal-btn {
  width: 180px;
  height: 64px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  line-height: 64px;
  color: #fff;
  background: linear-gradient(83deg, #4982ba 0%, #8bcce5 100%);
}

.ss5-content-title {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 25px;
}

.ss5-content-info-msg {
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  line-height: 48px;
}

.ss5-content-info img {
  margin-right: 25px;
}

.ss5-map img {
  width: 100%;
}

.ss5-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ss5-footer {
  height: 124px;
  display: flex;
  justify-content: space-around;
  line-height: 124px;
  font-weight: 500;
  font-size: 16px;
  color: #898989;
  /* margin-top: 77px; */
}

.ss5-footer img {
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  margin-right: 10px;
}

.footer-line {
  border-top: 1px solid #3d3d40;
  position: fixed;
  bottom: 105px;
  width: 100vw;
  left: 0px;
}
