@font-face {
  font-family: 'DIN-Medium';
  src: url('../fonts/DIN-Medium.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.otf');
}
:root {
  --Noto-Sans-SC: 'Noto Sans SC', sans-serif;
  --Noto-Serif-SC: 'Noto Serif SC', sans-serif;
  --Song-Myung: 'Song Myung', sans-serif;
  --Roboto: 'Roboto', sans-serif;
  --Abel: 'Abel', sans-serif;
  --Barlow-Condensed: 'Barlow Condensed', sans-serif;
  --Din: 'DIN-Medium', sans-serif;
  --Montserrat-SemiBold: 'Montserrat-SemiBold', 'sans-serif';
  --Montserrat: 'Montserrat', 'sans-serif';
  --Poppins: 'Poppins', 'sans-serif';
  --Lato: 'Lato', 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
body {
  overflow: visible;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 90px;
  width: 100%;
}
.mycontainer {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: 0 !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
header .mycontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
header .logo {
  width: 27.9166667%;
}
header .logo img {
  transition: all 0.5s;
}
header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #000;
  font-size: clamp(16px, 1.2vw, 20px);
  margin-bottom: 0;
}
header .lv1 > li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .lv1 > li > a {
  color: inherit;
  transition: all 0.5s;
  text-transform: uppercase;
}
header .lv1 > li > a:hover {
  text-decoration: underline !important;
}
header .lv1 > li:hover::after {
  width: 100%;
}
header .lv1 > li:hover .lv2 {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
header .lv1 .lang {
  font-family: 'Arial Narrow';
}
header .lv1 .lang .on {
  color: #0e6eb8;
}
header .lv1 > .active > a {
  font-weight: 700;
}
header .lv1 > .active > a:hover {
  text-decoration: none !important;
}
header .lv2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  visibility: hidden;
  opacity: 0;
}
header .lv2 > li {
  position: relative;
  white-space: nowrap;
  text-align: center;
  padding: 2px 15px;
  min-width: 130px;
}
header .lv2 > li a {
  font-size: 16px;
  color: #fff;
}
header .lv2 > li:hover .lv3 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
header .lv3 {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(50%, 0);
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.88);
  padding: 0 0 10px;
  visibility: hidden;
  opacity: 0;
}
header nav {
  width: 64.4166667%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .search form {
  position: relative;
}
header .search form input {
  width: 214px;
  height: 30px;
  border-radius: 15px;
  outline: none;
  font-size: 13px;
  color: #333;
  font-weight: 300;
  background-color: #fafafa;
  padding: 0 35px 0 14px;
  transition: all 0.5s;
}
header .search form input::placeholder {
  color: #5f5f5f;
  transition: all 0.5s;
}
header .search form button {
  position: absolute;
  outline: none;
  border: 0;
  background-color: transparent;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 0.5s;
}
.box {
  width: 100%;
  text-align: center;
  margin: 3.4868421% 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  font-size: 22px;
  padding: 0 14px;
  line-height: 40px;
  background-color: #edf5fb;
  margin: 5px 8px;
  color: #5f5f5f;
  transition: all 0.5s;
  font-family: var(--Din);
  border-radius: 4px;
}
.pagination .active a {
  color: #fff;
  background-color: #035fa8;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #035fa8;
}
.pagination .btn {
  margin: 0 29px;
}
.pagination .btn a {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: none;
  color: rgba(46, 46, 46, 0.3);
  font-weight: 700;
}
.pagination .btn i {
  margin: 0 20px;
}
.pagination .disabled {
  cursor: not-allowed;
}
.pagination .disabled a {
  color: #dcdcdc !important;
  cursor: not-allowed;
  background-color: #f7f7f7;
  pointer-events: none;
}
.box .total {
  color: #666;
  margin: 5px 7px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.box .go-link {
  margin: 5px 19px;
  font-size: 16px;
  color: #666;
}
.box .go-link form {
  display: flex;
  align-items: center;
}
.box .go-link a {
  line-height: 1;
  display: inherit;
}
.box .go-link button {
  cursor: pointer;
  font-size: 16px;
  color: #666;
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}
.box .go-link button:hover {
  text-decoration: underline;
}
.box .go-link input {
  width: 56px;
  height: 40px;
  text-align: center;
  outline: none;
  border-radius: 4px;
  border: 2px solid #f0f4f8;
  font-family: var(--Din);
  margin: 0 11px;
}
.box .go-link input[type='number']::-webkit-outer-spin-button,
.box .go-link input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.index-banner {
  position: relative;
}
.index-banner .swiper .swiper-slide {
  position: relative;
}
.index-banner .swiper .swiper-slide > img {
  display: block;
  width: 100%;
  object-fit: cover;
  scale: 1.1;
  transition: all 4s;
}
.index-banner .swiper .swiper-slide-active h2 {
  animation: fadeInDown 2s;
}
.index-banner .swiper .swiper-slide-active h5 {
  animation: fadeInDown 2.5s;
}
.index-banner .swiper .swiper-slide-active a {
  animation: fadeInUp 2s;
}
.index-banner .swiper .swiper-slide-active > img {
  scale: 1;
}
.index-banner .mycontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-banner .banner-text {
  text-align: center;
}
.index-banner .banner-text h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}
.index-banner .banner-text h5 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.index-banner .banner-text a {
  display: inline-block;
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  margin-top: 6.13497%;
  transition: all 0.5s;
}
.index-banner .banner-text a img {
  margin-right: 13px;
  transition: all 0.5s;
}
.index-banner .banner-text a:hover {
  box-shadow: inset -5px 5px 15px rgba(255, 255, 255, 0.3);
}
.index-banner .banner-text a:hover img {
  margin-right: 7px;
}
.index-banner .swiper-pagination {
  bottom: 5%;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.5s;
  margin: 0 6.504px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.index-title {
  font-size: clamp(20px, 2.25vw, 28px);
  color: #000;
  border-bottom: 1px solid #dcdcdc;
}
.index-title h3 {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.index-title h3::before {
  display: inline-block;
  width: 0.857143em;
  height: 1.14286em;
  content: "";
  background: url(../images/title-icon.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.32143em;
}
.index-title h3::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 0.14285714em;
  background-color: #e60012;
  bottom: 0;
  transform: translateY(50%);
}
.index-title span {
  font-weight: 400;
}
.index-blog {
  background-color: #f7f7f7;
  padding: 2% 0 3%;
}
.index-blog .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-blog .mycontainer .lt {
  width: 48.5%;
}
.index-blog .mycontainer .lt .index-title {
  margin-top: -3%;
  margin-bottom: 2.233677%;
}
.index-blog .mycontainer .rt {
  width: 50%;
}
.index-blog .mycontainer .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 76.1666667%;
}
.index-blog .mycontainer .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-blog .mycontainer .rt .pic:hover img {
  scale: 1.05;
}
.index-blog .mycontainer .rt .swiper-pagination {
  width: auto;
  right: 2%;
  bottom: 1%;
  left: auto;
  font-size: 12px;
}
.index-blog .mycontainer .rt .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  color: #fff;
  transition: all 0.5s;
  opacity: 0.5;
}
.index-blog .mycontainer .rt .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.news-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  font-size: clamp(14px, 1.2vw, 18px);
  padding-bottom: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.news-row:last-child {
  margin-bottom: 0;
}
.news-row p {
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin-right: 0.5em;
  transition: all 0s;
}
.news-row p::before {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  content: "";
  background-color: #e60012;
  vertical-align: middle;
  margin-right: 0.55555556em;
}
.news-row span {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}
.news-row a {
  color: inherit;
  transition: all 0.5s;
}
.news-row a:hover {
  color: #e60012;
  text-decoration: underline !important;
}
.index-event {
  margin: 2% 0;
}
.index-event .index-title {
  margin-bottom: 2.166667%;
}
.index-event .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 78.205128%;
}
.index-event .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-event .title {
  color: #000;
  font-size: clamp(14px, 1vw, 17px);
  text-align: center;
  padding: 0 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #f2f2f2;
  line-height: 2.29412;
  transition: all 0.5s;
}
.index-event .title a {
  color: inherit;
}
.index-event .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-event .swiper .swiper-slide:hover .title {
  color: #e60012;
}
.index-news {
  margin-bottom: 8px;
}
.index-news .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-news .mycontainer section {
  width: 48.75%;
}
.index-news .index-title {
  margin-bottom: 2.0512821%;
}
.index-news .news-row:last-child {
  border-bottom: 0;
}
.index-member {
  background: url(../images/index-member-bg.jpg) no-repeat;
  background-size: cover;
  padding: 1.5% 0 1.875%;
}
.index-member .index-title {
  margin-bottom: 3%;
}
.index-member .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.410256%;
}
.index-member .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-member .title {
  color: #000;
  font-size: clamp(14px, 1vw, 17px);
  text-align: center;
  padding: 0 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #fff;
  line-height: 2.29412;
  transition: all 0.5s;
}
.index-member .title a {
  color: inherit;
}
.index-member .swiper .swiper-slide:hover .pic img {
  scale: 1.05;
}
.index-member .swiper .swiper-slide:hover .title {
  color: #e60012;
}
.index-about {
  background: url(../images/index-about-bg.jpg) no-repeat;
  background-size: 100% auto;
  padding: 1.5625% 0 0;
}
.index-about .index-title {
  color: #fff;
  margin-bottom: 3.41666667%;
}
.index-about .index-title h3::before {
  filter: contrast(0) brightness(200%);
}
.index-about .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.18);
  font-size: clamp(14px, 1vw, 16px);
  color: #333;
  padding: 2.0833333% 2.0833333% 2.5%;
  border-radius: 1.1875em;
}
.index-about .wrapper .lt {
  width: 49.130435%;
  line-height: 2.6875;
  text-align: justify;
}
.index-about .wrapper .rt {
  width: 49.9130435%;
}
.index-about .wrapper .rt .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 94.2508711%;
}
.index-about .wrapper .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .wrapper .rt .pic:hover img {
  scale: 1.05;
}
.index-style .pic {
  padding-bottom: 56.410256%;
}
footer {
  background-color: #333;
  color: #fff;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: inherit;
  text-decoration: underline !important;
}
footer .footer-top {
  font-size: clamp(14px, 1vw, 16px);
  padding: 1.5625% 0 1.04166667%;
}
footer .footer-top .mycontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-top h4 {
  font-size: 1.25em;
  margin-bottom: 1.55em;
}
footer .footer-top nav ul li {
  margin-bottom: 0.5625em;
}
footer .footer-top address {
  width: 35%;
}
footer .footer-top address p {
  margin-bottom: 0.5625em;
}
footer .footer-top .ewm {
  width: 42.083333%;
}
footer .footer-top .ewm .wrapper {
  display: flex;
  justify-content: space-between;
}
footer .footer-top .ewm .wrapper .block {
  width: 31.28713%;
}
footer .footer-bt {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(12px, 1.162791vw, 20px);
  text-align: center;
  padding: 1.5625% 0 0.9895833%;
}
