﻿@charset "UTF-8";
/*@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");*/

@font-face {
  font-display: swap;
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-tc-regular.woff2') format('woff2'); 
}

.popup {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(33, 49, 73, 0.9);
  display: none;
}
.popup .pop-frame {
  position: relative;
  width: 96%;
  max-width: 1000px;
  min-width: 300px;
  min-height: 200px;
  max-height: 95vh;
  background-color: #fff;
  border-radius: 28px;
  padding: 60px 40px 80px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
.popup .pop-frame .pop-close {
  position: absolute;
  display: inline-block;
  right: 50px;
  top: 30px;
  width: 31px;
  height: 32px;
  background: url(../images/pop-close.png);
  cursor: pointer;
}
.popup .pop-frame .pop-close:hover {
  opacity: 0.6;
}
.popup .pop-frame .pop-con {
  overflow-y: auto;
  max-height: 80vh;
  padding: 0 5%;
}
.popup .pop-frame .pop-con img {
  margin: auto;
}

@media (max-width: 768px) {
  .popup .pop-frame {
    width: 90%;
    padding: 8%;
  }
  .popup .pop-frame .pop-close {
    right: 20px;
    top: 20px;
  }
}
.tab-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-nav li {
  display: inline-block;
  margin-right: 10px;
}
.tab-nav li.active a {
  background: #333;
  color: #fff;
}
.tab-nav li a {
  text-decoration: none;
  padding: 5px 10px;
  background: #ccc;
  color: #000;
}

.tab-content .tab-pane {
  display: none;
  padding: 10px;
}
.tab-content .tab-pane.active {
  display: block;
}

.pretty-select {
  /*移除箭頭樣式*/
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /*改變右邊箭頭樣式*/
  background: url("../images/arrow.png") no-repeat right center transparent;
  border: 0px;
  width: 100%;
  min-height: 11px;
  padding-right: 25px;
}
.pretty-select option {
  height: 30px;
}

/*IE隱藏箭頭樣式*/
.pretty-select::-ms-expand {
  display: none;
}

body > * ::-webkit-scrollbar {
  width: 8px;
}
body > * ::-webkit-scrollbar-track {
  background-color: #e9e9e9;
  border-radius: 100px;
}
body > * ::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border-radius: 100px;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes move {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.slick-dots {
  bottom: -70px;
}
.slick-dots li {
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 8px;
}
.slick-dots li button::before {
  font-size: 14px;
}
.slick-dots li.slick-active button::before {
  font-size: 20px;
  color: #fff157;
}

.slick-next,
.slick-prev {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.slick-next:hover,
.slick-prev:hover {
  background: url(../images/slick-arrow.png) no-repeat;
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.slick-next::before,
.slick-prev::before {
  content: url(../images/slick-arrow.png);
}

.slick-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  left: -25px;
}

@media (max-width: 1440px) {
  .slick-next {
    right: -20px;
  }
  .slick-prev {
    left: -20px;
    top: 47%;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, "Noto Sans TC", sans-serif, "Microsoft JhengHei", "微軟正黑體";
  background-color: #213149;
  text-align: justify;
  overflow-x: hidden;
  color: #fff;
}

html {
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}

h2 {
  font-size: 38px;
  line-height: 52px;
  font-weight: bold;
}

.view_pc {
  display: block;
}

.view_mb {
  display: none;
}

.scroll-none {
  overflow: hidden;
}

.menu-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 14px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.menu-icon_hamburger {
  width: 100%;
  height: 3px;
  background: #fff;
  position: relative;
  border-radius: 5px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.menu-icon_hamburger:before, .menu-icon_hamburger:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.menu-icon_hamburger:before {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.menu-icon_hamburger:after {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
}
.menu-icon.open {
  background-color: #213149;
}
.menu-icon.open .menu-icon_hamburger {
  -webkit-transform: translate(-30px, 10px);
          transform: translate(-30px, 10px);
  background: transparent;
}
.menu-icon.open .menu-icon_hamburger:before {
  -webkit-transform: translate(30px) rotate(135deg);
          transform: translate(30px) rotate(135deg);
  background: #fff;
}
.menu-icon.open .menu-icon_hamburger:after {
  -webkit-transform: translate(30px) rotate(-135deg);
          transform: translate(30px) rotate(-135deg);
  background: #fff;
}

.co-gr {
  color: #213149;
}

.co-org {
  color: #fff157;
}

.icon-live {
  width: 79px;
  height: 37px;
  background: url(../images/icon-live.png) no-repeat;
}

.gradient_txt {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(100, 215, 228)), color-stop(80%, rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgb(100, 215, 228) 0%, rgb(255, 255, 255) 80%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.gradient_line {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.gradient_line::after {
  position: absolute;
  content: "";
  width: 104%;
  height: 1px;
  bottom: -12px;
  left: -2%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(33, 49, 73)), color-stop(78%, rgb(158, 219, 229)));
  background: linear-gradient(to right, rgb(33, 49, 73) 0%, rgb(158, 219, 229) 78%);
}

.fix {
  position: fixed;
  font-size: 17px;
  line-height: 22px;
  font-weight: bold;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  right: 6px;
  bottom: 80px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #213149;
  background: linear-gradient(135deg, rgb(136, 222, 233) 0%, rgb(214, 236, 242) 100%);
  -webkit-box-shadow: 0px 0px 15px #213149;
          box-shadow: 0px 0px 15px #213149;
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.fix:before {
  opacity: 0.25;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 300%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(#ea3a6b), color-stop(#53c2ff), color-stop(#7983e5), color-stop(#ea3a6b), color-stop(#ff943e), color-stop(#53c2ff), to(#fff));
  background: linear-gradient(to right, #fff, #ea3a6b, #53c2ff, #7983e5, #ea3a6b, #ff943e, #53c2ff, #fff);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  border-radius: 100px;
}
.fix span {
  margin: 0 2px 0 5px;
}
.fix:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.con {
  width: 1440px;
  margin: auto;
}

.bg-fill {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 567px;
  height: auto;
  min-height: 97px;
  border: 25px solid transparent;
  -o-border-image: url("../images/tit-bg.png") 57 fill/300px stretch;
     border-image: url("../images/tit-bg.png") 57 fill/300px stretch;
  color: #cfd3d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bg-fill .bg-con {
  position: relative;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #e6e9ee;
}
.bg-fill .bg-con b {
  color: #9edbe5;
  margin: 0 10px;
}

.view_mb {
  display: none;
}

.btn-r {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 0, 0)), color-stop(70%, rgba(255, 0, 0, 0.8)), to(rgb(173, 12, 12)));
  background: linear-gradient(to bottom, rgb(255, 0, 0) 0%, rgba(255, 0, 0, 0.8) 70%, rgb(173, 12, 12) 100%);
  border: 1px solid #ff0000;
  border-top-left-radius: 30px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 340px;
  min-height: 80px;
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  -webkit-filter: brightness(1) drop-shadow(0px 0px 10px rgba(21, 100, 108, 0.9));
          filter: brightness(1) drop-shadow(0px 0px 10px rgba(21, 100, 108, 0.9));
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.btn-r::before, .btn-r::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  z-index: 2;
  top: -1px;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(242, 245, 246, 0)), color-stop(49%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(242, 245, 246, 0) 0%, rgb(255, 255, 255) 49%, rgba(255, 255, 255, 0) 100%);
}
.btn-r::after {
  top: auto;
  bottom: -1px;
  left: 0;
}
.btn-r span {
  margin: 0 5px 0 10px;
}
.btn-r:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.box {
  background-color: #fff;
  border-radius: 20px;
}

header {
  position: fixed;
  width: 100%;
  padding: 20px 0 30px;
  z-index: 99;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(55, 118, 139)), color-stop(50%, rgba(55, 118, 139, 0.7)), to(rgba(55, 118, 139, 0)));
  background: linear-gradient(to bottom, rgb(55, 118, 139) 0%, rgba(55, 118, 139, 0.7) 50%, rgba(55, 118, 139, 0) 100%);
  font-size: 20px;
}
header .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
header .con ul.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-size: 20px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
header .con ul.nav li {
  list-style: none;
}
header .con ul.nav li.lang a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  margin: 0 10px;
}
header .con ul.nav li.lang a::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  right: -10px;
  top: 0;
  background-color: #fff;
}
header .con ul.nav li.lang a:last-child::after {
  display: none;
}
header .con ul.nav li.lang a.active {
  color: #fff157;
}
header .con ul.nav li.lang a.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: -6px;
  background-color: #fff157;
}
header .con ul.nav li a {
  position: relative;
  text-decoration: none;
  color: #fff;
}
header .con ul.nav li a:hover {
  color: #fff157;
}
header .con ul.nav li a::before, header .con ul.nav li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  background: #213149;
}
header .con ul.nav li a::before {
  left: 0;
}
header .con ul.nav li a::after {
  right: 0;
  background: #213149;
  -webkit-transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
header .con ul.nav li:first-child {
  margin-left: 0;
}

.section_video {
  position: relative;
  height: 100vh;
  max-height: 927px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_video .section_video_bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(125, 221, 231, 0.3);
}
.section_video .section_video_bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(55, 118, 139, 0) 0%, rgba(55, 118, 139, 0) 60%, rgb(55, 118, 139) 90%, rgb(55, 118, 139) 100%);
}
.section_video .video_main {
  position: absolute;
  left: 0;
  right: 0;
  top: 200px;
  z-index: 10;
  margin: auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_video .video_main .inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section_video .video_main .inn > img {
  width: 895px;
  margin: auto;
  -webkit-filter: drop-shadow(0px 0px 7px rgb(16, 80, 87));
          filter: drop-shadow(0px 0px 7px rgb(16, 80, 87));
}
.section_video .video_main .inn .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-filter: drop-shadow(0px 0px 7px rgb(17, 77, 83));
          filter: drop-shadow(0px 0px 7px rgb(17, 77, 83));
  width: 100%;
  font-size: min(34px, 3.5vw);
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 30px;
  color: #e6e9ee;
}
.section_video .video_main .inn .txt .time {
  font-size: min(41px, 4vw);
  color: #fff;
}
.section_video .video_main .inn .btn-r {
  margin-top: 35px;
}

