@charset 'utf-8';
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
button,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
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,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
 /* vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  position: relative;
  line-height: 1;
  font-family: 微软雅黑;
  font-size: 0.2rem;
  color: #333;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
img {
  vertical-align: middle;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 手动添加*/
a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
html ::-webkit-scrollbar {
  display: none;
}

.md-wrapper {
  position: relative;
  /* max-width: 1920px; */
  margin: 0 auto;
}
.sm-wrapper {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.max-wid {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}
.tea_case {
  position: relative;
  width: 67.71%;
  max-width: 1200px;
  margin: auto;
}

/* 分页 */
.page_more {
  text-align: center;
  padding: 3% 0;
}

.page_more a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  text-align: center;
  background: #f7f8f8;
  line-height: 60px;
  vertical-align: middle;
  margin: 0 15px;
  transition: all 0.2s;
  color: #666666;
}

.page_more a.prev,
.page_more a.next {
  background: transparent;
  width: auto;
}
.page_more a.prev > img,
.page_more a.next > img {
  margin-left: 10px;
  vertical-align: initial;
}

.page_more a:hover {
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.2);
}

.page_more a.prev:hover,
.page_more a.next:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  color: #c81b45;
}
.page_more a.next:hover > img {
  content: url(../images/red_jt.png);
}

.page_more a.active {
  background: linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  color: #fff;
}

