@charset "utf-8";

/* 全局变量设置 */
:root {
  --color-main: #024883;
  --color-white: #fff;
  --color-txt: #253554;
  --color-bg: #f5f5f5;
  --color-0: #000;
  --color-2: #222;
  --color-3: #333;
  --color-5: #555;
  --color-6: #666;
  --color-7: #777;
  --color-8: #888;
  --color-9: #999;
  --color-border: #dedede;
  --fsize-base: 16px;
  --fsize-large: calc(var(--fsize-base) * 1.25);
  --fsize-txt: calc(var(--fsize-base) * 1.14);
  --fsize-small: calc(var(--fsize-base) * 0.85);
  --fsize-h1: calc(var(--fsize-base) * 2.6);
  --fsize-h2: calc(var(--fsize-base) * 2.15);
  --fsize-h3: calc(var(--fsize-base) * 1.7);
  --gap-base: 18px;
  --gap-mini: calc(var(--gap-base) * 0.25);
  --gap-small: calc(var(--gap-base) * 0.5);
  --gap-large: calc(var(--gap-base) * 1.5);
  --gap-h1: calc(var(--gap-base) * 5);
  --gap-h2: calc(var(--gap-base) * 4);
  --gap-h3: calc(var(--gap-base) * 3);
}

@media (max-width: 1440px) {
  :root {
    --fsize-base: 16px;
    --gap-base: 16px;
  }
}

@media (max-width: 800px) {
  :root {
    --fsize-base: 12px;
    --gap-base: 6px;
  }
}

.trans {
  transition: all 0.3s;
}

.topbar {
  background: var(--color-0);
  color: var(--color-white);
  height: 40px;
  font-size: var(--fsize-base);
  font-weight: 300;
}

@media (max-width: 800px) {
  .topbar {
    display: none;
  }
}

.topbar .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .mor {
  display: flex;
  align-items: center;
}

.topbar .mor .sub::after {
  content: "|";
  margin: 0 var(--gap-base);
}

.topbar .mor .lin {
  display: flex;
  align-items: center;
}

.topbar .mor .lin .la {
  color: var(--color-white);
  transition: all 0.3s;
}

.topbar .mor .lin .la:hover {
  opacity: 0.8;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}

.header {
  position: relative;
  padding: 35px 35px;
  -webkit-transition: background-color 500ms ease-out, padding 200ms ease-out;
  -moz-transition: background-color 500ms ease-out, padding 200ms ease-out;
  -ms-transition: background-color 500ms ease-out, padding 200ms ease-out;
  -o-transition: background-color 500ms ease-out, padding 200ms ease-out;
  transition: background-color 500ms ease-out, padding 200ms ease-out;
  background-color: #fff;
  z-index: 2;
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .header {
    height: 60px;
    padding: 0;
  }
}

.header .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .wrapper .logo {
  width: 110px;
  display: block;
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .header .wrapper .logo {
    width: 80px;
  }
}

.header .wrapper .logo:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.header .wrapper .logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.header .wrapper .nav {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  /* overflow: hidden; */
  white-space: nowrap;
}

@media (max-width: 800px) {
  .header .wrapper .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    opacity: 0;
    height: calc(100vh - 60px);
    box-sizing: border-box;
    visibility: hidden;
    transform: translateY(-10px);
    padding: 8vw;
    transition: all 0.3s;
  }

  .header .wrapper .nav.on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.header .wrapper .nav .nul {
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .header .wrapper .nav .nul {
    flex-direction: column;
    width: 100%;
  }
}

.header .wrapper .nav .nul .nli {
  height: 100%;
  position: relative;
}

@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli {
    width: 100%;
    text-align: center;
    height: 60px;
    border-bottom: 1px dashed #dedede;
  }
}

.header .wrapper .nav .nul .nli.ms {
  display: none;
}

@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli.ms {
    display: block;
  }
}

.header .wrapper .nav .nul .nli .na {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  padding: 0 var(--gap-large);
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .header .wrapper .nav .nul .nli .na {
    color: var(--color-3);
  }
}

.header .wrapper .nav .nul .nli .na::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.header .wrapper .nav .nul .active .na {
  color: var(--color-2) !important;
}

.header .wrapper .nav .nul .inactive .na {
  color: var(--color-7) !important;
}

/* .header .wrapper .nav .nul .nli .na:hover {
  color: var(--color-main);
} */

.header .wrapper .nav .nul .nli .na:hover::after {
  width: 100%;
}

/* .header .wrapper .nav .nul .nli:hover .na {
  color: var(--color-main);
} */

.header .wrapper .nav .nul .nli:hover .na::after {
  width: 100%;
}

.header .wrapper .nav .nul .nli:hover .sub {
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 990px) {
  .header .wrapper .nav .nul .nli:hover .sub {
    display: none;
  }
}

.header .wrapper .nav .nul .nli .sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  width: max-content;
  min-width: 100%;
  padding: 0 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  transform: translateX(-50%) translateY(0px);
  opacity: 0;
  visibility: hidden;
}

.header .wrapper .nav .nul .nli .sub .sli {
  border-top: rgba(0, 0, 0, 0.07) 1px solid;
}

.header .wrapper .nav .nul .nli .sub .sli .sa {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fsize-txt);
  text-decoration: none;
  transition: all 0.3s;
}

.header .wrapper .mor {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .header .wrapper .mor {
    display: none;
  }
}

.header .wrapper .mor .it .ia {
  padding: var(--gap-small) var(--gap-small);
  display: block;
  border-radius: 4px;
  font-size: var(--fsize-base);
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-0);
  transition: all 0.3s;
}

.header .wrapper .mor .it .ia:hover {
  color: var(--color-main);
  background: rgba(255, 255, 255, 0.2);
}

.header .wrapper .menu {
  display: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 0 var(--gap-large);
}

@media (max-width: 800px) {
  .header .wrapper .menu {
    display: flex;
  }
}

.header .wrapper .menu svg {
  width: 20px;
}

.header .wrapper .menu svg path {
  fill: var(--color-0);
}

.header .wrapper .menu .i1 {
  display: block;
}

.header .wrapper .menu .i2 {
  display: none;
}

.header .wrapper .menu.on .i1 {
  display: none;
}

.header .wrapper .menu.on .i2 {
  display: block;
}

.header.fxdon,
.header.on {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: solid 1px #e5e5e5;
}

.header.fxdon .wrapper .nav .nul .nli .na,
.header.on .wrapper .nav .nul .nli .na {
  color: var(--color-3);
}

/* .header.fxdon .wrapper .nav .nul .nli .na:hover,
.header.on .wrapper .nav .nul .nli .na:hover {
  color: var(--color-main);
} */

.header.fxdon .wrapper .mor .it .ia .i1,
.header.on .wrapper .mor .it .ia .i1 {
  display: none;
}

.header.fxdon .wrapper .mor .it .ia .i2,
.header.on .wrapper .mor .it .ia .i2 {
  display: block;
}

.header.fxdon .wrapper .mor .it .ia:hover,
.header.on .wrapper .mor .it .ia:hover {
  background: rgba(0, 0, 0, 0.1);
}

.header.fxdon .wrapper .menu svg path,
.header.on .wrapper .menu svg path {
  fill: var(--color-0);
}

.bannerslide {
  position: relative;
  overflow: hidden;
}

.bannerslide .swiper-wrapper {
  position: relative;
  height: calc(100vh - 130px);
}

@media (max-width: 800px) {
  .bannerslide .swiper-wrapper {
    height: calc(60vh - 60px);
  }
}

.bannerslide .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}

.bannerslide .swiper-wrapper .swiper-slide.swiper-slide-active .bg {
  transform: scale(1);
}

.bannerslide .swiper-wrapper .swiper-slide .bg {
  height: 100%;
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.bannerslide .swiper-wrapper .swiper-slide .bg::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.bannerslide .swiper-wrapper .swiper-slide .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerslide .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.bannerslide .box .wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--color-white);
  padding: 0 7.5%;
}

.bannerslide .box .con .tit {
  font-size: var(--fsize-h1);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 800px) {
  .bannerslide .box .con .tit {
    font-size: var(--fsize-h3);
  }
}

.bannerslide .box .con .lin {
  margin-top: var(--gap-h3);
  display: flex;
  position: relative;
  align-items: center;
}

.bannerslide .box .con .lin .la {
  width: 150px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  font-weight: 600;
  margin-right: var(--gap-h3);
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.bannerslide .box .con .lin .la:hover {
  background: var(--color-0);
}

@media (max-width: 800px) {
  .bannerslide .box .con .lin .la {
    width: 26vw;
    height: 10vw;
  }
}

.bannerslide .box .con .lin .swiper-button-next,
.bannerslide .box .con .lin .swiper-button-prev {
  width: auto;
  height: 24px;
  position: relative;
  left: 0;
  right: 0;
  top: auto;
  margin-top: 0;
  color: var(--color-white);
}

.bannerslide .box .con .lin .swiper-button-next::after,
.bannerslide .box .con .lin .swiper-button-prev::after {
  display: none;
}

.bannerslide .box .con .lin .swiper-button-next::before {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.2);
}

.bannerslide .box .tip {
  position: absolute;
  bottom: 4vw;
  font-size: var(--fsize-base);
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 800px) {
  .bannerslide .box .tip {
    font-size: var(--fsize-small);
  }

  .bannerslide .box .tip br {
    display: none;
  }
}

.homebox01 {
  display: flex;
  padding: var(--gap-h1) 0;
}

@media (max-width: 800px) {
  .homebox01 {
    flex-direction: column;
  }
}

.homebox01 .tit {
  flex: 1;
}

.homebox01 .tit .cn {
  font-size: var(--fsize-h2);
  font-weight: 900;
}