section {
  overflow: hidden;
}

.titBG {
  margin: 80px auto 40px;
}

.triangle {
  position: relative;
  padding: 35px 0;
  padding-left: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}
.triangle::before {
  position: absolute;
  content: url(../images/arr-d.png);
  top: 50%;
  left: 75px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.btn-box .btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 240px;
  min-height: 80px;
  font-size: 22px;
  color: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 38px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border: 1px solid #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(59, 113, 136)), color-stop(80%, rgb(48, 84, 106)), to(rgb(34, 49, 71)));
  background: linear-gradient(to bottom, rgb(59, 113, 136) 0%, rgb(48, 84, 106) 80%, rgb(34, 49, 71) 100%);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.btn-box .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.wave-bg {
  position: absolute;
  height: 931px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/wave-bg.png) top center no-repeat;
  z-index: 0;
  opacity: 0.4;
}

.sec1 {
  position: relative;
  text-align: center;
  padding-bottom: 40px;
}
.sec1 .con {
  width: 1000px;
}
.sec1 .con h2 {
  margin: 75px 0 25px;
  letter-spacing: 1px;
}
.sec1 .con h2 div span {
  margin-right: 15px;
}
.sec1 .con p {
  font-size: 24px;
  line-height: 36px;
  margin: 10px 0;
}
.sec1 .con ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  margin-top: 100px;
}
.sec1 .con ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 50px 25px 40px 25px;
  color: #fff;
  border: 1px solid #7ddde7;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  font-size: 28px;
  min-width: 255px;
  letter-spacing: 1px;
}
.sec1 .con ul li::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  background: #213149 url(../images/icon-a.png) no-repeat top center;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
  background-size: contain;
  border: 10px solid #213149;
}
.sec1 .con ul li:nth-child(2)::before {
  width: 77px;
  height: 80px;
  background: #213149 url(../images/icon-b.png) no-repeat top center;
  background-size: contain;
}
.sec1 .con ul li:nth-child(3)::before {
  width: 100px;
  height: 76px;
  background: #213149 url(../images/icon-c.png) no-repeat top center;
  background-size: contain;
}
.sec1 .con ul li > b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 78px;
}
.sec1 .con ul li > b > span {
  font-size: 50px;
}
.sec1 .con ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  font-weight: bold;
}
.sec1 .con ul li div span {
  color: #9edbe5;
  margin-top: 5px;
}

