html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
legend,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  border: 0;
  padding: 0;
  font-style: normal;
  font-size: 14px;
  color: #3a3a3a;
}
html,
body {
  font-family: "微软雅黑";
  min-width: 1200px;
  max-width: 2000px;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  margin: auto;
  font-size: 14px;
}
nav,
article,
aside,
details,
main,
header,
footer,
section,
fieldset,
figcaption,
figure {
  display: block;
}
img,
a,
button,
em,
del,
strong,
var,
label,
cite,
small,
time,
mark,
code,
textarea {
  display: inline-block;
}
header,
section,
footer {
  position: relative;
}
ol,
ul {
  list-style: none;
}
input,
button,
textarea {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1em;
  /*-webkit-appearance:none;*/
  background-color: rgba(0, 0, 0, 0);
}
span {
  display: inline-block;
}
a:active,
a:hover,
a:focus {
  outline: 0;
}
a,
a:visited {
  text-decoration: none;
}

label,
.wordWrap {
  word-wrap: break-word;
  word-break: break-all;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
img {
  vertical-align: middle;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*  多行文本显示省略号基础样式 */
.text-ellipsis {
  display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
  text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/*  基础按钮样式 */
button:active {
  border: 0px;
  outline: none;
}
button:focus {
  outline: none;
}
button:hover {
  cursor: pointer;
}
/*  flex弹性布局的基础样式*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-row {
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.flex-column {
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.header-top {
  position: fixed;
  top: 0;
  min-width: 1024px;
  max-width: 2000px;
  width: 100%;
  z-index: 99;
}
.header-top-height {
  margin-top: 112px;
}
.header-top .icon-phone {
  background-color: #1b1b1b;
  padding: 0 15%;
  text-align: right;
}
.header-top .icon-phone span {
  color: #ffc106;
  padding: 8px 0 8px 21px;
  background: url("../../images/icon_phone.png") no-repeat;
  background-position: center left;
  background-size: 12px 12px;
}
.header-top .nav {
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 0 15%;
  background-color: #ffffff;
}
.header-top .nav .logo {
  width: 150px;
  height: 30px;
}
.header-top .nav .nav-a {
  justify-content: flex-end;
  align-content: center;
  align-items: center;
}
.header-top .nav .nav-a a {
  padding: 31px 18px;
  font-size: 16px;
  color: #3a3a3a;
}
.header-top .nav .nav-a a:hover {
  background-color: #ffc30e;
}
.header-top .nav .nav-a .contact-us {
  margin-left: 18px;
  width: 120px;
  cursor: pointer;
}
/*-------------  二级下拉菜单 animation -------------------*/
.header-top .nav .nav-a .drop-cont {
  position: relative;
}
.header-top .nav .nav-a .drop-cont .drop-div {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  display: none;
  box-sizing: border-box;
  left: 0;
  width: 100vw;
  height: 50px;
  padding: 0 40%;
  background-color: #f3f3f3;
}
.header-top .nav .nav-a .drop-cont .drop-div .left-cont {
  /* width: 244px; */
}
.header-top .nav .nav-a .drop-cont .drop {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 300px;
  height: 50px;
  background-color: #f3f3f3;
  margin-left: auto;
}
.header-top .nav .nav-a .drop-cont .drop li {
  opacity: 1;
}
.header-top .nav .nav-a .drop-cont:hover .drop-div {
  display: flex;
  display: -webkit-flex;
}
.header-top .nav .nav-a .drop-cont:hover .drop-div .drop{
  margin-left: auto;
}
.header-top .nav .nav-a .drop-cont .drop li .a {
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 16px;
  color: #484848;
  height: 50px;
  width: 170px;
  padding: 0 18px;
}
.header-top .nav .nav-a .drop-cont .drop li .a:hover {
  color: #ffc20c;
  background-color: #fff;
}
/*  swiper轮播图  */
.banner_box {
  margin-top: 80px;
}
.banner_box .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.banner_box .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner_box .swiper-slide .img {
  width: 100%;
  height: auto;
}
.banner_box .swiper-button-next,
.banner_box .swiper-button-prev {
  position: absolute;
  top: 50%;
  margin-top: -40px;
  z-index: 10;
  cursor: pointer;
  background-image: url("");
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.71);
}
.banner_box .swiper-button-next:hover,
.banner_box .swiper-button-prev:hover {
  background-color: #ffc106;
}
.banner_box .swiper-button-next {
  right: 80px;
  left: auto;
}
.banner_box .swiper-button-next:before,
.banner_box .swiper-button-next:after,
.banner_box .swiper-button-prev:before,
.banner_box .swiper-button-prev:after {
  background-color: #ffc106;
}
.banner_box .swiper-button-next:hover:before,
.banner_box .swiper-button-next:hover:after,
.banner_box .swiper-button-prev:hover:before,
.banner_box .swiper-button-prev:hover:after {
  background-color: #000000;
}
.banner_box .swiper-button-next:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 34px;
  width: 15px;
  height: 2px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg); /* IE 9 */
  -moz-transform: rotate(45deg); /* Firefox */
  -webkit-transform: rotate(45deg); /* Safari 和 Chrome */
  -o-transform: rotate(45deg); /* Opera */
}
.banner_box .swiper-button-next:after {
  content: "";
  position: absolute;
  top: 45px;
  left: 34px;
  width: 15px;
  height: 2px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg); /* IE 9 */
  -moz-transform: rotate(-45deg); /* Firefox */
  -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
  -o-transform: rotate(-45deg); /* Opera */
}
.banner_box .swiper-button-prev {
  left: 80px;
  right: auto;
}
.banner_box .swiper-button-prev:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 34px;
  width: 15px;
  height: 2px;
  transform: rotate(135deg);
  -ms-transform: rotate(135deg); /* IE 9 */
  -moz-transform: rotate(135deg); /* Firefox */
  -webkit-transform: rotate(135deg); /* Safari 和 Chrome */
  -o-transform: rotate(135deg); /* Opera */
}
.banner_box .swiper-button-prev:after {
  content: "";
  position: absolute;
  top: 45px;
  left: 34px;
  width: 15px;
  height: 2px;
  transform: rotate(-135deg);
  -ms-transform: rotate(-135deg); /* IE 9 */
  -moz-transform: rotate(-135deg); /* Firefox */
  -webkit-transform: rotate(-135deg); /* Safari 和 Chrome */
  -o-transform: rotate(-135deg); /* Opera */
}
.banner_box .pagination-cont {
  position: absolute;
  right: 15%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #f6f6f6;
}
.banner_box .pagination-cont span {
  font-size: 24px;
  font-weight: 600;
  color: #000106;
}
/*  每个栏目title的基础样式  */
.header-title {
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
.header-title .english-text {
  font-size: 36px;
  font-weight: 300;
  color: #cccccd;
}
.header-title .english-text2 {
  color: #7f6803;
}
.header-title .chinese-text {
  font-size: 40px;
  color: #000106;
  letter-spacing: 5px;
  /* font-weight: 600; */
}
.header-title .img {
  width: 278px;
  height: 15px;
  margin-top: 6px;
}
.header-title .p {
  font-size: 17px;
  color: #868686;
  margin-top: 20px;
  text-align: center;
  line-height: 150%;
  letter-spacing: 2px;
}
.header-title .p2 {
  color: #000000;
}
.s_down {
  box-shadow: 0 0 5px #888;
}
/*  第二栏  */
.info_box {
  padding: 0;
}
.info_box .content {
  position: relative;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0;
}
.info_box .content .box {
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-left: 20px;
}
.info_box .content .box .img {
  position: relative;
  width: 301px;
  height: 200px;
  background-color: #161a26;
}
.info_box .content .box:nth-child(1) .img img {
  position: absolute;
  width: 301px;
  /* height: 186px; */
}
.info_box .content .box:nth-child(2) .img img {
  position: absolute;
  /* top: -24px; */
  width: 301px;
  /* height: 174px; */
}
.info_box .content .box:nth-child(3) .img img {
  position: absolute;
  width: 301px;
  /* height: 195px; */
}
.info_box .content .box:nth-child(4) .img img {
  position: absolute;
  /* top: -24px; */
  width: 301px;
  /* height: 168px; */
}
.info_box .content .box .text {
  /* justify-content: center; */
  align-content: center;
  /*align-items: center;*/
  width: 259px;
  height: 70px;
  padding: 20px 20px;
  border: 1px solid rgb(221, 221, 221);
  background-color: rgb(255, 255, 255);
}
.info_box .content .box:hover .text {
  background-color: #ffc106;
}

.promotion_box {
  padding: 50px 0px;
  background: #f1f1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promotion_box-title {
  width: 65%;
}
.promotion_box-title .chinese-text {
  font-size: 40px;
  color: #000106;
  letter-spacing: 5px;
  display: flex;
  flex-direction: column;
  /* font-weight: 600; */
}
.promotion_box-title .chinese-text img {
  margin-top: 15px;
}
.promotion_box-title-btn {
  margin-left: auto;
  width: 140px;
  height: 50px;
  line-height: 50px;
  background: rgba(255, 193, 6, 1);
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  color: #fff;
  letter-spacing: 3px;
}
.promotion_box-contents {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  /* justify-content: center; */
}
.promotion_box-contents-item {
  width: 45%;
  /* height: 200px; */
  margin-top: 30px;
  margin-left: 2.5%;
  margin-right: 2.5%;
  background: #fff;
}
.promotion_box-contents-item img {
  width: 350px;
}
.promotion_box-contents-item .content_box {
  padding: 40px;
}
.promotion_box-contents-item .content_box .content_box_title {
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
}
.promotion_box-contents-item .content_box .content_box_item {
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}

#Partners {
  padding: 30px 0px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#Partners .swiper-slide {
  padding: 50px 0;
}
#Partners .swiper-slide img {
  width: 300px;
  margin: 0 15px;
}
/*  图片漂浮动画  */
@keyframes ghostUpdown {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: 15px;
  }
  50% {
    margin-top: 0;
  }
  75% {
    margin-top: -15px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes ghostUpdown {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: 15px;
  }
  50% {
    margin-top: 0;
  }
  75% {
    margin-top: -15px;
  }
  100% {
    margin-top: 0;
  }
}
.info_box .content .box .text h3 {
  font-size: 20px;
  color: #000000;
}
.info_box .content .box .text p {
  font-size: 14px;
  color: #696969;
  line-height: 150%;
  margin-top: 5px;
}
.info_box .content .box:hover .text p {
  color: #000000;
}
.info_box .content .six-add {
  position: absolute;
  bottom: 35px;
  left: 50%;
  margin-left: -37.5px;
}