.homebox01 .tit .en {
  font-size: var(--fsize-base);
  line-height: 1.6;
  font-weight: 300;
  margin-top: var(--gap-base);
}

.homebox01 .inf {
  flex: 1;
  box-sizing: border-box;
  padding-top: var(--gap-h2);
  padding-left: var(--gap-h2);
  margin-left: var(--gap-h2);
  border-left: 1px solid #ccc;
}

@media (max-width: 800px) {
  .homebox01 .inf {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: var(--gap-h3);
  }
}

.homebox01 .inf .nam {
  font-size: var(--fsize-large);
  font-weight: 800;
}

.homebox01 .inf .txt {
  font-size: var(--fsize-base);
  line-height: 1.6;
  font-weight: 300;
  margin-top: var(--gap-base);
  color: var(--color-3);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 4;
}

.homebox01 .inf .txt.tm {
  -webkit-line-clamp: 40;
}

.homebox01 .inf .btn {
  margin-top: var(--gap-base);
  display: flex;
}

.homebox01 .inf .btn .ba {
  height: 45px;
  border: 1px solid var(--color-0);
  display: flex;
  flex: 1;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  font-size: var(--fsize-base);
  font-weight: 600;
  text-decoration: none;
  margin-right: var(--gap-large);
  color: var(--color-0);
  transition: all 0.3s;
}

.homebox01 .inf .btn .ba:last-child {
  margin-right: 0;
}

.homebox01 .inf .btn .ba:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}

.homebox01 .inf .btn .ba.on {
  background: var(--color-0);
  color: var(--color-white);
}

.homebox01 .inf .btn .ba.on:hover {
  background: var(--color-main);
  border-color: var(--color-main);
}

.homebox02 {
  background-color: rgba(0, 0, 0, 0.05);
  padding: var(--gap-h3) 7.5%;
}

.homebox02 .nam {
  text-align: center;
  font-size: var(--fsize-large);
  color: var(--color-3);
  text-transform: uppercase;
  font-weight: 800;
}

.homebox02 .list {
  margin-top: var(--gap-h3);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-large);
}

@media (max-width: 800px) {
  .homebox02 .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.homebox02 .list .item {
  background: var(--color-white);
  padding: var(--gap-large);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.homebox02 .list .item:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.homebox02 .list .item .ico {
  width: 60px;
  height: 40px;
  flex-shrink: 0;
}

.homebox02 .list .item .ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.homebox02 .list .item .inf {
  margin-left: var(--gap-base);
  color: var(--color-3);
}

.homebox02 .list .item .inf .ih {
  font-size: var(--fsize-base);
  font-weight: 600;
  line-height: 1.5;
}

.homebox02 .list .item .inf .ib {
  font-size: var(--fsize-small);
  line-height: 1.8;
  margin-top: var(--gap-base);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 4;
  font-weight: 300;
}

.homebox03 {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .homebox03 {
    flex-direction: column;
  }
}

.homebox03 .imgbox {
  flex: 1;
  position: relative;
  height: 100%;
}

.homebox03 .imgbox .bg img {
  display: block;
  width: 100%;
}

.homebox03 .imgbox .box {
  position: absolute;
  left: 4vw;
  bottom: 4vw;
  color: var(--color-white);
}

@media (max-width: 800px) {
  .homebox03 .imgbox .box {
    right: 4vw;
  }
}

.homebox03 .imgbox .box .sub {
  font-size: var(--fsize-txt);
  font-weight: 800;
}

@media (max-width: 800px) {
  .homebox03 .imgbox .box .sub {
    font-size: var(--fsize-small);
  }
}

.homebox03 .imgbox .box .nam {
  font-size: var(--fsize-h1);
  font-weight: 300;
  line-height: 1.2;
  margin: var(--gap-small) 0 var(--gap-large);
}

@media (max-width: 800px) {
  .homebox03 .imgbox .box .nam {
    font-size: var(--fsize-large);
  }
}

.homebox03 .imgbox .box .txt {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fsize-base);
  font-weight: 300;
}

@media (max-width: 800px) {
  .homebox03 .imgbox .box .txt {
    font-size: var(--fsize-small);
  }

  .homebox03 .imgbox .box .txt br {
    display: none;
  }
}

.homebox03 .inf {
  width: 35vw;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .homebox03 .inf {
    width: 100%;
  }
}

.homebox03 .inf .infbox {
  padding: var(--gap-h1);
  overflow: hidden;
}

.homebox03 .inf .hb03swiper {
  display: flex;
  flex-direction: column;
}

.homebox03 .inf .hb03swiper .control {
  display: flex;
  align-items: center;
}

.homebox03 .inf .hb03swiper .swiper-button-next,
.homebox03 .inf .hb03swiper .swiper-button-prev {
  width: auto;
  height: 24px;
  position: relative;
  top: auto;
  left: auto;
  color: var(--color-3);
  margin: 0;
  margin-right: var(--gap-base);
  transition: all 0.3s;
}

.homebox03 .inf .hb03swiper .swiper-button-next::after,
.homebox03 .inf .hb03swiper .swiper-button-prev::after {
  display: none;
}

.homebox03 .inf .hb03swiper .swiper-button-next:hover,
.homebox03 .inf .hb03swiper .swiper-button-prev:hover {
  opacity: 0.6;
}

.homebox03 .inf .hb03swiper .nam {
  font-size: var(--fsize-h2);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 2px solid var(--color-3);
  margin: var(--gap-small) 0 var(--gap-h3);
  padding-bottom: var(--gap-base);
}

.homebox03 .inf .hb03swiper .swiper-slide {
  font-size: var(--fsize-txt);
  line-height: 1.6;
  color: var(--color-3);
  font-weight: 300;
}

.homebox03 .inf .hb03swiper .btn {
  display: flex;
}

.homebox03 .inf .hb03swiper .btn .ba {
  display: flex;
  height: 45px;
  border: 1px solid var(--color-3);
  font-weight: 700;
  align-items: center;
  padding: 0 var(--gap-h3);
  font-size: var(--fsize-base);
  text-decoration: none;
  color: var(--color-3);
  margin-top: var(--gap-large);
  transition: all 0.3s;
}

.homebox03 .inf .hb03swiper .btn .ba:hover {
  border-color: var(--color-main);
  background: var(--color-main);
  color: var(--color-white);
}

.homebox04 {
  background: #f2f2f2;
  padding: var(--gap-h1) 0;
}

.homebox04 .hd .sub {
  font-size: var(--fsize-large);
  color: var(--color-3);
}

.homebox04 .hd .nam {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: 600;
}

@media (max-width: 800px) {
  .homebox04 .hd .nam {
    font-size: var(--fsize-h2);
  }
}

.homebox04 .hd .lin {
  margin-top: var(--gap-large);
  font-size: var(--fsize-base);
  display: flex;
  flex-wrap: wrap;
}

.homebox04 .hd .lin .la {
  margin-right: var(--gap-large);
  color: var(--color-3);
  border-top: 2px solid transparent;
  padding: var(--gap-small) 0;
  text-decoration: none;
  transition: all 0.3s;
}

.homebox04 .hd .lin .la.on {
  border-top-color: var(--color-0);
}

.homebox04 .hd .lin .la:hover {
  border-top-color: var(--color-main);
  color: var(--color-main);
}

.homebox04 .hd .lin .la:last-child {
  margin-right: 0;
}

.homebox04 .bd {
  margin-top: var(--gap-large);
}

.homebox04 .bd .hb04list {
  padding: var(--gap-base) var(--gap-small);
}

.homebox04 .bd .hb04list .box {
  background: var(--color-white);
  padding: var(--gap-base);
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.homebox04 .bd .hb04list .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.homebox04 .bd .hb04list .box .img .ia {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background: #f2f2f2;
  position: relative;
}

.homebox04 .bd .hb04list .box .img .ia img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--gap-large);
  box-sizing: border-box;
  object-fit: contain;
}

.homebox04 .bd .hb04list .box .inf {
  padding: var(--gap-large) var(--gap-base);
}

.homebox04 .bd .hb04list .box .inf .cla {
  display: flex;
  margin-bottom: var(--gap-small);
}

.homebox04 .bd .hb04list .box .inf .cla span {
  display: flex;
  height: 30px;
  border: 1px solid var(--color-3);
  font-size: var(--fsize-small);
  border-radius: 4px;
  align-items: center;
  padding: 0 var(--gap-base);
  font-weight: 300;
}

.homebox04 .bd .hb04list .box .inf .nam {
  font-size: calc(var(--fsize-large) * 1.1);
  font-weight: 600;
  color: var(--color-0);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 1;
}

.homebox04 .bd .hb04list .box .inf .mod {
  font-size: var(--fsize-small);
  font-weight: 300;
  margin: var(--gap-mini) 0 var(--gap-large);
}

.homebox04 .bd .hb04list .box .inf .it {
  padding-bottom: var(--gap-large);
  margin-bottom: var(--gap-large);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 300;
  color: var(--color-0);
  font-size: var(--fsize-small);
  line-height: 1.6;
}

.homebox04 .bd .hb04list .box .inf .it .ih {
  font-size: var(--fsize-base);
  font-weight: 600;
  margin-bottom: var(--gap-small);
}

.homebox04 .bd .hb04list .box .inf .it .ib {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 2;
}

.homebox04 .bd .hb04list .box .inf .it .il .ii {
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.5px;
  margin: var(--gap-mini) 0;
}

.homebox04 .bd .hb04list .box .inf .it .il .ii::before {
  content: "";
  position: absolute;
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  margin-top: 5px;
}

