﻿@charset "utf-8";


* {
  box-sizing: border-box;
  outline: none;
}

i,
em {
  font-style: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0px;
  border: 0;
  font-size: 100%;
  outline: none;
}

caption,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0px;
}

html {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

html::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #d2e4f1;
}

html::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #d2e4f1;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0;
  width: 17px;
  height: 17px;
  background-color: #036eb8;
}

body {
  font: 14px/1.8 "SourceHanSansSC";
  margin: 0 auto;
  color: #646464;
  font-weight: 300;
  background-color: #f3f3f3;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

strong {
  font-weight: bold;
}

table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  margin: 0 auto !important;
}

img {
  border: 0;
}

input,
textarea,
select,
option {
  background: none;
  outline: 0;
  font-family: "Microsoft Yahei", "微软雅黑", "Hiragino Sans GB", "冬青黑体", tahoma, "times new roman", Helvetica, Arial;
  padding: 0;
  margin: 0;
}

input {
  outline: none;
}

input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

::-moz-selection {
  background: #036eb8;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #036eb8;
  color: #fff;
  text-shadow: none;
}

select {
  outline: none;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:link,
a:visited {
  text-decoration: none;
}

a:active,
a:hover {
  text-decoration: none;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0px;
}

.clearfix:after {
  clear: both;
}


/*header*/
#header {
  /*position: relative;*/
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  position: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99990;
}

#header.on {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#header:before {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  content: '';
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  opacity: 0;
}

#header.headerFixed:before {
  opacity: 1;
}

#header .mask {
  height: 100px;
  overflow: hidden;
  padding-top: 33px;
  -webkit-transition: height 0.25s, background-color 0.25s;
  transition: height 0.25s, background-color 0.25s;
}

#header #logo {
  width: 280px;
  height: 100px;
  position: absolute;
  z-index: 10001;
  /* float: left; */
  /*background: #046eb8;*/
  top: 0;
  left: 0;
}

/* #header.on #logo{
  background: #046eb8;
} */
#header #logo a {
  display: block;
  margin: 29px auto;
}

#header #logo a .img {
  display: block;
  display: block;
  width: 100%;
  height: 42px;
  overflow: hidden;
  background-size: contain;
  background-position: 50%;
  background-image: url("../picture/logo1.png");
  background-repeat: no-repeat;
  text-indent: 101%;
  white-space: nowrap;
}

#header.on #logo a .img {
  background-image: url("../picture/logo.png");
  background-repeat: no-repeat;
}

#header #logo p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

#header #logo p img {
  width: 21px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

#header #logo p i {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}

#header #haedNav {
  color: #fff;
  float: right;
  margin-right: 150px;
  position: relative;
}

#header #haedNav .gnbList>li {
  position: relative;
  float: left;
  letter-spacing: 1px;
}

#header #haedNav .gnbList>li a>span {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

#header.on #haedNav .gnbList>li a>span {
  color: rgba(0, 0, 0, 0.85);
}

#header #haedNav .gnbList>li a>span::before {
  content: '';
  position: absolute;
  bottom: -41px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#header.on #haedNav .gnbList>li a>span::before {
  background-color: rgba(11, 115, 186, 0.85);
}

#header #haedNav .gnbList>li a>span:hover::before,
#header #haedNav .gnbList>li.active a>span::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

/*****  *****/
.nav-on-icon.main-move-line {
  width: 690px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 45px;
  z-index: 100;
}

.nav-on-icon.main-move-line>span {
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

#header #haedNav .gnbList>li .depth01 {
  display: block;
  position: relative;
  padding: 10px 23px;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  text-align: center;
}

#header #haedNav .gnbList>li .depth01 .haedNav-inner {
  display: inline-block;
}

#header #haedNav .gnbList>li .depth01 .icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#header #haedNav .gnbList>li .depth01 .icon span {
  display: none;
}

#header #haedNav .gnbList>li .depth02 {
  color: #888;
  margin-top: 30px;
  letter-spacing: 0.05em;
}

#header #haedNav .gnbList>li .depth02 a {
  display: block;
  /* padding: 15px 0 15px 40px; */
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-family: "华文细黑", "Microsoft JhengHei", "Microsoft YaHei", '微软雅黑', Arial, sans-serif;
}

#header .utilMenu {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}

#header .utilMenu #language {
  width: 85px;
  position: relative;
  z-index: 10000;
  font-size: 0.6875rem;
  color: #fff;
  float: left;
  margin-top: 13px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.1);
}

#header .utilMenu #language.on a i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#header .utilMenu #language>a {
  display: block;
  height: 30px;
  position: relative;
  padding: 0 12px;
  line-height: 30px;
}

#header .utilMenu #language>a i {
  position: absolute;
  top: 10px;
  right: 12px;
}

#header .utilMenu #language ul {
  display: none;
}

#header .utilMenu #language ul a {
  display: block;
  height: 30px;
  padding: 0 12px;
  color: #fff;
  line-height: 30px;
}

.nav-right {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 10000;
  float: left;
  outline: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  /*background: rgba(4, 110, 184, 0.1);*/
  cursor: pointer;
}

#header.on .nav-right {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/*.nav-search{
  background: rgba(4, 110, 184, 0.15);
}
.nav-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 110, 184, 0.2);
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav-right:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
}*/
.nav-right p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat";
  letter-spacing: 1px;
}