.flex {
  display: box;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex1 {
  -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1; /* OLD - Firefox 19- */
  width: 20%; /* For old syntax, otherwise collapses. */
  -webkit-flex: 1; /* Chrome */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.gradient {
  background: linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
}
.gradient-FE {
  background: linear-gradient(
    180deg,
    rgba(255, 241, 174, 1),
    rgba(232, 197, 118, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(255, 241, 174, 1),
    rgba(232, 197, 118, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(255, 241, 174, 1),
    rgba(232, 197, 118, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(255, 241, 174, 1),
    rgba(232, 197, 118, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(255, 241, 174, 1),
    rgba(232, 197, 118, 1)
  );
}
/* 图片隐藏 显示 */
.pic-hide {
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  filter: blur(30px);
  visibility: visible !important;
}
.pic-show {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  filter: blur(0);
}
/* slogan 标语 */
/* 标语 */
.slogan {
  min-width: 4.75rem;
  font-size: 0.18rem;
  font-weight: bold;
  color: #2799d7;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.slogan .bar {
  position: relative;
  left: -2rem;
  width: 0;
  height: 2px;
  margin-right: 0.28rem;
  background-color: #dbe2e9;
}
.slogan .extend {
  left: 0;
  width: 2rem;
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
}

/* bar-bf-red 红色横杠延迟 */
.bar-bf-red {
  position: relative;
}
.bar-bf-red::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #2799d7;
}
.bar-bf-white {
  position: relative;
}
.bar-bf-white::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
}
.custom-bar::before {
  width: 100%;
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
}

/* bar-bf-## end */
/* 椭圆特效 */
.oval::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 1;
  border-width: 3px;
  border-color: #ffa1b8;
  background: transparent;
  pointer-events: none;
}
.oval:hover:before {
  border-style: solid;
  transform: scaleX(1.2);
  -webkit-transform: scaleX(1.2);
  -moz-transform: scaleX(1.2);
  -o-transform: scaleX(1.2);
  -ms-transform: scaleX(1.2);
  opacity: 0;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}

/* 清除动效 */
.clr-transition {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
}
.clr-transform {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
/* 清除浮动 */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* 媒体查询 */
@media screen and (max-width: 1440px) {
  .page_more a {
    width: 43px;
    height: 43px;
    font-size: 17px;
    line-height: 43px;
  }

  /*  */
  .f-78 {
    font-size: 78px !important;
  }
  .f-43 {
    font-size: 43px !important;
  }
  .f-36 {
    font-size: 36px !important;
  }
  .f-28 {
    font-size: 28px !important;
  }
  .f-16 {
    font-size: 16px !important;
  }
  .f-15 {
    font-size: 15px !important;
  }
  .f-14 {
    font-size: 14px !important;
  }
}

header {
  z-index: 99;
  position: fixed;
  top: 0.47rem;
  left: 5%;
  width: 90%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.18rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
header .head-wrapper {
  padding: 0 4% 0 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
header .logo {
  width:230px; margin-right:30px;
}
header .logo > img {
  width: 100%;
}

/* 导航区域 */
header .head-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .head-nav .item {
  position: relative;
  height: 1.1rem;
  margin: 0 0.30rem;
  font-size: 0.2rem;
  line-height: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: block;
}
header .head-nav .item .nav-colums {
  position: absolute;
  top: 100%;
  min-width: 6.87rem;
  padding: 0.45rem 0;
  margin-top: 0.25rem;
  border-radius: 0.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  line-height: 1;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.5rem);
  -webkit-transform: translateY(0.5rem);
  -moz-transform: translateY(0.5rem);
  -o-transform: translateY(0.5rem);
  -ms-transform: translateY(0.5rem);
  transition: all 0.5s ease-in-out;
  justify-content: space-between;
  display: none;
  
}
header .head-nav .colums-list {
  width: 1.95rem;
  padding-left: 19px;
  border-right: 1px solid #efefef;
  float: left;
}
header .head-nav .colums-list > a {
  position: relative;
  padding: 0.17rem 0 0.16rem 0.51rem;
  font-size: 0.16rem;
  color: #333;
  font-weight: normal;
  display: block;
}
header .head-nav .colums-list > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.31rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dcdddd;
}
header .head-nav .nav-colums::before {
  content: "";
  position: absolute;
  border-top: 0.14rem solid transparent;
  border-left: 0.14rem solid transparent;
  border-bottom: 0.14rem solid #fff;
  border-right: 0.14rem solid transparent;
}
header .head-nav .nav-colums::after {
  content: "";
  position: absolute;
  top: -0.28rem;
  left: 0;
  width: 100%;
  height: 0.28rem;
}
header .head-nav .colums-pic {
  padding: 0 0.5rem;
  box-sizing: border-box;
  float: left;
}
header .head-nav .colums-pic > img {
  width: 100%;
}
header .head-nav .colums-pic > a {
  position: absolute;
  left: 0.34rem;
  bottom: 0.4rem;
  width: 0.99rem;
  height: 0.33rem;
  border-radius: 0.16rem;
  font-size: 0.12rem;
  text-align: center;
  line-height: 0.32rem;
  font-weight: normal;
  color: #fff;
}

/* active */

header.active {
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 1);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 6px rgrgba(5, 2, 2, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
header.active .logo {
  width: 0.7rem;
}
header.active .head-nav .item {
  height: 0.9rem;
  line-height: 0.9rem;
}
/* hover */
header .head-nav .item.active {
  color: #2799d7;
}
header .head-nav .item.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #2799d7;
}

header .head-nav .item:hover > a {
  display: block;
  color: #2799d7;
}
header .head-nav .item:nth-child(-n + 5):hover .nav-colums {
  display: block;
  left: -40px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}
header .head-nav .item:nth-child(-n + 5):hover .nav-colums::before {
  top: -0.28rem;
  left: 0.6rem;
}

header .head-nav .item:nth-child(6):hover .nav-colums {
  display: block;
  left: -400px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}
header .head-nav .item:nth-child(6):hover .nav-colums::before {
  top: -0.28rem;
  left: .2rem;
}

header .head-nav .item:nth-last-child(2):hover .nav-colums {
  display: flex;
  right: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}
header .head-nav .item:nth-last-child(2):hover .nav-colums::before {
  top: -0.28rem;
  right: 0.6rem;
}

header .head-nav .colums-list > a.active,
header .head-nav .colums-list > a:hover {
  color: #fff;
  background-color: #2799d7;
}
header .head-nav .colums-list > a.active::before,
header .head-nav .colums-list > a:hover::before {
  background-color: #fff;
}

/* 添加购物车 */
header .add-car-buttom {
  width: 1.8rem;
  height: 0.56rem;
  margin: 0.05rem 0;
  border-radius: 1rem;
  font-size: 0.18rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #2799d7;
}
header .add-car-buttom > img {
  width: 0.27rem;
  margin-right: 0.12rem;
}

@media screen and (max-width: 1440px) {
  header {
    border-radius: 12px;
  }
  header .logo {
    width: 187px;
  }
  header .head-nav .item {
    height: 83px;
    font-size: 16px;
    line-height: 83px;
  }
  header .add-car-buttom {
    width: 150px;
    height: 50px;
    border-radius: 25px;
    margin: 4px 0;
    font-size: 13px;
  }
  header .add-car-buttom > img {
    width: 20px;
    margin-right: 9px;
  }
  header .head-nav .item .nav-colums {
    min-width: 570px;
    padding: 34px 0;
  }
  header .head-nav .colums-list {
    width: 160px;
  }
  header .head-nav .colums-list > a {
    font-size: 15px;
    padding: 13px 0 12px 38px;
  }
  header .head-nav .colums-list > a::before {
    left: 23px;
  }

  header .head-nav .colums-pic {
    width: 390px;
    padding: 0 38px;
  }

  /* active */
  header.active .logo {
    width: 207px;
  }
}
footer {
 /* background-color: #f9f9fa;*/
 
  background:url(../images/fimg4.jpg) no-repeat center top;
}
footer .main {
  padding-top: 0.93rem; padding-bottom:0.5rem;
}
footer .main .column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .main .left {
  width: 69%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .main .tl {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
footer .main .column-list {
  margin-top: 0.18rem;
  display: flex;
  flex-direction: column;
  font-size: 16px;
}
footer .main .column-list p a { color:#fff !important;}
footer .main .column-list > a {
  padding: 0.13rem 0;font-size: 15px;
  color: #fff; opacity:.9;
}
footer .main .column-list > p {
  padding: 0.13rem 0;font-size: 15px;
  color: #fff; opacity:.9;
}
footer .main .right {
  width: 21%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .main .cd {
  width: 45%;
  font-size: 0.16rem;
  text-align: center; 
  color: #fff;
}
footer .main .cd > img {
  width: 100%;
  margin-bottom: 20px; margin-top:20px;
}

/* 友情链接 */
footer .main .outer-chain {
  margin-top: 0.57rem;
  padding: 0.15rem 0;
  border-top: 1px solid #dcdddd;
  display: flex;
  align-items: flex-start;
}
footer .main .outer-chain h3 {
  padding: 0.15rem 0;
  margin-right: 0.49rem;
  font-size: 0.22rem;
  font-weight: bold;
  white-space: nowrap;
}
footer .main .chain-list {
  margin-top: 0.03rem;
  display: flex;
  flex-wrap: wrap; 
}
footer .main .chain-list > a {
  padding: 0.15rem 0;
  margin-right: 0.54rem;
  font-size: 0.16rem;
  color: #999;
}
footer .main .chain-list > a:hover {
  color: #2799d7;
  text-decoration: underline;
}
footer .main .chain-list > a:nth-last-child(1) {
  margin-right: 0;
}
footer .footer {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.22rem 0;
  background-color: #2897d5;
}

footer .enterprise {
  width:1300px;
  margin: 0 auto;
  font-size: 0.14rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
}

footer .enterprise a {
  color: #fff;
}

footer .main .column-list > a:hover {
  color: #2799d7;
  text-decoration: underline;
}

@media (max-width: 1440px) {
  footer .main .chain-list > a {
    font-size: 16px;
  }
}

.app {
  display: none;
}
@media screen and (max-width: 1500px) {
  .ie .layout-rowMain {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) {
  .f-60 {
    font-size: 48px;
  }
  .f-50 {
    font-size: 42px;
  }
  .f-48 {
    font-size: 40px;
  }
  .f-46 {
    font-size: 40px;
  }
  .f-44 {
    font-size: 38px;
  }
  .f-42 {
    font-size: 36px;
  }
  .f-40 {
    font-size: 34px;
  }
  .f-38 {
    font-size: 32px;
  }
  .f-36 {
    font-size: 30px;
  }
  .f-34 {
    font-size: 28px;
  }
  .f-32 {
    font-size: 26px;
  }
  .f-30 {
    font-size: 26px;
  }
  .f-28 {
    font-size: 26px;
  }
  .f-26 {
    font-size: 24px;
  }
  .f-24 {
    font-size: 22px;
  }
  .f-22 {
    font-size: 20px;
  }
  .f-20 {
    font-size: 18px;
  }
  .f-18 {
    font-size: 16px;
  }
  .f-16 {
    font-size: 14px;
  }
  .f-14 {
    font-size: 14px;
  }
  .f-12 {
    font-size: 12px;
  }
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
  .app {
    display: inline-block;
  }
  .f-60 {
    font-size: 24px;
  }
  .f-50 {
    font-size: 22px;
  }
  .f-48 {
    font-size: 22px;
  }
  .f-46 {
    font-size: 20px;
  }
  .f-44 {
    font-size: 20px;
  }
  .f-42 {
    font-size: 20px;
  }
  .f-40 {
    font-size: 18px;
  }
  .f-38 {
    font-size: 18px;
  }
  .f-36 {
    font-size: 18px;
  }
  .f-34 {
    font-size: 16px;
  }
  .f-32 {
    font-size: 16px;
  }
  .f-30 {
    font-size: 16px;
  }
  .f-28 {
    font-size: 16px;
  }
  .f-26 {
    font-size: 14px;
  }
  .f-24 {
    font-size: 14px;
  }
  .f-22 {
    font-size: 14px;
  }
  .f-20 {
    font-size: 14px;
  }
  .f-18 {
    font-size: 12px;
  }
  .f-16 {
    font-size: 12px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  #index .row.r3 .title {
    opacity: 1;
  }
  #water {
    width: 42vw;
  }
  #index #top {
    height: 68vh !important;
  }
  #index .row {
    padding-bottom: 0.36rem;
  }
  #index .webGL-slider .pagination {
    top: auto;
    transform: none;
    bottom: 0;
  }
  .webGL-slider a.move-prev,
  .webGL-slider a.move-next {
    display: none;
  }
  .indexBanner .scr,
  #index #main .r1 .r-main .wid-50 .con .pic_child,
  #index #main .r1 .r-main .bg2,
  #index #main .r1 .bg {
    display: none;
  }
  #index #main .r1 .r-main .wid-50 {
    width: 100%;
    margin-left: 0;
  }
  #index #main .r1 .r-main .wid-50 .con {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
  }
  #index #main .r1 .r-main .wid-50 .pic {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  #index #main .r2 .r-main .new-box .new-tab {
    right: auto;
    width: 100%;
    left: 0;
  }
  #index #main .r2 .r-main .new-box .new-tab > li {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  #index #main .r2 .r-main .new-box .new-tab > a {
    width: 36px;
    height: 36px;
    margin: 0 6px;
    line-height: 36px;
  }
  #index .r2 .title {
    margin-bottom: 108px;
  }
  #index #main .r2 .r-main .new-box .new-list .fl .pic-list .con {
    width: 91%;
  }
  #index #main .r2 .r-main .new-box .new-list .fl {
    height: 32vh;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  #index #main .r2 .r-main .new-box .new-list .fl .pic-list .pic {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  #index #main .r2 .r-main .new-box .new-list .fr {
    padding: 0.4rem 0.3rem;
    margin-left: 0;
    padding-top: calc(32vh + 0.4rem);
  }
  #index #main .r2 .r-main .new-box .new-list .fr > ul > li {
    margin-bottom: 18px;
  }
  #index #main .r2 .r-main .new-box .new-list .fl,
  #index #main .r2 .r-main .new-box .new-list .fr {
    width: 100%;
  }
  #index #main .r3 .r-main .home-pro > li .r-left,
  #index #main .r3 .r-main .pro-tab > li > i:after {
    display: none;
  }
  #index #main .r3 .r-main .home-pro > li .r-right {
    width: 100%;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-slider {
    width: 100%;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-slider > ul > li .type {
    font-size: 40px;
    line-height: 1.6;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-slider > ul > li .note {
    transform: rotate(90deg) scale(0.7);
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-page {
    width: 100%;
    height: 40px;
    bottom: -74px;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-page > ol {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-page > ol > li {
    display: inline-block;
    margin-bottom: 0;
  }
  #index #main .r3 .r-main .home-pro > li .r-right .pro-page > ol > li > span {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  #index #main .r3 .r-main .home-pro {
    margin-top: 128px;
    min-height: 350px;
  }
  #index #main .r3 .r-main .pro-tab {
    width: 100%;
    top: 70px;
    justify-content: space-around;
  }
  #index #main .r3 .r-main .pro-tab > li > i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 0;
    display: inline-block;
  }
  #index #main .r3 .r-main .pro-tab > li:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    right: 0;
    margin: auto;
  }
  #index #main .r3 .r-main .pro-tab > li > span {
    width: 50px;
  }
  #index #main .r3 .bg {
    height: 52%;
  }
  #index #main .r3 .r-main .pro-tab > li {
    margin-bottom: 0px;
    text-align: center;
  }
  #index #main .r3 .r-main .pro-tab > div {
    display: none;
  }
  #index #main .r4 .r-main .home-stock > ul {
    flex-wrap: wrap;
    position: relative;
  }
  #index #main .r4 .r-main .home-stock .pic {
    display: none;
  }
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(1),
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(2),
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(3) {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding: 0;
  }
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(1) {
    padding-top: 20px;
  }
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(2) .stock-data {
    justify-content: center;
  }
  #index
    #main
    .r4
    .r-main
    .home-stock
    > ul
    > li:nth-of-type(2)
    .stock-data
    > span {
    margin-right: 12px;
  }
  #index #main .r4 .r-main .home-stock > ul > li:nth-of-type(2) .stock-msg {
    display: flex;
    justify-content: space-around;
  }
  #bloc footer .f-main .max-wid > ul li {
    margin-bottom: 12px;
  }
  #bloc footer .f-main .max-wid > ul li:nth-of-type(1),
  #bloc footer .f-main .max-wid > ul li:nth-of-type(4) {
    display: none;
  }
  #bloc footer .f-main .max-wid > ul > li h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 700px) {
  html {
    font-size: 50px;
  }
  p {
    font-size: 12px;
    line-height: 180%;
  }
  small,
  span {
    font-size: 12px;
  }
  .f-80 {
    font-size: 28px;
  }
  .f-72 {
    font-size: 26px;
  }
  .f-60 {
    font-size: 24px;
  }
  .f-50 {
    font-size: 24px;
  }
  .f-48 {
    font-size: 24px;
  }
  .f-46 {
    font-size: 22px;
  }
  .f-44 {
    font-size: 22px;
  }
  .f-42 {
    font-size: 20px;
  }
  .f-40 {
    font-size: 20px;
  }
  .f-38 {
    font-size: 18px;
  }
  .f-36 {
    font-size: 18px;
  }
  .f-34 {
    font-size: 18px;
  }
  .f-32 {
    font-size: 16px;
  }
  .f-30 {
    font-size: 16px;
  }
  .f-28 {
    font-size: 16px;
  }
  .f-26 {
    font-size: 14px;
  }
  .f-24 {
    font-size: 14px;
  }
  .f-22 {
    font-size: 14px;
  }
  .f-20 {
    font-size: 14px;
  }
  .f-18 {
    font-size: 14px;
  }
  .f-16 {
    font-size: 14px;
  }
  .f-14 {
    font-size: 12px;
  }
  .f-12 {
    font-size: 12px;
  }

  .mt-1 {
    margin-top: 1px;
  }
  .mt-3 {
    margin-top: 3px;
  }
  .mt-4 {
    margin-top: 4px;
  }
  .mt-5 {
    margin-top: 4px;
  }
  .mt-6 {
    margin-top: 4px;
  }
  .mt-7 {
    margin-top: 4px;
  }
  .mt-8 {
    margin-top: 4px;
  }
  .mt-9 {
    margin-top: 4px;
  }
  .mt-10 {
    margin-top: 6px;
  }
  .mt-12 {
    margin-top: 6px;
  }
  .mt-14 {
    margin-top: 6px;
  }
  .mt-16 {
    margin-top: 6px;
  }
  .mt-18 {
    margin-top: 6px;
  }
  .mt-20 {
    margin-top: 8px;
  }
  .mt-22 {
    margin-top: 8px;
  }
  .mt-24 {
    margin-top: 8px;
  }
  .mt-26 {
    margin-top: 8px;
  }
  .mt-28 {
    margin-top: 10px;
  }
  .mt-30 {
    margin-top: 10px;
  }
  .mt-32 {
    margin-top: 10px;
  }
  .mt-34 {
    margin-top: 10px;
  }
  .mt-36 {
    margin-top: 12px;
  }
  .mt-38 {
    margin-top: 12px;
  }
  .mt-40 {
    margin-top: 12px;
  }
  .mt-42 {
    margin-top: 14px;
  }
  .mt-44 {
    margin-top: 14px;
  }
  .mt-46 {
    margin-top: 16px;
  }
  .mt-48 {
    margin-top: 16px;
  }
  .mt-50 {
    margin-top: 18px;
  }
  .mt-60 {
    margin-top: 18px;
  }
  .mt-70 {
    margin-top: 20px;
  }
  .mt-80 {
    margin-top: 22px;
  }
  .mt-90 {
    margin-top: 26px;
  }
  .mt-100 {
    margin-top: 30px;
  }

  .mb-1 {
    margin-bottom: 1px;
  }
  .mb-3 {
    margin-bottom: 3px;
  }
  .mb-4 {
    margin-bottom: 4px;
  }
  .mb-5 {
    margin-bottom: 4px;
  }
  .mb-6 {
    margin-bottom: 4px;
  }
  .mb-7 {
    margin-bottom: 4px;
  }
  .mb-8 {
    margin-bottom: 4px;
  }
  .mb-9 {
    margin-bottom: 4px;
  }
  .mb-10 {
    margin-bottom: 6px;
  }
  .mb-12 {
    margin-bottom: 6px;
  }
  .mb-14 {
    margin-bottom: 6px;
  }
  .mb-16 {
    margin-bottom: 6px;
  }
  .mb-18 {
    margin-bottom: 6px;
  }
  .mb-20 {
    margin-bottom: 8px;
  }
  .mb-22 {
    margin-bottom: 8px;
  }
  .mb-24 {
    margin-bottom: 8px;
  }
  .mb-26 {
    margin-bottom: 8px;
  }
  .mb-28 {
    margin-bottom: 10px;
  }
  .mb-30 {
    margin-bottom: 10px;
  }
  .mb-32 {
    margin-bottom: 10px;
  }
  .mb-34 {
    margin-bottom: 10px;
  }
  .mb-36 {
    margin-bottom: 12px;
  }
  .mb-38 {
    margin-bottom: 12px;
  }
  .mb-40 {
    margin-bottom: 12px;
  }
  .mb-42 {
    margin-bottom: 14px;
  }
  .mb-44 {
    margin-bottom: 14px;
  }
  .mb-46 {
    margin-bottom: 16px;
  }
  .mb-48 {
    margin-bottom: 16px;
  }
  .mb-50 {
    margin-bottom: 18px;
  }
  .mb-60 {
    margin-bottom: 18px;
  }
  .mb-70 {
    margin-bottom: 20px;
  }
  .mb-80 {
    margin-bottom: 22px;
  }
  .mb-90 {
    margin-bottom: 26px;
  }
  .mb-100 {
    margin-bottom: 30px;
  }

  .ml-1 {
    margin-left: 1px;
  }
  .ml-3 {
    margin-left: 3px;
  }
  .ml-4 {
    margin-left: 4px;
  }
  .ml-5 {
    margin-left: 4px;
  }
  .ml-6 {
    margin-left: 4px;
  }
  .ml-7 {
    margin-left: 4px;
  }
  .ml-8 {
    margin-left: 4px;
  }
  .ml-9 {
    margin-left: 4px;
  }
  .ml-10 {
    margin-left: 6px;
  }
  .ml-12 {
    margin-left: 6px;
  }
  .ml-14 {
    margin-left: 6px;
  }
  .ml-16 {
    margin-left: 6px;
  }
  .ml-18 {
    margin-left: 6px;
  }
  .ml-20 {
    margin-left: 8px;
  }
  .ml-22 {
    margin-left: 8px;
  }
  .ml-24 {
    margin-left: 8px;
  }
  .ml-26 {
    margin-left: 8px;
  }
  .ml-28 {
    margin-left: 10px;
  }
  .ml-30 {
    margin-left: 10px;
  }
  .ml-32 {
    margin-left: 10px;
  }
  .ml-34 {
    margin-left: 10px;
  }
  .ml-36 {
    margin-left: 12px;
  }
  .ml-38 {
    margin-left: 12px;
  }
  .ml-40 {
    margin-left: 12px;
  }
  .ml-42 {
    margin-left: 14px;
  }
  .ml-44 {
    margin-left: 14px;
  }
  .ml-46 {
    margin-left: 16px;
  }
  .ml-48 {
    margin-left: 16px;
  }
  .ml-50 {
    margin-left: 18px;
  }
  .ml-60 {
    margin-left: 18px;
  }
  .ml-70 {
    margin-left: 20px;
  }
  .ml-80 {
    margin-left: 22px;
  }
  .ml-90 {
    margin-left: 26px;
  }
  .ml-100 {
    margin-left: 30px;
  }

  .mr-1 {
    margin-right: 1px;
  }
  .mr-3 {
    margin-right: 3px;
  }
  .mr-4 {
    margin-right: 4px;
  }
  .mr-5 {
    margin-right: 4px;
  }
  .mr-6 {
    margin-right: 4px;
  }
  .mr-7 {
    margin-right: 4px;
  }
  .mr-8 {
    margin-right: 4px;
  }
  .mr-9 {
    margin-right: 4px;
  }
  .mr-10 {
    margin-right: 6px;
  }
  .mr-12 {
    margin-right: 6px;
  }
  .mr-14 {
    margin-right: 6px;
  }
  .mr-16 {
    margin-right: 6px;
  }
  .mr-18 {
    margin-right: 6px;
  }
  .mr-20 {
    margin-right: 8px;
  }
  .mr-22 {
    margin-right: 8px;
  }
  .mr-24 {
    margin-right: 8px;
  }
  .mr-26 {
    margin-right: 8px;
  }
  .mr-28 {
    margin-right: 10px;
  }
  .mr-30 {
    margin-right: 10px;
  }
  .mr-32 {
    margin-right: 10px;
  }
  .mr-34 {
    margin-right: 10px;
  }
  .mr-36 {
    margin-right: 12px;
  }
  .mr-38 {
    margin-right: 12px;
  }
  .mr-40 {
    margin-right: 12px;
  }
  .mr-42 {
    margin-right: 14px;
  }
  .mr-44 {
    margin-right: 14px;
  }
  .mr-46 {
    margin-right: 16px;
  }
  .mr-48 {
    margin-right: 16px;
  }
  .mr-50 {
    margin-right: 18px;
  }
  .mr-60 {
    margin-right: 18px;
  }
  .mr-70 {
    margin-right: 20px;
  }
  .mr-80 {
    margin-right: 22px;
  }
  .mr-90 {
    margin-right: 26px;
  }
  .mr-100 {
    margin-right: 30px;
  }

  .pt-1 {
    padding-top: 1px;
  }
  .pt-3 {
    padding-top: 3px;
  }
  .pt-4 {
    padding-top: 4px;
  }
  .pt-5 {
    padding-top: 4px;
  }
  .pt-6 {
    padding-top: 4px;
  }
  .pt-7 {
    padding-top: 4px;
  }
  .pt-8 {
    padding-top: 4px;
  }
  .pt-9 {
    padding-top: 4px;
  }
  .pt-10 {
    padding-top: 6px;
  }
  .pt-12 {
    padding-top: 6px;
  }
  .pt-14 {
    padding-top: 6px;
  }
  .pt-16 {
    padding-top: 6px;
  }
  .pt-18 {
    padding-top: 6px;
  }
  .pt-20 {
    padding-top: 8px;
  }
  .pt-22 {
    padding-top: 8px;
  }
  .pt-24 {
    padding-top: 8px;
  }
  .pt-26 {
    padding-top: 8px;
  }
  .pt-28 {
    padding-top: 10px;
  }
  .pt-30 {
    padding-top: 10px;
  }
  .pt-32 {
    padding-top: 10px;
  }
  .pt-34 {
    padding-top: 10px;
  }
  .pt-36 {
    padding-top: 12px;
  }
  .pt-38 {
    padding-top: 12px;
  }
  .pt-40 {
    padding-top: 12px;
  }
  .pt-42 {
    padding-top: 14px;
  }
  .pt-44 {
    padding-top: 14px;
  }
  .pt-46 {
    padding-top: 16px;
  }
  .pt-48 {
    padding-top: 16px;
  }
  .pt-50 {
    padding-top: 18px;
  }
  .pt-60 {
    padding-top: 18px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pt-80 {
    padding-top: 22px;
  }
  .pt-90 {
    padding-top: 26px;
  }
  .pt-100 {
    padding-top: 30px;
  }

  .pb-1 {
    padding-bottom: 1px;
  }
  .pb-3 {
    padding-bottom: 3px;
  }
  .pb-4 {
    padding-bottom: 4px;
  }
  .pb-5 {
    padding-bottom: 4px;
  }
  .pb-6 {
    padding-bottom: 4px;
  }
  .pb-7 {
    padding-bottom: 4px;
  }
  .pb-8 {
    padding-bottom: 4px;
  }
  .pb-9 {
    padding-bottom: 4px;
  }
  .pb-10 {
    padding-bottom: 6px;
  }
  .pb-12 {
    padding-bottom: 6px;
  }
  .pb-14 {
    padding-bottom: 6px;
  }
  .pb-16 {
    padding-bottom: 6px;
  }
  .pb-18 {
    padding-bottom: 6px;
  }
  .pb-20 {
    padding-bottom: 8px;
  }
  .pb-22 {
    padding-bottom: 8px;
  }
  .pb-24 {
    padding-bottom: 8px;
  }
  .pb-26 {
    padding-bottom: 8px;
  }
  .pb-28 {
    padding-bottom: 10px;
  }
  .pb-30 {
    padding-bottom: 10px;
  }
  .pb-32 {
    padding-bottom: 10px;
  }
  .pb-34 {
    padding-bottom: 10px;
  }
  .pb-36 {
    padding-bottom: 12px;
  }
  .pb-38 {
    padding-bottom: 12px;
  }
  .pb-40 {
    padding-bottom: 12px;
  }
  .pb-42 {
    padding-bottom: 14px;
  }
  .pb-44 {
    padding-bottom: 14px;
  }
  .pb-46 {
    padding-bottom: 16px;
  }
  .pb-48 {
    padding-bottom: 16px;
  }
  .pb-50 {
    padding-bottom: 18px;
  }
  .pb-60 {
    padding-bottom: 18px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pb-80 {
    padding-bottom: 22px;
  }
  .pb-90 {
    padding-bottom: 26px;
  }
  .pb-100 {
    padding-bottom: 30px;
  }

  .pl-1 {
    padding-left: 1px;
  }
  .pl-3 {
    padding-left: 3px;
  }
  .pl-4 {
    padding-left: 4px;
  }
  .pl-5 {
    padding-left: 4px;
  }
  .pl-6 {
    padding-left: 4px;
  }
  .pl-7 {
    padding-left: 4px;
  }
  .pl-8 {
    padding-left: 4px;
  }
  .pl-9 {
    padding-left: 4px;
  }
  .pl-10 {
    padding-left: 6px;
  }
  .pl-12 {
    padding-left: 6px;
  }
  .pl-14 {
    padding-left: 6px;
  }
  .pl-16 {
    padding-left: 6px;
  }
  .pl-18 {
    padding-left: 6px;
  }
  .pl-20 {
    padding-left: 8px;
  }
  .pl-22 {
    padding-left: 8px;
  }
  .pl-24 {
    padding-left: 8px;
  }
  .pl-26 {
    padding-left: 8px;
  }
  .pl-28 {
    padding-left: 10px;
  }
  .pl-30 {
    padding-left: 10px;
  }
  .pl-32 {
    padding-left: 10px;
  }
  .pl-34 {
    padding-left: 10px;
  }
  .pl-36 {
    padding-left: 12px;
  }
  .pl-38 {
    padding-left: 12px;
  }
  .pl-40 {
    padding-left: 12px;
  }
  .pl-42 {
    padding-left: 14px;
  }
  .pl-44 {
    padding-left: 14px;
  }
  .pl-46 {
    padding-left: 16px;
  }
  .pl-48 {
    padding-left: 16px;
  }
  .pl-50 {
    padding-left: 18px;
  }
  .pl-60 {
    padding-left: 18px;
  }
  .pl-70 {
    padding-left: 20px;
  }
  .pl-80 {
    padding-left: 22px;
  }
  .pl-90 {
    padding-left: 26px;
  }
  .pl-100 {
    padding-left: 30px;
  }

  .pr-1 {
    padding-right: 1px;
  }
  .pr-3 {
    padding-right: 3px;
  }
  .pr-4 {
    padding-right: 4px;
  }
  .pr-5 {
    padding-right: 4px;
  }
  .pr-6 {
    padding-right: 4px;
  }
  .pr-7 {
    padding-right: 4px;
  }
  .pr-8 {
    padding-right: 4px;
  }
  .pr-9 {
    padding-right: 4px;
  }
  .pr-10 {
    padding-right: 6px;
  }
  .pr-12 {
    padding-right: 6px;
  }
  .pr-14 {
    padding-right: 6px;
  }
  .pr-16 {
    padding-right: 6px;
  }
  .pr-18 {
    padding-right: 6px;
  }
  .pr-20 {
    padding-right: 8px;
  }
  .pr-22 {
    padding-right: 8px;
  }
  .pr-24 {
    padding-right: 8px;
  }
  .pr-26 {
    padding-right: 8px;
  }
  .pr-28 {
    padding-right: 10px;
  }
  .pr-30 {
    padding-right: 10px;
  }
  .pr-32 {
    padding-right: 10px;
  }
  .pr-34 {
    padding-right: 10px;
  }
  .pr-36 {
    padding-right: 12px;
  }
  .pr-38 {
    padding-right: 12px;
  }
  .pr-40 {
    padding-right: 12px;
  }
  .pr-42 {
    padding-right: 14px;
  }
  .pr-44 {
    padding-right: 14px;
  }
  .pr-46 {
    padding-right: 16px;
  }
  .pr-48 {
    padding-right: 16px;
  }
  .pr-50 {
    padding-right: 18px;
  }
  .pr-60 {
    padding-right: 18px;
  }
  .pr-70 {
    padding-right: 20px;
  }
  .pr-80 {
    padding-right: 22px;
  }
  .pr-90 {
    padding-right: 26px;
  }
  .pr-100 {
    padding-right: 30px;
  }
}

#bloc {
  overflow: hidden;
}