.sec2 {
  position: relative;
  padding: 190px 0;
  background: url(../images/sec2-bg.jpg) top center no-repeat;
}
.sec2 .wave-bg {
  bottom: 60px;
}
.sec2 .con .slider {
  margin-bottom: 40px;
}
.sec2 .con .slider li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px;
}
.sec2 .con .slider li .inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 255px;
}
.sec2 .con .slider li .pho {
  position: relative;
  font-size: 24px;
  line-height: 30px;
  color: #e6e9ee;
}
.sec2 .con .slider li .pho .name {
  position: absolute;
  bottom: 12px;
  left: 0.5rem;
  text-shadow: 0px 0px 10px #000000;
  font-weight: bold;
  text-indent: -1rem;
  letter-spacing: 1px;
}
.sec2 .con .slider li .tit {
  font-size: 15px;
  line-height: 20px;
  color: #cfd3d4;
  margin: 5px 0 10px;
  padding-right: 15px;
}
.sec2 .con .slider li .btn-more {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #e6e9ee;
  letter-spacing: 1px;
  background-color: #37768b;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  padding: 7px 16px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.sec2 .con .slider li .btn-more:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sec3 {
  position: relative;
  background-color: #37768b;
}
.sec3 .wave-bg {
  top: 36%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.sec3 .con {
  position: relative;
  width: 1060px;
  z-index: 1;
}
.sec3 .con .plan_list {
  width: 100%;
}
.sec3 .con .plan_list li {
  width: 100%;
  font-weight: bold;
  color: #1d1d1d;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
}
.sec3 .con .plan_list li .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  min-width: 165px;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 10px;
}
.sec3 .con .plan_list li .time span {
  display: block;
}
.sec3 .con .plan_list li .time i {
  margin: 5px;
}
.sec3 .con .plan_list li .time i::before {
  content: "│";
}
.sec3 .con .plan_list li .info-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 10px 25px 25px;
  width: 100%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  text-align: left;
}
.sec3 .con .plan_list li .info-con .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec3 .con .plan_list li .info-con .info h3 {
  font-size: 19px;
  color: #37768b;
  margin-bottom: 10px;
  font-weight: normal;
}
.sec3 .con .plan_list li .info-con .info .tit {
  font-size: 24px;
  line-height: 30px;
}
.sec3 .con .plan_list li .info-con .info .content {
  font-size: 19px;
  font-weight: normal;
  line-height: 30px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #37768b;
}
.sec3 .con .plan_list li .info-con .peo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 180px;
  max-width: 180px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