.customized {
  position: relative;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(244, 244, 244);
}
.customized .customized-box {
  width: 68%;
  background: #fff;
  padding: 50px 100px;
}
.customized .customized-box .title {
  font-size: 34px;
  display: flex;
}
.customized .customized-box .title span {
  font-size: 20px;
  color: #666666;
  font-weight: 300;
  margin-left: auto;
}
.customized .customized-box .input {
  display: flex;
  margin-top: 30px;
}

.customized .customized-box .input .title {
  font-size: 16px;
  color: rgb(153, 153, 153);
  margin-bottom: 10px;
}
.customized .customized-box .input input {
  width: calc(100% - 32px);
  padding: 10px 15px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
  /* color: #fff; */
}
.customized .customized-box .input input:hover,
.customized .customized-box  textarea:hover {
  border: 1px solid #e5c40c;
}
.customized .customized-box  textarea {
  width: calc(100% - 32px);
  height: 50px;
  padding: 10px 15px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
  color: #fff;
}
.customized .customized-box .subform {
  width: 150px;
  font-size: 16px;
  color: #fff;
  background-color: #ffc106;
  padding: 15px 20px;
  border-radius: 5px;
  margin-top: 50px;
  cursor: pointer;
}


/*  第八栏  */
.bottom_box {
  position: relative;
  justify-content: center;
  align-items: center;
  height: 300px;
  /*margin: 80px 0 0 0;*/
  background-color: #1e1e1e;
  background-position: top center;
  /*background-size: 100% 100%;*/
  z-index: 2;
}
.bottom_box .left-cont {
  margin-right: 100px;
}