#bloc #top {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#bloc #top .indexBanner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
#bloc #top .webGL-slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 5;
}
#bloc #top .webGL-slider > img {
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
#bloc #top .webGL-slider canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  transform-origin: 50% 50%;
}
#bloc #top .webGL-slider .pagination a {
  display: inline-block;
  width: 0.3rem;
  height: 0.04rem;
  opacity: 1;
  position: relative;
  background: rgba(250, 250, 250, 0.5);
  margin-right: 0.06rem;
}
#bloc #top .webGL-slider .pagination .on:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  animation: myfirst 6s;
}
#bloc #top .webGL-slider .pagination {
  position: absolute;
  bottom: 8%;
  left: 16%;
  transform: translateY(-50%);
  z-index: 6;
}
#bloc #top .webGL-slider .pagination .on:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  animation: myfirst 6s;
}
@keyframes myfirst {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
#bloc #top .indexBanner .webGL-slider {
  position: absolute;
}
#bloc #top .indexBanner .webGL-slider .txt-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
#bloc #top .indexBanner .webGL-slider .txt-item .img_box {
  height: 268px;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li {
  position: absolute;
  top: 60%;
  left: 14%;
  font-weight: bold;
  color: #fff;
  display: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#bloc #top .indexBanner .webGL-slider .txt-item > li > h5 {
  margin-bottom: 0.53rem;
  font-size: 1rem;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > small {
  margin-left: 0;
  font-size: 0.6rem;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > .small {
  margin-top: 0.35rem;
  margin-left: 1.42rem;
  font-size: 1rem;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > p {
  margin-top: 0.26rem;
  margin-left: 2.64rem;
  font-size: 0.3rem;
  opacity: 0;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > p.on {
  opacity: 1;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > p > i {
  font-style: italic;
  vertical-align: middle;
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > p .new {
  position: relative;
  display: inline-block;
  width: 1.16rem;
  height: 0.29rem;
  margin-left: 0.18rem;
  border-radius: 6px 0 6px 0;
  vertical-align: middle;
  transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > p .new::before {
  content: "全新升级";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0.22rem;
  font-weight: bold;
  text-align: center;
  line-height: 0.29rem;
  color: #c3161c;
  transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
}
#bloc #top .indexBanner .webGL-slider .txt-item > li > a {
  display: block;
  width: 1.6rem;
  height: 0.54rem;
  margin-top: 1.08rem;
  border-radius: 0.27rem;
  font-size: 0.16rem;
  line-height: 0.54rem;
  text-align: center;
  color: #2799d7;
  background-color: #fff;
}
#bloc #top #water {
  position: absolute;
  width: 6.8rem;
  top: 0;
  left: 0;
  margin: 0;
  height: 100%;
  z-index: 4;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  opacity: 0.8;
}
/* 跟多 */
.hedo {
  margin-top: 0.25rem;
  font-size: 0.18rem;
  font-weight: bold;
  color: #7f8c94;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hedo > a {
  display: flex;
  align-items: center;
}
.hedo > a > span {
  position: relative;
  color: #7f8c94;
}
.hedo > a > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: #dbe2e9;
  transition: 0.5s ease;
}
/* 跟多 hover */
.hedo > a:hover > span:after {
  width: 100%;
}
.hedo > a > i {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.16rem;
  background: url(../images/yjt_sprite_chart.png) no-repeat;
  background-position: 0 0;
  background-size: 2.65rem;
}

/* 内容区域 */
#main {
  position: relative;
  margin: 0 auto;
}
#main .plate {
  position: relative;
  padding-top: 98px;
  padding-bottom: 106px;
}
#main .plate .title {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
#main .plate .title > i {
  font-size: 18px;
  font-style: italic;
  color: #d7dee6;
}

/* 关于我们 */
/* #main .one .about-cont {
  z-index: 2;
  position: relative;
  margin-left: 1.68rem;
}
#main .one .top {
  display: flex;
}
#main .one .video-box {
  position: relative;
  width: 3.55rem;
  height: 2.55rem;
  margin-right: 0.9rem;
  border-radius: 0.3rem 0.3rem 0 0.3rem;
  overflow: hidden;
}
#main .one .video-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
#main .one .video-box .play {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 0.6rem;
  border-radius: 50%;
}
#main .one .video-box .play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-color: transparent;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(202, 51, 88, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
}
#main .one .video-box .play > img {
  width: 100%;
  height: 100%;
} */
/* hover */
/* #main .one .video-box .play:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -moz-transform: translate(-50%, -50%) scale(1.2);
  -o-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
}
#main .one .history {
  width: 5.65rem;
  margin-top: 0.28rem;
}
#main .one .history .txt {
  min-height: 1.2rem;
  font-size: 0.18rem;
  line-height: 1.7;
  color: #666;
  opacity: 0.9;
}
#main .one .lower {
  position: relative;
  width: 6.82rem;
  height: 3.79rem;
  margin-left: 3.55rem;
}
#main .one .lower .slogan {
  position: absolute;
  left: -5.16rem;
  bottom: 0.46rem;
}
#main .one .lower .pic {
  width: 100%;
  height: 100%;
  border-radius: 0 0.3rem 0.3rem 0.3rem;
  overflow: hidden;
}
#main .one .lower .pic > img {
  width: 100%;
  height: 100%;
}
#main .one .bg {
  z-index: 1;
  position: absolute;
  top: 2.5rem;
  left: -0.11rem;
  width: 76%;
  transition: all 0.1s;
} */

/* 关于我们 2 */
#main .one .cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#main .one .title {
  text-align: left; margin-top:8%;  width:100%;position:relative;
}
#main .one .title strong { font-weight:400; color:#333;   width:100%; float:left; margin-top:0%; font-size:40px; }
#main .one .title strong span { position:absolute;  z-index:1;}



