html {
  --mobile-header-height: 115px;
  --mobile-content-height: calc(100vh - var(--mobile-header-height));
  --mobile-content-padding: 22px;
}

.wow {
  opacity: 0;
}

.mobile {
  width: 100%;
}

.mobile-inner {
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
  color: #676767;
  line-height: 25px;
  font-size: 16px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0px;
}

.mobile-inner-header {
  /* background-color:rgb(255,255,255); */
  width: 100%;
  /* height:50px; */
  position: relative;
  top: 0px;
  z-index: 33;
  left: 0px;
}

.mobile-inner-header-icon {
  color: #ffffff;
  height: 92px;
  font-size: 25px;
  text-align: center;
  float: right;
  width: 50px;
  position: relative;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  margin-right: 10px;
}

.mobile-inner-header-icon:hover {
  /* background-color:rgba(255,255,255,0.2); */
  cursor: pointer;
}

.mobile-inner-header-icon span {
  position: absolute;
  left: calc((100% - 25px) / 2);
  top: calc((100% - 1px) / 2);
  width: 24px;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.mobile-inner-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}

@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

.mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}

@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav {
  overflow: auto;
  /* max-height: calc(100vh - 50px); */
}

.mobile-inner-nav {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  position: absolute;
  top: 0;
  padding-bottom: 0%;
  display: none;
  z-index: 444;
  height: 100vh;
}

.mobile-inner-nav a {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  color: #fff;
  transition: all 0.5s;
}

.mobile-inner-nav dl {
  display: none;
}

.mobile-inner-nav dl dd {
  line-height: 33px;
  text-decoration: none;
  text-indent: 3em;
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 300;
  font-size: 14px;
}

.mobile-inner-nav li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 6vh;
}

.mobile-inner-nav h2.h2tit {
  line-height: 50px;
  text-decoration: none;
  text-indent: 2em;
  font-size: 16px;
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
  color: #ffffff;
}

.mobile-inner-nav a {
  border-bottom: none;
}

.mobile-inner-nav li a {
  color: #90908f;
  display: block;
  margin-right: 56px;
  font-size: 13px;
}

.mobile-inner-nav li a span {
}

.mobile-inner-nav li a span:nth-child(1) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #90908f;
  /* display: none; */
}

.mobile-inner-nav li {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}