.homebox04 .bd .hb04list .box .inf .it.no {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.homebox04 .bd .hb04list .box .inf .btn {
  display: flex;
  margin-top: var(--gap-large);
}

.homebox04 .bd .hb04list .box .inf .btn .ba {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: var(--color-0);
  color: var(--color-white);
  font-size: var(--fsize-small);
  font-weight: 600;
  height: 40px;
  text-decoration: none;
  transition: all 0.3s;
}

.homebox04 .bd .hb04list .box .inf .btn .ba:hover {
  background: var(--color-main);
}

.homebox04 .bd .morbtn {
  margin-top: var(--gap-h3);
  display: flex;
  justify-content: center;
}

.homebox04 .bd .morbtn .ma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 55px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--fsize-base);
  font-weight: 300;
  padding: 0 var(--gap-large);
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}

.homebox04 .bd .morbtn .ma:hover {
  width: 320px;
  background: var(--color-0);
}

.homebox05 {
  background: url(../img/hb05bg.jpg) no-repeat center;
  background-size: cover;
  height: 890px;
}

@media (max-width: 800px) {
  .homebox05 {
    height: auto;
    padding: var(--gap-h1) 0;
  }
}

.homebox05 .wrapper {
  display: flex;
  height: 100%;
  align-items: center;
}

.homebox05 .wrapper .box {
  width: 40%;
  color: var(--color-white);
}

@media (max-width: 800px) {
  .homebox05 .wrapper .box {
    width: 100%;
  }
}

.homebox05 .wrapper .box .sub {
  font-size: var(--fsize-base);
  font-weight: 600;
}

.homebox05 .wrapper .box .nam {
  font-size: var(--fsize-h2);
  font-weight: 600;
  margin: var(--gap-large) 0;
}

.homebox05 .wrapper .box .txt {
  font-size: var(--fsize-base);
  line-height: 1.6;
  font-weight: 300;
}

.homebox05 .wrapper .box .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-h3);
  margin-top: var(--gap-h1);
}

.homebox05 .wrapper .box .list .it {
  border-left: 2px solid var(--color-main);
  padding-left: var(--gap-large);
}

.homebox05 .wrapper .box .list .it .num {
  font-size: var(--fsize-h1);
  color: var(--color-main);
  font-weight: 900;
}

.homebox05 .wrapper .box .list .it .txt {
  font-size: var(--fsize-base);
  line-height: 1.6;
  font-weight: 300;
}

.homebox06 {
  background: url(../img/hb06bg.jpg) no-repeat center;
  background-size: cover;
  height: 890px;
  box-sizing: border-box;
  padding-top: var(--gap-h1);
}

@media (max-width: 800px) {
  .homebox06 {
    height: auto;
    padding: var(--gap-h1) 0;
  }
}

.homebox06 .wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 800px) {
  .homebox06 .wrapper {
    flex-direction: column;
  }
}

.homebox06 .inf {
  color: var(--color-white);
  width: 40%;
}

@media (max-width: 800px) {
  .homebox06 .inf {
    width: 100%;
  }
}

.homebox06 .inf .sub {
  font-size: var(--fsize-large);
  font-weight: 900;
}

@media (max-width: 800px) {
  .homebox06 .inf .sub {
    font-size: var(--fsize-base);
  }
}

.homebox06 .inf .nam {
  font-size: var(--fsize-h1);
  font-weight: 800;
  line-height: 1.4;
  margin: var(--gap-large) 0;
}

@media (max-width: 800px) {
  .homebox06 .inf .nam {
    font-size: var(--fsize-h3);
  }
}

.homebox06 .inf .txt {
  font-size: var(--fsize-txt);
  font-weight: 300;
  line-height: 1.5;
}

.homebox06 .inf .btn {
  margin-top: var(--gap-h3);
  display: flex;
}

.homebox06 .inf .btn .ba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 55px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--fsize-base);
  font-weight: 300;
  padding: 0 var(--gap-large);
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}

.homebox06 .inf .btn .ba:hover {
  width: 320px;
  background: var(--color-0);
}

.homebox06 .lis {
  width: 54%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-large);
}

@media (max-width: 800px) {
  .homebox06 .lis {
    width: 100%;
    margin-top: var(--gap-h1);
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.homebox06 .lis .it {
  background: var(--color-white);
  padding: var(--gap-h3);
  transition: all 0.3s;
}

.homebox06 .lis .it:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.homebox06 .lis .it .nam .na {
  font-size: var(--fsize-txt);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-0);
  text-decoration: none;
  transition: all 0.3s;
}

.homebox06 .lis .it .nam .na:hover {
  color: var(--color-main);
}

.homebox06 .lis .it .txt {
  font-size: var(--fsize-base);
  line-height: 1.5;
  font-weight: 300;
  margin: var(--gap-large) 0;
  color: var(--color-3);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 3;
}

.homebox06 .lis .it .mor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homebox06 .lis .it .mor .tim {
  font-size: var(--fsize-small);
  font-weight: 300;
}

.homebox06 .lis .it .mor .btn {
  color: var(--color-main);
  font-size: var(--fsize-small);
  font-weight: 300;
  display: flex;
  align-items: center;
}

.homebox06 .lis .it .mor .btn svg {
  margin-left: var(--gap-small);
}

.homebox06 .lis .it .mor .btn svg path {
  fill: var(--color-main);
}

.homebox07 {
  background: #f0f0f0;
  padding: var(--gap-h1) 0;
}

.homebox07 .hd {
  text-align: center;
}

@media (max-width: 800px) {
  .homebox07 .hd {
    text-align: left;
  }
}

.homebox07 .hd .nam {
  font-size: var(--fsize-h1);
  font-weight: 300;
  color: var(--color-0);
}

@media (max-width: 800px) {
  .homebox07 .hd .nam {
    font-size: var(--fsize-h3);
  }
}

.homebox07 .hd .txt {
  font-size: var(--fsize-base);
  line-height: 1.6;
  color: var(--color-3);
  font-weight: 300;
  margin: var(--gap-base) 0;
}

.homebox07 .hd .btn {
  margin-top: var(--gap-h3);
  display: flex;
  justify-content: center;
}

@media (max-width: 800px) {
  .homebox07 .hd .btn {
    justify-content: flex-start;
  }
}

.homebox07 .hd .btn .ba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 55px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--fsize-base);
  font-weight: 300;
  padding: 0 var(--gap-large);
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.3s;
}

.homebox07 .hd .btn .ba:hover {
  width: 320px;
  background: var(--color-0);
}

.homebox07 .list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--gap-h3);
  gap: var(--gap-h3);
}

@media (max-width: 800px) {
  .homebox07 .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.homebox07 .list .item {
  border-right: #d8d8d8 1px solid;
  padding-right: var(--gap-h3);
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .homebox07 .list .item {
    display: flex;
    border-right: 0;
  }
}

.homebox07 .list .item:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

@media (max-width: 800px) {
  .homebox07 .list .item .ico {
    margin-right: var(--gap-h3);
  }
}

.homebox07 .list .item .ico img {
  display: block;
  width: 45px;
  height: 45px;
}

@media (max-width: 800px) {
  .homebox07 .list .item .ico img {
    width: 30px;
    height: 30px;
  }
}

.homebox07 .list .item .inf {
  margin-top: var(--gap-large);
}

.homebox07 .list .item .inf .nam {
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  font-weight: 600;
}

.homebox07 .list .item .inf .nam svg {
  width: 18px;
}

.homebox07 .list .item .inf .nam svg path {
  fill: var(--color-main);
}

.homebox07 .list .item .inf .txt {
  font-size: var(--fsize-base);
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-3);
  margin-top: var(--gap-base);
}

.homebox08 {
  display: flex;
}

@media (max-width: 800px) {
  .homebox08 {
    flex-direction: column;
  }
}

.homebox08 .conbox {
  flex: 1;
  box-sizing: border-box;
  padding: var(--gap-h2);
  color: var(--color-3);
}

.homebox08 .conbox .nam {
  font-size: calc(var(--fsize-h1) * 1.2);
  text-transform: uppercase;
  font-weight: 900;
}

@media (max-width: 800px) {
  .homebox08 .conbox .nam {
    font-size: var(--fsize-h1);
  }
}

.homebox08 .conbox .txt {
  font-size: var(--fsize-txt);
  font-weight: 300;
  line-height: 1.5;
  margin: var(--gap-large) 0;
}

.homebox08 .conbox .lis {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--gap-large);
}

@media (max-width: 800px) {
  .homebox08 .conbox .lis {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .homebox08 .conbox .lis .it {
    margin-bottom: var(--gap-large);
  }
}

.homebox08 .conbox .lis .it .ih {
  font-size: var(--fsize-base);
  font-weight: 300;
  margin-bottom: var(--gap-small);
}

.homebox08 .conbox .lis .it .in {
  font-size: var(--fsize-h3);
  font-weight: 600;
  letter-spacing: 2px;
}

.homebox08 .conbox .lis .it .ib {
  font-size: var(--fsize-txt);
  color: var(--color-0);
  line-height: 1.5;
  font-weight: 400;
}

.homebox08 .conbox .btn {
  margin-top: var(--gap-h3);
  display: flex;
}

.homebox08 .conbox .btn .ba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  background: var(--color-white);
  color: var(--color-3);
  font-size: var(--fsize-base);
  font-weight: 300;
  padding: 0 var(--gap-h2);
  box-sizing: border-box;
  text-decoration: none;
  border: 1px solid var(--color-0);
  transition: all 0.3s;
}

.homebox08 .conbox .btn .ba:hover {
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
}

.homebox08 .feebox {
  flex: 1;
  box-sizing: border-box;
  padding: var(--gap-h2);
  background: url(../img/bluebg.jpg) no-repeat;
  background-size: cover;
  color: var(--color-white);
}

.homebox08 .feebox.fb2 {
  background: var(--color-white);
}

.homebox08 .feebox .feeimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homebox08 .feebox .feeimg img {
  display: block;
  width: 20vw;
}