#main .one .title strong span:before { position:absolute; width:380px; height:10px; top:100%; left:0px; content:" "; background:#0f9dcf; z-index:-1;}
#main .one .left {
  width: 90%; padding-left:10%;
}
#main .one .txt {
  max-height: 144px;
  margin-top: 0.53rem;
  font-size: 0.18rem;
  line-height: 2;
  color: #666;
  overflow: hidden;
}
#main .one .txt > span {
  opacity: 0.9;
}
#main .one .hedo {
  margin-top: 0.4rem;
  justify-content: flex-start;
}
#main .one .slogan {
  margin-top: 0.6rem;
}
#main .one .right {
  position: relative;
  width: 49%;
  border-radius:0;
  -webkit-border-radius:0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}
#main .one .right .pic {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  overflow: hidden;
}
#main .one .right .pic > img {
  width: 100%;
}
#main .one .right .play-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  background-color: rgba(203, 35, 76, 0.9);
}
#main .one .right .play-box > img {
  width: 50px;
  height: 50px;
  margin-left: 9%;
  margin-right: 4%;
}
#main .one .right .play-box > span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* one hove */
#main .one .right:hover .pic > img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 2s;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  -ms-transition: all 2s;
  -o-transition: all 2s;
}

/* 品牌劲牌 */
#main .two {
  width: 100%;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}
#main .two .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main .two .title {
  text-align: left;
}
#main .two .title > i {
  color: #c0cbd6;
}
#main .two .brand-cont {
  z-index: 2;
  position: relative;
}
#main .two .brand-wrapper {
  padding: 34px 0 50px 50px;
  margin-top: 40px;
  border-radius: 0.2rem;
  background: #fff;
}
/* top-nav */
#main .two .top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#main .two .top-nav .item {
  z-index: 2;
  position: relative;
  min-width: 12%;
  margin: 0 10px;
  border-radius: 46px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
}
#main .two .top-nav .item:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.23rem;
  background: linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  opacity: 0;
  transform: scaleX(0.8);
  -webkit-transform: scaleX(0.8);
  -moz-transform: scaleX(0.8);
  -o-transform: scaleX(0.8);
}
#main .two .top-nav .item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.1rem;
  width: 1px;
  height: 0.2rem;
  background: #dcdddd;
}
#main .two .top-nav .item:nth-child(1) {
  margin-left: 0;
}
#main .two .top-nav .item:nth-last-child(1) {
  margin-right: 0;
}
#main .two .top-nav .item:nth-last-child(1):after {
  display: none;
}
#main .two .top-nav .item:hover,
#main .two .top-nav .active {
  min-width: 12%;
  height: 0.46rem;
  color: #fff;
}
#main .two .top-nav .item:hover:before,
#main .two .top-nav .active:before {
  opacity: 1;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