@-webkit-keyframes resize {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale(5, 5);
    transform: scale(5, 5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes resize {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale(5, 5);
    transform: scale(5, 5);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-inner-nav li:last-child h2.h2tit {
  border-bottom: none;
}

.mobile-inner-nav li .h3tit {
  height: 50px;
  position: relative;
  background: url("../images/51_icon_search@2x.png") no-repeat 30px center;
  background-size: 17px;
}

.mobile-inner-nav li .words {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  text-indent: 60px;
  font-size: 15px;
  color: #fff;
  background: url("../images/search2.png") no-repeat 30px center;
  background-size: 20px;
}

.mobile-inner-nav li:last-child {
  border-bottom: none;
}

.mobile-inner-nav li form {
  display: block;
  width: 100%;
  height: 100%;
}

@charset "utf-8";
@charset "UTF-8";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.fadeInUp {
  animation-duration: 1.76s;
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 9%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}

html,
body {
}

body {
  font-family: "Source Han Sans SC", "PingFang SC", "Microsoft YaHei" !important;
  color: #666666;
  background: #fff;
  margin: 0 auto;
  padding: 0px;
}

body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  color: #235aa7;
  outline: none;
}

a:active {
  star: expression(this.onFocus=this.blur());
}

img {
  border: 0px;
  vertical-align: middle;
}

li {
  list-style: none;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.loading {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #c5a86e;
  z-index: 99999;
  display: none;
}

.loadingfa {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: none;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-overflow-scrolling: touch;
}

body.fp-viewing-CONTACT {
}

* {
  padding: 0;
  margin: 0;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(360deg);
  }
}

.xuanzhuan * {
  font-style: normal;
}

.xuanzhuan {
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.xuanzhuan img {
  display: block;
  width: 100px;
}

.pc {
  display: block;
}

.wap {
  display: none;
}

.wrap2:after,
.wrap:after,
.clearflex:after {
  content: "";
  display: table;
  clear: both;
}

.wrap {
  max-width: 100%;
  padding: 0px 3%;
}

.head {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
}

.head .logo a {
  width: 500px;
  overflow: hidden;
  display: block;
  height: 64px;
  position: relative;
}

.head .logo {
  float: left;
  padding-top: 4.9vh;
}

.head .logo * {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
}

.fixedMenu,
.head,
.head * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.head .logo *.default {
  top: 53px;
  opacity: 0;
}

.head .logo *.current {
  top: 0;
  opacity: 1;
}

/* body.fp-viewing-NEWS .head .logo *.default, */
body.fp-viewing-HOME .head .logo *.default {
  top: 0;
  opacity: 1;
}

/* body.fp-viewing-NEWS .head .logo *.current, */
body.fp-viewing-HOME .head .logo *.current {
  top: 53px;
  opacity: 0;
}

.section_1 {
  position: relative;
}

.home-icp {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 10;
  color: #cbcbcb;
  text-align: center;
  font-size: 12px;
}

.section_1 .content {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.section_1 .imgbox {
  height: 100%;
}

.section_1 .text .wrap2 {
}

.section_1 .text {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  padding-left: 5.6%;
  padding-right: 4.5%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  bottom: 12.7vh;
  z-index: 6;
}
.section_1 .left p:nth-child(1) {
  font-family: Kanit;
  font-weight: bold;
  letter-spacing: 1px;
}
.section_1 .left {
  /* font-family: Kanit; */
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #ffffff;
  align-items: flex-end;
  /* width: 900px; */
  font-weight: normal;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.section_1 .right {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 47px;
  letter-spacing: 0.1em;
  color: #ffffff;
  float: right;
  align-items: flex-end;
}

.section_1 .left p:nth-child(2) {
  padding-top: 7px;
  letter-spacing: 0.1em;
}

.section_1 .swiper-pagination-bullet {
  width: 40px;
  border-radius: 0px;
  height: 2px;
  background: #e5e5e5;
  margin: 0px 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 1;
}

.section_1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  height: 3px;
}

.section_1 .swiper-pagination {
  bottom: 4.6vh;
}

.fixedMenu {
  position: fixed;
  right: 0;
  top: 4.9vh;
  z-index: 55555;
  text-align: right;
}

.fixedMenu ul {
}

.fixedMenu li.active:after {
  height: 100%;
  display: none;
}

.fixedMenu li:after {
  content: "";
  right: 0px;
  bottom: 0px;
  height: 0;
  background: #c5a86e;
  position: absolute;
  width: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.fixedMenu li {
  margin-bottom: 3.9vh;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  padding-right: 30px;
  position: relative;
}

.fixedMenu li a {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  /* identical to box height */
  color: #91908f;
  display: block;
  letter-spacing: 0.21em;
  color: #ffffff;
  font-weight: normal;
}

.fixedMenu li a span:nth-child(1):after {
  content: "";
  right: 0px;
  top: 0px;
  width: 1px;
  height: 0%;
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  -o-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.fixedMenu li.active a span:nth-child(1):after {
  height: 64%;
}

.fixedMenu li a span:nth-child(1) {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  font-family: Kanit;
  font-style: normal;
}

.fixedMenu li.active a span:nth-child(1) {
  opacity: 1;
  visibility: visible;
  z-index: 4;
}

.fixedMenu li a span:nth-child(1) {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  /* display: none; */
}

.fixedMenu li a span:nth-child(1) * {
  display: inline-block;
  -o-transform: translate(10px, 0%);
  -webkit-transform: translate(10px, 0%);
  -moz-transform: translate(10px, 0%);
  -ms-transform: translate(10px, 0%);
  transform: translate(10px, 0%);
  z-index: -1;
  opacity: 0;
  font-weight: 300;
  visibility: hidden;
  transition: transform, z-index, opacity, 0.6s;
}

.fixedMenu li.active a span:nth-child(1) * {
  z-index: 4;
  opacity: 1;
  visibility: visible;
  -o-transform: translate(0px, 0%);
  -webkit-transform: translate(0px, 0%);
  -moz-transform: translate(0px, 0%);
  -ms-transform: translate(0px, 0%);
  transform: translate(0px, 0%);
}

.fixedMenu li.active a span:nth-child(1) * :nth-child(1) {
  transition-delay: 0;
}

.fixedMenu li.active a span:nth-child(1) * :nth-child(2) {
  transition-delay: 0.1s;
}

.fixedMenu li.active a span:nth-child(1) * :nth-child(3) {
  transition-delay: 0.2s;
}

.fixedMenu li.active a span:nth-child(1) * :nth-child(4) {
  transition-delay: 0.3s;
}

.fixedMenu li a span:nth-child(2) {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.fixedMenu li a span {
  font-weight: 300;
  color: inherit;
}

.section_2 {
  height: 100vh;
  position: relative;
  /* background: url(../images/p2_1bg@2x.jpg) no-repeat center bottom; */
  background-size: cover;
}

.section_2 .swiper-container {
  height: 100%;
}

.section_2 .swiper-button-prev,
.section_2 .swiper-button-next {
  width: 30px;
  height: 30px;
  top: inherit;
  bottom: calc(10vh + (270px / 2));
  background-size: 10px;
  background-color: rgba(255,255,255,0.95);
}

.section_2 .swiper-button-prev {
  left: 2%;
}

.section_2 .swiper-button-next {
  right: 2%;
}

.section_2 .list {
  position: absolute;
  left: 0;
  bottom: 10vh;
  width: 100%;
  padding: 0 2.3% 0 120px;
}

.section_2 .title {
  font-family: Kanit;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 160%;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 25px;
  padding: 0px 45px;
  /* display: none; */
}

.section_2 .list2 {
  position: absolute;
  height: 300px;
  left: 0;
  bottom: 10vh;
  width: 100%;
  padding: 0 2.3% 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.section_2 .list2 .item {
  position: relative;
}

.section_2 .list2 .split {
  height: 40px;
  background-color: #000;
  width: 1px;
}

.section_2 .en {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
  min-height: 152px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* -webkit-line-clamp: 6; */
  -webkit-box-orient: vertical;
  /* display: none; */
  font-family: Kanit;
  font-weight: 300;
  letter-spacing: 0;
  text-align: justify;
}
.section_2 .textWords p:last-child {
  padding: 0px;
}
.section_2 .textWords p {
  padding-bottom: 20px;
}

.section_2 .textWords {
  padding: 0px 38px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 25px;
  letter-spacing: 1px;
  width: 806px;
  max-width: 100%;
  /* margin-right: 120px; */
  text-align: justify;
}
.section_2 .title2.ty3 {
  display: inline;
  color: #666666;
  padding-right: 5px;
}
.section_2 .title2 {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  /* identical to box height, or 26px */
  letter-spacing: 0.1em;
  color: #103770;
  min-height: 26px;
  /* padding: 0px 38px; */
  font-size: 14px;

  font-weight: bold;
  color: #333;
}

.section_2 .cn {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 127%;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
  /* padding-top: 21px; */
  text-align: justify;
}

.section_2 .text:after {
  content: "";
  position: absolute;
  top: 4px;
  width: 1px;
  background: #b5b5b5;
  height: 250px;
  position: absolute;
  right: 0;
}

.section_2 .text {
  padding: 0px 45px;
  position: relative;
}
.section_2 .floating .swiper-button-prev,
.section_2 .floating .swiper-button-next {
  display: none;
}
.section_2 .floating .itemall {
  zoom: 1;
  overflow: hidden;
}
.section_2 .floating .items {
  /* float: left; */

  /* width: 33.33%; */
}
.section_2 .floating .item {
  float: left;

  width: 33.33%;
}
.section_2 .floating {
  position: relative;
}

.swiper-button-next {
  width: 9px;
  height: 34px;
  background: url("../images/right.png") no-repeat center center;
  background-size: 100%;
  right: 0;
}

.swiper-button-prev {
  width: 9px;
  height: 34px;
  background: url("../images/left.png") no-repeat center center;
  background-size: 100%;
  left: 0;
}
.section_2 .item:last-child .text:after {
  display: none;
}

.section_2 .swiper-slide.swiper-slide-next + .swiper-slide .text:after {
  display: none;
}

.fp-viewing-HOME .fixedMenu li a {
  color: rgba(255, 255, 255, 0.8);
}

.fixedMenu li a {
  color: #90908f;
}

.fixedMenu li a span:nth-child(1):after {
  background: #90908f;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.fp-viewing-HOME .fixedMenu li a span:nth-child(1):after {
  background: #fff !important;
}

.fp-viewing-HOME .fixedMenu li.active a {
  color: #fff;
}

.fixedMenu li.active a {
  color: #333;
}

.fixedMenu li.active a span:nth-child(1):after {
  background: #000;
}

.section_3 {
  position: relative;
  height: 100vh;
}
.section_3 .floating .imgbox3 img {
  max-width: 100%;
}
.section_3 .floating {
  /* padding-right: 200px; */
  position: relative;
}
.section_3 .floating .imgbox3 {
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 3vh;
  padding-top: 3vh;
}
.section_3 .list {
  position: absolute;
  left: 0px;
  bottom: 9vh;
  width: 100%;
  padding: 0px 2.3%;
}
.section_3 .floating .swiper-container {
  width: 1800px;
  max-width: 100%;
  margin: 0px;
}
.section_3 .floating {
  position: relative;
}

.section_3 .text {
  padding: 0px 45px;
  position: relative;
  margin: 2.3vh 0px;
}

.section_3 .content {
  display: flex;
  position: relative;
  align-items: center;
}

.section_3 .imgbox {
  width: 43%;
  overflow: hidden;
  background: none !important;
}

.section_3 .imgbox img:hover {
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  opacity: 1 !important;
}

.section_3 .imgbox img {
  width: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.section_3 .infor {
  margin-left: 50px;
  width: 140px;
}

.section_3 .name {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height */
  letter-spacing: 0.2em;
  color: #525151;
}

.section_3 .en {
  font-style: normal;
  font-weight: bold;
  font-size: 13px;
  line-height: 21px;
  color: #525151;
  padding-top: 5px;
  padding-bottom: 22px;
  font-family: Kanit;
  letter-spacing: 0;
}
.section_3 .decription p:nth-child(2) {
  font-family: Kanit;
  letter-spacing: 0;
  padding-top: 3px;
}

.section_3 .decription {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 21px;
  /* identical to box height */
  letter-spacing: 0.19em;
  color: #525151;
  /* width: 100px; */
  max-width: 100%;
  letter-spacing: 0;
  font-size: 12px;
}

.section_1 .text,
.section_1 .text * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.mobile-inner-header {
  background: #000;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.fp-viewing-HOME .mobile-inner-nav {
  background-color: rgba(255, 255, 255, 1);
}

.fp-viewing-HOME .mobile-inner-header {
  background: none;
}

.mobile-inner-nav ul {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.mobile-inner-nav {
  background: #fff;
  text-align: right;

  /* padding-right: 56px; */
}

.mobile-inner-header-icon-click span:nth-child(3) {
  opacity: 0;
}

.mobile-inner-header-icon span {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.mobile-inner-header-icon span:nth-child(3) {
  width: 17px;
  margin-left: 7px;
}

.mobile-inner-nav li a span em,
.fixedMenu li a span em {
  display: inline-block;
  width: 2.5em;
  height: 1px;
}

.mobile-inner-nav li a span em {
  width: 2em;
}

.mobile-inner-nav li.active a {
  color: #000;
}

.mobile-inner-nav li.active a span:nth-child(1) {
  border-color: #000;
}

.mobile-inner-nav .close {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat center center;
  background-size: 15px;
  left: 7px;
  top: 14px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  -o-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  opacity: 0;
}

.mobile-inner-nav .close.current {
  -o-transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  opacity: 1;
}

.mobile-inner-header-icon span {
  background: #103770;
}

.fp-viewing-HOME .mobile-inner-header-icon span {
  background: #fff;
}

.section_2 .waplist .title0 {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 160%;
  padding-left: 22px;
  /* or 19px */
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 1.6vh;
}

.section_2 .waplist {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  overflow: auto;
  top: var(--mobile-header-height);
  max-height: var(--mobile-content-height);
  padding-bottom: var(--mobile-content-padding);
}

.section_2 .waplist li:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 59px;
  height: 1px;
  background: #000;
}

.section_2 .waplist li {
  padding-bottom: 6vh;
  margin-bottom: 5.6vh;
  position: relative;
}

.section_2 .waplist li .text:after {
  display: none;
}

.section_2 .waplist li .text {
  padding: 0px 22px;
}

.section_2 .waplist li .en {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 160%;
  /* or 16px */
  letter-spacing: 0.1em;
  color: #666666;
  margin-bottom: 3vh;
  height: auto;
  min-height: 1px;
}

.section_2 .waplist li .title2 {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 160%;
  /* or 19px */
  letter-spacing: 0.1em;
  color: #666666;
  margin: 0;
  margin-bottom: 9px;
  min-height: 1.8vh;
  padding-left: 0px;
  padding-right: 0px;
  font-weight: bold;
}

.section_2 .waplist li .cn {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 160%;
  /* or 16px */
  letter-spacing: 0.1em;
  color: #666666;
  padding: 0;
}

.section_2 .waplist li:last-child:after {
  display: none;
}

.section_2 .waplist li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.section_3 .waplist .bd {
  height: calc(100% - 40px);
  overflow: auto;
}

.section_3 .waplist {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: auto;
  top: var(--mobile-header-height);
  max-height: var(--mobile-content-height);
  padding-bottom: var(--mobile-content-padding);
}

.section_3 .waplist .text {
  padding: 0px 22px;
}

.section_3 .waplist .imgbox {
  width: 57vw;
}

.section_3 .waplist li:last-child .text {
  margin-bottom: 0;
}

.section_3 .waplist .text {
  margin-bottom: 3.6vh;
}

.section_3 .waplist .en {
  padding-top: 16px;
  font-size: 12px;
}

.section_3 .waplist .decription {
  font-size: 12px;
  padding-top: 20%;
  line-height: 1.6;
}

.wap {
  display: none !important;
}

.section_1,
.section_2,
.section_3,
.section_4,
.section_5,
.section_6 {
  overflow: hidden;
}

.section_1 .swiper-slide-active .imgbox {
  animation: scale 22s infinite;
  -webkit-animation: scale 22s infinite;
  animation-fill-mode: forwards;
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
  }

  100% {
    -webkit-transform: scale(1.35, 1.35);
    -o-transform: scale(1.35, 1.35);
    -moz-transform: scale(1.35, 1.35);
    -ms-transform: scale(1.35, 1.35);
    transform: scale(1.35, 1.35);
  }
}
/*
@font-face {
  font-family: "Source Han Sans SC";
  src: url("../fonts/SourceHanSansCN-Normal.otf")
}
*/

@font-face {
  font-family: "Source Han Sans SC";
  src: url("../fonts/SourceHanSansCN-Normal.woff2") format("woff2"),
    url("../fonts/SourceHanSansCN-Normal.woff") format("woff"),
    url("../fonts/SourceHanSansCN-Normal.ttf") format("truetype"),
    url("../fonts/SourceHanSansCN-Normal.eot") format("embedded-opentype"),
    url("../fonts/SourceHanSansCN-Normal.svg") format("svg"),
    url("../fonts/SourceHanSansCN-Normal.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.section_4 {
  position: relative;
  height: 100vh;
  background: url(../images/p4_1bg@2x.png) no-repeat center 96%;
  background-size: 1400px;
}

.section_4 .list {
  position: absolute;
  left: 0px;
  top: 56%;
  width: 100%;
  padding: 0px 2.3%;
  /* padding-right: 234px; */
  position: absolute;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.section_4 .text img {
  max-width: 100%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}
.section_4 .swiper-slide {
  padding: 20px;
}
.section_4 .floating {
  position: relative;
}

.section_4 .text {
  /* padding: 0px 45px; */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 53%;
  -webkit-box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  -moz-box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  -o-box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  -ms-box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  background: #fff;
}

.section_4 .content {
  display: flex;
  position: relative;
  align-items: center;
}

.section_5 .center {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  letter-spacing: 0;
}

.section_5 .title2 {
  font-size: 40px;
  font-family: Kanit;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
  letter-spacing: 0;
}

.section_5 .cn {
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 2px;
  padding: 15px 0;
}

.section_5 .dec2 {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 2px;
  font-family: Kanit;
  letter-spacing: 0;
}

.section_5 {
  position: relative;
  height: 100vh;
  background: url(../images/p5_1bg@2x.jpg) no-repeat center center;
  text-align: center;
}

.section_5 .list {
  position: absolute;
  left: 0px;
  bottom: 9vh;
  width: 100%;
  padding: 0px 2.3%;
}

.section_5 .text img {
  max-width: 100%;
}

.section_5 .floating {
  position: relative;
}

.section_5 .text {
  padding: 0px 45px;
  padding-top: 40vh;
  position: relative;
}

.section_5 .title {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
}

.section_5 .dec {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
  margin-top: 51px;
}

.section_6,
.section_6 .content p,
.section_6 .content,
.section_6 .content a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.section_6 {
  height: 100vh;
  position: relative;
  /* background: url(../images/lxwm_bg@2x.png) no-repeat right bottom #DDDEDF; */
  background-size: 1144px;
}

.section_6 .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0px 3.4%;
  width: 100%;
}

.section_6 .content p {
  font-family: Source Han Sans SC;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 160%;
  /* or 22px */
  letter-spacing: 0.1em;
  color: #666666;
}

.section_6 .content p a:hover {
  opacity: 0.4;
}

.section_6 .content p a {
  color: inherit;
}

.section_6 .content p em {
  display: inline-block;
  width: 25px;
  height: 3px;
}

.section_6 .imgbox {
  margin: 17px 0;
}

.section_6 .imgbox img {
  max-width: 100%;
}

.section_6 .content .copy a {
  color: inherit;
}

.section_6 .content .copy a:hover {
  opacity: 0.4;
}

.section_6 .content .copy {
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.1em;
  color: #666666;
  padding-bottom: 28px;
  padding-top: 19vh;
}

.section_4 .waplist {
  position: absolute;
  left: 0;
  bottom: 7vh;
  width: 100%;
  max-height: 74vh;
  overflow: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.section_4 .waplist li {
  float: left;
  width: 33.3333%;
}

.section_4 .waplist li .text {
  padding: 0;
  height: 12vh;
}

.section_4 .waplist li .text img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.section_5 .waplist li:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 26px;
  height: 1px;
  background: #000;
}

.section_5 .waplist {
  position: absolute;
  left: 0px;
  bottom: 12vh;
  width: 100%;
  max-height: 70vh;
  overflow: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.section_5 .waplist li:last-child {
  margin-bottom: 0px;
}

.section_5 .waplist li {
  height: auto;
  padding-top: 30px;
  position: relative;
  margin-bottom: 7vh;
}

.section_5 .waplist li .text {
  padding: 0;
}

.section_5 .waplist li .title {
  text-shadow: none;
  font-size: 12px;
}

.section_5 .waplist li .dec {
  font-size: 12px;
  margin-top: 12px;
}

.section_6 .content p span {
  display: inline-block;
}

.iw_poi_title {
  color: #cc5522;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  padding-right: 13px;
  white-space: nowrap;
}

.iw_poi_content {
  font: 12px arial, sans-serif;
  overflow: visible;
  padding-top: 4px;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

.mapcontent {
  width: 1093px;
  height: 258px;
  max-width: 100%;
  margin: 17px 0;
}

.mapcontent * {
  box-sizing: content-box;
}

.teac {
  text-align: center;
  display: block;
  display: none;
}

.mobile-inner-nav li:last-child {
  padding-right: 56px;
  color: #90908f;
}

.mobile-inner-nav li:last-child a,
.fixedMenu li:last-child a {
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
  text-indent: 0px;
}
.fixedMenu li:last-child a {
  /* font-family: Kanit */
}
.fixedMenu li:last-child {
  color: #90908f;
}

.section_6 .content p.block span {
  display: block;
  line-height: 1.8;
}

.section_6 .content p.block em {
  display: none;
}

.bannerImgText {
  background: url(../images/p3_1bg@2x.jpg) no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: relative;
  z-index: 55;
}

.bannerImgText .content2 {
  padding: 0px 4%;
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  bottom: 12.25vh;
}

.bannerImgText .words p {
  padding-bottom: 16px;
}

.bannerImgText .words {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
  padding-bottom: 20px;
  width: 644px;
  max-width: 100%;
}

.bannerImgText,
.bannerImgText * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.bannerImgText .morebase:hover {
  padding-right: 60px;
}

.bannerImgText .morebase {
  font-size: 14px;
  font-family: Kanit;
  font-weight: 400;
  color: #ffffff;
  line-height: 27px;
  letter-spacing: 1px;
  display: inline-block;
  padding-right: 49px;
  background: url(../images/icon_jt_white@2x.png) no-repeat right center;
  background-size: 41px;
}

.itemList {
  text-align: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  bottom: 10.75vh;
  padding: 0px 5%;
  padding-right: 153px;
}

.itemList a:nth-child(2) {
  float: right;
}

.itemList a {
  float: left;
  width: calc((100% - 40px) / 2);
}

.itemList a * {
  display: block;
}

.itemList .imgbox {
  position: relative;
  overflow: hidden;
  height: 50vh;
}

.itemList a:hover .img {
  -webkit-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.itemList .img {
  height: 100%;
}

.itemList .center {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.itemList .cn {
  font-size: 20px;

  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 1px;
}

.itemList .en {
  font-size: 18px;

  font-weight: 400;
  color: #ffffff;
  line-height: 27px;
  letter-spacing: 1px;
  padding-top: 6px;
}

.itemList,
.itemList * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.section_3 .hd {
  font-size: 0px;
  padding: 0px 45px;
  padding-bottom: 40px;
}

.section_3 .hd a {
  font-size: 20px;

  font-weight: 400;
  color: #333333;
  line-height: 36px;
  display: inline-block;
  margin-right: 40px;
  position: relative;
  padding-bottom: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  width: 100px;
}

.section_3 .hd a.current,
.section_3 .hd a:hover {
  font-size: 24px;

  font-weight: 400;
  color: #103770;
}

.section_3 .hd a:hover:after,
.section_3 .hd a.current:after {
  width: 40px;
}

.section_3 .floating li {
  float: left;
  width: 33.333%;
  /* margin-bottom: 4vh; */
}

.section_3 .hd a:after {
  content: "";
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  width: 40px;
  height: 2px;
  background: #103770;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0;
}

.teamArticle {
  padding-top: 155px;
  zoom: 1;
  overflow: hidden;
  padding-bottom: 187px;
  background: url(../images/dayone@2x.png) no-repeat center 90%;
  background-size: 100%;
  margin-bottom: 70px;
  /* display: flex; */
  width: 1000px;
  margin: auto;
  /* align-items: center; */
  text-align: left;
  max-width: 100%;
}

.teamArticle .left {
  float: left;
  /* padding-top: 17px; */
  width: 56%;
}

.teamArticle .return {
  font-size: 18px;

  font-weight: 400;
  color: #333333;
  line-height: 27px;
  letter-spacing: 1px;
  display: inline-block;
  padding-left: 59px;
  background: url(../images/arrgrey.png) no-repeat left center;
  background-size: 42px;
  margin-bottom: 42px;
}

.teamArticle .infor {
  /* padding-top: 80px; */
  font-size: 28px;
  font-family: Kanit;
  font-weight: 500;
  color: #333333;
  line-height: 36px;
}

.teamArticle .name {
  font-size: 28px;

  font-weight: 500;
  color: #333;
  display: inline-block;
}

.teamArticle .en {
  display: inline-block;
  font-family: Kanit-Medium;
  font-weight: 500;
}

.teamArticle .position {
}

.teamArticle .content p:last-child {
  padding: 0px;
}

.teamArticle .title {
  font-size: 20px;

  font-weight: 400;
  color: #103770;
  line-height: 36px;
  display: inline-block;
  padding-top: 10px;
  color: #333333;
}

.teamArticle .titleen {
  display: inline-block;
  font-size: 20px;

  color: #333333;
  line-height: 36px;
  border-left: 1px solid #333;
  line-height: 1;
  padding-left: 15px;
  margin-left: 15px;
}

.teamArticle .content {
  margin-top: 21px;
  padding-left: 24px;
  border-left: 2px solid #808080;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

.teamArticle .content p {
  padding-bottom: 70px;
}

.teamArticle .imgbox {
  width: 36%;
  margin-left: 2%;
}

.teamArticle .imgbox img {
  width: 100%;
}

.teamArticle,
.teamArticle * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

#channel * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.fp-viewing-HOME .wap_nav,
.fp-viewing-ABOUT .wap_nav,
.fp-viewing-TEAM .wap_nav,
.fp-viewing-PORTFOLIO .wap_nav,
.fp-viewing-NEWS .wap_nav,
.fp-viewing-CONTACT .wap_nav {
  background: none;
}

.wap_nav {
  /* background: #fff */
}

.newsList {
  padding-top: 150px;
  padding-left: 12.5%;
  padding-right: 12.5%;
}

.newsList .hd {
  font-size: 0px;
  padding-bottom: 28px;
}

.newsList .hd a {
  font-size: 20px;

  font-weight: 400;
  color: #333333;
  line-height: 36px;
  display: inline-block;
  margin-right: 40px;
  position: relative;
  padding-bottom: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  width: 100px;
}

.newsList .hd a.current,
.newsList .hd a:hover {
  font-size: 24px;

  font-weight: 400;
  color: #103770;
}

.newsList .hd a.current:after,
.newsList .hd a:hover:after {
  width: 40px;
}

.newsList .hd a:after {
  content: "";
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  width: 40px;
  height: 2px;
  background: #103770;
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0;
}

.newsList .bd {
}

.newsList .bd ul li:nth-child(2n) {
  float: right;
}

.newsList .bd ul:after {
  content: "";
  display: table;
  clear: both;
}

.newsList .bd ul {
}

.newsList .bd ul li {
  width: calc((100% - 40px) / 2);
  float: left;
  margin-bottom: 40px;
}

.newsList .bd ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 60%;
}

.newsList .bd ul li img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.newsList .bd ul li .content {
}

.newsList .bd ul li a * {
  display: block;
}

.newsList .bd ul li .content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 0px 24px;
}

.newsList .bd ul li .title {
  font-size: 16px;

  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsList .bd ul li .dec {
  font-size: 14px;

  font-weight: 400;
  color: #ffffff;
  line-height: 21px;
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsList .bd ul li .date {
  font-size: 14px;

  color: #ffffff;
  line-height: 16px;
  line-height: 1;
  padding-bottom: 28px;
}

.pagesize {
  text-align: right;
  font-size: 0px;
  padding-bottom: 67px;
}

.pagesize a {
  font-size: 14px;

  color: #333333;
  line-height: 16px;
  margin-left: 40px;
  opacity: 0.5;
}

.pagesize a.current,
.pagesize a:hover {
  color: #103770;
  opacity: 1;
}

.pagesize a.cur {
  color: #333333;
  opacity: 1;
}

.pagesize *,
.pagesize,
.newsList,
.newsList * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.newsList .bd ul li:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.teamArticle .return:hover {
  padding-right: 60px;
}

.section_6 .content .list:after {
  content: "";
  display: table;
  clear: both;
}

.section_6 .content .list {
  /* zoom: 1; */

  /* overflow: hidden; */
  padding-right: 120px;
}
.section_6 .content .list li:last-child:after {
  display: none;
}
.section_6 .content .list li:last-child {
  margin-right: 00px;
  border: none;
}

.section_6 .content .list li:after {
  width: 1px;
  height: 100%;
  background: rgba(151, 151, 151, 1);
  position: absolute;
  right: 0px;
  top: 0px;
  content: "";
}
.section_6 .content .list li {
  text-align: left;
  float: left;
  margin-right: 110px;
  position: relative;
  padding-right: 33px;
  margin-right: 33px;
  text-align: center;
}

.section_6 .content .list li img {
  width: 80px;
  display: none;
  max-width: 90%;
}
.section_6 .content .list .en {
  font-size: 16px;
  font-family: Kanit;
  font-weight: 400;
  color: #666;
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section_6 .content .list .title {
  font-size: 16px;
  font-weight: normal;
  color: #666;
  line-height: 1;
}

.section_6 .content .list .site {
  font-size: 14px;
  font-family: Kanit, sans-serif;
  font-weight: 300;
  color: #666;
  line-height: 1;
  letter-spacing: 0;
}

.section_6 .content .information p {
  padding-bottom: 10px;
  letter-spacing: 0;
}

.section_6 .content .information {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 27px;
  padding-top: 7vh;
  padding-bottom: 7vh;
}

.section_6 .content .information p span {
  margin-right: 80px;
}

.section_6 .content * {
  transition: all 0.2s;
}

.section_1 .swiper-container-fade .swiper-slide {
  opacity: 0;
  width: 100vw !important;
}

.section_1 .swiper-container-fade .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.section_3 .imgbox:hover img {
  opacity: 0;
}

.section_3 .imgbox {
  background: url("../images/current.png") no-repeat center center;
  background-size: cover;
}
.copy-footer a {
  color: inherit;
}
.copy-footer {
  padding-bottom: 2.6vw;
}

.section_6 .content .link {
  font-size: 0;
  padding-bottom: 0.6vw;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.section_6 .content .link a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 14px;
}

.section_6 .content .link a > img {
  width: 35px;
}

.section_6 .content .link a:hover > span {
  bottom: 60px;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.section_6 .content .link a > span {
  position: absolute;
  bottom: 69px;
  left: 50%;
  transform: translate(-50%, 0%);
  background: #e7ebf0;
  box-shadow: 0 1px 8px rgba(200, 200, 200, 0.6);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  padding: 5px;
  margin: 0;
}

.section_6 .content .link a > span img {
  width: 150px;
}

.section_6 .content .link a > span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e7ebf0 transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
}

@font-face {
  font-family: "Kanit";
  src: url("../fonts/Kanit.woff2") format("woff2"),
    url("../fonts/Kanit.woff") format("woff"),
    url("../fonts/Kanit.ttf") format("truetype"),
    url("../fonts/Kanit.eot") format("embedded-opentype"),
    url("../fonts/Kanit.svg") format("svg"),
    url("../fonts/Kanit.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.fp-viewing-NEWS .fixedMenu li.active a span:nth-child(1):after {
  /* background:#fff; */
}
.fp-viewing-NEWS .fixedMenu li.active a {
  /* color: #ffffff; */
}

.fixedMenu li a span em {
  display: inline-block;
  vertical-align: middle;
  width: 2.4em;
  height: 1px;
}

.w1020 {
  width: 1020px;
  max-width: 100%;
  margin: auto;
}

.team {
  padding-top: 166px;
  zoom: 1;
  overflow: hidden;
}

.team li {
  float: left;
  width: 25%;
  padding: 0.5px;
}

.team li a {
  display: block;
  position: relative;
}

.team li a * {
  display: block;
  position: relative;
  overflow: hidden;
}

.team li a:hover .imgbox:after {
  width: 100%;
}

.team li a .imgbox:after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: 0;
  height: 7px;
  background: #c5a86e;
  width: 0;
  transition: all 0.4s;
  z-index: 6;
  content: "";
}

.team li a .imgbox {
  position: relative;
}

.team li a .imgbox *.current {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.team li a .imgbox img {
  width: 100%;
  z-index: 4;
  position: relative;
}

.team li a .infor {
  position: absolute;
  width: 100%;
  padding: 0 13px 17px 13px;
  z-index: 5;
  left: 0;
  color: #fff;
  bottom: 0;
}

.team li a .infor p {
  font-size: 20px;
  font-family: Kanit;
  font-weight: 500;
  line-height: 36px;
}

.team li a .infor p:nth-child(2) {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
}

.team,
.team * {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.team li a:hover .imgbox img:nth-child(1) {
  opacity: 0;
}

.team li a:hover .infor p {
  color: #c5a86e;
}

@font-face {
  font-family: "Kanit";
  src: url("../fonts/Kanit-Medium.woff2") format("woff2"),
    url("../fonts/Kanit-Medium.woff") format("woff"),
    url("../fonts/Kanit-Medium.ttf") format("truetype"),
    url("../fonts/Kanit-Medium.eot") format("embedded-opentype"),
    url("../fonts/Kanit-Medium.svg") format("svg"),
    url("../fonts/Kanit-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

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

.teamArticle .return:hover {
  padding-left: 50px;
}
.section_4 .floating .titleText p:nth-child(3),
.section_4 .floating .titleText p:nth-child(4) {
  font-family: "Kanit";
  font-weight: 300;
  letter-spacing: 0;
}
.section_4 .floating .titleText {
  font-size: 16px;
  font-weight: normal;
  color: #666666;
  line-height: 1.5;
  letter-spacing: 1px;
  padding-bottom: 8vh;
  padding-left: 10px;
  padding-right: 10px;
}
.section_4 .floating .swiper-container {
  /* margin-right: 300px; */
  /* width: 1800px; */
  /* max-width: 100%; */
  /* margin: 0px; */
  /* padding-right: 200px; */
}
.section_4 .floating .decText {
  width: 680px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  letter-spacing: 1px;
  max-width: 100%;
  margin-bottom: 4vh;
}

.section_4 .floating .conttext {
  position: absolute;
  background: linear-gradient(225deg, #405f8d 0%, #10376d 100%);
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-left: 10px; */
  /* padding-right: 10px; */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translate(0%, -120%);
  font-family: Kanit;
}

.section_4 .floating .text:hover .conttext {
  transform: translate(0%, 0%);
}

.section_4 .floating .name {
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1;
  width: 144px;
  margin: 0 auto 12px;
  max-width: 75%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 12px;
  letter-spacing: 0;
}

.section_4 .floating .dec {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.section_4 .swiper-button-prev,
.section_4 .swiper-button-next {
  /* opacity: 0 */
}

.section_6 .content .information2 {
  zoom: 1;
  /* overflow: hidden; */
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.section_6 .content .list li:nth-child(2):hover div {
  color: #235aa7 !important;
  cursor: pointer;
}
.section_6 .content .information2 .item {
  float: left;
  padding-left: 78px;
  background: url("../images/p6_1bj@2x.png") no-repeat left center;
  background-size: 68px;
  /* height: 55px; */
  padding-top: 6px;
  margin-right: 40px;
  padding-bottom: 5px;
}

.section_6 .content .information2 .item:nth-child(2) {
  padding-left: 44px;
  background: url("../images/p6_1sz@2x.png") no-repeat left center;
  background-size: 34px;
  margin-right: 0;
}
.section_6 .content .information2 .name span {
  font-size: 12px;
  font-family: Kanit;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
}
.section_6 .content .information2 .name {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #666;
}
.section_6 .content .information2 .ensite {
  font-size: 12px;
  font-family: Kanit;
  font-weight: 300;
  width: 300px;
  max-width: 100%;
  line-height: 1;
  letter-spacing: 0;
  color: #666;
}
.section_6 .content .information2 .infor {
  font-size: 12px;
  color: #666;
  line-height: 1;
  padding-top: 3px;
  padding-bottom: 5px;
  font-weight: 300;
}

.section_6 .content .link span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 35px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
}

video {
  /* position: absolute; */
  left: 0px;
  top: 0px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.xuanzhuan *,
.enStyle,
.enStyle * {
  font-family: Kanit, serif !important;
}

html,
body {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.section_2 .title2.ty2 {
  padding: 0 45px;
}

.section_3 .swiper-button-next {
  right: 5%;
}

.topMenu {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 75px;
  text-align: right;
  padding-right: 21px;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
}

.topMenu ul {
  transition: all 0.4s;
}

.topMenu ul li {
}

.topMenu ul li a {
  color: #fff;
}

.topMenu ul li {
  /* margin-bottom: 3.9vh; */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  /* padding-right: 30px; */
  position: relative;
}

.topMenu ul li a {
  /* identical to box height */
  display: block;
  letter-spacing: 0.21em;
  font-weight: normal;
}

.topMenu ul li a span:nth-child(1):after {
  content: "";
  right: 0;
  width: 1px;
  height: 65%;
  background: #fff;
  position: absolute;
  transition: all 0.4s;
  top: 50%;
  transform: translate(0%, -50%);
}

.topMenu ul li.current a span:nth-child(1):after {
  height: 64%;
}

.topMenu ul li a span:nth-child(1) {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  font-family: Kanit;
  font-style: normal;
}

.topMenu ul li a span:nth-child(1) {
  opacity: 1;
  visibility: visible;
  z-index: 4;
  /* display: none; */
}

.topMenu ul li a span:nth-child(1) * {
  display: inline-block;
  transform: translate(10px, 0%);
  z-index: -1;
  opacity: 0;
  font-weight: 300;
  visibility: hidden;
  transition: transform, z-index, opacity, 0.6s;
}

.topMenu ul li a span:nth-child(1) * {
  z-index: 4;
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0%);
}

.topMenu ul li a span:nth-child(1) * :nth-child(1) {
  transition-delay: 0s;
}

.topMenu ul li a span:nth-child(1) * :nth-child(2) {
  transition-delay: 0.1s;
}

.topMenu ul li a span:nth-child(1) * :nth-child(3) {
  transition-delay: 0.2s;
}

.topMenu ul li a span:nth-child(1) * :nth-child(4) {
  transition-delay: 0.3s;
}

.topMenu ul li a span:nth-child(2) {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.topMenu ul li a span {
  font-weight: 300;
  color: inherit;
}

.fp-viewing-ABOUT .topMenu ul {
  transform: translate(0%, -30px);
}
.fp-viewing-CONTACT .topMenu ul li a,
.fp-viewing-NEWS .topMenu ul li a,
.fp-viewing-PORTFOLIO .topMenu ul li a,
.fp-viewing-TEAM .topMenu ul li a,
.fp-viewing-ABOUT .topMenu ul li a {
  color: #666;
}

.fp-viewing-CONTACT .topMenu ul li a span:nth-child(1):after,
.fp-viewing-NEWS .topMenu ul li a span:nth-child(1):after,
.fp-viewing-PORTFOLIO .topMenu ul li a span:nth-child(1):after,
.fp-viewing-TEAM .topMenu ul li a span:nth-child(1):after,
.fp-viewing-ABOUT .topMenu ul li a span:nth-child(1):after {
  background: #666 !important;
}

.fp-viewing-TEAM .topMenu ul {
  transform: translate(0%, -60px);
}

.fp-viewing-PORTFOLIO .topMenu ul {
  transform: translate(0%, -90px);
}

.fp-viewing-NEWS .topMenu ul {
  transform: translate(0%, -120px);
}
.fp-viewing-CONTACT .topMenu ul {
  transform: translate(0%, -150px);
}

.listfloat {
  position: relative;
  width: 1800px;
  max-width: 96%;
  margin: 0;
  padding-right: 90px;
}

.waplistCom {
  zoom: 1;

  overflow: auto;

  height: 57vh;
}
.waplistCom ul {
}
.waplistCom ul li {
  float: left;
  width: 50%;
  padding: 15px;
}
.waplistCom ul li .text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  box-shadow: 0px 8px 15px rgba(68, 68, 68, 0.13);
  background: #fff;
}
.waplistCom ul li .text img {
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}
.waplistCom ul li .conttext {
  position: absolute;
  background: linear-gradient(225deg, #405f8d 0%, #10376d 100%);
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-left: 10px; */
  /* padding-right: 10px; */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translate(0%, -120%);
  font-family: Kanit;
}
.waplistCom ul li .name {
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1;
  width: 144px;
  margin: 0 auto;
  max-width: 75%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 12px;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.waplistCom ul li .dec {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.waplistCom ul li:hover .conttext {
  transform: translate(0%, 0%);
}

.rcupdate {
  height: 100vh;
  position: relative;
}
.rcupdate .content {
  position: absolute;
  left: 0px;
  bottom: 10vh;
  width: 100%;
  padding: 0px 2.3%;
  padding-right: 120px;
}
.rcupdate .content .more {
  font-size: 12px;
  font-family: Source Han Sans SC, serif;
  font-weight: 400;
  color: #333333;
  line-height: 18px;
  display: inline-block;
  opacity: 0.8;
  padding-right: 40px;
  background: url("../images/p3_3more@2x.png") no-repeat right center;
  background-size: 34px;
}

.rcupdate .content .wrap4 {
  padding: 0px 45px;
  position: relative;
}

.rcupdate .content .title {
}

.rcupdate .content .en {
  font-size: 16px;
  font-family: Kanit;
  font-weight: 300;
  color: #333333;
  line-height: 24px;
  padding-top: 5vh;
  padding-bottom: 1vh;
}

.rcupdate .content .cn {
  font-size: 16px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
}

.rcupdate .content .list {
  padding-top: 8vh;
}

.rcupdate .content .list li:last-child {
  border: none;
}

.rcupdate .content .list li {
  float: left;
  width: 33.333%;
  border-right: 1px solid rgba(151, 151, 151, 0.5);
  padding-left: 45px;
}

.rcupdate .content .infor1 {
  font-size: 14px;
  font-family: Kanit-Regular, Kanit;
  font-weight: 400;
  color: #103770;
  line-height: 21px;
  padding-bottom: 11px;
}

.rcupdate .content .infor1 strong {
}

.rcupdate .content .infor1 span {
  font-size: 12px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #333333;
  padding-left: 10px;
  opacity: 0.6;
}

.rcupdate .content .imgbox {
}

.rcupdate .content .imgbox img {
  width: 200px;
  max-width: 100%;
}

.rcupdate .content .title2 {
  font-size: 14px;
  font-family: Kanit;
  font-weight: 300;
  color: #333333;
  line-height: 21px;
  padding-top: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 334px;
  max-width: 100%;
}

.rcupdate .content .dec {
  font-size: 14px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #666666;
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rcupdate .content .btn {
  padding-top: 40px;
}

.rcupdate .content .btn a {
  width: 73px;
  height: 24px;
  background: #10376d;
  margin-right: 17px;
  float: left;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #ffffff;
}

.rcupdate .content .btn a.btn2 {
  background: #405f8d;
}

.rcupdate .content .h {
  height: 93px;
}

.newsAll {
  padding-top: 159px;

  padding-left: 3%;

  padding-right: 3%;
}

.newsAll .wrap3 {
  padding: 0 13.8%;
  position: relative;
}

.newsAll .return {
  font-size: 12px;
  font-family: Source Han Sans SC, serif;
  font-weight: 400;

  color: #333333;

  line-height: 18px;

  position: absolute;

  left: 0;

  top: 0;

  padding-left: 38px;

  background: url(../images/arrgrey.png) no-repeat left center;

  background-size: 33px;

  text-transform: uppercase;
}
.newsAll .tab {
}
.newsAll .hd {
  zoom: 1;

  overflow: hidden;
}
.newsAll .hd a:after {
  content: "";
  width: 0px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 0px;
  bottom: 0px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}
.newsAll .hd a {
  float: left;
  font-size: 16px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.6);
  line-height: 24px;
  letter-spacing: 1px;
  margin-right: 85px;
  padding-bottom: 13px;
  position: relative;
}

.newsAll .hd a.current:after,
.newsAll .hd a:hover:after {
  width: 40px;
}
.newsAll .hd a.current,
.newsAll .hd a:hover {
  color: #333333;
}
.newsAll .hd a:hover {
}
.newsAll .bd {
  padding-top: 46px;
}
.newsAll .model {
}
.newsAll .list {
  padding-right: 210px;
}
.newsAll .list li {
  position: relative;

  padding-left: 280px;

  padding-bottom: 24px;

  border-bottom: 1px solid #d3d6d8;

  margin-bottom: 25px;
}
.newsAll .list li .imgbox {
  position: absolute;

  width: 259px;

  overflow: hidden;

  left: 0;

  top: 0px;

  height: calc(100% - 24px);
}
.newsAll .list li .imgbox a {
  display: block;

  height: 100%;
}
.newsAll .list li .content {
  position: relative;
  padding-right: 120px;
}
.newsAll .list li .title {
}
.newsAll .list li .title a {
  display: block;

  font-size: 18px;

  font-family: Kanit;

  font-weight: 300;

  color: #333333;

  line-height: 27px;

  margin-bottom: 10px;
}
.newsAll .list li .dec {
  font-size: 18px;

  font-family: Source Han Sans SC;

  font-weight: 400;

  color: #666666;

  line-height: 27px;

  margin-bottom: 34px;
}
.newsAll .list li .time {
  font-size: 14px;

  font-family: Kanit;

  font-weight: bold;

  color: #103770;

  line-height: 21px;

  padding-top: 34px;
}
.newsAll .list li .btn {
  position: absolute;

  top: 50%;

  right: 0;

  -o-transform: translate(0%, -50%);

  -webkit-transform: translate(0%, -50%);

  -moz-transform: translate(0%, -50%);

  -ms-transform: translate(0%, -50%);

  transform: translate(0%, -50%);
}
.newsAll .list li .btn a:hover {
  background: #10376d;
  border-color: #10376d;
  color: #fff !important;
}
.newsAll .list li .btn a {
  display: block;

  width: 73px;

  height: 24px;

  background: #ffffff;

  border: 1px solid #10376d;

  text-align: center;

  line-height: 23px;

  font-size: 14px;

  font-family: Source Han Sans SC;

  font-weight: 400;

  color: #10376d;
}
.newsAll .list li .btn a.btn2:hover {
  background: #405f8d;
  border-color: #405f8d;
}
.newsAll .list li .btn a.btn2 {
  margin-top: 13px;

  color: #405f8d;

  border-color: #405f8d;
}
.newsAll .pagesize2 {
  zoom: 1;

  overflow: hidden;

  padding-top: 11px;

  padding-bottom: 42px;
}
.newsAll .pagesize2 li {
  float: left;

  margin-right: 15px;
}
.newsAll .pagesize2 li a {
  line-height: 36px;

  border: 1px solid #d3d6d8;

  display: block;

  padding: 0px 16px;

  font-size: 16px;

  font-family: PingFangSC-Regular, PingFang SC;

  font-weight: 400;

  color: #545f64;
}
.newsAll .pagesize2 li a:hover {
}
.newsAll .pagesize2 li a.current {
}
.newsAll .pagesize2 li span {
  width: 42px;

  height: 38px;

  border: 1px solid #d3d6d8;

  text-align: center;

  display: block;

  line-height: 45px;
}
.newsAll .pagesize2 li select {
  width: 105px;

  height: 38px;

  border: 1px solid #d3d6d8;

  display: block;

  font-size: 16px;

  font-family: PingFangSC-Regular, PingFang SC;

  font-weight: 400;

  color: #545f64;

  padding-left: 14px;

  appearance: none;

  -moz-appearance: none;

  -webkit-appearance: none;

  background: url("../images/p5_2xiala@2x.png") no-repeat 79px center;

  background-size: 9px;
}
.newsAll,
.newsAll * {
  transition: all 0.4s;
}
.newsAll .list li .imgbox a:hover {
  transform: scale(1.05, 1.05);
}
.newsAll .list li .title a:hover {
  color: #103770;
}

.articleContent {
  padding-top: 137px;

  width: 64.5%;

  margin: auto;

  max-width: 100%;
}
.articleContent .wrap4 {
}
.articleContent .return {
  font-size: 12px;

  font-family: Kanit;

  font-weight: 300;

  color: #333333;

  line-height: 18px;

  display: block;

  padding-left: 38px;

  background: url("../images/arrgrey.png") no-repeat left center;

  background-size: 33px;

  text-transform: uppercase;
}
.articleContent .title {
  font-size: 20px;

  font-family: Kanit;

  font-weight: 300;

  color: #333333;

  line-height: 30px;

  padding-top: 71px;

  padding-bottom: 6px;
}
.articleContent .infor {
  font-size: 14px;

  font-family: Kanit;

  font-weight: 400;

  color: #103770;

  line-height: 21px;

  padding-bottom: 30px;
}
.articleContent .infor strong {
}
.articleContent .infor span {
  font-family: Kanit;

  font-weight: 300;

  color: #000000;

  padding-left: 10px;
}
.articleContent .content {
  font-size: 14px;

  font-family: Kanit;

  font-weight: 300;

  color: #333333;

  line-height: 26px;

  padding-bottom: 34px;

  border-bottom: 1px solid #dddddd;
}
.articleContent .content * {
  max-width: 100%;
}
.articleContent .content img {
  width: initial !important;
  max-width: 100% !important;
  height: auto !important;
}
.articleContent .lastnext p:nth-child(2) a {
  text-align: right;
}
.articleContent .lastnext {
  zoom: 1;
  display: flex;
  align-items: stretch;

  overflow: hidden;
}
.articleContent .lastnext p {
  float: left;

  width: 50%;
}
.articleContent .lastnext p a {
  display: block;
  height: 100%;

  padding-bottom: 16px;

  border-bottom: 1px solid #dddddd;

  padding-top: 20px;
}
.articleContent .lastnext p:nth-child(2) a .en {
  background: url("../images/next@2x.png") no-repeat right center;
  background-size: 6px;
  margin-right: 5px;
}
.articleContent .lastnext p a .en {
  font-size: 14px;

  font-family: Source Han Sans SC;

  font-weight: 400;

  color: #999999;

  line-height: 21px;

  display: block;

  padding-left: 28px;

  padding-right: 28px;

  background: url("../images/last@2x.png") no-repeat left center;

  background-size: 6px;

  margin-left: 5px;
}
.articleContent .lastnext p a .title {
  font-size: 14px;
  font-family: Kanit;
  font-weight: 300;
  color: #333333;
  line-height: 27px;
  margin-top: 16px;
  display: block;
  padding: 0;
}
.articleContent .home {
  margin-bottom: 21px;
}
.articleContent .home a {
  display: block;

  padding-top: 18px;

  font-size: 14px;

  font-family: Source Han Sans SC;

  font-weight: 400;

  color: #999999;

  line-height: 21px;

  padding-bottom: 18px;

  padding-left: 28px;

  padding-right: 28px;

  background: url("../images/last@2x.png") no-repeat left center;

  background-size: 6px;

  margin-left: 5px;
}
.rcupdate .content,
.rcupdate .content * {
}
.newsAll .list li .btn a.btn2:hover {
  color: #fff;
  background: #405f8d !important;
}

.rcupdate .content .list:after {
  content: "";
  display: table;
  clear: both;
}
.rcupdate .content .title-1 {
  margin-right: 12%;
}
.rcupdate .content .title-1 .cn-1 {
  font-size: 17px;
  font-family: Kanit;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
  padding-bottom: 1vh;
}
.rcupdate .content .title-1 .en-1 {
  font-size: 16px;

  font-family: Kanit;

  font-weight: 300;

  color: #333333;

  line-height: 24px;

  margin-bottom: 4vh;

  overflow: hidden;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  /* margin-right: 4%; */
}

.rcupdate {
  overflow: hidden;
}