.homebox08 .feebox .nam {
  font-size: var(--fsize-h2);
  font-weight: 900;
}

.homebox08 .feebox .txt {
  font-size: var(--fsize-txt);
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.6;
  margin-top: var(--gap-small);
  margin-bottom: var(--gap-large);
}

.homebox08 .feebox .lis {
  display: flex;
}

@media (max-width: 800px) {
  .homebox08 .feebox .lis {
    flex-direction: column;
  }

  .home-img {
    flex-direction: column;
  }

  .home-img .col {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.homebox08 .feebox .lis .it {
  flex: 1;
  margin-right: var(--gap-large);
}

.homebox08 .feebox .lis .it .ipt {
  border: 0;
  background: transparent;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
  color: var(--color-white);
  font-size: var(--fsize-txt);
  font-family: "DPTFont", sans-serif;
  font-weight: 300;
  width: 100%;
}

@media (max-width: 800px) {
  .homebox08 .feebox .lis .it .ipt {
    width: 100%;
  }
}

.homebox08 .feebox .lis .it .ipt::placeholder {
  color: var(--color-white);
}

.homebox08 .feebox .lis .it .tex {
  border: 0;
  background: transparent;
  height: 96px;
  width: 100%;
  padding: var(--gap-small) 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
  color: var(--color-white);
  font-size: var(--fsize-txt);
  font-family: "DPTFont", sans-serif;
  font-weight: 300;
}

.homebox08 .feebox .lis .it .tex::placeholder {
  color: var(--color-white);
}

.homebox08 .feebox .lis .it:last-child {
  margin-right: 0;
}

.homebox08 .feebox .tip {
  font-size: var(--fsize-small);
  margin-top: var(--gap-large);
  font-weight: 300;
}

.homebox08 .feebox .btn {
  margin-top: var(--gap-h3);
  display: flex;
}

.homebox08 .feebox .btn .ba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  height: 55px;
  font-family: "DPTFont", sans-serif;
  background: var(--color-white);
  color: var(--color-main);
  font-size: var(--fsize-base);
  font-weight: 600;
  padding: 0 var(--gap-h2);
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.homebox08 .feebox .btn .ba:hover {
  background: var(--color-0);
}

.footer {
  background-color: #3b3738;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fsize-base);
  font-weight: 300;
  padding: 0 7.5%;
}

.footer .list {
  padding: var(--gap-h1) 0;
}

.footer .list .wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .footer .list .wrapper {
    flex-direction: column;
  }
}

.footer .list .wrapper .flogo {
  width: 160px;
  margin-right: var(--gap-large);
}

@media (max-width: 800px) {
  .footer .list .wrapper .flogo {
    width: 30vw;
    margin: 0 auto;
  }
}

.footer .list .wrapper .flogo .fa {
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.footer .list .wrapper .flogo .fa:hover {
  opacity: 0.6;
}

.footer .list .wrapper .flogo .fa img {
  display: block;
  width: 100%;
}

@media (max-width: 800px) {
  .footer .list .wrapper .item {
    display: none;
  }
}

.footer .list .wrapper .item .ih {
  font-size: var(--fsize-txt);
}

.footer .list .wrapper .item .ih .ia {
  color: var(--color-white);
  font-weight: 500;
}

.footer .list .wrapper .item .ib {
  margin-top: var(--gap-large);
}

.footer .list .wrapper .item .ib.ib2 {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: var(--gap-base);
  column-gap: var(--gap-base);
}

.footer .list .wrapper .item .ib .it {
  margin-bottom: var(--gap-mini);
}

.footer .list .wrapper .item .ib .it .ia {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.footer .list .wrapper .item .ib .it .ia:hover {
  color: var(--color-white);
}

.foot {
  background: #024883;
  padding: var(--gap-large) 0;
  font-size: var(--fsize-base);
  font-weight: 300;
  color: var(--color-white);
}

.foot .wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .foot .wrapper {
    flex-direction: column;
  }
}

.foot .wrapper .lin .la {
  color: var(--color-white);
  margin-left: var(--gap-large);
}

.inbanner {
  height: 500px;
  position: relative;
  margin-top: 108px;
}

@media (max-width: 800px) {
  .inbanner {
    height: 60vw;
  }
}

.inbanner .bg {
  height: 100%;
  position: relative;
}

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

.inbanner .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.inbanner.ib2 .con .wrapper {
  color: var(--color-white);
}

.inbanner .con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inbanner .con .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--color-txt);
}

.inbanner .con .wrapper .sub {
  font-size: var(--fsize-large);
  font-weight: 600;
  margin-bottom: var(--gap-large);
}

@media (max-width: 800px) {
  .inbanner .con .wrapper .sub {
    font-size: var(--fsize-base);
  }
}

.inbanner .con .wrapper .tit {
  font-size: calc(var(--fsize-h1) * 1.2);
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 800px) {
  .inbanner .con .wrapper .tit {
    font-size: var(--fsize-h3);
  }

  .inbanner .con .wrapper .tit br {
    display: none;
  }
}

.sean-newslist {
  padding: var(--gap-h3) 0;
}

.sean-newslist.sean-newslist-col3 {
  margin: var(--gap-large) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-base);
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sean-newslist.sean-newslist-col3.sean-newslist-col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3.sean-newslist-col2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sean-newslist.sean-newslist-col3.sean-newslist-col4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3.sean-newslist-col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.sean-newslist.sean-newslist-col3 .sean-newslist-item {
  box-sizing: border-box;
  padding: var(--gap-large);
  border: 1px solid var(--color-border);
  flex-direction: column;
  background-color: var(--color-white);
  transition: all 0.3s;
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item {
    flex-direction: row;
    padding: var(--gap-h3);
  }
}

.sean-newslist.sean-newslist-col3 .sean-newslist-item:hover {
  box-shadow: 0 var(--gap-base) var(--gap-large) rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.sean-newslist.sean-newslist-col3 .sean-newslist-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img {
  width: 100%;
  margin-bottom: var(--gap-base);
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img {
    width: 30vw;
  }
}

.sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img a {
  padding-bottom: 65%;
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-col3 .sean-newslist-item .sean-newslist-img a {
    padding-bottom: 75%;
  }
}

.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a {
  overflow: hidden;
}

.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a:after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: skewx(-25deg);
  opacity: 0.6;
}

.sean-newslist.sean-newslist-imglight .sean-newslist-item .sean-newslist-img a:hover:after {
  left: 120%;
  transition: 1s;
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item {
    flex-direction: column;
  }

  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item .sean-newslist-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--gap-base);
  }

  .sean-newslist.sean-newslist-mimgbig .sean-newslist-item .sean-newslist-img a {
    padding-bottom: 65%;
  }
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-minftxt .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
    display: -webkit-box;
    margin-top: var(--gap-large);
  }
}