/* img-container */
#main .two .img-swiper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
#main .two .img-container {
  position: relative;
  margin-left: 30px;
  flex: 0 0 47.5%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
}
#main .two .img-swiper-wrapper .swiper-slide {
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  overflow: hidden;
}
#main .two .img-swiper-wrapper .swiper-slide-active > img {
  transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transition: all 6s ease-out;
  -webkit-transition: all 6s ease-out;
  -moz-transition: all 6s ease-out;
  -o-transition: all 6s ease-out;
  -ms-transition: all 6s ease-out;
}
#main .two .img-swiper-wrapper img {
  width: 100%;
}
#main .two .introduce-list {
  position: relative;
  width: 39%;
  margin-top: 40px;
  margin-left: 78px;
}
#main .two .introduce {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(0.5rem);
  -webkit-transform: translateX(0.5rem);
  -moz-transform: translateX(0.5rem);
  -o-transform: translateX(0.5rem);
  -ms-transform: translateX(0.5rem);
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  opacity: 0;
}
#main .two .introduce h5 {
  position: relative;
  font-size: 0.24rem;
  font-weight: bold;
  color: #2799d7;
}
#main .two .introduce h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.29rem;
  width: 0.4rem;
  height: 2px;
  background-color: #c4113c;
}
#main .two .introduce .txt {
  max-height: 1.28rem;
  margin-top: 0.7rem;
  font-size: 0.18rem;
  line-height: 1.8;
  color: #666;
}
#main .two .introduce .hedo {
  margin-top: 60px;
}
#main .two .introduce.active {
  z-index: 10;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
}

#main .two .bg {
  position: absolute;
  top: 0;
  left: -37.5%;
  width: 100%;
  height: 100%;
  background: #ecf0f4;
}

/* 劲牌新闻 */
#main .three .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main .three .title {
  text-align: left;
}
#main .three .tab {
  display: flex;
}
#main .three .tab > p {
  position: relative;
  width: 1.6rem;
  padding: 0.15rem 0;
  border-radius: 0.5rem;
  font-size: 0.2rem;
  text-align: center;
  color: #7d8894;
  cursor: pointer;
}
#main .three .tab > p:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background: linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  opacity: 0;
  transform: scaleX(0.8);
  -webkit-transform: scaleX(0.8);
  -moz-transform: scaleX(0.8);
  -o-transform: scaleX(0.8);
}
#main .three .tab > p:nth-child(1) {
  margin-right: 0.1rem;
}
#main .three .tab > p:hover,
#main .three .tab > .active {
  font-weight: bold;
  color: #fff;
}
#main .three .tab > p:hover:before,
#main .three .tab > .active:before {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
#main .three .news-box {
  position: relative;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  box-shadow: 0 23px 90px -5px rgba(236, 240, 244, 0.7);
  -webkit-box-shadow: 0 23px 90px -5px rgba(236, 240, 244, 0.7);
  -moz-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
  -o-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
  -ms-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
}
#main .three .news-box .hode {
  z-index: 3;
  position: absolute;
  left: 0.77rem;
  bottom: -0.28rem;
  width: 1.5rem;
  height: 0.56rem;
  padding-left: 0.1rem;
  border-radius: 0.28rem;
  font-size: 0.14rem;
  font-weight: bold;
  text-align: center;
  line-height: 0.56rem;
  color: #fff;
}
#main .three .news-box .hode:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 100%;
  border-radius: 0.28rem;
  background: linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  background: -ms-linear-gradient(
    180deg,
    rgba(39, 153, 227, 1),
    rgba(85, 183, 246, 1)
  );
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s, width 0.5s;
}
#main .three .news-box .hode > span {
  vertical-align: middle;
}
#main .three .news-box .hode > i {
  width: 0.3rem;
  height: 0.3rem;
  background: url(../images/yjt_sprite_chart.png) no-repeat;
  background-size: 2.65rem;
  background-position: -0.39rem 0;
  display: inline-block;
  vertical-align: middle;
}

/* hover */
#main .three .news-box .hode:hover:before {
  width: 1.7rem;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#main .three .news-box .hode:hover > i {
  transform: translateX(0.12rem);
  -webkit-transform: translateX(0.12rem);
  -moz-transform: translateX(0.12rem);
  -o-transform: translateX(0.12rem);
  -ms-transform: translateX(0.12rem);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
}

#main .three .news-swiper-container {
  position: relative;
  width: 47.5%;
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
  overflow: hidden;
}
#main .three .news-swiper-wrapper {
  height: 100%;
}
#main .three .pic-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transition: opacity 0.5s ease-in-out, transform 1.6s ease-in-out;
}
#main .three .pic-slide.active {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
#main .three .news-swiper-container img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
}
#main .three .news-list {
  width: 46%;
  height: 332px;
  overflow: inherit;
  margin-right: 40px;
  margin-top: 0.3rem;
}
#main .three .news-list .item {
  position: relative;
  padding: 30px 0;
  padding-left: 10px;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: padding-left 1s ease;
}
#main .three .news-list .item:nth-last-child(1) {
  border-bottom: none;
}
#main .three .news-list .time {
  font-size: 0.12rem;
  white-space: nowrap;
  color: #bccbdc;
}
#main .three .news-list .time > span:nth-child(1) {
  font-size: 0.2rem;
  color: #333;
}
#main .three .news-list .title {
  margin-left: 24px;
  font-size: 0.18rem;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#main .three .news-list .item:hover {
  padding-left: 0;
}
#main .three .news-list .item:hover::before {
  z-index: 3;
  content: "";
  position: absolute;
  top: 50%;
  left: -0.56rem;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 2px;
  background-color: #c4113c;
}
#main .three .news-list .item:hover .title {
  color: #c4113c;
  opacity: 0.88;
}
#main .three .news-list .item:hover .time,
#main .three .news-list .item:hover .time > span:nth-child(1) {
  color: #c4113c;
}

/* 技术创新 */
#main .four {
  padding-bottom: 0.9rem;
  padding-top: 0.34rem;
  width: 100%;
  overflow: hidden;
}
#main .four .innovate-cont {
  z-index: 2;
  position: relative;
}
#main .four .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main .four .title {
  text-align: left;
}
#main .four .bg {
  position: absolute;
  top: 0;
  right: -37.5%;
  width: 100%;
  height: 100%;
  background: #ecf0f4;
}
#main .four .innovate-wrapper {
  position: relative;
  margin-top: 43px;
  padding: 60px 0;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
#main .four .info-box {
  flex: 0 0 36%;
}
#main .four .info-box h5 {
  position: relative;
  margin-top: 49px;
  font-size: 24px;
  font-weight: bold;
  color: #2799d7;
}
#main .four .info-box h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.29rem;
  width: 0.4rem;
  height: 2px;
  background-color: #c4113c;
}
#main .four .info-box .txt {
  min-height: 1.28rem;
  margin-top: 0.7rem;
  font-size: 0.18rem;
  line-height: 1.8;
  color: #666;
}
#main .four .info-box .hedo {
  margin-top: 100px;
  justify-content: flex-start;
}
#main .four .info-box.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
}
#main .four .pic-list {
  z-index: 1;
  position: relative;
  flex: 0 0 47%;
  margin-right: 8%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  overflow: hidden;
}
#main .four .pic-list .swiper-slide {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s;
  -webkit-transition: opacity 2s;
  -moz-transition: opacity 2s;
  -o-transition: opacity 2s;
  -ms-transition: opacity 2s;
}
#main .four .pic-list .swiper-slide > img {
  width: 100%;
  height: 100%;
  transition: 5s ease-out;
  -webkit-transition: 5s ease-out;
  -moz-transition: 5s ease-out;
  -o-transition: 5s ease-out;
  -ms-transition: 5s ease-out;
}
#main .four .pic-list .swiper-slide-active {
  opacity: 1;
}
#main .four .pic-list .swiper-slide-active > img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
#main .four .bg-box {
  position: absolute;
  right: 2%;
  top: 0.6rem;
  width: 47%;
  height: 4.24rem;
  background-color: #fff;
}
#main .four .bg-box .md-box {
  position: absolute;
  top: 0.23rem;
  right: 6%;
  width: 93%;
  height: 3.83rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.6;
  background-color: #ecf0f4;
}
#main .four .bg-box .sm-box {
  position: absolute;
  top: 0.38rem;
  right: 0;
  width: 85%;
  height: 3.48rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.4;
  background-color: #ecf0f4;
}
/* foot */
#main .foot {
  width: 100%;
  margin-top: 1rem;
  line-height: 180px;
  background: url(../images/footer_banner.jpg) no-repeat;
  background-size: cover;
}
#main .foot .cont {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main .foot .left {
  display: flex;
  align-items: center;
}
#main .foot .title {
  margin-right: 0.93rem;
  font-size: 0.4rem;
  font-weight: bold;
  text-align: left;
  line-height: 1;
}
#main .foot .title > i {
  font-size: 0.18rem;
  font-style: italic;
  opacity: 0.6;
}
#main .foot .left > span {
  font-size: 0.24rem;
}
#main .foot .right {
  font-size: 0.16rem;
  display: flex;
  align-items: center;
  color: #fff;
}
#main .foot .right i {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: 0.12rem;
  background: url(../images/yjt_sprite_chart.png) no-repeat;
  background-position: 0 -0.39rem;
  background-size: 2.65rem;
}