.bottom_box .left-cont img {
  width: 130px;
  height: 30px;
}
.bottom_box .left-cont .cont-text {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
}
.bottom_box .left-cont .cont-text .text h3 {
  font-size: 19px;
  color: #fff;
}
.bottom_box .left-cont .cont-text img {
  margin: -8px 12px 0 0;
}
.bottom_box .left-cont .cont-text .text {
  padding-left: 56px;
}
.bottom_box .left-cont .cont-text .text img {
  margin-left: -56px;
  width: 250px;
}
.bottom_box .left-cont .cont-text .text p {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 10px 0;
  margin-left: -56px;
}
.bottom_box .left-cont .cont-text .text .p1 {
  margin: 20px 0 10px 0;
  margin-left: -56px;
  font-size: 16px;
}
.bottom_box .left-cont .cont-text .text .p2 {
  font-size: 13px;
  color: #fff;
  font-weight: inherit;
  margin: 10px 0;
  margin-left: -56px;
}
.bottom_box .right-cont {
  justify-content: space-around;
  align-items: flex-start;
  height: 169px;
}
.bottom_box .right-cont .link {
  width: 400px;
}
.bottom_box .right-cont .link h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}
.bottom_box .right-cont .link div {
  font-size: 14px;
  color: #fff;
}
.bottom_box .right-cont .link div span a{
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}
.bottom_box .right-cont .link div span:hover {
  color: #ffc106;
  cursor: pointer;
}
.bottom_box .right-cont .contactUs {
  width: 400px;
}
.bottom_box .right-cont .contactUs h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}
.bottom_box .right-cont .contactUs div {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.bottom_box .right-cont .cont-code {
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
}
.bottom_box .right-cont .cont-code img {
  margin-bottom: 10px;
  width: 150px;
}

/*  底部  */
.html-footer {
  position: relative;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding-top: 60px;
  margin-top: -60px;
  background-color: #ffc106;
}
.html-footer span {
  font-size: 16px;
  color: #1e1e1e;
}
.html-footer:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -30px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #1e1e1e;
}
/*  文字跳动动画  */
.font-animate > span {
  animation-name: fontanimate;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  cursor: pointer;
}
.font-animate > span:nth-child(1) {
  animation-delay: 0s;
}
.font-animate > span:nth-child(2) {
  animation-delay: 0.1s;
}
.font-animate > span:nth-child(3) {
  animation-delay: 0.2s;
}
.font-animate > span:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fontanimate {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0.5, 0.1);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0px, -10px, 0);
  }
}