#header.on .nav-right p {
  color: rgba(0, 0, 0, 0.85);
}

#header .utilMenu .btnAll {
  position: relative;
  width: 21px;
  height: 21px;
  border: 0;
  background: url(../images/search.png) no-repeat center;
  background-size: cover;
}

#header.on .utilMenu .btnAll {
  background: url(../images/search1.png) no-repeat center;
  background-size: cover;
}

#header .utilMenu .btnAll img {
  width: 21px;
}

#header .utilMenu .btnAll.on span {
  background-color: #000;
}

#header .utilMenu .btnAll span {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

#header .utilMenu .btnAll>span:nth-child(1) {
  top: 0;
}

#header .utilMenu .btnAll>span:nth-child(2) {
  top: 8px;
}

#header .utilMenu .btnAll>span:nth-child(3) {
  top: 16px;
}

#header .utilMenu .btnAll.on>span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#header .utilMenu .btnAll.on>span:nth-child(2) {
  top: 0;
  opacity: 0;
}

#header .utilMenu .btnAll.on>span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#header.active .mask {
  height: 560px;
  background: url(images/bgHeader.png) -150px -420px no-repeat #fff;
}

#header.active #haedNav {
  position: relative;
}

#header.active #haedNav:before {
  display: block;
  width: 1920px;
  height: 1px;
  position: absolute;
  top: 60px;
  /* left: 40px; */
  left: 0;
  content: '';
  background-color: #e5e5e5;
}

#header.active #haedNav .gnbList>li:hover .depth01:before {
  display: block;
}

#header.active #haedNav .gnbList>li .depth01 {
  position: relative;
  color: #222;
}

#header.active #haedNav .gnbList>li .depth01:before {
  display: none;
  height: 1px;
  position: absolute;
  /* right: -40px; bottom: 0; left: 40px; */
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background-color: #222;
}

#header.active #language {
  color: #222;
  background-color: #eee;
}

#header.active #logo a .img {
  background-image: url("images/logo2.png");
}

/*header  end*/

/*banner*/

#visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#visual:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(3, 110, 184, 0.28);
}

#visual .visual-txt-con {
  position: relative;
  text-align: left;
  display: table;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 0 13%;
}

.table-cell-layout {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

#visual .visual-txt-con .table-cell-layout {
  padding-top: 100px;
}

#visual .visual-sub-txt {
  font-size: 50px;
  letter-spacing: 3px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 1px 1px #000000;
}

#visual .visual-tit {
  font-size: 60px;
  letter-spacing: 3px;
  font-family: "Montserrat";
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 100;
}

.main-scroll {
  font-size: 14px;
  padding-left: 40px;
  position: relative;
  color: #fff;
  height: 28px;
  line-height: 28px;
  margin: 40px 0;
}

.ind-banner .main-scroll {
  position: absolute;
  padding-left: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-scroll:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 7px;
  left: 13px;
  top: 7px;
  background-color: #ffffff;
  border-radius: 50px;
  z-index: 5;
  -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
  animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}


@-webkit-keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-5px);
  }
}

@keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.main-scroll:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 28px;
  border-radius: 50px;
  left: 5px;
  background-color: #262626;
  top: -4px;
}

.ind-banner .main-scroll:before {
  left: 44px;
  top: -21px;
}

.ind-banner .main-scroll:after {
  left: 36px;
  top: -34px;
}