.sec3 .con .plan_list li .info-con .peo.two {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sec3 .tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-left: -10px;
}
.sec3 .tab-nav li {
  background: none;
  margin-right: 0;
}
.sec3 .tab-nav li a {
  background: none;
  color: #fff;
}
.sec3 .tab-nav li a span {
  font-size: 15px;
  color: #f5f3f3;
}
.sec3 .tab-nav li a div {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 30px;
  margin-top: 5px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.sec3 .tab-nav li.active a div {
  position: relative;
  color: #1d1d1d;
  background-color: #fff;
}
.sec3 .tab-nav li.active a div::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 45%;
  bottom: -10px;
  border-left: 5px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}
.sec3 .tab-content {
  margin-top: -40px;
}

.sec4 .con {
  padding-bottom: 80px;
  width: 1200px;
}
.sec4 .con p {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin: 15px 0;
}
.sec4 .con p span {
  margin: 0 3px;
}
.sec4 .con .gift-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  margin: 90px 0;
}
.sec4 .con .gift-box > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.sec4 .con .gift-box > li:nth-child(odd)::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  display: block;
  right: -60px;
  background-color: #fff;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
.sec4 .con .gift-box > li .tit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.sec4 .con .gift-box > li .tit-box .tit {
  position: relative;
  color: #7ddde7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.sec4 .con .gift-box > li .tit-box .tit::before {
  position: absolute;
  content: "";
  content: "";
  left: 12px;
  top: 10px;
  width: 17px;
  height: 17px;
  background-color: #7ddde7;
  border: 1px solid #7ddde7;
  border-radius: 50%;
}
.sec4 .con .gift-box > li .tit-box .tit::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  width: 17px;
  height: 17px;
  border: 1px solid #7ddde7;
  border-radius: 50%;
}
.sec4 .con .gift-box > li .tit-box .tit span {
  margin-left: 50px;
}
.sec4 .con .gift-box > li .tit-box .tit b {
  font-size: 36px;
}
.sec4 .con .gift-box > li .tit-box .btn {
  font-weight: bold;
  padding: 10px 15px;
  background-color: #37768b;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.sec4 .con .gift-box > li .tit-box .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sec4 .con .gift-box > li .awards-list {
  max-width: 519px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.sec4 .con .gift-box > li .awards-list li .pho {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 252px;
  height: 182px;
  background: url(../images/gift-bg.png) top center no-repeat;
  background-size: 100% auto;
}
.sec4 .con .gift-box > li .awards-list li .pho .image {
  position: relative;
  min-height: 182px;
}
.sec4 .con .gift-box > li .awards-list li .pho .image img {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  -webkit-filter: drop-shadow(0px 10px 10px #213149);
          filter: drop-shadow(0px 10px 10px #213149);
}
.sec4 .con .gift-box > li .awards-list li .pho div img {
  margin: auto;
}
.sec4 .con .gift-box > li .awards-list li .pho .image-shadow {
  position: relative;
  opacity: 0.1;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  margin-top: -42px;
}
.sec4 .con .gift-box > li .awards-list li .pho .image-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, rgba(33, 49, 73, 0)), color-stop(70%, rgb(33, 49, 73)));
  background: linear-gradient(to top, rgba(33, 49, 73, 0) 40%, rgb(33, 49, 73) 70%);
}
.sec4 .con .gift-box > li .awards-list li .name {
  font-size: 24px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.sec4 .con .ps {
  font-size: 15px;
  line-height: 25px;
  padding: 0 100px 40px;
}

.sec5 {
  position: relative;
  background-color: #37768b;
  padding-bottom: 20px;
}
.sec5 .wave-bg {
  height: 1089px;
  top: 5%;
  background: url(../images/wave-bg1.png) top center no-repeat;
}
.sec5 .con {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  z-index: 1;
}
.sec5 .con p {
  text-align: center;
}
.sec5 .con p span {
  margin: 0 3px;
}
.sec5 .con .apply-info {
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  color: #282d43;
}
.sec5 .con .apply-info ul li.err .err-txt {
  display: block;
}
.sec5 .con .apply-info ul li .pen {
  position: relative;
  background-color: #fff;
  height: 68px;
  margin: 10px 0;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-left: 2px solid #213149;
  font-size: 25px;
}
.sec5 .con .apply-info ul li .pen input:not([type=checkbox]):not([type=radio]),
.sec5 .con .apply-info ul li .pen select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  font-size: 24px;
  border: none;
  color: #1d1d1d;
}
.sec5 .con .apply-info ul li .pen input {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.sec5 .con .apply-info ul li .err-txt {
  display: none;
  font-size: 17px;
  color: #ffa302;
  margin-bottom: 15px;
  padding: 0 10px;
}
.sec5 .con .apply-info .chk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #fff;
  margin: 10px 0;
}
.sec5 .con .apply-info .chk input {
  min-width: 20px;
  min-height: 20px;
  margin-right: 5px;
}
.sec5 .con .apply-info .chk a {
  cursor: pointer;
  color: #fff;
}
.sec5 .con .apply-info .chk a span {
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
}