.describe {
  background: #f1f1f1;
}

.describe .line-1 {
  width: 100%;
  padding-top: 21px;
  padding-bottom: 21px;
  background: #fff;
  /* border-bottom: 2px dashed #000; */
}

.describe .line-1 .list {
  width: 1188px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.describe .line-1 .list .list-item {
  width: 220px;
  height: 150px;
  background: rgba(255, 255, 255, 1);
  margin-left: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list .list-item > img {
  width: 54px;
  /* height: 54px; */
  margin-top: 30px;
}

.list .list-item > span {
  margin: auto 0 40px 0;
  height: 17px;
  font-size: 18px;
  font-family: A03-;
  font-weight: 500;
  line-height: 22px;
  color: rgba(27, 27, 27, 1);
  display: flex;
  justify-content: center;
}

.describe .line-2 {
  width: 100%;
  padding-top: 44px;
  padding-bottom: 40px;
}

.describe .line-2 > p {
  text-align: center;
  margin-bottom: 40px;
}

.describe .line-2 > p > span {
  letter-spacing: 2px;
}

.describe .line-2 > p:nth-child(1) > span {
  font-size: 26px;
  color: #1b1b1b;
  font-weight: 400;
}

.describe .line-2 > p:nth-child(1) > span:last-child {
  color: rgba(255, 193, 6, 1);
  margin-left: 10px;
}

.describe .line-2 > p:nth-child(2) {
  color: #999999;
  font-size: 16px;
  margin-bottom: 32px;
}

.input-box {
  width: 1188px;
  margin: auto;
  /* padding: 0 15%; */
}

.input-box > form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demand {
  width: 400px;
  height: 50px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(233, 233, 233, 1);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.demand > input {
  width: 340px;
  height: 100%;
}

.demand > span:last-child {
  color: #999999;
  font-size: 14px;
}

.getphone {
  width: 240px;
  height: 50px;
  background: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(233, 233, 233, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.getphone > input {
  width: 220px;
  height: 100%;
}

.getname {
  width: 220px;
  height: 50px;
  background: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(233, 233, 233, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.getname > input {
  width: 200px;
  height: 100%;
}

.anchor {
  color: #dc0103;
  font-size: 14px;
  margin-left: 8px;
  margin-right: 5px;
}

.assessment {
  /* width: 140px; */
  padding: 0 20px;
  height: 50px;
  background: rgba(255, 193, 6, 1);
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  line-height: 50px;
  text-align: center;
}

.banner_box .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  display: inline-block;
  border-radius: 5px;
  background: #000;
  opacity: 0.2;
}

.banner_box .swiper-pagination-bullet-active {
  background-color: #ffc106;
  opacity: 1;
}

.top {
  margin-top: 50px;
}
.swiper-pagination-bullet {
  background-color: #ffc106 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: #000 !important;
  opacity: 0.4 !important;
}

#nbawareFraudWrap {
  display: none !important;
}
#newBridge #nbwlMessageContainer {
  margin-top: 0 !important;
}

/*  mobile-APP.css  */
.mobile-app-title{
  justify-content: center;
  align-items: center;
}
.mobile-app-title .title{
  font-size: 34px;
  color: #fff;
}
.mobile-app-title .title2{
  color: #3a3a3a;
}
.mobile-app-title .text{
  font-size: 16px;
  color: #fff;
  margin-top: 15px;
  line-height: 150%;
  text-align: center;
}
.mobile-app-title .text2{
   color: #757575;
}
.mobile-app-title .text3{
  color: #adadad;
}
.mobile-app-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/mobile_app_4_bg.jpg") no-repeat;
  background-position: center center;
  z-index: 0;
}
.mobile-app-1{
  justify-content: center;
  align-items: center;
  margin-top: 80Wx;
  background-position: top center;
  width: 70%;
  padding:0 15%;
  z-index: 1;
  background-position: center;
  height: 773px;
  /* height:811px;   */
  background: url("../../images/group_bg.png") no-repeat;
  background-size: 100% 100%;
}
.mobile-app-1 .right-cont{
  justify-content: center;
  align-items: flex-end;
  min-width: 470px;
}
.mobile-app-1 .right-cont h1{
  font-size: 51px;
  color: #fff;
  margin-top: 70px;
}
.mobile-app-1 .right-cont h3{
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
}
.mobile-app-1 .right-cont p{
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.2);
}
.mobile-app-1 .right-cont span{
  font-size: 14px;
  color: #fff;
  text-align: right;
  margin-top: 10px;
}
.mobile-app-1 .right-cont .a-btn{
  font-size: 16px;
  color: #353434;
  text-align: center;
  margin: 160px -18px 0 0;
  margin-top: 120px;
  padding-top: 19px;
  background: url("../../images/mobile_app_1_btn.png") no-repeat;
  background-position: top center;
  width: 216px;
  height: 93px;
}


.mobile-app-1 {
}
.new-img {
  /* width: 756px;
    height: 564px; */
  position: relative;
  justify-content: center;
  align-items: flex-start;
  width: 1570px;
  height: 564px;
}
.new-img img {
  width: 756px;
  height: 564px;
  /* position: absolute;
    left: -309px; */
}
.app_lookmore {
  width: 156px;
  height: 39px;
  background: url("../../images/bg_txt.png") no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  line-height: 39px;
  text-align: center;
  margin-top: 105px;
}
#lookmore_txt {
  font-size: 14px;
  color: #17b080;
  margin-top: 0;
}
.mobile-app-2{
  background: url("../../images/mobile_app_2_bg.jpg") no-repeat;
  background-position: top center;
  height: 777px;
  padding: 100px 0;
  z-index: 1;
}
.mobile-app-2 .content{
  justify-content: center;
  align-items: center;
}
.mobile-app-2 .content .img-cont{
  position: relative;
  width: 806px;
  height: 592px;
  margin:100px 0 0 -80px;
}
.mobile-app-2 .content .img-cont .text-li{
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
  font-size: 34px;
  color: #fff;
  border-radius: 50%;
  background-color: #ff9e06;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(2){
  top: 48px;
  left: 20px;
  width: 140px;
  height: 140px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(3){
  top: 280px;
  left: -100px;
  width: 120px;
  height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(4){
  top: 468px;
  left: 105px;
  width: 120px;
  height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(5){
  top: 36px;
  right: 20px;
  width: 120px;
  height: 120px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(6){
  top: 195px;
  right: -190px;
  width: 140px;
  height: 140px;
}
.mobile-app-2 .content .img-cont .text-li:nth-child(7){
  top: 402px;
  right: -63px;
  width: 140px;
  height: 140px;
}
.mobile-app-3{
  padding: 100px 0;
  background-color: #fff;
  z-index: 1;
}
.mobile-app-3 .content{
  justify-content: center;
  align-items: baseline;
  flex-flow: wrap;
  width: 70%;
  margin: 80px auto;
}
.mobile-app-3 .content .li-cont{
  justify-content: center;
  align-items: center;
  width: 19%;
  height: 130px;
  background-color: #f9f9f9;
  margin: 0 0.5% 15px 0.5%;
  transition: all 1s ease 0s;
}
.mobile-app-3 .content .li-cont:hover{
  background-color: #ffc106;
  box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.6);
}
.mobile-app-3 .content .li-cont:nth-child(1) .icon-img{
   width: 37px;
   /*height: 37px;*/
  background-image: url("../../images/mobile_app_3_li.png");
}
.mobile-app-3 .content .li-cont:nth-child(2) .icon-img{
  width: 41px;
  /*height: 37px;*/
  background-image: url("../../images/mobile_app_3_li2.png");
}
.mobile-app-3 .content .li-cont:nth-child(3) .icon-img{
   width: 34px;
   /*height: 49px;*/
  background-image: url("../../images/mobile_app_3_li3.png");
}
.mobile-app-3 .content .li-cont:nth-child(4) .icon-img{
  width: 37px;
  /*height: 41px;*/
  background-image: url("../../images/mobile_app_3_li4.png");
}
.mobile-app-3 .content .li-cont:nth-child(5) .icon-img{
  width: 32px;
  /*height: 52px;*/
  background-image: url("../../images/mobile_app_3_li5.png");
}
.mobile-app-3 .content .li-cont:nth-child(6) .icon-img{
  width: 28px;
  /*height: 36px;*/
  background-image: url("../../images/mobile_app_3_li6.png");
}
.mobile-app-3 .content .li-cont:nth-child(7) .icon-img{
  width: 40px;
  /*height: 37px;*/
  background-image: url("../../images/mobile_app_3_li7.png");
}
.mobile-app-3 .content .li-cont:nth-child(8) .icon-img{
  width: 39px;
  /*height: 41px;*/
  background-image: url("../../images/mobile_app_3_li8.png");
}
.mobile-app-3 .content .li-cont:nth-child(9) .icon-img{
  width: 40px;
  /*height: 31px;*/
  background-image: url("../../images/mobile_app_3_li9.png");
}
.mobile-app-3 .content .li-cont:nth-child(10) .icon-img{
  width: 43px;
  /*height: 32px;*/
  background-image: url("../../images/mobile_app_3_li10.png");
}
.mobile-app-3 .content .li-cont:nth-child(11) .icon-img{
  width: 37px;
  /*height: 37px;*/
  background-image: url("../../images/mobile_app_3_li11.png");
}
.mobile-app-3 .content .li-cont:nth-child(12) .icon-img{
  width: 41px;
  /*height: 32px;*/
  background-image: url("../../images/mobile_app_3_li12.png");
}
.mobile-app-3 .content .li-cont:nth-child(13) .icon-img{
  width: 41px;
  /*height: 41px;*/
  background-image: url("../../images/mobile_app_3_li13.png");
}
.mobile-app-3 .content .li-cont:nth-child(14) .icon-img{
  width: 39px;
  /*height: 39px;*/
  background-image: url("../../images/mobile_app_3_li14.png");
}
.mobile-app-3 .content .li-cont:nth-child(15) .icon-img{
  width: 50px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li15.png");
}
.mobile-app-3 .content .li-cont:nth-child(16) .icon-img{
  width: 50px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li16.png");
}
.mobile-app-3 .content .li-cont:nth-child(17) .icon-img{
  width: 50px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li17.png");
}
.mobile-app-3 .content .li-cont:nth-child(18) .icon-img{
  width: 50px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li18.png");
}
.mobile-app-3 .content .li-cont:nth-child(19) .icon-img{
  width: 50px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li19.png");
}
.mobile-app-3 .content .li-cont:nth-child(20) .icon-img{
  width: 38px;
  /*height: 33px;*/
  background-image: url("../../images/mobile_app_3_li20.png");
}
.mobile-app-3 .content .li-cont .icon-img{
  height: 50px;
  background-repeat: no-repeat;
  background-position: center left;
}
.mobile-app-3 .content .li-cont:hover .icon-img{
  background-position: center right;
}
.mobile-app-3 .content .li-cont span{
  font-size: 14px;
  color: #7c7c7c;
}
.mobile-app-3 .content .li-cont:hover span{
  color: #000;
}
.mobile-app-4{
  padding: 100px 0;
  position: relative;
  height: auto;
  background-color: transparent;
  z-index: 1;
}
.mobile-app-4 .content{
  width: 70%;
  margin:50px auto;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  z-index: 1;
}
.mobile-app-4 .content .slide-li .title span{
  font-size: 18px;
  color: #000106;
  margin-top: 25px;
  font-weight: bold;
}
.mobile-app-4 .slide-li{
  position: relative;
  width: 350px;
  padding: 15px;
  margin: 0.5%;
  background-color: #fff;
  text-align: left;
  transition: all 1s ease 0s;
}
.mobile-app-4 .slide-li:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0px;
  height: 3px;
  background-color: transparent;
  transition: all 1s ease 0s;
}
.mobile-app-4 .slide-li:hover:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 380px;
  height: 3px;
  margin-left: -190px;
  background-color: #ffc000;
}
.mobile-app-4 .slide-li img{
  width: 350px;
}
.mobile-app-4 .slide-li h3{
  font-size: 18px;
  color: #000106;
  margin-top: 25px;
}
.mobile-app-4 .slide-li p{
  font-size: 14px;
  color: #616163;
  margin-top: 8px;
  line-height: 150%;
  display: -webkit-box; /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
  text-overflow: ellipsis; /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mobile-app-4 .bottom-img{
  justify-content: center;
  align-items: center;
}
.mobile-app-5{
  margin-top: -250px;
}

/*  Development_case.css  */
.Development_case_column_1{
  margin-top: 112px;
}
.Development_case_column_1 img{
  width: 100%;
  height: auto;
}
.Development_case_column_2{background-color: #f6f7f8;margin-top:80px}
.Development_case_column_2 .header-classification{
  justify-content: center;
  align-items: flex-start;
  padding: 50px 15%;
  background-color: #fff;
}
.Development_case_column_2 .header-classification .title{
  font-size: 24px;
  color: #2b2b2b;
}
.Development_case_column_2 .header-classification .classification{
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
}
.Development_case_column_2 .header-classification .classification:nth-child(3){
  margin-top: 20px;
}
.Development_case_column_2 .header-classification .classification .class-li{
  font-size: 16px;
  color: #2b2b2b;
  padding: 3px 0;
}
.Development_case_column_2 .header-classification .classification .li-a{
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 26px;
  height: auto;
  width: 1000px;
   flex: 2;
  flex-flow: wrap;
}
.Development_case_column_2 .header-classification .classification .li-a .li{
  position: relative;
  text-align: center;
  font-size: 14px;
  color: #2b2b2b;
  padding: 5px 10px;
  margin: 0 20px;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
}
.Development_case_column_2 .header-classification .classification .li-a .li:after{
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #dedede;
}
.Development_case_column_2 .header-classification .classification .li-a .li:focus{
  background-color: #ffc106;
}
.Development_case_column_2 .header-classification .classification .li-a .li:last-child:after{
  background-color: transparent;
}
.Development_case_column_2 .header-classification .classification .show-btn{
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #828282;
  background-color: #fff;
  padding: 5px 8px;
  border: 1px solid #828282;
  border-radius: 5px;
}
.Development_case_column_2 .content{
  /*width: 70%;*/
  margin: 50px 15%;
}

.Development_case_column_2 .content .list-cont {
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: wrap;
  width: 100%;
}
.Development_case_column_2 .content .list-cont .li {
  margin-left: 5px;
  justify-content: flex-start;
  align-items: center;
  width: 23.5%;
  /*height: 400px;*/
  padding: 0.5%;
  margin-bottom: 40px;
  background-color: #fff;
}
.Development_case_column_2 .swiper-container {
  width: 100%;
  height: 100%;
}
.Development_case_column_2 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.Development_case_column_2 .swiper-slide img{
  width: 100%;
}
.Development_case_column_2 .content .swiper-cont{
  position: relative;
  margin: 50px 0;
}
.Development_case_column_2 .content .swiper-cont .number-text{
  position: absolute;
  right: 50px;
  bottom: 10px;
  font-size: 30px;
  color: #ffc106;
  z-index: 1;
}
.Development_case_column_2 .content .swiper-cont .number-text span{
  font-size: 30px;
  color: #ffc106;
}
.Development_case_column_2 .content .swiper-cont .button-next,
.Development_case_column_2 .content .swiper-cont .button-prev{
  position: absolute;
  justify-content: center;
  align-items: center;
  bottom: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(116, 115, 119, 0.71);
  z-index: 1;
}
.Development_case_column_2 .content .swiper-cont .button-next:hover,
.Development_case_column_2 .content .swiper-cont .button-prev:hover{
  cursor: pointer;
  background-color: #ffc106;
}
.Development_case_column_2 .content .swiper-cont .button-next{
  right: 50%;
  margin-right: -60px;
}
.Development_case_column_2 .content .swiper-cont .button-prev{
  left: 50%;
  margin-left: -60px;
}
.Development_case_column_2 .content .list-cont{
  align-items: flex-start;
  flex-flow: wrap;
  width: 100%;
}
.Development_case_column_2 .content .list-cont .li{
  justify-content: flex-start;
  align-items: center;
  width: 23.5%;
  /*height: 400px;*/
  padding: 0.5%;
  margin-bottom: 40px;
  background-color: #fff;
}
.Development_case_column_2 .content .list-cont .li img{
  width: 300px;
}
.Development_case_column_2 .content .list-cont .li .title{
  justify-content: space-between;
  align-items: baseline;
  width: 80%;
  margin: 15px 10%;
}
.Development_case_column_2 .content .list-cont .li .title span:nth-child(1){
  font-size: 18px;
  color: #3a3a39;
  font-weight: bold;
}
.Development_case_column_2 .content .list-cont .li .title span:nth-child(2){
  font-size: 14px;
  color: #9c9c9c;
}
.Development_case_column_2 .content .list-cont .li .p{
  font-size: 14px;
  color: #757574;
  width: 80%;
  min-height: 32px;
  margin: 0 10% 15px 10%;
}
.Development_case_column_2 .content .get-more{
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.Development_case_column_2 .content .get-more span{
  font-size: 14px;
  color: #838484;
  margin-top: 10px;
}
.Development_case_column_8{
  margin-top: -80px;
}

/*  Development_case_details.css  */
.Development_case_details_body{
  background-color: #f6f7f8;
}
.Development_case_details_1 .content{
  width: 70%;
  padding: 0 15%;
  position: relative;
  /*margin-top: -50px;*/
  margin-top: 10px;
}
@media (min-width: 0px) {
  .Development_case_details_1 .content {
      margin-top: 85px;
  }
}
@media (min-width: 1060px) {
  .Development_case_details_1 .content {
      margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .Development_case_details_1 .content {
      margin-top: 10px;
  }
}
.Development_case_details_1 .details-title{
  justify-content: center;
  /*align-items: center;*/
  background-color: #fff;
  padding: 3%;
  margin:0px 0 20px 0;
}
.Development_case_details_1 .details-title .left-cont{
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 6%;
}
.Development_case_details_1 .details-title .left-cont h1{
  position: relative;
  font-size: 30px;
  color: #2b2b2b;
  padding-bottom: 35px;
}
.Development_case_details_1 .details-title .left-cont h1:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #ffc106;
}
.Development_case_details_1 .details-title .left-cont h3{
  font-size: 20px;
  color: #2b2b2b;
  padding-top: 35px;
}
.Development_case_details_1 .details-title .left-cont p{
  font-size: 14px;
  color: #707070;
  line-height: 150%;
  margin-top: 10px;
}
.Development_case_details_1 .details-title .right-cont{
  padding:  3% 3% 3% 6%;
  border-left: 1px solid #efefef;
}
.Development_case_details_1 .details-cont{
  justify-content: center;
  align-items: center;
  width: 86%;
  padding: 7%;
  background-color: #fff;
}
.Development_case_details_1 .details-cont img{
  width: 100%;
}
.Development_case_details_1 .details-list{
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: 40px auto 40px auto;
}
.Development_case_details_1 .details-list img{
  width: 24%;
  height: auto;
}
.about_us {
  width: 99%;
  margin-top: 80px;
  align-items: center;
  padding-bottom: 100px;
}
.about_us .top-box {
  width: 100vw;
  height: 360px;
  background-position: center center;
  background-size: cover;
  background-image: url("https://project-moonspeak.oss-cn-shenzhen.aliyuncs.com/templets/yueyuzhe/images/about-bg.jpg");
  color: #ffc106;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_us .top-box span {
  color: #ffc106;
  font-size: 65px;
  padding: 0 30px;
  margin-top: -20px;
  line-height: 50px;
}
.about_us .content-box {
  width: 60%;
  padding-top: 50px;
}