.visual-ln {
  width: 700px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-ln p {
  font-size: 18px;
  line-height: 2;
}

.visual-ln p strong {
  font-size: 16px;
}

/* Slider */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-dots li button {
  font-size: 0;
  display: none;
}

.slick-dots li.slick-active::before {
  opacity: 1;
}


.bannerMain {
  position: relative;
}

.slide-items {
  width: 100%;
  height: 100vh;
}

.slide-items .item {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #fff;
}

.slide-items .slideBg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-items .slideText {
  position: absolute;
  bottom: 30%;
  left: 15%;
  /*-webkit-transform: translateY(-50%);
  transform: translateY(-50%);*/
  color: #fff;
  letter-spacing: 2px;
  z-index: 9;
}

.slide-items .slideText h3 {
  font-size: 130px;
  font-weight: bold;
  font-family: "Montserrat";
  text-transform: uppercase;
  line-height: 0.75;
  -webkit-transition: opacity 1s linear, -webkit-transform 1s linear .1s;
  transition: opacity 1s linear, -webkit-transform 1s linear .1s;
  transition: opacity 1s linear, transform 1s linear .1s;
  transition: opacity 1s linear, transform 1s linear .1s, -webkit-transform 1s linear .1s;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

.slide-items .slick-active .slideText h3 {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.slide-items .slideText h3 span {
  display: block;
}

.slide-items .slideText p {
  font-size: 20px;
  margin-top: 15px;
  -webkit-transition: opacity 1.2s linear, -webkit-transform 1.2s linear .2s;
  transition: opacity 1.2s linear, -webkit-transform 1.2s linear .2s;
  transition: opacity 1.2s linear, transform 1.2s linear .2s;
  transition: opacity 1.2s linear, transform 1.2s linear .2s, -webkit-transform 1.2s linear .2s;
  opacity: 0;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.slide-items .slick-active .slideText p {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.slide-items .slick-arrow {
  display: none !important;
}

.bannerMain .banner-bottom {
  position: absolute;
  /* width: 532px; */
  height: 60px;
  /* background: #fff; */
  bottom: 16%;
  left: 15%;
  width: 122px;
}

.button-all {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  -webkit-box-align: center;
  -o-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -o-box-pack: center;
  justify-content: center;
  margin-left: 1px;
  cursor: pointer;
}

.button-all svg {
  position: relative;
  z-index: 1;
  -webkit-transition: fill 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: fill 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 11px;
  height: 16px;
  fill: #fff;
  pointer-events: none;
}

.button-prev {
  right: 61px;
}

.button-next {
  right: 0;
}

.button-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.button-all::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 118, 187, 1);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.button-all:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.button-all:hover svg {
  fill: #fff;
}

.banner-bottom p {
  color: #333;
  font-size: 24px;
  padding-right: 160px;
  padding-left: 25px;
  text-transform: uppercase;
  line-height: 80px;
  font-family: "Montserrat";
  font-weight: bold;
  letter-spacing: 1px;
}

/*banner  end*/

.btnMore {
  border-radius: 30px;
  height: 60px;
  line-height: 60px;
  width: 150px;
  text-align: center;
  color: #fff;
  background-color: #036eb8;
  display: block;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-size: 23px;
  letter-spacing: 1px;
}

.btnMore .txt {
  color: #fff;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
}

.btnMore .txt:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}

.btnMore .txt:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}

.btnMore:hover {
  background-color: #037bce;
}

.btnMore:hover .txt {
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}

.btnMore:hover .txt:after {
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}

.btnMore .cfff {
  color: #fff;
}

@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.45);
  }

  100% {
    background: transparent;
  }
}

@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.45);
  }

  100% {
    background: transparent;
  }
}

@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.bgf3 {
  background-color: #f3f3f3;
}

.iboxT .en {
  font-size: 72px;
  color: #036eb8;
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: normal;
  font-weight: 100;
}

.his-color .en {
  color: #fff;
}

.iboxT .zh {
  font-size: 35px;
  line-height: 1.5;
  color: #036eb8;
  font-weight: normal;
}

.his-color .zh {
  color: #fff;
}

