
/* ===== 8  ===== */

.tab-section {
  background-color: #ebf4f5;
  background-image: url('../images/bg_8.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  padding: 100px 5%;
}

.tab-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.tab-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.tab-title-img {
  width: 40%;
  max-width: 100%;
  height: auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background-color: #fff;
  color: #437af0;
  border: 1px solid #437af0;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background-color: #fff;
  color: #437af0;
}

.tab-btn.active {
  background-color: #437af0;
  color: #fff;
  border: 1px solid #437af0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: auto;
  overflow-x: hidden;
}

.video-box {
  background-color: #437af0;
  border-radius: 0 20px 20px 20px;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.rolling-box {
  flex: 0 1 36%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
}

.video-group {
  display: flex;
  flex-direction: column;
  flex: 0 1 62%;
  min-width: 0;
  margin-right: 20px;
}

.video-link {
  color: #437af0;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

.video-wrap {
  display: none;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrap.active {
  display: block;
}

.video-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.video-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.video-nav-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background-color: #cccccc;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.video-nav-btn:hover {
  background-color: #aaaaaa;
}

.video-nav-btn.active {
  background-color: #437af0;
}

.video-label {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #437af0;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  white-space: nowrap;
  z-index: 3;
}

.video-wrap iframe {
  position: absolute;
  border-radius: 16px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title-img {
  margin: 0;
  padding: 0;
}

.video-title-img img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-bottom: 0;
}

.rolling-tabs {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  border-radius: 20px 0 20px 20px;
  background-color: #fff;
  padding: 0;
}

.rolling-tab {
  width: 100%;
  padding: 10px;
  border: none;
  border-top: none;
  border-radius: 20px;
  margin-top: 0;
  display: none;
}

.rolling-tab.active {
  display: block;
}

.rolling-tab-header {
  min-width: 300px;
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  height: 59px;
  box-sizing: border-box;
  position: relative;
  overflow-x: auto;
}

.rolling-tab-mask {
  position: absolute;
  bottom: -3px;
  right: 1px;
  width: 65%;
  max-width: none;
  height: 3px;
  background-color: #fff;
  z-index: 100;
  pointer-events: none;
}

.rolling-tab-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.rolling-tab-btn {
  position: relative;
  background: transparent;
  border: none;
  padding: 8px 16px;
  margin: 0 10px;
  font-weight: bold;
  color: #000;
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rolling-tab-btn.active {
  color: #fff;
}

.tab-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 36px;
  background-color: #000;
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}

@media screen and (max-width: 1024px) {

.rolling-tabs {
  border-radius: 0 0 20px 20px;
}
.rolling-tab-header {
  min-width: 100%;
  margin-left: none;
  justify-content: center;
}
.rolling-tab-btn {
  padding: 8px 16px;
  margin: 0 5px;
}

}

@media screen and (max-width: 768px) {

  .video-label {
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    padding: 6px 16px;
  }

  .rolling-tab-header {
    width: 100%;
    margin-left: 0;
    justify-content: center;
}

  .tab-flex-wrap {
    flex-direction: column;
  }

  .rolling-box {
    flex: 1 1 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .video-group {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
  }

  .video-box {
    width: 100%;
  }
}


/* ===== 9  ===== */
.shortform-wrap {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ebf4f5;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.shortform-bg1 {
  position: relative;
  max-width: 1600px;
}

.shortform-bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.shortform-bg img {
  width: 550px;
  height: auto;
  display: block;
}

.shortform-inner {
  position: relative;
  z-index: 1;
  width: 1600px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  box-sizing: border-box;
}

.shortform-left {
  flex-shrink: 0;
  width: 280px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

.shortform-title strong {
  display: block;
  font-size: 30px;
  margin-top: 10px;
}

.shortform-nav {
  margin-top: 20px;
}

.shortform-nav button {
  background: #fff;
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-right: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.shortform-slider {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  margin-left: 0px;
}

.shortform-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.shortform-track li {
  flex: 0 0 240px;
  border-radius: 20px;
  overflow: hidden;
}

.shortform-track iframe {
  width: 100%;
  height: 426px;
  border: none;
  display: block;
  border-radius: 20px;
}

.shortform-track img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.shortform-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.shortform-video-wrap iframe {
  pointer-events: none;
}

.shortform-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-indent: -9999px;
  background: transparent;
}

@media screen and (max-width: 768px) {
  .shortform-left {
    margin: 50px 0 0 0;
    width: 200px;
  }

  .shortform-bg img {
    width: 400px;
  }

.shortform-inner {
  padding: 0 0 0 20px;
}
}

@media screen and (max-width: 460px) {
.shortform-bg {
  left: -40px;
}
.shortform-left {
    font-size: 18px;
}
.shortform-title strong {
    font-size: 22px;
    margin-top: 5px;
}
.shortform-left {
    width: 140px;
}
.shortform-track li {
    flex: 0 0 180px;
    border-radius: 10px;
    overflow: hidden;
}
.shortform-video-wrap {
    height: 60%;
}
.shortform-track iframe {
    height: 326px;
    border-radius: 10px;
}
.shortform-nav button {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-right: 6px;
    font-size: 14px;
}
}

/* ===== 10  ===== */
.gov-link-banner-wrap {
  padding: 60px 0;
  background: #ebf4f5;
  text-align: center;
}

.gov-link-banner-title img {
  max-width: 70%;
  margin-bottom: 30px;
}

.gov-link-banner-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gov-link-banner-item {
  width: 22vw;
  max-width: 350px;
  min-width: 150px;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 30px 20px;
  position: relative;
  text-decoration: none;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gov-link-banner-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.gov-link-banner-icon img {
  width: 64px;
  height: 64px;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.gov-link-banner-icon .hover-icon {
  opacity: 0;
}

.gov-link-banner-item:hover .hover-icon {
  opacity: 1;
}

.gov-link-banner-item:hover .gov-link-banner-icon img:not(.hover-icon) {
  opacity: 0;
}

.gov-link-banner-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.gov-link-banner-main {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gov-link-banner-hover {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  background: #437af0;
  color: #fff;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gov-link-banner-item:hover .gov-link-banner-hover {
  opacity: 1;
}


@media (max-width: 1200px) {
.gov-link-banner-hover {
  bottom: 1vh;
}
}

@media (max-width: 768px) {
  .gov-link-banner-title img {
    max-width: 60%;
    margin-bottom: 30px;
  }

  .gov-link-banner-item {
    min-width: 50px;
    width: 40%;
    min-height: 220px;
  }

.gov-link-banner-hover {
  bottom: 2.5vh;
}
.gov-link-banner-list {
  gap: 10px;
}
}

@media (max-width: 460px) {
.gov-link-banner-sub {
    display: none;
}
.gov-link-banner-item {
    min-height: 160px;
}
.gov-link-banner-main {
    font-size: 16px;
    margin: 20px 0 0 0;
}
}

/* 11 */

.cooperate-wrap {
    background-color: #ebf4f5;
    background-image: url(../images/bg_11.jpg);
    background-repeat: no-repeat;
    background-size: 101%;
    position: relative;
    overflow: hidden;
    padding-bottom: 28vw;
}

.cooperate-line {
  max-width: 1600px;
  height: 1px;
  background-color: #c2cccd;
  margin: 0 auto;
}

.cooperate-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cooperate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.cooperate-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cooperate-title-img {
  height: 24px;
}

.cooperate-nav-btns {
  display: flex;
  gap: 10px;
}

.cooperate-btn {
  background: white;
  border-radius: 20px;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cooperate-slider {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.cooperate-track {
  display: flex;
  gap: 10px;
  will-change: transform;
  transition: transform 0.3s ease;
}

ul, li {
  list-style: none;
}

.cooperate-track li {
  flex-shrink: 0;
  width: 160px;
  box-sizing: border-box;
  list-style: none;
}

.cooperate-banner-box {
  border: 1px solid #e5e5ec;
  border-radius: 6px;
  background: white;
  padding: 10px 13px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.cooperate-track img {
  width: 100%;
  display: block;
}

@media (max-width: 1200px) {
.cooperate-wrap {
    padding-bottom: 24vw;
}
}

@media (max-width: 1000px) {
.cooperate-wrap {
    padding-bottom: 22vw;
}
}

@media (max-width: 768px) {
  .cooperate-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cooperate-title-wrap {
    flex-direction: row;
    margin-bottom: 10px;
  }

  .cooperate-track li {
    width: 25vw;
  }
  .cooperate-wrap {
    background-position: center;
    background-size: 200%;
    padding-bottom: 45vw;
  }
}

@media (max-width: 600px) {
  .cooperate-wrap {
    background-position: bottom;
    padding-bottom: 280px;
  }
}


/* 12 */

.footer-wrap {
  background-color: #ffffff;
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 30px 20px;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}

.footer-logo {
  margin: 20px 30px 30px 60px;
  height: auto;
}


.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-text {
  margin: 0 0 40px 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.footer-text p {
  margin: 2px 0;
}


@media (max-width: 768px) {
.footer-text {
  margin: 0 0 20px 0;
}

.footer-logo {
  margin: 20px 30px 30px 30px;
  height: auto;
}
.footer-inner {
    text-align: center;
    display: block;
}
}