.sean-newslist.sean-newslist-alternate .sean-newslist-item:nth-child(2n) .sean-newslist-img {
  order: 2;
  margin-right: 0;
  margin-left: var(--gap-large);
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-alternate .sean-newslist-item:nth-child(2n) .sean-newslist-img {
    order: 0;
    margin-left: 0;
  }
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item {
  border: 0;
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img {
  width: 40%;
}

@media (max-width: 800px) {
  .sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img {
    width: 100%;
  }
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-img a {
  padding-bottom: 60%;
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf {
  align-items: center;
  flex-direction: row;
  height: auto;
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con {
  height: auto;
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tit {
  font-size: var(--fsize-h3);
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl {
  background: var(--color-white);
  padding: 10px 30px;
  border: 1px solid var(--color-border);
  width: auto;
  height: auto;
  font-size: var(--fsize-base);
  text-decoration: none;
  border-radius: 30px;
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl:before {
  content: "阅读更多";
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fl:hover {
  border-color: var(--color-main);
  color: var(--color-white);
  background-color: var(--color-main);
}

.sean-newslist.sean-newslist-bigitem .sean-newslist-item .sean-newslist-inf .sean-newslist-con .sean-newslist-tool a.sean-newslist-tool-fr {
  display: none;
}

.sean-newslist.sean-newslist-imgright .sean-newslist-item .sean-newslist-img {
  order: 2;
  margin-right: 0;
  margin-left: var(--gap-large);
}

.sean-newslist .sean-newslist-item {
  display: flex;
  justify-content: space-between;
  padding: var(--gap-large) 0;
  border-bottom: 1px solid var(--color-border);
}

.sean-newslist .sean-newslist-item:last-child {
  border-bottom: 0;
}

.sean-newslist .sean-newslist-item .sean-newslist-img {
  width: 220px;
  margin-right: var(--gap-large);
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-img {
    width: 30vw;
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-img a {
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: 75%;
  position: relative;
}

.sean-newslist .sean-newslist-item .sean-newslist-img a img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-con {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit {
  font-size: var(--fsize-large);
  font-weight: bold;
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit {
    margin-bottom: var(--gap-base);
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit a {
  color: var(--color-3);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tit a:hover {
  color: var(--color-main);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim {
  margin-top: var(--gap-base);
  color: var(--color-9);
  font-size: var(--fsize-base);
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim {
    margin-top: auto;
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span {
  margin-right: var(--gap-large);
  display: flex;
  align-items: center;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/seanui/seanui-icon-time.svg) no-repeat center;
  background-size: cover;
  margin-right: var(--gap-mini);
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span::before {
    width: 16px;
    height: 16px;
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tim span:nth-child(2)::before {
  background-image: url(../img/seanui/seanui-icon-nums.svg);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
  margin-top: var(--gap-base);
  color: var(--color-6);
  font-size: var(--fsize-base);
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 2;
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-txt {
    display: none;
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: var(--fsize-base);
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag {
    display: none;
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag a {
  margin-right: var(--gap-base);
  margin-top: var(--gap-base);
  color: var(--color-main);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tag a:last-child {
  margin-right: 0;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub {
  margin-bottom: var(--gap-base);
  font-size: var(--fsize-base);
  color: var(--color-9);
  display: flex;
  align-items: center;
  margin-left: -4px;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub a {
  display: block;
  margin-right: var(--gap-base);
  color: var(--color-9);
  text-decoration: none;
  padding: 3px 4px;
  border-radius: var(--gap-mini);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-sub a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-3);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool {
  margin-top: var(--gap-large);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool {
    margin-top: var(--gap-h3);
  }
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/seanui/seanui-icon-01.png) no-repeat center;
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a.sean-newslist-tool-fl {
  background-image: url(../img/seanui/seanui-icon-01.png);
}

.sean-newslist .sean-newslist-item .sean-newslist-inf .sean-newslist-tool a.sean-newslist-tool-fr {
  background-image: url(../img/seanui/seanui-icon-02.png);
}

.newsitem {
  min-height: 50vh;
  padding: var(--gap-h1) 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .newsitem {
    border-right: 0;
    padding-right: 0;
  }
}

.newsitem .nhd {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--gap-large);
  margin-bottom: var(--gap-large);
}

.newsitem .nhd .tit {
  font-size: var(--fsize-h2);
  line-height: 1.2;
  font-weight: bold;
  color: var(--color-txt);
}

@media (max-width: 800px) {
  .newsitem .nhd .tit {
    font-size: var(--fsize-h3);
  }
}

.newsitem .nhd .tim {
  margin-top: var(--gap-base);
  font-size: var(--fsize-small);
  color: var(--color-9);
}

.newsitem .nhd .tim span {
  margin-right: var(--gap-large);
}

.newsitem .nhd .tim span:last-child {
  margin-right: 0;
}

.newsitem .content {
  font-size: var(--fsize-txt);
  line-height: 1.8;
  color: var(--color-3);
  text-align: justify;
}

.newsitem .content .tablebg {
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: var(--fsize-txt);
  line-height: 1.4;
}

.newsitem .content .tablebg td {
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  background: #fff;
  text-align: center;
  padding: var(--gap-small) var(--gap-mini);
}

.newsitem .content h3 {
  font-size: var(--fsize-h3);
  font-weight: bold;
  color: #0052d9;
  margin-bottom: var(--gap-large);
}

.newsitem .content p {
  margin-bottom: var(--gap-large);
}

.newsitem .content p.aa {
  display: flex;
  justify-content: center;
}

.newsitem .content p.aa a {
  display: flex;
  padding: var(--gap-small) var(--gap-large);
  color: var(--color-white);
  background: var(--color-main);
  border-radius: var(--gap-h1);
}

.newsitem .content p.aa a:hover {
  opacity: 0.8;
  padding: var(--gap-small) var(--gap-h3);
}

.newsitem .content img {
  max-width: 100%;
}

@media (max-width: 800px) {
  .newsitem .content img {
    max-width: 100% !important;
  }
}

.newsitem .mor {
  padding-top: var(--gap-large);
  margin-top: var(--gap-large);
  border-top: 1px solid #dedede;
  line-height: 2;
  font-size: var(--fsize-base);
}

.productbox {
  background: #f2f2f2;
  padding: var(--gap-h1) 0;
}

.productbox .subnav {
  margin-bottom: var(--gap-h3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.productbox .subnav .sa {
  display: flex;
  height: 50px;
  font-size: var(--fsize-txt);
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 var(--gap-h3);
  border-radius: 4px;
  border: 0 solid var(--color-border);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 var(--gap-small);
  background: var(--color-white);
  align-items: center;
  transition: all 0.3s;
}

.productbox .subnav .sa.on {
  background: var(--color-main);
  color: var(--color-white);
}

.productbox .subnav .sa:hover {
  transform: translateY(-2px);
}

.productbox .prolist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-large);
}

@media (max-width: 800px) {
  .productbox .prolist {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.productbox .prolist .item {
  background: var(--color-white);
  padding: var(--gap-base);
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.productbox .prolist .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.productbox .prolist .item .img .ia {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background: #f2f2f2;
  position: relative;
}

.productbox .prolist .item .img .ia img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--gap-large);
  box-sizing: border-box;
  object-fit: contain;
}

.productbox .prolist .item .inf {
  padding: var(--gap-large) var(--gap-base);
}

.productbox .prolist .item .inf .cla {
  display: flex;
  margin-bottom: var(--gap-small);
}

.productbox .prolist .item .inf .cla span {
  display: flex;
  height: 30px;
  border: 1px solid var(--color-3);
  font-size: var(--fsize-small);
  border-radius: 4px;
  align-items: center;
  padding: 0 var(--gap-base);
  font-weight: 300;
}

.productbox .prolist .item .inf .nam {
  font-size: calc(var(--fsize-large) * 1.1);
  font-weight: 600;
  color: var(--color-0);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 1;
}

.productbox .prolist .item .inf .mod {
  font-size: var(--fsize-small);
  font-weight: 300;
  margin: var(--gap-mini) 0 var(--gap-large);
}

.productbox .prolist .item .inf .it {
  padding-bottom: var(--gap-large);
  margin-bottom: var(--gap-large);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 300;
  color: var(--color-0);
  font-size: var(--fsize-small);
  line-height: 1.6;
}

.productbox .prolist .item .inf .it .ih {
  font-size: var(--fsize-base);
  font-weight: 600;
  margin-bottom: var(--gap-small);
}

.productbox .prolist .item .inf .it .ib {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 2;
}

.productbox .prolist .item .inf .it .il .ii {
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.5px;
  margin: var(--gap-mini) 0;
}

.productbox .prolist .item .inf .it .il .ii::before {
  content: "";
  position: absolute;
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  margin-top: 5px;
}

.productbox .prolist .item .inf .it.no {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.productbox .prolist .item .inf .btn {
  display: flex;
  margin-top: var(--gap-large);
}

.productbox .prolist .item .inf .btn .ba {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: var(--color-0);
  color: var(--color-white);
  font-size: var(--fsize-small);
  font-weight: 600;
  height: 40px;
  text-decoration: none;
  transition: all 0.3s;
}

.productbox .prolist .item .inf .btn .ba:hover {
  background: var(--color-main);
}

.sean-breadcrumb {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: var(--fsize-small);
  color: var(--color-9);
}

@media (max-width: 800px) {
  .sean-breadcrumb {
    flex-wrap: wrap;
  }
}

.sean-breadcrumb.sean-breadcrumb-withbg {
  background: var(--color-white);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sean-breadcrumb.sean-breadcrumb-new .sean-breadcrumb-it a {
  border-radius: 4px;
  padding: 3px 4px;
}

.sean-breadcrumb.sean-breadcrumb-new .sean-breadcrumb-it a:hover {
  text-decoration: none;
  opacity: 1;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.06);
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a {
  line-height: 20px;
  height: 20px;
  padding: 10px 10px 10px 5px;
  background: var(--color-main);
  text-decoration: none;
  color: var(--color-white);
  position: relative;
  margin-right: 23px;
  border-radius: 0;
}

@media (max-width: 800px) {
  .sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a {
    line-height: 16px;
    height: auto;
    padding: 0;
    background: none;
    color: var(--color-9);
    margin-right: 0;
  }
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a::before {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid var(--color-main);
  border-width: 20px 10px;
  width: 0;
  height: 0;
  left: -20px;
  border-left-color: transparent;
}

@media (max-width: 800px) {
  .sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a::before {
    display: none;
  }
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a::after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid transparent;
  border-width: 20px 10px;
  width: 0;
  height: 0;
  left: 100%;
  border-left-color: var(--color-main);
}

@media (max-width: 800px) {
  .sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a::after {
    display: none;
  }
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it a:hover {
  opacity: 0.8;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-main);
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it::after {
  display: none;
}

@media (max-width: 800px) {
  .sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it::after {
    display: block;
  }
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it:first-child a {
  padding-left: 15px;
  border-radius: 6px 0 0 6px;
}

@media (max-width: 800px) {
  .sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it:first-child a {
    padding-left: 4px;
  }
}

.sean-breadcrumb.sean-breadcrumb-bigit .sean-breadcrumb-it:first-child a::before {
  display: none;
}

.sean-breadcrumb .sean-breadcrumb-it {
  display: flex;
  align-items: center;
}

.sean-breadcrumb .sean-breadcrumb-it a {
  color: var(--color-white);
  display: flex;
  align-items: center;
}

.sean-breadcrumb .sean-breadcrumb-it a img {
  margin-right: 4px;
  display: block;
  width: 16px;
}

.sean-breadcrumb .sean-breadcrumb-it a:hover {
  color: var(--color-main);
  text-decoration: underline;
}

.sean-breadcrumb .sean-breadcrumb-it::after {
  content: "/";
  font-family: simsun;
  margin: 0 6px;
}

.sean-breadcrumb .sean-breadcrumb-it:last-child::after {
  display: none;
}

.prohead {
  background: url(../img/banner03.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  padding: var(--gap-h1) 0;
}

.prohead::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.prohead .wrapper {
  position: relative;
  z-index: 2;
}

.prohead .conbox {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .prohead .conbox {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.prohead .conbox .inf .infbox {
  background: var(--color-white);
  padding: var(--gap-h2) var(--gap-h3);
  height: 100%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.prohead .conbox .inf .infbox:hover {
  transform: translateX(-5px);
}

.prohead .conbox .inf .infbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--gap-h1);
  height: 100%;
  border-radius: var(--gap-h3) 0 0 0;
  transform: translateX(-100%);
  background: var(--color-white);
}

@media (max-width: 800px) {
  .prohead .conbox .inf .infbox::before {
    display: none;
  }
}

.prohead .conbox .inf .infbox .bg {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  transform: translateX(7px);
}

@media (max-width: 800px) {
  .prohead .conbox .inf .infbox .bg {
    transform: translateX(0);
  }
}

.prohead .conbox .inf .infbox .bg img {
  display: block;
  width: 100%;
}

.prohead .conbox .inf .infbox .qu {
  position: absolute;
  right: 0;
  top: 0;
  width: 6vw;
}

.prohead .conbox .inf .infbox .qu img {
  display: block;
  width: 100%;
}

.prohead .conbox .inf .infbox .con {
  position: relative;
  z-index: 2;
}

@media (max-width: 800px) {
  .prohead .conbox .inf .infbox .con {
    padding-bottom: var(--gap-h1);
  }
}

.prohead .conbox .inf .infbox .nam {
  font-size: var(--fsize-h2);
  font-weight: bold;
  color: var(--color-0);
  margin-bottom: var(--gap-large);
}

.prohead .conbox .inf .infbox .ite {
  display: flex;
  padding: var(--gap-base) 0;
  border-bottom: 1px dashed var(--color-border);
}

.prohead .conbox .inf .infbox .ite img {
  margin-right: var(--gap-small);
  margin-top: var(--gap-small);
  display: block;
  width: 12px;
  height: 12px;
}

@media (max-width: 800px) {
  .prohead .conbox .inf .infbox .ite img {
    margin-top: var(--gap-large);
    width: 10px;
    height: 10px;
    margin-right: var(--gap-base);
  }
}

.prohead .conbox .inf .infbox .ite .itx {
  font-size: var(--fsize-txt);
  color: var(--color-3);
  line-height: 1.8;
  flex: 1;
}

.prohead .conbox .inf .infbox .ite .itx strong {
  color: var(--color-0);
  font-size: var(--fsize-large);
}

.prohead .conbox .inf .infbox .ite .itx .il {
  margin-top: var(--gap-small);
}

.prohead .conbox .inf .infbox .ite .itx .il .ii {
  position: relative;
  padding-left: 18px;
  letter-spacing: 0.5px;
  margin: var(--gap-mini) 0;
}

.prohead .conbox .inf .infbox .ite .itx .il .ii::before {
  content: "";
  position: absolute;
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  margin-top: 10px;
}

.prohead .conbox .inf .infbox .tel {
  margin-top: var(--gap-large);
  display: flex;
  align-items: center;
  font-size: var(--fsize-large);
}

.prohead .conbox .inf .infbox .tel strong {
  font-size: var(--fsize-h3);
  font-weight: bold;
  color: var(--color-main);
  margin-left: var(--gap-base);
}

.prohead .conbox .inf .infbox .tel img {
  display: block;
  width: 45px;
  margin-right: var(--gap-base);
}

.prohead .conbox .img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.prohead .conbox .img .ibox {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  border-radius: 0 0 0 var(--gap-h3);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--color-white);
  box-sizing: border-box;
  background: #f2f2f2;
}

@media (max-width: 800px) {
  .prohead .conbox .img .ibox {
    border-radius: 0;
  }
}

.prohead .conbox .img .ibox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  padding: var(--gap-large);
  left: 0;
  top: 0;
  box-sizing: border-box;
}

.proitem {
  background: var(--color-bg);
  padding: var(--gap-h3) 0;
}

.proitem .wrapper {
  display: flex;
}

@media (max-width: 800px) {
  .proitem .wrapper {
    flex-direction: column;
  }
}

.proitem .wrapper .main {
  flex: 1;
}

.proitem .wrapper .main .mbox {
  background: var(--color-white);
  padding: var(--gap-h3);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--gap-large);
  box-sizing: border-box;
}

.proitem .wrapper .main .mbox:last-child {
  margin-bottom: 0;
}

.proitem .wrapper .main .mbox .hd {
  display: flex;
  align-items: center;
  font-size: var(--fsize-h3);
  font-weight: bold;
}

.proitem .wrapper .main .mbox .hd img {
  margin-right: var(--gap-base);
}

.proitem .wrapper .main .mbox .bd {
  margin-top: var(--gap-large);
  font-size: var(--fsize-large);
  line-height: 1.8;
  color: var(--color-3);
}

.proitem .wrapper .main .mbox .bd p {
  margin-bottom: var(--gap-large);
}

.proitem .wrapper .main .mbox .bd p:last-child {
  margin-bottom: 0;
}

.proitem .wrapper .main .mbox .bd img {
  display: block;
  width: 100%;
}

.proitem .wrapper .main .mbtn {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .proitem .wrapper .main .mbtn {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .proitem .wrapper .main .mbtn .bi {
    margin-bottom: var(--gap-large);
  }
}

.proitem .wrapper .main .mbtn .bi a {
  display: flex;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: var(--gap-large);
  font-size: var(--fsize-large);
  text-decoration: none;
}

.proitem .wrapper .side {
  width: 360px;
  margin-left: var(--gap-large);
}

@media (max-width: 800px) {
  .proitem .wrapper .side {
    margin-left: 0;
    width: 100%;
  }
}

.proitem .wrapper .side .sbox {
  background: var(--color-white);
  padding: var(--gap-h3);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--gap-large);
}

.proitem .wrapper .side .sbox:last-child {
  margin-bottom: 0;
}

.proitem .wrapper .side .sbox .hd {
  height: 46px;
  background: url(../img/icon26.png) no-repeat left center;
  font-size: var(--fsize-h3);
  font-weight: bold;
  padding-left: var(--gap-large);
  display: flex;
  align-items: center;
}

.proitem .wrapper .side .sbox .bd {
  margin-top: var(--gap-large);
}

.proitem .wrapper .side .sbox .bd .list .it {
  padding: var(--gap-base) 0;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
}

.proitem .wrapper .side .sbox .bd .list .it .img {
  width: 6vw;
  height: 0;
  padding-bottom: 5vw;
  position: relative;
  margin-right: var(--gap-base);
  background: #f2f2f2;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .proitem .wrapper .side .sbox .bd .list .it .img {
    width: 30vw;
    height: 20vw;
  }
}

.proitem .wrapper .side .sbox .bd .list .it .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: var(--gap-small);
}

.proitem .wrapper .side .sbox .bd .list .it .inf .nam {
  font-size: var(--fsize-base);
  font-weight: 500;
}

.proitem .wrapper .side .sbox .bd .list .it .inf .btn {
  flex: 1;
  margin-top: var(--gap-small);
  display: flex;
}

.proitem .wrapper .side .sbox .bd .list .it .inf .btn a {
  display: flex;
  padding: var(--gap-mini) var(--gap-base);
  background: var(--color-main);
  border-radius: 6px;
  color: var(--color-white);
  font-size: var(--fsize-base);
  text-decoration: none;
  justify-content: center;
  transition: all 0.3s;
}

.proitem .wrapper .side .sbox .bd .list .it .inf .btn a:hover {
  opacity: 0.8;
}

.proitem .wrapper .side .sbox .bd .slist .sli {
  margin-bottom: var(--gap-base);
}

.proitem .wrapper .side .sbox .bd .slist .sli:last-child {
  margin-bottom: 0;
}

.proitem .wrapper .side .sbox .bd .slist .sli .sa {
  text-decoration: none;
  font-size: var(--fsize-large);
  padding: var(--gap-small) var(--gap-large);
  display: flex;
  align-items: center;
  border-radius: var(--gap-h1);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.proitem .wrapper .side .sbox .bd .slist .sli .sa img {
  margin-right: var(--gap-small);
}

.proitem .wrapper .side .sbox .bd .slist .sli .sa:hover {
  border-color: var(--color-main);
}

body {
  overflow-x: hidden;
}

body.fxd {
  overflow: hidden;
}

.wrapper {
  box-sizing: border-box;
  margin: 0 auto;
}


@-webkit-keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }

  50% {
    opacity: 1;
  }
}

.zoomInSmall {
  -webkit-animation-name: zoomInSmall;
  animation-name: zoomInSmall;
}

.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  box-shadow: 0px 0px 6px -3.5px rgba(0, 0, 0, 0.25) inset;
}

.lightGallery-white-theme .lg-sub-html {
  color: #333 !important;
}

.lightGallery-white-theme .lg-sub-html a {
  color: #2f2f2f !important;
}

.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightGallery-white-theme .lg-thumb-item.active,
.lightGallery-white-theme .lg-thumb-item:hover {
  border-color: var(--color-main);
}

.lightGallery-white-theme .lg-progress-bar {
  background-color: #999;
}

.lightGallery-white-theme .lg-progress-bar .lg-progress {
  background-color: #333;
}

.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  background-color: #fcfcfc;
}

.lightGallery-white-theme .lg-next,
.lightGallery-white-theme .lg-prev {
  background-color: rgba(0, 0, 0, 0.03);
  color: #444;
}

.lightGallery-white-theme .lg-next:hover,
.lightGallery-white-theme .lg-prev:hover {
  color: #000;
}

.lightGallery-white-theme .lg-next:focus,
.lightGallery-white-theme .lg-prev:focus {
  outline: none;
  box-shadow: none;
}

.lightGallery-white-theme .lg-toolbar .lg-icon {
  color: #555;
}

.lightGallery-white-theme .lg-toolbar .lg-icon:hover {
  color: #000;
}

.lightGallery-white-theme .lg-counter {
  color: #555;
}

.lightGallery-white-theme .lg-outer .lg-thumb-item.active,
.lightGallery-white-theme .lg-outer .lg-thumb-item:hover {
  border: 2px solid var(--color-main);
}

/* 圆细滚动条样式 20180601 / 20230805取消 */
/* 拖选文字样式 20160628 */
::selection {
  background: var(--color-main);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-main);
  color: var(--color-white);
}

/* 移动端全局控制reset */
body,
div,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
iframe,
input,
textarea,
select,
label,
article,
aside,
footer,
header,
menu,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
audio,
canvas,
video {
  display: block;
}

body {
  font-size: 100%;
  font-family: "DPTFont", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--color-white);
}

textarea {
  resize: none;
}

iframe,
img {
  border: 0;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  outline: 0;
  -webkit-user-modify: read-write-plaintext-only;
}

/* input { -webkit-appearance: none; } */
a {
  text-decoration: none;
  color: #666;
}

a:hover {
  text-decoration: underline;
  color: var(--color-main);
}

.main-container {
  width: 100%;
  padding: 180px 7.5% 100px 7.5%;
  background-color: var(--color-white);
  box-sizing: border-box;
}

.main-container .section-title {
  width: 60%;
  color: #1a1a1a;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.160714285714286;
  margin-bottom: 3.5rem;
}

.main-container .section-desc {
  width: 60%;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.home-img {
  display: flex;
  justify-content: space-between;
  /* max-width: 1632px;
  width: 100%; */
  box-sizing: border-box;
  margin-top: 1rem;
}

.home-img .col {
  box-sizing: border-box;
  flex: 1;
  margin-top: 3rem;
}

.home-img .col:first-child {
  margin-right: 1.5rem;
}

.home-img .col:last-child {
  margin-left: 1.5rem;
}

.business-desc-box {
  position: relative;
  overflow: hidden;
  background: #000;
}


.business-desc-box img {
  display: block;
  width: 100%;
  height: 350px;
  opacity: .9;
}

.home-img .business-desc-box img {
  -webkit-transition: -webkit-transform 500ms ease-out;
  -moz-transition: -moz-transform 500ms ease-out;
  -ms-transition: -ms-transform 500ms ease-out;
  -o-transition: -o-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  opacity: 1;
}


.business-desc-box .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 20%;
  padding: 2rem;
}


.home-img .business-desc-box .desc {
  padding: 3.75rem 2.5rem;
}

.business-desc-box .desc h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.home-img .business-desc-box .desc h2 {
  margin-bottom: 0;
  top: -0.5rem;
}

.home-img .business-desc-box:hover .desc h2 {
  top: -1.5rem;
}

.business-desc-box .desc .links {
  position: absolute;
  left: 2.5rem;
  top: calc(50% + 2rem);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  opacity: 0;
}

.business-desc-box .desc .links a {
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: top;
  padding-right: 1.5rem;
  position: relative;
  font-size: 16px;
}

.home-img .business-desc-box .desc .links a {
  color: #999;
}

.business-desc-box .desc .links a svg {
  display: block;
  width: 1rem;
  height: 0.8125rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-20%, -50%);
  -moz-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  -o-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
}


.business-desc-box .desc .links a svg path {
  fill: #fff;
}

.home-img .business-desc-box .desc .links a:before {
  content: '';
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: -.45rem;
  width: 0%;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.home-img .business-desc-box .desc .links a:hover:before {
  width: 100%;
}

.home-img .business-desc-box .desc .links a svg path {
  fill: #999;
}


.home-img .business-desc-box .desc .links a:hover {
  color: #333;
}

.home-img .business-desc-box .desc .links a:hover svg path {
  fill: #333;
}

.home-img .business-desc-box .desc .links a svg {
  -webkit-transition: -webkit-transform 300ms ease-out;
  -moz-transition: -moz-transform 300ms ease-out;
  -ms-transition: -ms-transform 300ms ease-out;
  -o-transition: -o-transform 300ms ease-out;
  transition: transform 300ms ease-out;
}

.home-img .business-desc-box .desc .links a:hover svg {
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


.home-img .business-desc-box .desc {
  padding: 2.8125rem 2.5rem;
  height: 1.75rem;
}

.business-desc-box .desc:before {
  background: #fff;
  width: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: width 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: width 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: width 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: width 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: width 500ms cubic-bezier(0.86, 0, 0.07, 1);
}

.home-img .business-desc-box:hover .desc:before {
  width: 100%;
}

.home-img .business-desc-box:hover .desc h2 {
  color: #222222;
}

.home-img .business-desc-box:hover .links {
  opacity: 1;
  visibility: visible;
}


.business-desc-box .desc,
.business-desc-box .desc h2,
.business-desc-box .desc .links a,
.business-desc-box .desc .links a svg path {
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#footer {
  background-color: #f2f2f2;
  padding: 0 7.5%;
}

#footer .footer-top {
  padding: 80px 0 30px;
}

#footer .footer-menu {
  font-size: 0;
  margin-bottom: -8px;
  max-width: 900px;
}

#footer .footer-menu li {
  display: inline-block;
  margin-right: 1.8rem;
  margin-bottom: 8px;
}


#footer .footer-menu li span {
  font-size: 0.9rem;
}

#footer .footer-menu li.split {
  font-size: 0.875rem;
  opacity: .3;
  display: none;
  height: 1.25rem;
}

#footer .links {
  text-align: right;
  font-size: 0;
}

#footer .sns {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5rem;
}

#footer .sns a {
  display: inline-block;
  text-indent: -999em;
  overflow: hidden;
  background: 50% 50% no-repeat;
  width: 2.5rem;
  height: 2.5rem;
  vertical-align: middle;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#footer .sns a:hover {
  opacity: 0.6;
}

#footer .familysite {
  display: inline-block;
  vertical-align: middle;
}

#footer .familysite label {
  display: none;
}

#footer .familysite .nice-select {
  font-size: 0.875rem;
  padding: 0 7.5rem 0 1.25rem;
  height: 3.125rem;
  line-height: calc(3.125rem - 2px);
  position: relative;
  width: 14rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  color: #999999;
}

#footer .familysite .nice-select:hover {
  background-color: #fff;
}

#footer .familysite .nice-select.open {
  background-color: transparent;
}

#footer .familysite .nice-select .list {
  top: auto;
  bottom: calc(100% + 1px);
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

#footer .familysite .nice-select .list li:first-child {
  /*display: none;*/
}

#footer .footer-bottom {
  border-top: 1px solid #d9d9d9;
  padding: 30px 0;
  position: relative;
}

#footer .footer-bottom>div {
  display: inline-block;
}

#footer .logo_area {
  width: 3rem;
  vertical-align: middle;
}

#footer .logo_area img {
  width: 6rem !important;
  max-width: auto;
  overflow: hidden;
  display: block;
  font-size: 0;
  -webkit-background-size: contain;
  background-size: contain;
}

:lang(ko) #footer .logo_area img {
  padding-top: 26.5%;
  width: auto;
  max-width: auto;
}



#footer .copyright {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 40px;
  font-size: 0.875rem;
  font-weight: 300;
  color: #999999;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#footer .awards_area {
  position: absolute;
  right: 0;
  /*
    bottom: 20%;
    */
  background: 50% 50% no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

:lang(en) #footer .awards_area,
:lang(zh) #footer .awards_area {
  bottom: 15%;
}

#footer .awards_area a img {
  vertical-align: middle;
}

/*widget*/
.widget {
  margin-bottom: 6.875rem;
}

.widget .widget-header {
  margin-bottom: 1.75rem;
}

.widget .widget-header .widget-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
}

.widget .widget-body ul li {
  margin-bottom: .8rem;
  line-height: 1.2;
}

.widget .widget-body ul li:last-child {
  margin-bottom: 0;
}

.widget .widget-body ul li a {
  color: #999999;
  font-weight: 300;
}

#footer .footer-menu li span.outlink img {
  /*margin-top:3px;*/
  margin-left: 7px;
  width: 14px;
  height: 14px;
}