/* 视频播放弹窗 */
.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.videos-wrap {
  max-width: 1200px;
  position: absolute;
  box-sizing: border-box;
  padding: 20px;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
}
.videos-wrap video {
  width: 100%;
  /*	height: 100%;*/
  object-fit: fill;
}
.videos-wrap button {
  position: absolute;
  right: 0;
  top: -70px;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  outline: none;
}
#main .plate .all_news {
  width: 100%;
}
.all_news .news_items {
  display: none;
  overflow: hidden;
  position: relative;
  /*margin-top: 60px;*/
  /* display: flex; */
  justify-content: space-between;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  box-shadow: 0 23px 90px -5px rgba(236, 240, 244, 0.7);
  -webkit-box-shadow: 0 23px 90px -5px rgba(236, 240, 244, 0.7);
  -moz-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
  -o-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
  -ms-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
}
.all_news .news_items.active {
  display: flex;
}
.all_news .news_items .left {
  position: relative;
  width: 47.5%;
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.all_news .news_items .right {
  width: 46%;
  height: 332px;
  /* overflow: inherit; */
  margin-right: 40px;
  margin-top: 0.3rem;
}
.all_news .news_items .left img {
  width: 100%;
  height: 100%;
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -ms-border-radius: 30px 0 0 30px;
  -o-border-radius: 30px 0 0 30px;
}
.all_news .news_items .item {
  position: relative;
  padding: 30px 0;
  padding-left: 10px;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: padding-left 1s ease;
}
.all_news .news_items .item .time {
  font-size: 0.12rem;
  white-space: nowrap;
  color: #bccbdc;
}
#main .plate .all_news .news_items .item .title {
  margin-left: 24px;
  font-size: 0.18rem;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.all_news .news_items .item:nth-last-child(1) {
  border-bottom: none;
}
.all_news .news_items .item .time > span:nth-child(1) {
  font-size: 0.2rem;
  color: #333;
}
.all_news .news_items .item:hover {
  padding-left: 0;
}
.all_news .news_items .item:hover::before {
  z-index: 3;
  content: "";
  position: absolute;
  top: 50%;
  left: -0.56rem;
  transform: translateY(-50%);
  width: 0.4rem;
  height: 2px;
  background-color: #c4113c;
}
.all_news .news_items .item:hover .time,
.all_news .news_items .item:hover .time > span:nth-child(1) {
  color: #c4113c;
}
#main .plate .all_news .news_items .item:hover .title {
  color: #c4113c;
  opacity: 0.88;
}
.all_news .news_items .left .img_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transition: opacity 0s, transform 1.6s ease-in-out;
}
.all_news .news_items .left .img_box img.cur {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
/* 媒体查询 */
@media screen and (max-width: 1440px) {
  .hedo {
    font-size: 14px;
  }
  .hedo > a > i {
    width: 21px;
    height: 21px;
    background-size: 178px;
  }
  .slogan {
    font-size: 14px;
  }
  #main .one .slogan {
    font-size: 14px;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item .img_box {
    height: 160px;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item .img_box img {
    max-height: 100%;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item > li > h5 {
    font-size: 75px;
    margin-bottom: 35px;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item > li > .small {
    font-size: 75px;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item > li > small {
    font-size: 45px;
  }
  #bloc #top .indexBanner .webGL-slider .txt-item > li > a {
    margin-top: 77px;
  }
  #main .plate {
    padding-top: 70px;
  }
  #main .plate .title {
    font-size: 35px; line-height:45px;
  }
  #main .plate .title font { font-size:28px;}
  #main .plate .title b { color:#306429;}
  #main .plate .title > i {
    font-size: 14px;
  }

  /* one */
  #main .one .txt {
    font-size: 15px; line-height:28px;
  }
  #main .one .right .play-box {
    height: 57px;
    line-height: 57px;
  }
  #main .one .right .play-box > img {
    width: 35px;
    height: 35px;
  }
  #main .one .right .play-box > span {
    font-size: 14px;
  }

  #main .two .top-nav {
    font-size: 14px;
  }
  #main .two .top-nav .item {
    line-height: 33px;
  }
  #main .two .top-nav .item:hover,
  #main .two .top-nav .active {
    height: 33px;
  }
  #main .two .introduce h5 {
    font-size: 16px;
  }
  #main .two .introduce .txt {
    font-size: 14px;
  }

  #main .three .tab > p {
    font-size: 16px;
  }
  #main .three .news-list .time > span:nth-child(1) {
    font-size: 16px;
  }
  #main .three .news-list .title {
    font-size: 14px;
  }
  #main .three .news-box .hode {
    width: 128px;
    height: 40px;
    bottom: -20px;
    line-height: 40px;
  }
  #main .three .news-box .hode:before {
    width: 128px;
  }

  #main .four .info-box h5 {
    font-size: 16px;
  }
  #main .four .info-box .txt {
    font-size: 14px;
  }
  #main .four .bg-box {
    height: 384px;
  }
  #main .four .bg-box .md-box {
    height: 330px;
  }
  #main .four .bg-box .sm-box {
    height: 280px;
  }

  #main .foot {
    line-height: 130px;
  }
  #main .foot .title {
    margin-right: 60px;
    font-size: 28px;
  }
  #main .foot .title > i {
    font-size: 14px;
  }
  #wrap_banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    margin: 0 5px;
  }
  #wrap_banner .swiper-pagination-bullet-active {
    opacity: 1;
  }
  #wrap_banner .swiper-pagination {
    bottom: 20px;
    width: 100%;
  }
}

.wap-header {
  display: none;
}
.news-box-wap {
  display: none;
}
.wap-header-height {
  display: none;
}
.news-wap-more {
  display: none;
}
.index-more-wap {
  display: none;
}
.wap_nav {
  display: none;
}
.wap_wrap {
  display: none;
}
.wap_contact_way {
  display: none;
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 13px;
  }
  .wap_contact_way,
  .wap-header-height {
    display: block;
  }
  .wap_wrap {
    display: block;
  }
  /*#bloc{
		display: none;
    }*/
  #bloc #top .indexBanner .webGL-slider .txt-item img {
    max-width: 60%;
  }
  header .head-wrapper {
    display: none;
  }
  .wap-header {
    display: block;
    height: 4rem;
    width: 100%;
  }
  header {
    width: 100%;
    position: static;
    background: rgba(255, 255, 255, 1);
  }
  .index-wap-about-img {
    width: 100%;
    margin: 1rem 0;
    border-radius: 10px;
  }
  #main .one .right {
    display: none;
  }

  #bloc #top .webGL-slider .pagination a {
    width: 15px;
    height: 2px;
  }

  #bloc #top .indexBanner .webGL-slider .txt-item > li > h5 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 0px;
  }

  #bloc #top .indexBanner .webGL-slider .txt-item > li > small {
    margin-left: 0rem;
    font-size: 1.6rem;
  }

  #bloc #top .indexBanner .webGL-slider .txt-item > li > .small {
    font-size: 2.5rem;
  }

  #bloc #top .indexBanner .webGL-slider .txt-item > li > p {
    display: none;
  }

  #bloc #top .indexBanner .webGL-slider .txt-item > li > a {
    width: 6rem;
    height: 2.5rem;
    border-radius: 12rem;
    line-height: 2.5rem;
    margin-top: 5rem;
    font-size: 1rem;
  }
  #bloc #top #water {
    width: 12.5rem;
    display: none;
  }
  .pc-imglist {
    display: none;
  }
  .wrap-imglist .img-item img {
    width: 100%;
    max-height: 100%;
  }
  #main .one .bg {
    display: none;
  }
  #main {
    max-width: 100%;
  }
  #main .plate {
    max-width: 100%;
    padding: 0 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
  }

  #main .one {
    padding-bottom: 0rem;
  }
  #main .one .about-cont {
    margin-left: 0rem;
  }
  #main .plate .title {
    text-align: left;
    font-size: 1.5rem;
  }
  #main .plate .title h3 {
    font-size: 1.4rem;
  }
  #main .plate .title > i {
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    font-family: "Arial";
    line-height: 2;
  }
  #main .one .left {
    width: 100%;
  }

  #main .one .cont {
    flex-wrap: wrap;
  }
  #main .one .hedo {
    justify-content: flex-end;
  }

  #main .one .video-box {
    display: none;
  }
  #main .one .history {
    width: 100%;
  }

  .wrapper {
    overflow: hidden;
  }
  #main .one .history .txt {
    font-size: 12px;
  }
  .hedo > a > i {
    width: 20px;
    height: 20px;
    background-size: cover;
    background-image: url(../images/rt.jpg);
  }

  #main .one .lower {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-top: 1rem;
  }

  #main .one .lower > img {
    height: auto;
  }

  #main .one .lower .slogan {
    display: none;
  }
  #main .two .bg {
    display: none;
  }

  .two .slogan {
    display: none;
  }

  #main .two .introduce-list {
    margin-top: 0px;
    width: 100%;
    margin-left: 0px;
    padding-bottom: 15rem;
  }

  #main .plate.two {
    background: #ecf0f4;
  }

  #main .two .top-nav .item:hover,
  #main .two .top-nav .active {
    height: auto;
    min-width: auto;
    color: #2799d7 !important;
    background: transparent;
  }
  #main .two .brand-wrapper {
    margin-top: 0px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
  }
  #main .two .img-swiper-wrapper .swiper-slide {
    border-radius: 0;
  }
  #main .two .top-nav .item {
    line-height: 2.2;
    width: 33.33%;
    margin: 0 0rem;
    font-size: 1.1rem;
    color: #7d8894;
  }

  #main .two .top-nav {
    flex-wrap: wrap;
  }

  #main .two .top-nav .item:hover:before,
  #main .two .top-nav .active:before {
    display: none;
  }

  #main .two .top-nav .item::after {
    background: #7d8894;
    height: 9px;
  }

  #main .two .top-nav .item:nth-child(3n)::after {
    display: none;
  }

  #main .two .img-container {
    width: 100%;
    margin-left: 0;
    height: 16rem;
    border-radius: 0;
  }
  #main .two .img-swiper {
    display: block;
    margin-top: 1rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }

  #main .two .introduce h5 {
    font-size: 1.3rem;
    color: #333333;
    line-height: 1.4;
  }

  #main .two .introduce h5::after {
    display: none;
  }

  #main .two .introduce {
    padding: 3%;
    padding-top: 1.5rem;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
  }

  #main .two .introduce .hedo {
    margin-top: 1rem;
  }

  #main .two .introduce .txt {
    font-size: 1rem;
    margin-top: 1rem;
    overflow: hidden;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    display: -webkit-box;
    display: box;
    max-height: 1000px;
  }

  .hedo > a > span {
    font-size: 12px;
    margin-right: 4px;
  }

  #main .three .tab {
    display: none;
  }

  #main .three .news-box {
    display: none;
  }

  .news-box-wap {
    display: block;
    box-shadow: 0 0 16px 0 #ddd;
    margin-top: 6%;
    padding-bottom: 6%;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }
  #banner {
    width: 100% !important;
  }
  .news-box-wap .img {
    background: #fff;
    padding-bottom: 1.5rem;
  }
  .news-box-wap img {
    width: 100%;
  }
  footer .enterprise span {
    display: block;
  }

  .news-box-title {
    font-weight: bold;
    font-size: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 94%;
    margin: 0 auto;
    display: block;
    overflow: hidden;
    background: #fff;
  }

  .hedo {
    margin-top: 1rem;
  }

  .news-box-data {
    font-size: 1rem;
    display: block;
    margin-top: 3%;
    color: #999999;
    padding-left: 3%;
    padding-right: 3%;
    line-height: 2;
    overflow: hidden;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    display: -webkit-box;
    display: box;
  }

  .slogan {
    display: none;
  }

  #main .four .bg {
    display: none;
  }

  #main .four {
    margin-top: 0;
    background: #ecf0f4;
  }

  .news-wap-more {
    display: inline-block;
    padding: 0rem 2rem;
    line-height: 2.4;
    border-radius: 4rem;
    color: #fff;
    font-size: 1.2rem;
  }
  .news-wap-more span,
  .news-wap-more i {
    vertical-align: middle;
  }

  #main .four .innovate-wrapper {
    display: none;
  }

  .index-more-wap {
    margin-top: 2rem;
    display: block;
    font-size: 1rem;
    text-align: center;
  }
  #main .foot {
    display: none;
  }

  .sm-wrapper {
    width: 100%;
  }

  footer .main .cd > img {
    width: 80px;
    height: 80px;
  }
  footer .main .cd {
    font-size: 12px;
  }
  footer .footer {
    margin-top: 0;
  }

  footer {
    margin-top: 0;
  }
  footer .main {
    max-width: 92%;
    margin: 0 auto;
    padding: 3rem 0;
  }
  button:focus {
    outline: none;
  }
  footer .banner {
    height: 7.7rem;
    display: flex;
    align-items: center;

    box-sizing: border-box;
    padding: 0 3%;
    background-size: cover;
  }
  footer .banner .cont {
    max-width: 100%;
    width: 100%;
  }

  footer .banner .left > span {
    display: none;
  }

  footer .banner .title h3 {
    font-size: 1.5rem;
  }

  footer .banner .right {
    font-size: 12px;
  }

  footer .banner .right i {
    width: 20px;
    background-size: cover;
    height: 20px;
  }

  footer .main .outer-chain {
    display: none;
  }
  footer .enterprise {
    max-width: 94%;
    display: block;
    font-size: 12px;
    text-align: center;
  }
  footer .footer {
    line-height: 30px;
  }
  footer .main .left {
    display: none;
  }

  footer .main .wap_contact_way h6 {
    font-size: 1.4rem;
    color: #333333;
    font-weight: bold;
  }

  footer .main .wap_contact_way {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #666666;
    padding-bottom: 1rem;
  }

  footer .main .cd {
    width: auto;
    margin-right: 10px;
  }

  .max-wid {
    width: 100%;
  }

  footer .main .right {
    width: auto;
  }

  #main .one .txt {
    line-height: 1.6;
  }

  #main .one .txt span {
    font-size: 1rem;
  }

  .video-index-banner {
    width: 90%;
  }
  .index_videos_wap_wrap {
    padding: 1.5rem 0;
  }
  .video-index-banner .img-item {
    width: 90%;
  }
  .play-box-img {
    position: relative;
    padding-bottom: 66%;
    border-radius: 10px;
    background-size: cover;
  }

  .video-index-banner h6 {
    font-size: 1.2rem;
    color: #333333;
    line-height: 3;
  }

  .play-box-img img {
    width: 3.75rem;
    height: 3.75rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .videos-wrap {
    width: 94%;
    padding: 10px;
  }

  .videos-wrap button {
    width: 2rem;
    height: 2rem;
    top: -3rem;
  }

  .wap-header {
    padding: 0 3%;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 10000;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  .wap-header button img {
    width: 1.8rem;
  }

  .wap-header .logo {
    width: 3.2rem;
  }

  .wap_nav {
    position: fixed;
    left: 100%;
    transition: all 0.5s;
    display: block;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: #ecf0f4;
    height: 100vh;
    box-sizing: border-box;
    padding: 4rem 1.5rem;
    padding-top: 5rem;
  }

  #wap_dl dd {
    display: none;
    line-height: 2rem;
  }
  #wap_dl dt {
    line-height: 4.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dcdddd;
  }
  #hownav {
    outline: none;
  }

  #wap_dl dt span {
    font-size: 1.4rem;
  }

  #wap_dl dd a {
    line-height: 2.4;
    font-size: 1.2rem;
    padding-left: 1rem;
    display: block;
    color: #666666;
  }

  #open2 {
    color: #c6234b;
  }

  #wap_dl .msg {
    padding: 1rem 0;
  }

  .wap_navon {
    left: 0;
  }

  #wap_dl i {
    transition: all 0.5s;
  }

  #open2 i {
    transform: rotate(-180deg);
  }
}
@media screen and (min-width: 768px) {
  .wrap-imglist {
    display: none;
  }
}
.ibanner{ width:100%; height:100vh; overflow:hidden;}