.ibox-waves {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ibox-Esleep {
  position: relative;
}

.ibox-Esleep-con {
  width: 100%;
  position: relative;
  padding: 100px 0px 0 0;
  margin-left: 60%;
}

.ibox-Esleep-con .c {
  margin: 25px 0px 40px;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  /*text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;*/
}

.iboxT2 .en {
  font-size: 36px;
  font-family: "Gadugi";
  line-height: 1.1;
  color: #fff;
}

.iboxT2 .zh {
  font-size: 18px;
  color: #fff;
}

.iEsleep-img1 {
  width: 50%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.05;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

.ibox-Esleep-img {
  background-color: #046eb8;
  width: 54%;
  padding-left: 10%;
  position: relative;
}

.ibox-Esleep-demo {
  width: 95%;
  overflow: hidden;
  position: relative;
  margin-top: -20%;
  margin-bottom: -15%;
}

.ibox-Esleep-demo .item {
  position: relative;
  opacity: 1 !important;
}

.ibox-Esleep-demo .iboxT2 {
  position: absolute;
  left: 5%;
  top: 10%;
  z-index: 15;
  opacity: 0;
}

.ibox-Esleep-demo .img {
  position: relative;
  overflow: hidden;
}

.ibox-Esleep-demo .img img {
  width: 100%;
  display: block;
}

.ibox-Esleep-demo .slick-active {
  z-index: 800 !important;
}

.ibox-Esleep-demo .slick-active .iboxT2 {
  -webkit-animation: slideIn 1s;
  animation: slideIn 1s;
  opacity: 1;
}

.ibox-Esleep-demo .slick-active .img img {
  -webkit-animation: imgIn 1s;
  animation: imgIn 1s
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes imgIn {
  0% {
    -webkit-transform: -webkit-translateX(100%);
    opacity: 1;
  }

  100% {
    -webkit-transform: -webkit-translateX(0);
    opacity: 1;
  }
}

@keyframes imgIn {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.ibox-Esleep-nav {
  position: absolute;
  right: 3%;
  top: 10%;
}

.ibox-Esleep-nav li {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #cec2b7;
  margin-bottom: 8px;
  cursor: pointer;
}

.ibox-Esleep-nav span {
  width: 100%;
  display: block;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 36px auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.ibox-Esleep-nav li.active span {
  border-color: #036eb8;
}

.iEsleep-img2 {
  width: 50%;
  margin-left: 50%;
  background: #036eb8;
  /*height: 412px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;*/
}

.num-top {
  padding: 6% 5%;
  overflow: hidden;
}

.num-top li {
  float: left;
  width: 33.333%;
  text-align: center;
  color: #fff;
  position: relative;
}

.num-top .cn-tt {
  font-size: 16px;
  line-height: 1.5;
}

.num-top .num {
  font-size: 90px;
  line-height: 1;
  margin-top: 8px;
  font-family: "Montserrat";
  font-weight: bold;
}

.num-top .num span {
  padding-right: 5px;
}

.num-top .en-tt {
  letter-spacing: 0;
  line-height: 1.5;
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.num-top .line {
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  opacity: 0.15;
  filter: alpha(opacity=15);
}

/*BUSINESS*/
.ind-campus-view {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* .ind-campus-list .slick-list {
  padding: 0 200px 0 0;
} */
.ind-campus-list {
  margin-top: 50px;
}

.ind-campus-list .slick-arrow {
  position: absolute;
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  background: rgba(0, 0, 0, .4);
  color: #ffffff;
  top: 50%;
  margin: -33px 0 0;
  display: block;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 5;
}

.ind-campus-list .slick-arrow:hover {
  background: rgba(0, 0, 0, 1);
}

.ind-campus-list .slick-prev {
  left: 305px;
}

.ind-campus-list .slick-prev i {
  display: inline-block;
  width: 66px;
  height: 66px;
  background: url(../images/grade-prev.png) no-repeat center;
  background-size: cover;
}

.ind-campus-list .slick-next {
  right: 305px;
}

.ind-campus-list .slick-next i {
  display: inline-block;
  width: 63px;
  height: 63px;
  background: url(../images/grade-next.png) no-repeat center;
}

.ind-campus-li {
  position: relative;
  padding-top: 40px;
  padding-bottom: 180px;
}

/* .ind-campus-li:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  background: #046eb8;
  z-index: 1;
  opacity: 0.7;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
} */

/* .ind-campus-li.slick-active:before {
  opacity: 0;
} */

.ind-campus-img {
  position: relative;
  height: 380px;
  /* padding-top: 70vh; */
  overflow: hidden;
  z-index: 9;
}

.ind-campus-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.ind-campus-li:hover .ind-campus-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.ind-campus-text {
  position: absolute;
  width: 80%;
  height: 100%;
  padding: 0 6%;
  background: #036eb8;
  left: -6%;
  top: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.ind-campus-li.swiper-slide-active .ind-campus-text {
  opacity: 1;
}

.ind-campus-txt {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 56px;
  padding: 0 70px 0 8%;
}

.ind-campus-text h3 {
  position: relative;
  font-size: 27px;
  line-height: 1.5;
  color: #fff;
  font-weight: normal;
}

.ind-campus-text span {
  letter-spacing: 0;
  color: rgba(255, 255, 255, .7);
  font-family: "Montserrat";
  font-size: 25px;
  display: block;
  text-transform: uppercase;
  margin-top: 3px;
}

.ind-campus-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  margin-top: 10px;
  line-height: 1.8;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  text-overflow: ellipsis;
}


.camSvg {
  position: absolute;
  right: 30px;
  top: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  margin-top: 10px;
}

.camSvg svg {
  width: 24px;
  fill: #fff;
  stroke: #fff;
}

.ind-campus-list .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 40px;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.ind-campus-list .slick-dots li {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 13px;
  position: relative;
  cursor: pointer;
  background: none;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.5, 0, 0, 1);
  transition: -webkit-transform .3s cubic-bezier(.5, 0, 0, 1);
  transition: transform .3s cubic-bezier(.5, 0, 0, 1);
  transition: transform .3s cubic-bezier(.5, 0, 0, 1), -webkit-transform .3s cubic-bezier(.5, 0, 0, 1);
  transition: transform .3s cubic-bezier(.5, 0, 0, 1), -webkit-transform .3s cubic-bezier(.5, 0, 0, 1);
}

.ind-campus-list .slick-dots li::before {
  content: '';
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  display: none;
}

.ind-campus-list .slick-dots li button {
  font-size: 0;
  display: none;
}

.ind-campus-list .slick-dots li.slick-active::before {
  opacity: 1;
}

.ind-campus-list .pagination-list {
  position: absolute;
  bottom: 120px;
  left: 50%;
  margin-left: 260px;
  z-index: 999;
}

.ind-campus-list .swiper-button-next,
.ind-campus-list .swiper-button-prev {
  width: 34px;
  height: 7px;
  border: 1px solid none;
}

.ind-campus-list .swiper-button-next svg,
.ind-campus-list .swiper-button-prev svg {
  display: none;
}

.ind-campus-list .swiper-button-prev {
  background: url(../images/arr1.png) no-repeat center;
  background-size: 32px;
  margin-left: -45px;
  top: 25px;
  padding: 15px 5px;
  position: relative;
}

.ind-campus-list .swiper-button-next {
  background: url(../images/arr2.png) no-repeat center;
  background-size: 32px;
  margin-left: 61px;
  top: -8px;
  padding: 15px 5px;
  position: relative;
}

.ind-campus-list .swiper-pagination {
  width: 50px;
  font-family: "Montserrat-Regular";
  font-size: 23px;
}

/*BUSINESS  end*/


/* news */
.CardUl {
  overflow: hidden;
  height: auto;
  position: relative;
  /* display:flex; */
  flex-wrap: wrap;
  padding-bottom: 5px;
  margin-top: 35px;
}

.CardUl li {
  width: 100%;
  position: relative;
  padding: 5px 0 0;
  color: #fff;
  transition: ease .5s;
  bottom: 0;
  vertical-align: bottom;
  height: 170px;
  cursor: pointer;
}

.CardUl li a {
  display: block;
  height: 100%;
  background: #000;
  cursor: pointer
}

.CardUl li .picBox {
  height: 100%;
  width: 100%;
  position: relative
}

.CardUl li.active {
  height: 160%
}

.CardUl .picBoxScale {
  position: relative;
  height: 100%;
  width: 100%
}

.CardUl .pic {
  height: 100%;
  width: 100%;
  background-size: cover;
  filter: grayscale(50%);
  background-position: center;
  opacity: .7;
  transition: ease .5s
}

.CardUl li.active .pic {
  filter: grayscale(0)
}

.CardUl .number {
  position: absolute;
  font-size: 34px;
  font-family: "Montserrat-Regular";
  top: 10%;
  left: 5%;
  color: #fff;
}

.CardUl .line {
  position: absolute;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, .5);
  left: 10%;
  bottom: 25px
}

.CardUl .title {
  position: absolute;
  left: 14%;
  bottom: 25px;
  width: 80%
}

.CardUl .title span {
  display: block
}

.CardUl .title span.cn {
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
  overflow: hidden;
    white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.CardUl .title span.en {
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  overflow: hidden;
    white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/* news  end */

/* product */
.inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ind-product {
  background: #fff;
  padding-bottom: 50px;
}

.padd110 {
  padding-top: 110px;
}

.ind-pro-box {
  margin-top: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
}

.ind-pro-box li {
  position: relative;
  top: 0;
  width: 47.5%;
  margin: 1.25%;
  padding: 65px 80px;
  background: #036eb8;
  color: #fff;
  text-align: left;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.ind-pro-box li:hover {
  top: -10px;
}

.ind-pro-title {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
  margin-bottom: 30px;
}

.ind-pro-title span {
  font-size: 80px;
  font-family: "Montserrat-Regular";
}

.ind-pro-title h3 {
  font-size: 20px;
  margin-left: 30px;
  font-weight: 500;
}

.ind-pro-box li p {
  width: 80%;
  position: relative;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Montserrat";
  color: #fff;
  padding-bottom: 15px;
  line-height: 1.8;
}

.ind-pro-box li p:after {
  position: absolute;
  content: '';
  width: 40px;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 0;
}

.ind-pro-more {
  position: absolute;
  right: 60px;
  bottom: 50px;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.ind-pro-more:before {
  position: absolute;
  top: calc(50% - 3px / 2);
  left: calc(50% - 25px / 2);
  width: 25px;
  height: 2px;
  -webkit-transform: none;
  transform: none;
  background: #fff;
  content: "";
}

.ind-pro-more::after {
  position: absolute;
  top: calc(50% - 25px / 2);
  left: calc(50% - 2px / 2);
  width: 2px;
  height: 25px;
  -webkit-transform: none;
  transform: none;
  background: #fff;
  content: "";
}

.ind-pro-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
}

.ind-pro-left {
  width: calc(100% - 480px);
  background: #fdfdfd url(../images/develop_con01_bg.png) no-repeat center;
}

.ind-pro-left .slick-list,
.ind-pro-left .slick-track {
  height: 100%;
}

.ind-pro-left li {
  position: relative;
  width: 100%;
  height: 100%;
}

.ind-pro-left .ind-pro-text {
  width: 40%;
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
}

.ind-pro-left li.slick-active .ind-pro-text {
  opacity: 1;
  top: 50%;
}

.ind-pro-left .ind-pro-text h3 {
  font-size: 35px;
  padding-left: 15px;
  border-left: 2px solid #036eb8;
}

.ind-pro-left .ind-pro-text em {
  display: block;
  padding-left: 15px;
  font-size: 34px;
  color: #666;
  font-family: "Montserrat";
  margin-top: 10px;
  text-transform: uppercase;
  margin-top: 14px;
}

.ind-pro-left .ind-pro-text p {
  padding-left: 15px;
  margin-top: 32px;
  line-height: 2;
  color: #666;
  word-break: keep-all;
}

.ind-pro-left .ind-pro-text span {
  width: 5px;
  color: #666;
  display: block;
  font-weight: bold;
  font-size: 17px;
  word-wrap: break-word;
  line-height: 7px;
  margin: 15px 0 0 50px;
}

.ind-pro-left .ind-pro-img {
  width: 60%;
  padding: 0 5%;
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
}

.ind-pro-left li.slick-active .ind-pro-img {
  opacity: 1;
  top: 50%;
}

.ind-pro-left .ind-pro-img img {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.ind-pro-left .slick-dots {
  left: auto;
  right: 40px;
  top: 50%;
  bottom: auto;
  margin-top: 0;
  transform: translateY(-50%);
}

.ind-pro-left .slick-dots li {
  width: 9px;
  height: 9px;
  border: 2px solid #036eb8;
  border-radius: 50%;
  display: block;
  margin: 25px 0;
  background: none;
  cursor: pointer;
}

.ind-pro-right {
  width: 480px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.ind-pro-right .ind-pro-item {
  position: relative;
  padding: 8% 60px 8% 100px;
  border-left: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  cursor: pointer;
  background-size: 30px;
  background-position: 50px center;
  background-repeat: no-repeat;
}

.ind-pro-right .ind-pro-item:before {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  background: #036eb8;
  top: 0;
  left: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.ind-pro-right .ind-pro-item.active:before {
  width: 3px;
}

.ind-pro-right .ind-pro-item:nth-child(1) {
  background-image: url(../images/l1-b.png);
}

.ind-pro-right .ind-pro-item:nth-child(2) {
  background-image: url(../images/l2-b.png);
}

.ind-pro-right .ind-pro-item:nth-child(3) {
  background-image: url(../images/l3-b.png);
}

.ind-pro-right .ind-pro-item:nth-child(4) {
  background-image: url(../images/l4-b.png);
}

.ind-pro-right .ind-pro-item h3 {
  font-weight: 500;
  font-size: 25px;
}

.ind-pro-right .ind-pro-item p {
  font-size: 24px;
  color: #666;
  font-family: "Montserrat";
  margin-top: 10px;
  text-transform: uppercase;
}


.ind-product-bottom {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.ind-pro-qh {
  position: relative;
  width: 100%;
  /* width: calc(100% - 480px); */
  padding: 110px 60px 0;
  overflow: hidden;
}

.ind-pro-qh .slick-list {
  padding-left: 10vw;
}

.ind-pro-tu {
  position: relative;
  width: 480px;
  margin-top: -80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* opacity: 0.1;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray; */
}

.ind-pro-tu:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(3, 110, 184, 1);
}

.ind-pro-yth {
  /* position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0; */
  width: 100%;
  color: #fff;
}

.ind-pro-yth .ibox-Esleep-con {
  padding: 80px 60px 0 50px;
  margin-left: 0;
}

.ind-pro-yth .iboxT .en {
  color: #fff;
  font-size: 53px;
  line-height: 0.7;
}

.ind-pro-yth .iboxT .zh {
  color: #fff;
  font-size: 30px;
}

.ind-pro-yth .ibox-Esleep-con .c {
  color: #fff;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ind-pro-yth .btnMore {
  background: #fff;
  color: #036eb8;
  margin-top: 32px;
  height: 55px;
  line-height: 55px;
}

/* #mainContent1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
} */
#mainContent1 {
  height: 100%;
  margin-top: 40px;
}

/* #mainContent1 .pagination-list {
  position: absolute;
  top: 50%;
  margin-top: -58px;
  z-index: 9;
} */

#mainContent1 .pagination-list .swiper-button-prev,
#mainContent1 .pagination-list .swiper-button-next {
  cursor: pointer;
  width: 58px;
  height: 58px;
  border: none;
  background: #036eb8;
  text-align: center;
  position: relative;
  vertical-align: top;
  margin-bottom: 5px;
}

#mainContent1 .pagination-list .swiper-button-prev {
  position: absolute;
  top: 50%;
  margin-top: -58px;
  left: 0;
}

#mainContent1 .pagination-list .swiper-button-next {
  position: absolute;
  top: 50%;
  margin-top: -58px;
  right: 0;
}

#mainContent1 .pagination-list svg {
  width: 11px;
  height: 16px;
  fill: #fff;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#mainContent1 .pagination-list .swiper-button-prev svg {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

/* #mainContent1 .swiper-container {
  width: 420px;
  float: right;
  overflow: inherit;
} */

.main-ovio-con {
  width: 22.6%;
  float: left;
  margin: 0 1.2%;
  background: #f8fbfd;
  overflow: hidden;
  position: relative;
  top: 0;
  -webkit-transition: all .8s;
  transition: all .8s;
  /* opacity: 0.3; */
}

.main-ovio-con.swiper-slide-active {
  opacity: 1;
}
#mainContent1.ind-pro-view{
  position: relative;
  height: auto;
}
#mainContent1.ind-pro-view .main-ovio-con{
  margin: 0;
}
#mainContent1.ind-pro-view .pagination-list .swiper-button-prev{
  left: -58px
}
#mainContent1.ind-pro-view .pagination-list .swiper-button-next{
  right: -58px;
}
#mainContent1.ind-pro-view .pagination-list{
  display: none;
}
/* #mainContent1 .main-ovio-con:nth-child(2n){
  margin-top: 100px;
} */
.main-ovio-con .fl {
  position: relative;
  height: 345px;
  text-align: center;
}

/*.main-ovio-con .fl:before{
  position: absolute;
  content: '';
  background: url(../images/logo1.png) no-repeat center;
  background-size: cover;
  width: 260px;
  height: 50px;
  top: 40px;
  left: 40px;
  opacity: 0.1;
}*/
.main-ovio-con .pd-img {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
}

.main-ovio-con .pd-img img {
  width: 100%;
}

.main-ovio-con .fr {
  float: none;
  position: relative;
  text-align: left;
}

.main-ovio-con .txt-con {
  position: relative;
  display: inline-block;
  padding: 12% 9%;
  width: 100%;
  height: 255px;
  text-align: left;
}

.main-ovio-con .txt-con .tit-up {
  font-size: 22px;
  letter-spacing: 1px;
  color: #868f9a;
  font-family: "Montserrat-Regular";
  text-transform: capitalize;
}

.main-ovio-con .txt-con .tit-up span {
  font-weight: 500;
}

.main-ovio-con .txt-con .tit-down {
  margin: 15px 0 30px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.75px;
  line-height: 1.11em;
  color: #046eb8;
}

/*.main-ovio-con .txt-con .tit-down:after{display: inline-block; margin-left: 4px; content:""; width: 6px; height: 6px; background-color: #fff; border: 4px solid #286abd; -webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;}*/
.main-ovio-con .txt-con .txt {
  margin-top: 45px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: -0.65px;
  color: #6f6f6f;
  -ms-word-break: keep-all;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-ovio-con .txt-con .txt span {
  display: block;
}

.main-ovio-con .txt-con .btn-more {
  padding: 9px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  font-family: "Montserrat-Regular";
  font-weight: bold;
  line-height: 1.7;
  color: #626262;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main-ovio-con:hover .txt-con .btn-more {
  border-color: #046eb8;
  color: #046eb8;
}

.ovio-con01.main-ovio-con .txt-con .btn-more {
  left: 120px
}

.ovio-con02.main-ovio-con .txt-con .btn-more {
  right: 120px;
}

.main-ovio-con .txt-con .btn-more:after {
  display: block;
  content: "";
  width: 0;
  height: 3px;
  background-color: #333;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*.main-ovio-con.ovio-con01 .fr:hover .btn-more:after{width: 120px;}
.main-ovio-con.ovio-con02 .fl:hover .btn-more:after{width: 120px;}
.main-ovio-con.ovio-con01 .fr:hover .btn-more{color: #333;}
.main-ovio-con.ovio-con02 .fl:hover .btn-more{color: #333;}*/

.main-ovio-con .cir-con {
  display: block;
  width: 88px;
  height: 88px;
  border: 10px solid #fff;
  text-align: center;
  line-height: 88px;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  display: none;
}

.main-ovio-con .cir-con i {
  display: block;
}

.main-ovio-con.ovio-con01 .fl {
  float: none;
  background: #eaeaea url("../images/develop_con01_bg.png") no-repeat center;
  /*background-size: cover;*/
  /*background: #046eb8;*/
}

.main-ovio-con.ovio-con01 .fr a {
  display: block;
  height: 100%;
}

.main-ovio-con.ovio-con02 .fl {
  text-align: right;
  background: url("../images/main/grad_bg.png") no-repeat 0 0;
}

.main-ovio-con.ovio-con02 .fl a {
  display: block;
  height: 100%;
}

.main-ovio-con.ovio-con01 .cir-con {
  background-color: #38a8db;
}

.main-ovio-con.ovio-con02 .cir-con {
  background-color: #38a8db;
}

/* product  end */

/*  */
.banner-news{
  position: absolute;
  width: 570px;
  height: 325px;
  left: 0;
  bottom: 0;
  background: rgba(3, 110, 184, 0.78);
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  transition: all 1.2s;
  /* background: #0089d4;
  background: -moz-linear-gradient(left, #0860a6 0%, #38a9db 100%);
  background: -webkit-linear-gradient(left, #0860a6 0%, #38a9db 100%);
  background: linear-gradient(to right, #0860a6 0%, #38a9db 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0860a6', endColorstr='#38a9db', GradientType=1); */
  padding: 66px 50px;
}
.banner-news.on{
  left: -100%;
}
.banner-news span.one::before{
  position: absolute;
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.one::after{
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.two::before{
  position: absolute;
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.two::after{
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .1);
}
/* .banner-news span.three::before{
  position: absolute;
  content: '';
  width: calc(100% - 30px);
  height: 1px;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.three::after{
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 30px);
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.four::before{
  position: absolute;
  content: '';
  width: calc(100% - 30px);
  height: 1px;
  bottom: 10px;
  left: 20px;
  background: rgba(255, 255, 255, .1);
}
.banner-news span.four::after{
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 30px);
  top: 20px;
  right: 10px;
  background: rgba(255, 255, 255, .1);
} */
.banner-news .slick-slider{
  height: 100%;
}
.banner-news .iboxT .en{
  color: #fff;
  font-size: 55px;
}
.banner-news .iboxT .zh{
  color: #fff;
  font-size: 23px;
}
/* .banner-news::before{
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  right: -20px;
  bottom: -20px;
  background: url(../images/ico.png) no-repeat center;
  background-size: cover;
  opacity: 0.2;
} */

.banner-news li{
  opacity: 0;
}
.banner-news li.slick-active{
  opacity: 1;
}
.banner-news li h3{
  position: relative;
    font-size: 16px;
    margin-top: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.8;
    letter-spacing: 2px;
    -webkit-transition: ease 0.8s;
    transition: ease 0.8s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.banner-news li:hover h3{
  text-decoration: underline;
}
/* .banner-news li h3:before{
  position: absolute;
  content: '';
  width: 25px;
  height: 3px;
  top: 9px;
  left: 0;
  background: #fff;
} */
.banner-news li p{
  position: relative;
  top: 20px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 15px;
  color: rgba(255, 255, 255, .5);
  padding-left: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: ease 0.8s;
  transition: ease 0.8s;
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  opacity: 0;
  display: none;
}
.banner-news li.slick-active p{
  top: 0;
  opacity: 1;
}
.banner-news .slick-dots{
  bottom: 39px;
  display: block;
  width: 100%;
  left: 0;
  text-align: right;
}
.banner-news .slick-dots li{
  opacity: 0.3;
  font-size: 18px;
  font-family: "Montserrat-Regular";
  color: #036eb8;
  background: #fff;
  width: 22px;
  height: 22px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.banner-news .slick-dots li.slick-active{
  opacity: 1;
  background: #fff;
}
.banner-news-close{
  padding-left: 3px;
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 45px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 60px;
  background: rgba(3, 110, 184, 0.78);
  top: 10px;
  right: 10px;
  text-align: center;
  font-family: "Montserrat";
  cursor: pointer;
}
.news-zxdt{
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 170px;
  color: rgba(255, 255, 255, 0.78);
  background: #036eb8;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 20px 0 20px 38px;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  transition: all 1.2s;
  cursor: pointer;
  
}
.news-zxdt.on{
  left: 0;
}
.news-zxdt:before{
  content: '';
  position: absolute;
  width: 30px;
  height: 15px;
  top: 20px;
  right: 25px;
  background: url(../images/news-jt.png) no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  animation: jtAni ease-in-out 1s alternate infinite;
  animation-delay: 0.2s;
  opacity: 0.6;
}
@keyframes jtAni{
	0%{right: 25px;}
	100%{right: 20px;}
}
/*   end */

/* footer */
.z_footer {
  position: relative;
  background: #036eb8;
}

.z_footer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../picture/online.jpg) no-repeat center;
  background-size: cover;
  opacity: 0.07;
}

.z-container {
  position: relative;
  padding: 0 200px;
}

.foot_top {
  padding: 42px 0 18px;
}

.foot_nav {
  float: left;
  line-height: 50px;
}

.foot_nav a {
  display: inline-block;
  color: #fff;
  padding: 0 35px;
  position: relative;
}

.foot_nav a:hover {
  color: rgba(255, 255, 255, .6);
}

.foot_nav a:first-child {
  padding-left: 0;
}

.foot_nav a:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.foot_nav a:last-child:before {
  display: none;
}

.foot_link {
  width: 200px;
  float: right;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.foot_clear {
  padding: 50px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.foot_addre {
  float: left;
  color: #fff;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.foot_addre li {
  line-height: 2.2;
  background-image: url(../images/f1.png);
  padding-left: 24px;
  background-size: 14px;
  background-position: left;
  background-repeat: no-repeat;
}

.foot_addre li:nth-child(3) {
  background-image: url(../images/fax.png);
  background-size: 17px;
}

.foot_addre li:nth-child(4) {
  background-image: url(../images/f3.png);
}

.foot_addre li:nth-child(5) {
  background-image: url(../images/add.png);
  background-size: 15px;
}

.foot_addre li span {
  color: #fff;
}

.foot_code {
  float: right;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-left: auto;
}

.foot_code span {
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.foot_code img {
  width: 96px;
  float: right;
  margin-left: 20px;
}

.foot_copy {
  padding: 20px 0;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
}

.foot_copy a {
  color: #fff;
}

/* footer  end */


.menu_item {
  width: 41px;
  height: 30px;
  padding: 5px;
  cursor: pointer;
  float: right;
  position: absolute;
  right: 15px;
  top: 20px;
  display: none;
}

.menu_item p{
  font-size: 14px;
}

.opener {
  display: block;
  min-height: 100%;
  position: relative;
}

.opener span {
  background: #011eff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  transition: all .2s linear;
}

.opener:after,
.opener:before {
  background: #011eff;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  transition: all .2s linear;
  content: '';
}

.opener:after,
.opener:before,
.opener span {
  background: #000;
}

.opener:after {
  top: 16px;
}


.mobile-header{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 99999;
}
.mobile-header-main{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.mobile-header.open{
  left: 0;
}
.header-close {
  border: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  right: 17px;
  top: 4px;
  cursor: pointer;
  z-index: 100;
  background-color: transparent;
}
.header-close-item {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #58595b;
  position: absolute;
  left: 11px;
  opacity: 1;
  transition: left .3s,top .3s,opacity .3s,width .3s,background-color .3s,-webkit-transform .3s;
  -webkit-transition: left .3s,top .3s,opacity .3s,width .3s,background-color .3s,-webkit-transform .3s;
  transition: transform .3s,left .3s,top .3s,opacity .3s,width .3s,background-color .3s;
  transition: transform .3s,left .3s,top .3s,opacity .3s,width .3s,background-color .3s,-webkit-transform .3s;
}
.header-close-item.left {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 15px;
  top: 19px;
}
.header-close-item.right {
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 15px;
  top: 36px;
}
.mobile-spe{
  position: absolute;
  width: 50px;
  height: 50px;
  left: 32px;
  top: 30px;
  cursor: pointer;
  z-index: 100;
  background-color: #00877c;
  border-radius: 50%;
  display: none;
}
.mobile-spe img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -54%);
  transform: translate(-50%, -54%);
}
.header-nav-items{
  height: 100%;
  padding: 10px 30px;
}
.header-nav-items a{
  display: block;
  padding: 25px 0;
  color: #58595b;
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.mob-top{
  width: 100%;
  height: 70px;
  /* border-bottom: 1px solid rgba(0, 0, 0, .1); */
}
.mob-top .mob-logo{
  padding:17px 30px;
}
.mob-top .mob-logo img{
  width: 150px;
}

@media screen and (max-width: 1450px) {
  .foot_nav a {
    padding: 0 25px;
  }
}