#footer .bottom-txt {
  padding: 23px 0;
  border-top: 1px solid #d9d9d9;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2rem;
}

#footer .bottom-txt img {
  width: 104px;
}

:lang(ko) #footer .bottom-txt img,
:lang(en) #footer .bottom-txt img {
  vertical-align: middle;
}


#footer .widget li span.outlink img {
  margin-top: 3px;
}


@media screen and (max-width: 1120px) {
  #footer .footer-menu li.split {
    opacity: 0;
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .widgets {
    display: none;
  }

  #footer .footer-top {
    padding: 40px 0 20px;
  }

  #footer .footer-menu {
    margin-bottom: 40px;
    max-width: 700px;
  }

  #footer .footer-menu li {
    line-height: 1;
    margin-bottom: 20px;
  }

  #footer .footer-menu li.split {
    display: none;
  }

  #footer .links {
    text-align: left;
  }

  #footer .sns {
    margin-top: 5px;
  }

  #footer .familysite {
    float: right;
  }

  #footer .footer-menu li span.outlink img {
    /*margin-top:3px;*/
    margin-left: 3px;
    width: 14px;
    height: 14px;
  }

  :lang(ko) #footer .logo_area span {
    padding-top: 26.5%;
  }

  :lang(en) #footer .logo_area span,
  :lang(zh) #footer .logo_area span {
    padding-top: 13.8%;
  }
}