footer {
  font-size: 20px;
  line-height: 50px;
  padding: 30px 0;
  background-color: #000;
  text-align: center;
}
footer .con {
  padding: 0 20px;
}
footer .con ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .con ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .con ul li img {
  margin: 0 15px;
}

.popup .pop-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #37768b;
  padding: 50px 50px 30px;
}
.popup .pop-frame .popClose {
  min-width: 170px;
  min-height: 60px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 1px;
}
.popup .pop-frame .pop-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  line-height: 32px;
  border-bottom: 2px solid #fff;
}
.popup .pop-frame .pop-tit span {
  border-bottom: 4px solid #fff;
  padding: 10px 0;
  margin-bottom: -1px;
}
.popup .pop-frame .pop-con {
  font-size: 19px;
  line-height: 28px;
  margin: 30px 0;
  padding: 0 20px 0 0;
  text-align: left;
}
.popup .pop-frame .pop-con p {
  margin: 10px 0 15px;
}
.popup.small .pop-frame {
  max-width: 600px;
  min-height: 315px;
  border-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 40px 50px 20px;
}
.popup.small .pop-frame .pop-tit {
  font-size: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  letter-spacing: 1px;
}
.popup.small .pop-frame .pop-tit span {
  border-bottom: 0;
}
.popup.small .pop-frame .pop-con {
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 0;
}
.popup.peo .pop-frame {
  overflow: visible;
  max-width: 800px;
  padding: 0px 75px 30px;
  border-radius: 0;
  border-top-left-radius: 60px;
  background: linear-gradient(135deg, rgb(55, 118, 139) 30%, rgb(33, 49, 72) 100%);
}
.popup.peo .pop-frame .pop-tit {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -40px;
  letter-spacing: 1px;
}
.popup.peo .pop-frame .pop-tit::before {
  position: absolute;
  content: "";
  width: 167px;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.popup.peo .pop-frame .pop-tit .info {
  margin-bottom: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
.popup.peo .pop-frame .pop-tit .info .name {
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
.popup.peo .pop-frame .pop-tit .info .tit {
  font-size: 24px;
  line-height: 30px;
  color: #e6e9ee;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.popup.peo .pop-frame .pop-tit .info .tit b {
  font-weight: normal;
}
.popup.peo .pop-frame .pop-tit .pho {
  width: 234px;
}
.popup.peo .pop-frame .pop-con {
  font-size: 19px;
  line-height: 32px;
  min-height: 120px;
  height: 200px;
  overflow: auto;
  padding: 0;
  padding-right: 10px;
  margin: 20px 0;
  text-align: left;
}

body.en .sec2 .con .slider li .tit {
  text-align: left;
}
body.en .popup.peo .pop-frame .pop-tit .info .tit {
  font-size: 20px;
  line-height: 24px;
  -webkit-line-clamp: 4;
}
body.en .popup.peo .pop-frame .pop-con {
  line-height: 26px;
}

@media (max-width: 1440px) {
  .con {
    width: 100%;
    padding: 0 25px;
  }
  header {
    padding: 15px 10px;
  }
  header .con ul.nav {
    font-size: 1.1rem;
  }
  header .con ul.nav li {
    margin-left: 0.8rem;
  }
  .sec1 .con ul {
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec1 .con ul li {
    margin-bottom: 100px;
  }
  .sec3 .con {
    width: 100%;
  }
  .sec4 .con {
    width: 100%;
  }
  .sec4 .con .gift-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec4 .con .gift-box > li {
    margin-bottom: 50px;
  }
  .sec4 .con .gift-box > li:nth-child(odd)::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .sec1 .con {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .bg-fill {
    width: 100%;
    border: 20px solid transparent;
    -o-border-image: url("../images/tit-bg.png") 40 fill/40px stretch;
       border-image: url("../images/tit-bg.png") 40 fill/40px stretch;
    min-height: 80px;
  }
  .bg-fill .bg-con {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }
  .bg-fill .bg-con b {
    display: block;
  }
  .view_mb {
    display: block;
  }
  .view_pc {
    display: none;
  }
  header {
    display: block;
  }
  header .con {
    display: block;
  }
  header .con ul.nav {
    position: fixed;
    z-index: 98;
    left: 0;
    top: 0;
    background-color: #213149;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    opacity: 0;
  }
  header .con ul.nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  header .con ul.nav li {
    margin: 0;
    border-bottom: 1px solid #37768b;
  }
  header .con ul.nav li:last-child {
    border-bottom: none;
  }
  header .con ul.nav li::after {
    display: none;
  }
  header .con ul.nav li.lang a {
    border-bottom: 1px solid #37768b;
    margin: 0;
    height: auto;
  }
  header .con ul.nav li.lang a.active::before {
    display: none;
  }
  header .con ul.nav li a {
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
    padding: 25px;
  }
  header .con ul.nav li a:hover {
    background-color: #37768b;
    color: #fff;
  }
  .menu-icon {
    display: block;
    z-index: 100;
  }
  .gradient_line::after {
    width: 100%;
  }
  .triangle {
    font-size: 19px;
    line-height: 30px;
    padding: 15px 0;
    padding-left: 45px;
    margin-top: -25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .triangle::before {
    left: 0;
  }
  .triangle.top {
    padding-left: 0;
  }
  .triangle.top::before {
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .section_video {
    height: 88vh;
  }
  .section_video .section_video_bg .video_main {
    top: 125px;
  }
  .section_video .section_video_bg .video_main .inn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section_video .section_video_bg .video_main .inn .txt {
    font-size: 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin-top: 90px;
  }
  .section_video .section_video_bg .video_main .inn .txt .time {
    font-size: 22px;
  }
  .section_video .section_video_bg .video_main .inn .btn-r {
    min-width: 220px;
    min-height: 50px;
    font-size: 19px;
  }
  .section_video .section_video_bg .video_main .inn .btn-r .icon-live {
    width: 57px;
    height: 30px;
    background-size: contain;
  }
  .sec1 {
    overflow: visible;
  }
  .sec1 .con h2 {
    font-size: 28px;
    line-height: 38px;
    width: 94%;
    margin-top: 45px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec1 .con h2 div span {
    display: block;
  }
  .sec1 .con p {
    font-size: 19px;
    line-height: 30px;
    width: 90%;
    margin: auto;
  }
  .sec1 .con ul {
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
  .sec1 .con ul li {
    font-size: 19px;
    min-width: auto;
    width: 48%;
    padding: 25px 5px 20px 5px;
    margin-bottom: 60px;
  }
  .sec1 .con ul li::before {
    width: 45px;
    height: 45px;
  }
  .sec1 .con ul li:nth-child(2)::before {
    width: 45px;
    height: 45px;
  }
  .sec1 .con ul li:nth-child(3) {
    width: 96%;
  }
  .sec1 .con ul li:nth-child(3)::before {
    width: 55px;
    height: 45px;
  }
  .sec1 .con ul li > b {
    font-size: 35px;
  }
  .sec1 .con ul li > b > span {
    font-size: 20px;
  }
  .sec2 {
    padding: 0 0 80px;
  }
  .sec3 .tab-nav {
    width: 90vw;
    margin-left: 0;
    margin-top: 30px;
  }
  .sec3 .tab-nav li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec3 .tab-nav li a {
    padding: 0;
  }
  .sec3 .tab-nav li a div {
    font-size: 20px;
    line-height: 26px;
    border-radius: 15px;
    padding: 10px;
  }
  .sec3 .tab-nav li a div b {
    display: block;
  }
  .sec3 .tab-nav li a span {
    font-size: 13px;
    line-height: 20px;
    display: block;
    text-align: center;
  }
  .sec3 .tab-content {
    margin-top: 0;
  }
  .sec3 .con .plan_list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 25px;
  }
  .sec3 .con .plan_list li .time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 2px;
    padding: 10px 15px;
    font-size: 19px;
  }
  .sec3 .con .plan_list li .time i::before {
    content: "—";
  }
  .sec3 .con .plan_list li .info-con {
    padding: 10px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sec3 .con .plan_list li .info-con .info {
    width: 100%;
  }
  .sec3 .con .plan_list li .info-con .info h3 {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .sec3 .con .plan_list li .info-con .info .tit {
    font-size: 19px;
    line-height: 22px;
  }
  .sec3 .con .plan_list li .info-con .info .content {
    font-size: 17px;
    line-height: 20px;
    margin-top: 5px;
    padding-top: 5px;
  }
  .sec3 .con .plan_list li .info-con .peo {
    max-width: 100%;
    min-width: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 5px;
  }
  .sec3 .con .plan_list li .info-con .peo.two {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sec4 .con p {
    font-size: 19px;
    line-height: 30px;
  }
  .sec4 .con .gift-box {
    margin: 30px 0;
  }
  .sec4 .con .gift-box > li {
    width: 100%;
    font-size: 17px;
  }
  .sec4 .con .gift-box > li .tit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    row-gap: 20px;
  }
  .sec4 .con .gift-box > li .tit-box .tit::before {
    top: 4px;
  }
  .sec4 .con .gift-box > li .tit-box .tit::after {
    top: 4px;
  }
  .sec4 .con .gift-box > li .tit-box .tit b {
    font-size: 24px;
  }
  .sec4 .con .gift-box > li .tit-box .btn {
    font-size: 22px;
  }
  .sec4 .con .gift-box > li .awards-list {
    width: 100%;
  }
  .sec4 .con .gift-box > li .awards-list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec4 .con .gift-box > li .awards-list li .pho {
    position: relative;
    width: 100%;
    padding-top: 80%;
    height: auto;
  }
  .sec4 .con .gift-box > li .awards-list li .pho .image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25%;
    width: 85%;
    margin: auto;
    min-height: auto;
  }
  .sec4 .con .gift-box > li .awards-list li .pho .image img {
    position: relative;
    bottom: 0;
  }
  .sec4 .con .gift-box > li .awards-list li .pho .image-shadow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40%;
    width: 85%;
    margin: auto;
    min-height: auto;
  }
  .sec4 .con .gift-box > li .awards-list li .name {
    font-size: 19px;
    line-height: 22px;
  }
  .sec4 .con .ps {
    font-size: 13px;
    line-height: 20px;
    padding: 5px 0px 70px;
  }
  .sec5 .con p {
    font-size: 19px;
    line-height: 25px;
    margin-top: -15px;
  }
  .sec5 .con p b {
    display: block;
  }
  .sec5 .con .apply-info {
    color: #fff;
  }
  .sec5 .con .apply-info ul li .pen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: transparent;
    border: none;
    font-size: 19px;
    height: auto;
    padding: 0;
    row-gap: 5px;
  }
  .sec5 .con .apply-info ul li .pen input:not([type=checkbox]):not([type=radio]),
  .sec5 .con .apply-info ul li .pen select {
    font-size: 19px;
    height: 52px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    background-color: #fff;
    padding: 5px 15px;
  }
  .sec5 .con .apply-info ul li .pen .pretty-select {
    padding-right: 35px;
    background-position: right 15px center;
  }
  .sec5 .con .apply-info ul li .err-txt {
    font-size: 15px;
    padding: 0;
  }
  .sec5 .con .apply-info .chk {
    font-size: 19px;
    line-height: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sec5 .con .apply-info .chk input {
    margin-top: 10px;
  }
  .popup .pop-frame {
    padding: 5%;
    max-height: 96dvh;
  }
  .popup .pop-frame .pop-tit {
    font-size: 20px;
  }
  .popup .pop-frame .pop-con {
    font-size: 15px;
    line-height: 22px;
    margin-top: 55px;
    padding: 0 10px 20px 0;
    margin: 15px 0;
  }
  .popup.small .pop-frame {
    padding: 40px 30px;
  }
  .popup.small .pop-frame .pop-tit {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1px;
  }
  .popup.small .pop-frame .pop-con {
    font-size: 19px;
    line-height: 28px;
  }
  .popup.peo .pop-frame {
    padding: 0 25px 25px;
  }
  .popup.peo .pop-frame .pop-tit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 10px;
    margin-top: 20px;
  }
  .popup.peo .pop-frame .pop-tit .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  .popup.peo .pop-frame .pop-tit .info .name {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
    text-align: center;
  }
  .popup.peo .pop-frame .pop-tit .info .tit {
    font-size: 19px;
    line-height: 24px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup.peo .pop-frame .pop-tit .info .tit b {
    display: inline-block;
  }
  .popup.peo .pop-frame .pop-tit .pho {
    width: 50%;
  }
  .popup.peo .pop-frame .pop-tit .pho img {
    margin: auto;
  }
  .popup.peo .pop-frame .pop-con {
    font-size: 17px;
    line-height: 22px;
  }
  .popup.peo .pop-frame .btn-box {
    padding: 10px;
  }
  footer {
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 1px;
    padding: 20px 0;
  }
  footer .con ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 10px;
  }
  footer .con ul li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  footer .con ul li img {
    margin: 0;
  }
  footer .con ul li a {
    width: 50%;
  }
  footer .con ul li span {
    font-size: 15px;
  }
  body.en .popup.peo .pop-frame .pop-con {
    line-height: 20px;
  }
}/*# sourceMappingURL=style.css.map */