.i_title { width:100%; text-align:center; padding:5% 0px; width:1300px; margin:0px auto;}
.i_title i img { margin-bottom:20px;}
.i_title h3 { line-height:60px; font-size:38px; color:#333; font-weight:400; margin-bottom:2%;}
.i_title p { line-height:30px; font-size:16px; color:#999;}
.i_title strong { font-size:22px; line-height:60px;}

.iabout { width:100%; background:url(../images/abg.jpg) no-repeat center  bottom ; background-size:100% 100%; height:750px; overflow:visible; clear:both;}
.iabout_l { width:50%; float:left; height:100%; position:relative; overflow:hidden; transition:all .4s;}
.iabout_l:before { content:" "; width:100%; height:100%; position:absolute; background:rgba(0,0,0,.4); z-index:1;}
.iabout_l img { width:100%; height:100%; transition:all .4s;}

.iabout_l:hover img { width:105%; height:105%;}


.imore { width:100%; clear:both; overflow:visible;}
.imore  a { width:120px; line-height:40px; height:40px; display: inline-block; text-align: center; color:#fff; background:#2799d7; margin:2% auto; }



.river_box {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.river_box:before { width:100%; height:100%; position:absolute; z-index:2; content:" "; top:0px; left:0px; background:rgba(0,0,0,.5);}

.shipin { width:100% !important; height:700 !important; position:absolute; z-index:0;}


.river_box #river {
  /*width: 100%;*/
 /* height: 100%;*/
  width:auto;
  height:auto;
  z-index: 1;
  position: absolute;
  left: 0px;
  top: 0px;
}

.product-section {
    padding-bottom: 50px;
    position: relative;
    padding-top: 240px;
}

.product-title {
    padding: 50px 10px 30px;
    font-weight: normal;
    font-size: 36px;
    line-height: 46px;
    color: #252b3a;
    text-align: center;
    color: #ffffff
}

.product-wrapper {
    max-width: 1300px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 3; 
}

.product-features .product-body {
    margin: 0px 25px
}

.product-features .product-body:after {
    content: "";
    width: 100%;
    height: 3px;
    background: url(../images/productBase-features-model.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 0
}


.features-item {
    position: relative;
    float: left;
    cursor: pointer;
}

.features-slide .features-item>* {
    text-align: center
}

.features-item h3 {
    font-size: 26px; font-family:Arial, Helvetica, sans-serif;
    line-height: 28px;
    margin-bottom: 50px;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.1s
}

.features-item i {
    position: absolute;
    width: 75%;
    height: 33px;
    background: url(../images/productBase-features-timeline.png) no-repeat;
    background-size: contain;
    background-position: right center;
    left: -25%;
    margin-left: 10px;
    top: 35px;
    z-index: 3
}

.features-item .features-info {
    display: block;
    margin: 0 auto;
    padding: 20px 53px;
    transition: all 0.3s;
    border-radius: 2px
}

.features-item .features-info .features-info-i {
    font-size: 16px;
    color: #ffffff;
    line-height: 22px;
    margin-bottom: 10px
}

.features-item .features-info .features-info-s {
    font-size: 14px;
    color: #c7c7c7;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
  /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
	white-space: pre;
	overflow-wrap: break-word;
}

.features-item.dark i {
    background: url(../images/productBase-features-timeline-dark.png) no-repeat;
    background-size: contain;
    background-position: right center
}


/*鼠标悬浮效果*/

.features-item:hover h3 {
    font-size: 22px;
    line-height: 28px;
    opacity: 0.9
}

.features-item:hover i {
    width: 74%;
    margin-left: 13px;
    background: url(../images/productBase-features-timeline-hover.png) no-repeat;
    background-size: contain;
    background-position: right center
}

.features-item:hover a {
    background: url(../images/productBase-features-info.png) no-repeat;
    background-size: 100% 100%
}


.comm_cont { margin-top:0px; height:600px; width:100%;  }
.comm_cont source { width:100%; height:100%;}


.subPro .con{ padding:30px 0;}
.mainPro{ width:78%; float:left;}
ul.proPic{ padding:0 15px 0 0; margin:-15px 0 -15px  -8px ;}

ul.proPic li{  height:auto; float:left; overflow:hidden;  padding:15px 15px;}
ul.proPic li.w1{width:30.333333%; float:left;}
ul.proPic li.w2{width:47%;  float:left;}
ul.proPic li.hide{ display:none;}
ul.proPic li .proCon{ box-shadow:1px 3px 10px #dfdfdf;  padding:15px; position:relative;}
ul.proPic li p{ line-height:24px;  background:#fafafa; text-align:center; margin:10px 0 0 0; padding:15px 0; overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
ul.proPic li .proCon .border_top{position:absolute;top:0;left:0;}
ul.proPic li .proCon .border_bottom{position:absolute;bottom:0;right:0;}
ul.proPic li .proCon .border_left{position:absolute;top:0;left:0;}
ul.proPic li .proCon .border_right{position:absolute;bottom:0;right:0;}
ul.proPic li a .proCon .border_top,ul.proPic li a .proCon .border_bottom{
	height:1px;width:0;background:#2c6226;	
	-webkit-transition:all 0.3s ease-out;
	-o-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
ul.proPic li a .proCon .border_left,ul.proPic li a .proCon .border_right{
	height:0px;width:1px;background:#2c6226;
	
	-webkit-transition:all 0.3s ease-out;
	-o-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
ul.proPic li  a:hover .proCon .border_top,ul.proPic li  a:hover .proCon .border_bottom{width:100%;}
ul.proPic li  a:hover .proCon .border_left,ul.proPic li  a:hover .proCon .border_right{height:100%;}
ul.proPic li img{width:100%; height:auto; }
ul.proPic li .Img{width:100%; height:auto; overflow:hidden; position:relative; }
ul.proPic li a .Img img{-webkit-transform: translateZ(0)  scale(1);
    -moz-transform: translateZ(0)  scale(1);
    -ms-transform: translateZ(0)  scale(1);
    -o-transform: translateZ(0)  scale(1);
    transform: translateZ(0)  scale(1);
	-webkit-transition: all 0.8s; 
	-moz-transition: all 0.8s;
	 transition: all 0.8s;
	 }
ul.proPic li a:hover .Img img{-webkit-transform: translateZ(0)  scale(1.05);
    -moz-transform: translateZ(0)  scale(1.05);
    -ms-transform: translateZ(0)  scale(1.05);
    -o-transform: translateZ(0)  scale(1.05);
    transform: translateZ(0)  scale(1.05);
	-webkit-transition: all 0.8s; 
	-moz-transition: all 0.8s;
	 transition: all 0.8s;
	 }
ul.proPic li .Img p{position:absolute;width:100%; padding:15px 0; margin:0; color:#FFF;  line-height:24px;bottom:0;left:0;right:0;text-align:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;  }
ul.proPic li a .Img p{  width:100%; background:rgba(0,0,0,0.3);visibility:hidden;opacity:0;-webkit-transform: translate(0,100px);  -moz-transform:translate(0,100px);
  transform: translate(0,100px);-webkit-transition:all .35s ease-in-out;-moz-transition:all .35s ease-in-out;transition:all .35s ease-in-out}
ul.proPic li a:hover .Img p{ width:100%; visibility:visible;opacity:1;-webkit-transform: translate(0,0);  -moz-transform:translate(0,0);  transform: translate(0,0);}

.mobPro{ width:22%; float:left;}
.mobPro .Img{width:100%; height:auto; overflow:hidden;}

.mobPro img{ width:100%; height:auto; overflow:hidden; }
/*.mobPro a .Img img{-webkit-transform: translateZ(0)  scale(1);
    -moz-transform: translateZ(0)  scale(1);
    -ms-transform: translateZ(0)  scale(1);
    -o-transform: translateZ(0)  scale(1);
    transform: translateZ(0)  scale(1);
	-webkit-transition: all 0.8s; 
	-moz-transition: all 0.8s;
	 transition: all 0.8s;
	 }
.mobPro a:hover .Img img{-webkit-transform: translateZ(0)  scale(1.05);
    -moz-transform: translateZ(0)  scale(1.05);
    -ms-transform: translateZ(0)  scale(1.05);
    -o-transform: translateZ(0)  scale(1.05);
    transform: translateZ(0)  scale(1.05);
	-webkit-transition: all 0.8s; 
	-moz-transition: all 0.8s;
	 transition: all 0.8s;
	 }*/
.memberPro .con{ padding:30px 0;}


#mainCon{ padding:100px 0 0px;}
#mainCon .title{margin:0 0 0 0; text-align:center; }
#mainCon .title span{ font-size:32px; line-height:40px;letter-spacing:3px; padding:5px 20px; color:#2799d7; display:inline-block;height:100%;vertical-align:middle;}
#mainCon .title img{vertical-align:middle; margin-top:.3%; }
.con { width:1350px; margin:0px auto;}


.news_item {
  display: block;
  position: relative;
  margin-top: 30px;
}
.news_item:hover img {
  transform: scale(1.02);
}
.new_details_des img {
  max-width: 100%;
  margin: 12px auto;
}

.new_details_des>p>img{
  margin-left: -2em;
}

.pure:after {
  content: " ";
  display: table;
  clear: both;
}

.new_tex_box img {
  float: left;
  width: 40%;
  margin-left: -20.376%;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.new_details_title h6 {
  line-height: 1.4;
}

.new_tex_box {
  float: right;
  padding: 35px 0;
  width: 79.6%;
  transition: all 0.5s ease;
  padding-right: 4.615%;
}

.news_item:hover .new_tex_box {
  border-radius: 10px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 54px rgba(29, 56, 75, 0.26);
}

.new_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
  transition: all 0.5s ease;
}

.new_info {
  font-size: 16px;
  line-height: 2;
  color: #999999;
  margin-top: 25px;
  transition: all 0.5s ease;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 62px;
}

.new_tex_box > div {
  width: 74%;
  float: right;
}

.new_date {
  font-size: 14px;
  color: #999999;
  margin: 20px 0;
  overflow: hidden;
  line-clamp: 2;
  box-orient: vertical;
  display: box;
}

.news_item:hover .new_title {
  color: #bd002e;
}

.news_con { width:1300px; margin:0px auto;  padding-bottom:6%;}
.news_con .i_title { margin-top:0px;}

.index_3_2{
position:relative;}
.index_3_2_left{ overflow:hidden;
position:relative; width:56.92857142857143%; padding:1%; border:1px solid #eee; box-shadow:3px 3px 3px 3px rgba(0,0,0,.1);}
.index_3_2_left_1{ height:100%;
position:relative; overflow:hidden; }
.index_3_2_left_1:after{
	content: "";
  position: absolute;
  left:0; bottom:0; height:120%; width:100%;  z-index:1; opacity:0.9; 
  
  
  background-image: linear-gradient(to bottom, transparent ,transparent , #000);
  
  
  
  
}
.index_3_2_left_1 img{
width:100%;}
.index_3_2_left_1_con{
position:absolute; left:5%; width:90%; color:#fff; bottom:2.125em; z-index:10;}
.index_3_2_left_1_con_1{
font-family:Arial, Helvetica, sans-serif; margin-bottom:10px; font-size:18px;}
.index_3_2_left_1_con_2{
font-size:20px;}
.index_3_2_left_1_con_3{
font-size:15px; line-height:1.5;overflow:hidden;display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;   
overflow: hidden;word-wrap:break-word;
word-break:break-all; margin-top:1em;}
.index_3_2_top{
position:absolute; right:0; top:0; width:37.58333333333333%; height:42.79154078549849%;  padding:1%; border:1px solid #eee; box-shadow:3px 3px 3px 3px rgba(0,0,0,.1); overflow:hidden;}
.index_3_2_footer{
position:absolute; right:0; bottom:0; width:37.58333333333333%; height:42.79154078549849%;  padding:1%; border:1px solid #eee; box-shadow:3px 3px 3px 3px rgba(0,0,0,.1); overflow:hidden;}
.index_3_2_top img,.index_3_2_footer img{
}
.index_3_2_left_1_mask{
position:absolute; left:0; top:0; width:100%; height:100%; z-index:5; background-position:center; background-repeat:no-repeat; background-size:cover;}

.cssimg,.cssimgp img{transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;/*transition-duration: 0.7s;-ms-transition-duration: 0.7s;-moz-transition-duration: 0.7s; -webkit-transition-duration: 0.7s;*/}
.cssimg:hover,.cssimgp:hover img{/*-webkit-transform: scale(1.05, 1.05); -ms-transform: scale(1.05, 1.05); -o-transform: scale(1.05, 1.05); -moz-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);*/transform: scale(1.08, 1.08);}











@font-face {
  font-family: "Barlow-Regular";
  src: url(../fonts/Barlow-Regular.ttf);

}

@font-face {font-family: "BEBAS";
  src:  url(../fonts/BEBAS-1.ttf);}

   .iab{width: 100%;height: auto;padding-bottom: 0px;overflow: hidden;
        /*background: url(../images/ipro-bg.jpg) center no-repeat*/
    }
    .iab .warp{/*width:86%; margin: 0 7%;padding-top:6%;height: auto;*/}
    .iab .warp .box{width: 100%; float: left;padding-top: 0px;}
	

	
	
    .iab .warp .box h2{
        display: block;
        line-height: 40px;
        font-size: 18px;
        text-transform: uppercase; color:#666;
        
        font-family: Barlow-Regular; font-weight:400;
        padding-top: 55px;
        position: relative;
        margin-bottom: 10px;
		
		/*background-image: -webkit-linear-gradient(left,#0066b0,#036eb3,#26b7d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    }
    .iab .warp .box h2:before{
        display: block;
        width: 125px;
        height: 0px;
        background-color: #005eb2;
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
    }

    .iab .warp .box h3{display: block;font-size: 42px;line-height: 55px;margin-bottom: 10px; font-weight:700;
	
		background-image: -webkit-linear-gradient(left,#0066b0,#2e95f2,#2e95f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	
	
	
	}
	 .iab .warp .box h3 span { color:#005eb2;}
    .iab .warp .box .cent{font-size: 16px;line-height: 30px;color: #1d2830;margin-bottom: 40px;}
    .iab .warp .box .cent p{ font-size: 15px;line-height: 28px;color: #666;}
    .iab .warp .box .btns{
        display: block;
        width: 210px;
        height: 48px;
        line-height: 48px;
        color: #fff;
        font-size: 18px;
        padding: 0 30px;
        border-radius: 3px;
        text-transform:capitalize;
        font-family: 'BEBAS';
        background:#1a1f3f url(../images/rddr.png) 80% center no-repeat;
        border:1px solid #1a1f3f;
        transition: all 0.5s;-webkit-transition: all 0.5s;
        margin-bottom: 0px;
    }
    .iab .box .btns:hover{background:#1a1f3f url(../images/rddr.png) 87% center no-repeat;box-shadow: 0 1px 6px 0px rgba(26,31,63,1)}
    .iab .box .details{width: 299px;height: 299px;overflow: hidden;float: right; margin-top:-30px;}
    .iab .box .details img{transition: all 0.5s;-webkit-transition: all 0.5s}
    .iab .box .details:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
    .iab .warp .pic{float: right;width: 598px;height: auto;}

    .iab .warp .pic .video-pc{width: 100%;height:auto;position:relative;margin-bottom: 50px;overflow:hidden; margin-top:20px; box-shadow:0px 10px 10px 10px rgba(0,0,0,.1);}
    .iab .warp .pic .video-pc img{display: block;width: 100%;transition: all 0.5s;-webkit-transition: all 0.5s}
    .iab .warp .pic .video-pc:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
    .iab .warp .pic .video-pc .btns{
        display: block;
        width: 76px;
        height: 76px;
        background: url(../images/iab-btns.png) center no-repeat;
        z-index: 5;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -38px 0 0 -38px;
        cursor: pointer;
        transition: all 0.5s;-webkit-transition: all 0.5s;
    }
    .iab .warp .pic .video-pc .btns:hover{background: url(../images/iab-btns1.png) center no-repeat;}
    .iab .warp .pic .video-ph{display: none;}
    .iab .warp .bot{padding-left:0px;height: auto; width:100%; float:left; padding-bottom:40px;}
    .iab .warp .bot ul li{float: left;margin-right: 70px;}
    .iab .warp .bot ul li:last-child{margin-right: 0px;}
    .iab .bot li p{font-size: 48px;color: #333; text-align: center;line-height: 70px;font-family: 'BEBAS'; margin-bottom: 5px;}
	
	.iab .bot li p span { font-size:15px; line-height:20px;  background:#ec1d20; color:#fff; font-weight:900; border-radius:50%; width:25px; height:25px; padding:2.5px;  display: inline-block; margin-left:-10px; margin-top:-15px; }
	
    /*.iab .bot li:nth-child(1) p{font-family: 'Times New Roman';}*/
    .iab .bot li .intro{display: block; text-align: left;font-size: 15px;line-height: 20px; color:#666;}
	
	
.index_9 {   height:700px; margin:0px auto; width:100%; clear:both; overflow: hidden;}

.index_3_left_mid .index_1_mid_left_1_left_1_1 span i { top:50%;}
.index_1_mid_left_1_left_1_1 { margin:20px 0px;}
	
	
	
	.x_logo { width:100%; text-align:left; margin-bottom:40px;}
	