@media screen and (max-width: 766px) {
  #footer .footer-top {
    padding: 45px 0 20px;
  }

  #footer .links {
    display: flex;
    align-items: center;
  }

  #footer .sns {
    flex: 1;
    text-align: left;
  }

  #footer .logo_area {
    width: 5.714285714285714rem;
  }

  #footer .footer-menu li span.outlink img {
    /*margin-top:3px;*/
    margin-left: 1px;
  }

  #footer .footer-menu li {
    margin-right: 1.5rem;
  }

  #footer .footer-menu li span.outlink img {
    width: 12px;
    height: 12px;
  }

  #footer .bottom-txt img {
    width: 5rem;
  }

  #footer .footer-bottom .copyright {
    font-size: 12px !important;
    margin-left: 10px !important;
  }

  #footer .logo_area {
    width: 160px;
  }

  /* #footer .footer-bottom .copyright {
    margin-left: 0 !important;
    left: 0;
  }

  :lang(ko) #footer .footer-bottom .copyright {
    top: 70% !important;
  } */

  /* :lang(en) #footer .footer-bottom .copyright,
  :lang(zh) #footer .footer-bottom .copyright {
    top: 75% !important;
  } */

  :lang(ko) #footer .logo_area span {
    padding-top: 25%;
  }

  :lang(en) #footer .logo_area span,
  :lang(zh) #footer .logo_area span {
    padding-top: 47.5%;
  }
}

@media screen and (max-width: 640px) {
  #footer .familysite .nice-select {
    height: 2.857142857142857rem;
    line-height: calc(2.857142857142857rem - 2px);
  }
}

@media all and (max-width: 1080px) {
  #footer .copyright {
    margin-left: 35px !important;
  }

  /*
    #footer .copyright, #footer .awards_area{bottom:25px;}
    */
  #footer .awards_area a img {
    width: 30px;
  }
}

@media all and (max-width: 1280px) {
  #footer .copyright {
    margin-left: 35px !important;
  }

  #footer .copyright,
  #FOOTER .awards_area {
    /*bottom: 35px; */
    height: auto;
    line-height: inherit;
    font-size: 14px;
  }

  #footer .awards_area {
    left: auto;
    right: 0;
  }

  #footer .awards_area a img {
    width: 35px;
  }
}

#footer .sns a.facebook {
  background-image: url(../../../img/common/icon/icon-facebook.png);
  -webkit-background-size: auto 1.3125rem;
  background-size: auto 1.3125rem;
}

#footer .sns a.instagram {
  background-image: url(../../../img/common/icon/icon-instagram.png);
  -webkit-background-size: 1.3125rem auto;
  background-size: 1.3125rem auto;
}

#footer .sns a.linkedin {
  background-image: url(../../../img/common/icon/icon-linkedin.png);
  -webkit-background-size: 1.5rem auto;
  background-size: 1.5rem auto;
}

#footer .footer-bottom {
  border-top-color: #d9d9d9;
}

#footer .copy {
  color: #222;
}

#footer .familysite .nice-select {
  color: #333;
  font-weight: 400;
}

.widget .widget-header .widget-title {
  color: #222;
}

.widget .widget-body ul li {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.widget .widget-body ul li a {
  font-weight: 400;
  color: #333;
  transition: all .15s;

}

.widget .widget-body ul li a:hover {
  color: #999;
}

:lang(ko) #footer .logo_area span {
  background-image: url(../../../img/common/logo-footer.png);
}

:lang(en) #footer .logo_area span,
:lang(zh) #footer .logo_area span {
  background-image: url(../../../img/common/logo-footer-eng.png);
}

#footer .footer-menu li {
  margin-right: 1.8rem;
}

#footer .footer-menu li a {
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#footer .footer-menu li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1440px) {
  #footer .footer-menu li {
    margin-right: 1.7rem;
  }
}

@media screen and (max-width: 1280px) {
  #footer .footer-menu li {
    margin-right: 1.6rem;
  }
}

@media screen and (max-width: 766px) {
  #footer .footer-menu li {
    margin-right: 1.5rem;
  }
}


@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {

  #footer .logo_area span {
    background-image: url(../../../img/common/logo-footer.png);
    padding-top: 4.5%;
  }

}

#footer .row {
  display: flex;
  margin: 0 auto;
  max-width: 1632px;
}

#footer .col-2 {
  flex: 0 1 272px;
  width: 272px;
}

.top-arrow {
  display: none;
  z-index: 999;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  position: fixed;
  right: 10px;
  bottom: 150px;
}

.top-arrow a {
  background: #fff;
  color: #666;
  width: 70px;
  height: 70px;
  padding-top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #eee;
  border-top: 1px solid #eaeaea;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.top-arrow a:before {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAYCAYAAAD6S912AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFXSURBVEhLnZDbqoJAGIV9/8fpKJERBEHgXXijQlEQBFFggmjqv/eyNcN2j6b2wcC4TuBYXTyfT3EcpzpRFAnl74jjWBaLhYxGo+rgDo32MJIkkeVyqcfUgQaPsX6kaSqr1UqPzOdzsW1bf8NDhvHPZFkm6/Val2ezmdzvd3k8HtWw0pFBlrVm8jyXzWajS9PpVG63my7hDk35yL5er+ZRjG23Wx2eTCZyvV6NMDR4KocOurTfFEUhu91Oh8bjsVwul9bfgYeMyqOLjcosy1Jc19Umzul0ah1TnM/nWgcb2LL2+33NOBwOnWOK4/FY62LL+vvIQRD0HlOEYaj72LI8z6suvu8PHlOgiw1sUWpH/kH5O7hhQHsY7LbCWD/Y6YTxzzDbG9aaYcaA9rA3pWdAW0PZgPYbaga0DWgbdJsfYMyg0WCnE8ZrGCKzvWFNUxOYGQzrv4j8AM8INXSVxDq5AAAAAElFTkSuQmCC') no-repeat center 0;
  display: block;
  width: 20px;
  height: 12px;
  content: '';
  margin: 0 auto 0;
}

.top-arrow a:hover:before {
  background-position: center bottom;
}

.top-arrow a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background: var(--color-main);
  color: #fff;
  border: 1px solid var(--color-main);
}

@media (max-width:800px) {
  .top-arrow {
    display: none;
  }
}

.oem .top-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oem .top-title-txt {
  color: #8C8C8C;
  font-weight: 500;
  font-size: var(--fsize-h2);
}

.oem .top-title-border {
  background-color: #8C8C8C;
  height: 1px;
  margin-left: 5px;
  flex: 1;
  vertical-align: text-bottom;
}

.oem .main-text {
  line-height: 30px;
  font-size: 16px;
  padding: 20px 0;
}

.oem .main-text .main-text-title {
  font-weight: 500;
}

.oem .center-img-bg {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 50px 0;
}

.oem .center-img-bg .center-img {
  flex: 1;
  min-width: 80px;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  position: relative;
  height: 430px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
  background-color: #fff;
}

.oem .center-img-bg .center-img .black {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18vw;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 430px;
  color: #fff;
}

.oem .center-img-bg .center-img img {
  transition: all .5s ease-in-out;
}

.oem .center-img-bg .center-img:hover {
  flex-grow: 10;
}

.oem .three .center-img .black {
  width: 29vw;
}

.swiper-container {
  padding: 110px 0 100px 0;
}


.box .tit {
  line-height: 1.5 !important;
}


.download_btn {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
  background: var(--color-main);
  padding: 30px 20px 30px 60px;
  font-size: large;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
  margin-top: var(--gap-h3);
  border: solid 1px var(--color-main);
  cursor: pointer;
  display: inline-block;
}

.download_btn a {
  color: #fff;
}

.download_btn:hover {
  background: #fff;
  border: solid 1px var(--color-main);
  color: var(--color-main);
  text-decoration: underline;
}

.download_btn:hover svg {
  background-color: var(--color-main);
}

.download_btn:hover a {
  color: var(--color-main);
}

.download_btn svg {
  position: absolute;
  left: 20px;
  top: calc(50% - 16px);
  border-radius: 2px;
}


.develop {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-align: center;
  color: #666;
  padding: 100px 0;
}

.develop img {
  width: 260px;
}

.uppercase {
  text-transform: uppercase;
}

.padding-75 {
  padding: 0 7.5%;
}

.header-gap {
  width: 100%;
  height: 111px;
}

.industries {
  padding: 0 7.5%;
}

.industries .center_img_bg {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}

.industries .center_img_bg .center_img {
  width: 48%;
  position: relative;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  background: #fff;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

.industries .center_img_bg .center_img .ind_img {
  padding-bottom: 72px;
  border-bottom-color: #0072bc;
}


.industries .center_img_bg .center_img .fas {
  line-height: 72px;
  color: var(--color-main);
  text-align: center;
  transition: .3s all;
}

.industries .center_img_bg .center_img .ind_txt {
  left: 0;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  top: 100%;
  transform: translateY(-77px);
  transition: .4s transform ease;
  width: 100%;
  background-color: #fff;
  border-top: 5px solid;
  border-top-color: var(--color-main);
  min-height: 120px;
  padding-bottom: 50px;
}

.industries .center_img_bg .center_img .ind_txt .ind_title {
  display: flex;
  align-items: center;
  height: 72px;
  padding-left: 63px;
  transition: .4s padding;
  font-weight: 500;
  color: var(--color-2);
}

.industries .center_img_bg .center_img .ind_txt .ind_title::before {
  background-color: var(--color-main);
  transition: .4s transform ease;
  height: 75px;
  top: -1px;
  width: 73px;
  content: "";
  left: 0;
  position: absolute;
}


.industries .center_img_bg .center_img:hover .ind_txt {
  transform: translateY(-154px);
}

.industries .center_img_bg .center_img:hover .ind_title::before {
  transform: translateX(-75px);
}

.industries .center_img_bg .center_img:hover .ind_title {
  padding-left: 40px;
}

.industries .center_img_bg .center_img:hover .ind_title .icon::before {
  color: var(--color-main);
}
.industries .center_img_bg .center_img .ind_title  .icon {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 0;
  top: 0;
}
.industries .center_img_bg .center_img .ind_title  .iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.industries .center_img_bg .center_img .ind_title .icon_truck::before {
  content: "\e90a";
  display: block;
  text-align: center;
  height: 72px;
  line-height: 72px;
  font-size: 26px;
  color: #fff;
}
.industries .center_img_bg .center_img .ind_title .icon_tools::before {
  content: "\ec1b";
  display: block;
  text-align: center;
  height: 72px;
  line-height: 72px;
  font-size: 26px;
  color: #fff;
}

* {
  box-sizing: border-box;
}