﻿html,
body {
  width: 100%;
  height: 100%;
  color: #464141;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft Yahei", sans-serif;
}
h3 {
  font-size: 30px;
}
h2 {
  font-size: 50px;
}
a {
  text-decoration: none;
  color: inherit;
  border: none;
  outline: none
}
a:focus{outline: none !important;}
button,
input,
textarea {
  outline: none;
  -webkit-appearance: none;
  /* 方法2 */
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
}
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*============loading============*/
.loading {
  width: 100%;
  height: 100%;
  position: relative;
}
.loading .left,
.loading .right {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0px;
}
.loading .left {
  left: 0px;
  background: url(../images/left-red.png) left top no-repeat;
  background-size: 100%;
}
.loading .right {
  right: 0px;
  background: url(../images/right-black.png) right top no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 500px) {
  .loading .left {
    width: 100%;
    left: 0px;
    background: url(../images/up-red.png) left top no-repeat;
    background-size: 100%;
  }
  .loading .right {
    width: 100%;
    right: 0px;
    bottom: 0px;
    background: url(../images/down-black.png) right bottom no-repeat;
    background-size: 100%;
  }
}
/*============导航============*/
.nav {
  width: 100%;
  background: #f7f7f7;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20;
  /*  transition-timing-function: cubic-bezier(.78,.13,.15,.86);transition-property: transform,background-color,box-shadow,line-height,height;
  transition-duration: 1s;*/
}
.nav .nav_box {
  width: 1200px;
  margin: 0px auto;
  height: 88px;
  /* .add:hover{background: url(../images/add.png) no-repeat;}*/
}
.nav .nav_box .logo {
  float: left;
  line-height: 88px;
}
.nav .nav_box .logo img {
  vertical-align: middle;
}
.nav .nav_box .main_nav {
  margin-left: 5%;
  float: left;
  height: 88px;
  width: 80%;
  text-align: center;
}
.nav .nav_box .main_nav .logo_nav {
  display: none;
}
.nav .nav_box .main_nav .close {
  display: none;
}
.nav .nav_box .main_nav ul {
  margin-top: 30px;
  display: inline-block;
}
.nav .nav_box .main_nav ul li {
  float: left;
  font-size: 16px;
  position: relative;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  margin: 0px 30px;
}
.nav .nav_box .main_nav ul li .line {
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: -7px;
  text-align: center;
  line-height: 0px;
}
.nav .nav_box .main_nav ul li .line span {
  display: inline-block;
  width: 0px;
  height: 2px;
  background: #0063a7;
}
.nav .nav_box .main_nav ul .active .line span {
  width: 100%;
}
.nav .nav_box .main_nav ul .on .line span {
  width: 100%;
}
.nav .nav_box .main_nav ul .line_hover {
  animation: line_hover 0.5s forwards;
  -moz-animation: line_hover 0.5s forwards;
  /* Firefox */
  -webkit-animation: line_hover 0.5s forwards;
  /* Safari and Chrome */
  -o-animation: line_hover 0.5s forwards;
  /* Opera */
}
.nav .nav_box .main_nav ul .line_out {
  animation: line_out 0.5s forwards;
  -moz-animation: line_out 0.5s forwards;
  /* Firefox */
  -webkit-animation: line_out 0.5s forwards;
  /* Safari and Chrome */
  -o-animation: line_out 0.5s forwards;
  /* Opera */
}
.nav .nav_box .add {
  float: right;
  margin-top: 19px;
  width: 50px;
  height: 50px;
  /*background: url(../images/nav-jiahao.png) no-repeat;*/
  background: url(../images/nav-jiahaos.png) no-repeat;
  background-size: 100%;
}
.nav .mb_nav {
  display: none;
}
.nav .mb_nav .on {
  color: #0063a7;
}
@keyframes line_hover {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@-moz-keyframes line_hover {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes line_hover {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes line_hover {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@keyframes line_out {
  from {
    width: 100%;
  }
  to {
    width: 0px;
  }
}
@-moz-keyframes line_out {
  from {
    width: 100%;
  }
  to {
    width: 0px;
  }
}
@-webkit-keyframes line_out {
  from {
    width: 100%;
  }
  to {
    width: 0px;
  }
}
@-o-keyframes line_out {
  from {
    width: 100%;
  }
  to {
    width: 0px;
  }
}
@media screen and (max-width: 1200px) {
  .nav .nav_box {
    width: 100%;
  }
  .nav .nav_box .main_nav {
    margin-left: 70px;
  }
  .nav .nav_box .main_nav ul li {
    margin: 0px 10px;
  }
}
@media screen and (max-width: 800px) {
  .nav {
    height: 60px;
    background: #ffffff;
  }
  .nav .nav_box {
    height: 60px;
    box-shadow: 0px 3px 34.3px 0.7px rgba(3, 0, 0, 0.13);
    width: 100%;
  }
  .nav .nav_box .logo {
    width: 18%;
    margin-left: 41%;
    text-align: center;
    line-height: 60px;
  }
  .nav .nav_box .logo img {
    height: 25px;
  }
  .nav .nav_box .main_nav {
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 40px;
    width: 30%;
  }
  .nav .nav_box .main_nav .logo_nav {
    display: block;
    height: 24px;
    margin-top: 18px;
    margin-left: 15px;
  }
  .nav .nav_box .main_nav .close {
    display: none;
    height: 24px;
    margin-top: 18px;
    margin-left: 15px;
    float: left;
  }
  .nav .nav_box .main_nav ul {
    display: none;
  }
  .nav .nav_box .add {
    width: 30px;
    height: 30px;
    margin-top: 15px;
    margin-right: 15px;
  }
  .nav .mb_nav {
    width: 100%;
    top: 59px;
    z-index: 3;
    position: absolute;
    background: #f5f5f5;
    padding: 0px 5% 50px 5%;
    right: 0px;
    display: none;
    height: 900px;
  }
  .nav .mb_nav li {
    line-height: 60px;
    border-bottom: 1px solid #cccccc;
    text-align: center;
    font-size: 16px;
    padding: 0px 15px;
  }
  .nav .mb_nav .mb_nav .on {
    color: #0063a7;
  }
}
.scroll {
  color: #fff; /*变幻后的导航链接色*/
}
.scroll .nav_box .logo {
  opacity: 1;
}
.scroll .nav_box .logo:hover {
  opacity: 1;
}
.scroll .nav_box .main_nav ul li {
  opacity: 0.6;
}
.scroll .nav_box .main_nav ul li .line span {
  background: #f3ae00; /*变幻后的导航伸缩线色*/
}
.scroll .nav_box .main_nav ul .on {
  opacity: 1;
}
.scroll .nav_box .main_nav ul .active {
  opacity: 1;
}
.scroll .nav_box .add {
  /*background: url(../images/add2.png) no-repeat;*/
  background: url(../images/adds.png) no-repeat;
  opacity: 0.6;
  background-size: 100%;
}
.scroll .nav_box .add:hover {
  /*background: url(../images/add2.png) no-repeat;*/
  background: url(../images/adds.png) no-repeat;
  opacity: 1;
}
/*============banner============*/
.banner {
  width: 100%;
  margin-top: 88px;
  height: 620px;
}
.banner img {
  width: 100%;
  vertical-align: middle;
}
.banner .swiper-button-next {
  width: 58px;
  height: 58px;
  background-image: url(../images/banner-bnt.png);
  background-size: 100%;
}
.banner .swiper-button-prev {
  width: 58px;
  height: 58px;
  background-image: url(../images/banner-bnt-l.png);
  background-size: 100%;
}
.other_banner {
  height: 435px;
}
@media screen and (max-width: 700px) {
  .banner img {
    height: 200px;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .banner .swiper-container img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .banner {
    margin-top: 60px;
    height: 230px;
  }
  .banner img {
    height: 200px;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
  }
  .banner .swiper-container img {
    width: 100%;
    height: auto;
  }
  .other_banner {
    height: 220px;
    background-size: 250%;
  }
}
@media screen and (max-width: 320px) {
  .banner {
    height: 200px;
  }
  .other_banner {
    height: 180px;
    background-size: 250%;
  }
}
/*============swiper============*/
.swiper-container {
  position: relative;
  cursor: pointer !important;
}
.swiper-container .swiper-wrapper {
  height: 620px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  margin-top: -29px;
}
.swiper-slide {
  background-position: center center;
  height: 620px;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
@media screen and (max-width: 500px) {
  .swiper-container .swiper-wrapper {
    height: 250px;
  }
  .swiper-slide {
    height: 250px;
    background-size: 200%;
  }
}
@media screen and (max-width: 320px) {
  .swiper-container .swiper-wrapper {
    height: 200px;
  }
  .swiper-slide {
    height: 200px;
    background-size: 200%;
  }
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #f3ae00; 
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #f3ae00; 
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
  z-index: 10;
  transition: 0.3s;
  width: 100%;
}
.swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #f3ae00; 
  opacity: 1;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #f3ae00; /*轮播非当前焦点圆点色*/
 /* box-shadow: 0px 1px 2px #555 inset;*/
  margin: 0 5px;
  cursor: pointer;
}
.swiper-active-switch {
  background: #0063a7; /*轮播当前焦点圆点色*/
}
.swiper-pagination-bullet-active {
  background: #0063a7;
  opacity: 1;
}
/*============脚步============*/
.bottom {
  background: #0063a7;
  cursor: inherit;
}
.bottom .bottom_box {
  width: 1200px;
  margin: 0px auto;
  padding: 0px 0px;
}
.bottom .bottom_box ul {

  position: relative;
  text-align: center;
  padding-bottom: 20px;
}
.bottom .bottom_box ul li .title {
  color: #fff;
}
.bottom .bottom_box ul li p {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  cursor: default;
}
.bottom .bottom_box ul li p span {
  font-size: 24px;
  font-weight: bold;
  cursor: default;
}
.bottom .bottom_box ul li p .strong {
  font-weight: bold;
  font-size: 14px;
  cursor: default;
}
.bottom .bottom_box ul li .strong {
  font-weight: bold;
  cursor: default;
}
.bottom .bottom_box ul li img{
  display: inline-block;vertical-align: middle;margin-right: 8px;
}
.bottom .bottom_box ul .wuhan {
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: left;
}
.bottom .bottom_box ul .beijing {
  position: absolute;
  right: 0px;
  top: 0px;
  text-align: left;
}
.bottom .bottom_box ul .city {
  text-align: left;
  width:400px;
}
.bottom .longtai {
  width: 100%;
  height: 40px;
  background: #f7f7f7;
  cursor: default;
}
.bottom .longtai .longtai_box {
  width: 1200px;
  margin: 0px auto;
}
.bottom .longtai .longtai_box .introduce {
  text-align: justify;
  color: #808080;
  line-height: 18px;
  margin-top: 10px;
  float: left;
}
.bottom .longtai .longtai_box .share {
  float: right;
  position: relative;
}
.bottom .longtai .longtai_box .share .icon {
  width: 33px;
  height: 33px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-top: 7px;
}
.bottom .longtai .longtai_box .share .icon_sina {
  background: url(../images/footer-logo.png) no-repeat center;
}
.bottom .longtai .longtai_box .share .icon_sina:hover {
  background: url(../images/weibo.png) no-repeat center;
}
.bottom .longtai .longtai_box .share .icon_qq {
  background: url(../images/footer-logo2.png) no-repeat center;
}
.bottom .longtai .longtai_box .share .icon_qq:hover {
  background: url(../images/qq.png) no-repeat center;
}
.bottom .longtai .longtai_box .share .icon_wexin {
  background: url(../images/footer-logo3.png) no-repeat center;
}
/*.bottom .longtai .longtai_box .share .icon_wexin:hover {
  background: url(../images/weixin.png) no-repeat center;
}*/
.bottom .longtai .longtai_box .share .code {
  position: absolute;
  right: -29px;
  top: -96px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .bottom .bottom_box {
    width: 100%;
    padding: 20px 5% 20px 5%;
  }
  .bottom .longtai {
    height: auto;
  }
  .bottom .longtai .longtai_box {
    width: 90%;
    padding: 20px 5% 20px 5%;
  }
}
@media screen and (max-width: 1100px) {
  .bottom .bottom_box {
    width: 100%;
    padding: 20px 5% 20px 5%;
  }
  .bottom .bottom_box ul li {
    width: 100%;
  }
  .bottom .bottom_box ul li p {
    text-align: center;
  }
  .bottom .bottom_box ul li p span {
    display: none;
  }
  .bottom .bottom_box ul li p .strong {
    display: block;
    font-size: 20px;
  }
  .bottom .bottom_box ul li .strong {
    display: none;
  }
  .bottom .bottom_box ul .wuhan {
    position: relative;
    left: 0px;
    top: 0px;
    text-align: left;
  }
  .bottom .bottom_box ul .beijing {
    position: relative;
    right: 0px;
    top: 0px;
    text-align: left;
  }
  .bottom .bottom_box ul .city {
    display: inline-block;
    text-align: left;
  }
  .bottom .longtai {
    height: auto;
  }
  .bottom .longtai .longtai_box {
    width: 90%;
    padding: 20px 5% 20px 5%;
  }
}
@media screen and (max-width: 500px) {
  .bottom .bottom_box ul li img{display: none}
  .bottom .bottom_box ul li {
    width: 100%;
  }
  .bottom .bottom_box ul li p {
    text-align: center;
  }
  .bottom .bottom_box ul li p span {
    display: none;
  }
  .bottom .bottom_box ul li p .strong {
    display: block;
    font-size: 20px;
  }
  .bottom .bottom_box ul li .strong {
    display: none;
  }
  .bottom .bottom_box ul .wuhan {
    position: relative;
    left: 0px;
    top: 0px;
    text-align: left;
  }
  .bottom .bottom_box ul .beijing {
    position: relative;
    right: 0px;
    top: 0px;
    text-align: left;
  }
  .bottom .bottom_box ul .city {
    display: inline-block;
    text-align: left;
  }
  .bottom .longtai {
    height: auto;
  }
  .bottom .longtai .longtai_box {
    width: 90%;
    padding: 0px 5% 20px 5%;
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bottom .longtai .longtai_box .introduce {
    width: 100%;
    font-size: 12px;
    text-align: center;
  }
  .bottom .longtai .longtai_box .share {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/*============弹框============*/
.cover {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(73, 73, 73, 0.8);
  z-index: 10;
  display: none;
}
.bounced {
  position: fixed;
  width: 1100px;
  padding: 50px;
  left: 50%;
  margin-left: -550px;
  background: #fff;
  border-radius: 5px;
  top: 20%;
  text-align: center;
  z-index: 11;
  display: none;
  cursor: default;
}
.bounced .title {
  font-size: 36px;
  color: #e13c14;
  margin-bottom: 8px;
}
.bounced .introduce {
  font-size: 18px;
  width: 80%;
  margin: 0px auto 28px auto;
  color: #4c4c4c;
  font-weight: 600;
}
.bounced .contact_div {
  width: 100%;
}
.bounced .contact_div .left {
  width: 47%;
  text-align: left;
  float: left;
}
.bounced .contact_div .left .text {
  color: #e1310b;
  text-align: left;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 15px;
}
.bounced .contact_div .left .company {
  font-size: 24px;
  line-height: 40px;
}
.bounced .contact_div .left .address {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.bounced .contact_div .right {
  width: 47%;
  float: right;
}
.bounced .contact_div .right input {
  width: 100%;
  padding: 0px 15px;
  height: 34px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin-bottom: 10px;
}
.bounced .contact_div .right textarea {
  width: 100%;
  padding: 10px 15px;
  height: 80px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin-bottom: 10px;
}
.bounced .contact_div .right .m_email {
  display: none;
}
.bounced .contact_div .right .btn {
  width: 100%;
  height: 40px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e1310b;
  color: #e1310b;
}
.bounced .contact_div .right .btn:hover {
  background: #e1310b;
  color: #fff;
  border: none;
}
.sed_bounced {
  position: fixed;
  bottom: 30%;
  width: 400px;
  padding: 50px;
  left: 50%;
  margin-left: -200px;
  background: #fff;
  z-index: 25;
  display: none;
  text-align: center;
  border: 1px solid #0063a7;
}
.sed_bounced img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .bounced {
    width: 100%;
    padding: 50px 5%;
    left: 0px;
    margin-left: 0px;
  }
  .sed_bounced {
    bottom: 30%;
    width: 40%;
    padding: 40px  10%;
    left: 50%;
    margin-left: -20%;
  }
  .sed_bounced img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .bounced {
    top: 60px;
    background: #f5f5f5;
    border-radius: 0px;
    padding: 20px 5% 50px 5%;
    height: 100%;
  }
  .bounced .introduce,
  .bounced .title {
    display: none;
  }
  .bounced .contact_div .left {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  .bounced .contact_div .left .text {
    display: none;
  }
  .bounced .contact_div .right {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 500px) {
  .bounced .contact_div .left .address {
    font-size: 14px;
    line-height: 25px;
  }
  .bounced .contact_div .left .company {
    font-size: 20px;
  }
  .bounced .contact_div .right textarea {
    height: 60px;
    margin-bottom: 10px;
  }
  .bounced .contact_div .right .m_email {
    display: block;
    text-align: left;
    margin-bottom: 15px;
    color: #666666;
  }
  .sed_bounced {
    bottom: 30%;
    width: 90%;
    padding: 40px  10%;
    left: 5%;
    margin-left: 0px;
  }
  .sed_bounced img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bounced .contact_div .right textarea {
    margin-bottom: 5px;
  }
  .bounced .contact_div .right .m_email {
    font-size: 12px;
  }
}
/*============我们的服务============*/
.service {
  background: #f7f7f7;
  padding: 80px 0px;
  cursor: default;
}
.service .service_box {
  width: 1280px;
  margin: 0px auto;
  text-align: center;
}
.service .service_box p {
  font-size: 24px;
  color: #808080;
}
.service .service_box .title {
  font-size: 40px;
  margin-bottom: 8px;
  color: #424242
;
}
.service .service_box .title_2 {
  font-size: 40px;
}
.service .service_box .title_3 {
  margin-top: 20px;
  font-size: 14px;
}
.service .service_box ul {
  margin-top: 40px;
}
.service .service_box ul li {
  float: left;
  text-align: center;
  background: #fff;
  width: 25%;
  border-radius: 5px;
  border: 1px solid #cccccc;
  padding: 20px 0px;
  height: 450px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 0px 12% 0px 0px;
}
.service .service_box ul li.severs-three{
  margin-right: 0px;
}
.service .service_box ul li .now_div{position: relative}
.service .service_box ul li:first-child{margin-left: 0px}
.service .service_box ul li:last-child{margin-right: 0px}

.service .service_box ul li .img {
  width: 60%;
  margin-left: 20%;
  margin-top: 20%;
}
.service .service_box ul li .img img {
  width: 100%;
  opacity: 1;
}
/*.service .service_box ul li .img_1 {*/
  /*background: url(../images/service1-gery.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul li .img_2 {*/
  /*background: url(../images/service2.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul li .img_3 {*/
  /*background: url(../images/service3.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
.service .service_box ul li .title {
  line-height: 40px;
  font-size: 30px;
  padding: 10px 0px 50px 0px;
  text-align: center;
  width: 100%;
}
.service .service_box ul li .hover {
  width: 80%;
  margin: 0px auto;
  padding: 15px 0px;
  display: none;
  left: 10%;
  position: absolute;
  opacity: 0;
  top: -100px;
}
.service .service_box ul li .hover .img {
  width: 40%;
  margin-left: 30%;
  margin-top: 10%;
}
.service .service_box ul li .hover .img img {
  width: 100%;
  opacity:1;
}
/*.service .service_box ul li .hover .img_1 {*/
  /*background: url(../images/service1.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul li .hover .img_2 {*/
  /*background: url(../images/service2-red.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul li .hover .img_3 {*/
  /*background: url(../images/service3-red.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
.service .service_box ul li .hover .title {
  line-height: 40px;
  font-size: 30px;
  padding: 20px 0px 10px 0px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid  #0063a7;
}
.service .service_box ul li .hover p {
  line-height: 30px;
  padding-bottom: 0px;
  font-size: 16px;
  color: #0063a7;
}
.service .service_box ul li .left_line {
  position: absolute;
  left: 0px;
  top: 0px;
  border-left: 1px solid #0063a7;
  border-top: 1px solid #0063a7;
  border-radius: 5px;
}
.service .service_box ul li .right_line {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-right: 1px solid #0063a7;
  border-bottom: 1px solid #0063a7;
  border-radius: 5px;
}
.service .service_box ul .sever_li_hover {
  border: 1px solid #0063a7;
}
/*.service .service_box ul .sever_li_hover .img_1 {*/
  /*background: url(../images/service1.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul .sever_li_hover .img_2 {*/
  /*background: url(../images/service2-red.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
/*.service .service_box ul .sever_li_hover .img_3 {*/
  /*background: url(../images/service3-red.png) no-repeat;*/
  /*background-size: 100%;*/
/*}*/
.service .service_box ul .sever_li_hover .title {
  padding: 0px 0px 5px 0px;
  color: #0063a7;
  margin-top: 5px;
}
.service .service_box ul .title_animate {
  animation-name: title_hover_animate ;
  -moz-animation-name: title_hover_animate;
  /* Firefox */
  -webkit-animation-name: title_hover_animate;
  /* Safari and Chrome */
  -o-animation-name: title_hover_animate;
  /* Opera */
}
.service .service_box ul .sever_hover_animate {
  animation-name: sever_hover_animate ;
  -moz-animation-name: sever_hover_animate;
  /* Firefox */
  -webkit-animation-name: sever_hover_animate;
  /* Safari and Chrome */
  -o-animation-name: sever_hover_animate;
  /* Opera */
}
.service .service_box ul .sever_leave_animate {
  animation-name: sever_leave_animate ;
  -moz-animation-name: sever_leave_animate;
  /* Firefox */
  -webkit-animation-name: sever_leave_animate;
  /* Safari and Chrome */
  -o-animation-name: sever_leave_animate;
  /* Opera */
}
.service .service_box ul .comeback {
  animation-name: comeback ;
  -moz-animation-name: comeback;
  /* Firefox */
  -webkit-animation-name: comeback;
  /* Safari and Chrome */
  -o-animation-name: comeback;
  /* Opera */
}
/*hover文字动画*/
@keyframes title_hover_animate {
  from {
    top: 65%;
  }
  to {
    top: 35%;
  }
}
@-moz-keyframes title_hover_animate {
  from {
    top: 65%;
  }
  to {
    top: 35%;
  }
}
@-webkit-keyframes title_hover_animate {
  from {
    top: 65%;
  }
  to {
    top: 35%;
  }
}
@-o-keyframes title_hover_animate {
  from {
    top: 65%;
  }
  to {
    top: 35%;
  }
}
/*hover图片动画*/
@keyframes sever_hover_animate {
  from {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
  to {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
}
@-moz-keyframes sever_hover_animate {
  /* Firefox */
  from {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
  to {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
}
@-webkit-keyframes sever_hover_animate {
  /* Safari and Chrome */
  from {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
  to {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
}
@-o-keyframes sever_hover_animate {
  /* Opera */
  from {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
  to {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
}
/*leave文字动画*/
@keyframes comeback {
  from {
    top: 35%;
  }
  to {
    top: 65%;
  }
}
@-moz-keyframes comeback {
  from {
    top: 35%;
  }
  to {
    top: 65%;
  }
}
@-webkit-keyframes comeback {
  from {
    top: 35%;
  }
  to {
    top: 65%;
  }
}
@-o-keyframes comeback {
  from {
    top: 35%;
  }
  to {
    top: 65%;
  }
}
/*鼠标离开图片动画*/
@keyframes sever_leave_animate {
  from {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
  to {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
}
@-moz-keyframes sever_leave_animate {
  from {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
  to {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
}
@-webkit-keyframes sever_leave_animate {
  from {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
  to {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
}
@-o-keyframes sever_leave_animate {
  from {
    transform: scale(0.5);
    -moz-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.5);
    top: 0%;
  }
  to {
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    top: 20%;
  }
}
@media screen and (max-width: 1200px) {
  .service .service_box {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .service .service_box {
    width: 100%;
  }
  .service .service_box p {
    font-size: 24px;
  }
  .service .service_box .title {
    font-family: "Adobe Caslon Pro";
    color: #999999;
    font-size: 35px;
  }
  .service .service_box .title_2 {
    font-size: 35px;
    padding: 0px 5%;
  }
  .service .service_box .title_3 {
    padding: 0px 5%;
  }
  .service .service_box ul {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service .service_box ul li {
    width: 40%;
    height: 400px;
    margin: 4%;
  }
  .service .service_box ul li .img {
    top: 10%;
  }
  .service .service_box ul li .title {
    padding: 0px 0px 20px 0px;
    font-size: 20px;
    top: 55%;
  }
  .service .service_box ul li .hover {
    font-size: 14px;
  }
}
@media screen and (max-width: 620px) {
  .service .service_box ul li {
    width: 40%;
    margin: 4%;
  }
}
@media screen and (max-width: 500px) {
  .service .service_box ul li:first-child{margin:10px 10%;}
  .service .service_box ul li:last-child{margin:10px 10%;}
  .service {
    padding: 30px 0px;
    background: #ffffff;
  }
  .service .service_box {
    width: 100%;
  }
  .service .service_box p {
    font-size: 20px;
  }
  .service .service_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 30px;
    font-family: "Adobe Caslon Pro";
  }
  .service .service_box .title_2 {
    font-size: 30px;
    padding: 0px 5%;
  }
  .service .service_box .title_3 {
    padding: 0px 5%;
  }
  .service .service_box ul {
    margin-top: 20px;
  }
  .service .service_box ul li {
    width: 80%;
    margin: 10px 10%;
    background: #ffffff;
    padding: 10px 0px;
    height: 370px;
  }
  .service .service_box ul li .now_div {
    display: none;
  }
  .service .service_box ul li .img {
    width: 30%;
    margin: 10px 35%;
  }
  /*.service .service_box ul li .img_1 {*/
    /*background: url(../images/service1.png) no-repeat;*/
    /*background-size: 100%;*/
  /*}*/
  /*.service .service_box ul li .img_2 {*/
    /*background: url(../images/service2-red.png) no-repeat;*/
    /*background-size: 100%;*/
  /*}*/
  /*.service .service_box ul li .img_3 {*/
    /*background: url(../images/service3-red.png) no-repeat;*/
    /*background-size: 100%;*/
  /*}*/
  .service .service_box ul li .title {
    padding: 0px 0px 5px 0px;
    font-size: 20px;
    color: #0063a7 ;
    margin-top: 5px;
    top: 35%;
  }
  .service .service_box ul li .hover {
    width: 80%;
    margin: 0px auto;
    padding: 0px;
    display: block;
    opacity: 1;
    top: 0px;
  }
  .service .service_box ul li .hover .title {
    padding: 10px 0px;
    border-bottom: 1px solid  #cccccc;
    color: #0063a7;
    margin-bottom: 10px;
  }
  .service .service_box ul li .hover p {
    line-height: 25px;
    padding-bottom: 0px;
    font-size: 14px;
    color: #999999;
  }
}
/*============公司介绍============*/
.main {
  padding: 80px 0px;
  background: #fff;
}
.main .main_box {
  width: 1280px;
  margin: 0px auto;
  text-align: center;
  cursor: default;
}
.main .main_box p {
  text-align: center;
  line-height: 32px;
}
.main .main_box h3 {
  text-align: center;
  line-height: 40px;
  font-weight: 200;
  margin-bottom: 20px;
}
.main .main_box ul {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
.main .main_box ul li {
  display: inline-block;
  padding: 0px 50px;
  border-right: 1px solid #b8b8b8;
}
.main .main_box ul li h2 {
  font-weight: 600;
  text-align: center;
}
.main .main_box ul li p {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.main .main_box ul li:last-child {
  border-right: 0px;
}
.main .main_box .more_365 {
  background: #fff;
  height: 40px;
  color: #0063a7;
  padding: 0px 50px;
  margin-top: 50px;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
  border: 1px solid #0063a7;
}
.main .main_box .more_365:hover {
  background: #0063a7;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .main .main_box {
    width: 100%;
  }
  .main .main_box p {
    padding: 0px 15px;
    text-align: Justify;
  }
}
@media screen and (max-width: 800px) {
  .main .main_box ul li {
    padding: 0px 5px;
  }
  .main .main_box ul li p {
    font-size: 18px;
  }
  .main .main_box ul li h2 {
    font-size: 30px;
  }
  .main .main_box .more_365 {
    width: 90%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .main {
    padding: 20px 0px 30px 0px;
  }
  .main .main_box {
    width: 100%;
    margin-top: 0px;
  }
  .main .main_box p {
    padding: 0px 15px;
    text-align: Justify;
    line-height: 23px;
    color: #808080;
  }
  .main .main_box h3 {
    line-height: 40px;
  }
  .main .main_box ul li {
    padding: 0px 0px;
  }
  .main .main_box ul li p {
    font-size: 14px;
  }
  .main .main_box ul li h2 {
    font-size: 25px;
  }
  .main .main_box .more_365 {
    width: 90%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 320px) {
  .main {
    padding: 15px 0px;
  }
  .main .main_box ul li {
    padding: 0px 0px;
  }
  .main .main_box ul li p {
    padding: 0px 5px;
  }
}
/*====================================================================================index首页============================================================================================================*/
/*首页案例详情弹框*/
.case_bounced_cover {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  background: rgba(229, 229, 229, 0.9);
  top: 0px;
  left: 0px;
}
.case_bounced {
  width: 100%;
  padding: 60px 0px 80px 0px;
  position: fixed;
  left: 0%;
  top: 0px;
  z-index: 30;
  margin-left: 0px;
  overflow-y: scroll;
  height: 100%;
}
.case_bounced .content {
  width: 100%;
  margin: 0px auto;
}
.case_bounced .content .content_left {
  padding: 40px ;
  width: 838px;
  margin: 0px auto;
  background: #fff;
}
.case_bounced .content .content_left .title {
  text-align: center;
  font-size: 30px;
  color: #4c4c4c;
  line-height: 50px;
}
.case_bounced .content .content_left .bdsharebuttonbox {
  text-align: center;
  margin-bottom: 10px;
}
.case_bounced .content .content_left .bdsharebuttonbox a {
  width: 37px;
  height: 37px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
  float: none;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_weixin {
  background: url(../images/footer-logo3.png) no-repeat center;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_weixin:hover {
  background: url(../images/weixin.png) no-repeat center;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_tsina {
  background: url(../images/footer-logo.png) no-repeat center;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_tsina:hover {
  background: url(../images/weibo.png) no-repeat center;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_sqq {
  background: url(../images/footer-logo2.png) no-repeat center;
}
.case_bounced .content .content_left .bdsharebuttonbox .bds_sqq:hover {
  background: url(../images/qq.png) no-repeat center;
}
.case_bounced .content .content_left .particulars p {
  line-height: 30px;
  margin: 20px 0px 10px 0px;
  text-align: center;
}
.case_bounced .content .content_left .particulars img {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.case_bounced .content .content_left .particulars #html_5 {
  position: relative;
  width: 80%;
  margin: 0px auto;
}
.case_bounced .content .content_left .particulars #html_5 .pic {
  width: 100%;
}
.case_bounced .content .content_left .particulars #html_5 .hover {
  background: rgba(73, 73, 73, 0.8);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
}
.case_bounced .content .content_left .particulars #html_5 .hover img {
  width: 260px;
  height: 260px;
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -130px;
  left: 50%;
  margin-left: -130px;
}
.case_bounced .close {
  width: 50px;
  height: 50px;
  background: url(../images/icon.png) -113px -48px no-repeat;
  position: fixed;
  top: 5px;
  right: 15px;
}
.case_bounced .prev {
  width: 40px;
  height: 66px;
  background: url(../images/icon.png) 0px -35px no-repeat;
  position: fixed;
  top: 300px;
  left: 60px;
}
.case_bounced .next {
  width: 40px ;
  height: 66px;
  background: url(../images/icon.png) -56px -35px no-repeat;
  position: fixed;
  top: 300px;
  right: 60px;
}
@media screen and (max-width: 1200px) {
  .case_bounced_cover {
    top: 88px;
  }
  .case_bounced {
    background: #f5f5f5;
    width: 100%;
    left: 0px;
    margin-left: 0px;
  }
  .case_bounced .content {
    width: 100%;
  }
  .case_bounced .content .content_left {
    width: 60%;
  }
  .case_bounced .content .content_right {
    width: 35%;
  }
  .case_bounced .next {
    display: none;
  }
  .case_bounced .prev {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .case_bounced_cover {
    top: 88px;
  }
  .case_bounced {
    top: 60px;
    padding: 0px 0px 50px 0px;
  }
  .case_bounced .content {
    width: 100%;
  }
  .case_bounced .content .content_left {
    width: 100%;
    background: #f5f5f5;
    padding: 20px 5%;
  }
  .case_bounced .content .content_left .particulars #html_5 {
    position: relative;
    width: 100%;
    margin: 0px auto;
  }
  .case_bounced .content .content_left .particulars #html_5 .pic {
    width: 90%;
    margin-left: 5%;
  }
  .case_bounced .content .content_left .particulars #html_5 .hover {
    background: rgba(73, 73, 73, 0.8);
    width: 90%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 5%;
    display: block;
  }
  .case_bounced .content .content_left .particulars #html_5 .hover img {
    width: 150px;
    height: 150px;
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -75px;
    display: block;
  }
  .case_bounced .share-dialog {
    display: none;
  }
  .case_bounced .close {
    width: 40px;
    height: 40px;
    background: url(../images/icon.png) -89px -38px no-repeat;
    position: absolute;
    top: 15px;
    right: 15px;
    background-size: 400px 400px;
    display: none;
  }
}
.index_page {
  /*============案例作品============*/
  /*============客户群体===========*/
  /*============联系我们============*/
}
.index_page a {
  color: inherit;
}
.index_page .case {
  background: #f7f7f7;
  padding: 80px 0px;
}
.index_page .case .case_box {

  margin: 0px auto;
  text-align: center;
}
.index_page .case .case_box p {
  text-align: center;
  font-size: 24px;
  color: #808080;
}
.index_page .case .case_box .title {
  font-size: 40px;
  color: #424242;
  margin-bottom: 8px;
}
.index_page .case .case_box ul {
  display: inline-block;
  /* li:hover{
          color:#0063a7;
          .line{
            width:100%;
            transition: all .3s linear;
          }

        }*/
}
#index_case_introduce_div{margin-top: 30px;}

.index_page .case .case_box .more_case {
  background: #fff;
  height: 40px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
}
.index_page .case .case_box .more_case:hover {
  background: #0063a7;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .index_page .case .case_box {
    width: 100%;
  }
  .index_page .case .case_box div ul li {
    width: 33.3%;
  }
  .index_page .case .case_box div ul li .top {
    height: auto;
  }
}
@media screen and (max-width: 800px) {
  .index_page .case .case_box {
    width: 100%;
  }
  .index_page .case .case_box p {
    font-size: 24px;
    margin-top: 10px;
  }
  .index_page .case .case_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 35px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .case .case_box div ul li {
    width: 50%;
    margin: 0px 0px 30px 0px;
  }
  .index_page .case .case_box div ul li .top {
    height: auto;
  }
  .index_page .case .case_box .more_case {
    width: 90%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .index_page .case {
    padding: 20px 0px;
  }
  .index_page .case .case_box {
    width: 100%;
  }
  .index_page .case .case_box p {
    font-size: 20px;
  }
  .index_page .case .case_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 30px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .case .case_box ul li {
    margin: 20px 20px 30px 20px;
  }
  .index_page .case .case_box div ul {
    padding: 0px 15px;
  }
  .index_page .case .case_box div ul li {
    width: 100%;
    background: #fff;
    padding-bottom: 20px;
    margin: 0px 0px 20px 0px;
  }
  .index_page .case .case_box div ul li p {
    font-size: 14px;
    padding-top: 0px;
    margin-top: 0px;
  }
  .index_page .case .case_box div ul li .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .index_page .case .case_box {
    width: 100%;
  }
  .index_page .case .case_box .case_title {
    color: #999999;
    font-weight: 100;
  }
  .index_page .case .case_box ul li {
    margin: 20px 15px 30px 15px;
    font-size: 16px;
  }
  .index_page .case .case_box div ul {
    padding: 0px 15px;
  }
  .index_page .case .case_box div ul li {
    margin: 0px 0px 15px 0px;
  }
}
.index_page .clients {
  background: #ffffff;
  padding: 80px 0px;
}
.index_page .clients .clients_box {
  width: 1200px;
  margin: 0px auto;
  text-align: center;
}
.index_page .clients .clients_box p {
  text-align: center;
  font-size: 24px;
  color: #808080;
}
.index_page .clients .clients_box .title {
  font-size: 40px;
  color: #424242;
  margin-bottom: 8px;
}
.index_page .clients .clients_box ul {
  margin: 20px 0px;
  width:1200px;
  overflow: hidden;

  width: auto;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
}
.index_page .clients .clients_box ul li {
  width: 16.6666%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}
.index_page .clients .clients_box ul li img {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.index_page .clients .clients_box ul li::before {
  content: "";
  width: 100%;
  border-top: 1px solid #eaeaea;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 8;
  display: inline-block;
}
.index_page .clients .clients_box ul li::after {
  content: "";
  height: 100%;
  border-left: 1px solid #eaeaea;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 8;
  display: inline-block;
}
.index_page .clients .clients_box .more_clients {
  background: #fff;
  height: 40px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
}
.index_page .clients .clients_box .more_clients:hover {
  background: #0063a7;
  color: #fff;
}

.clients2 .clients_box2 .more_clients2 {
  background: #fff;
  height: 40px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
}
.clients2 .clients_box2 .more_clients2:hover {
  background: #0063a7;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .index_page .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
  .index_page .clients .clients_box ul li {
    width: 25%;
  }
}
@media screen and (max-width: 800px) {
  .index_page .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
  .index_page .clients .clients_box p {
    font-size: 24px;
    margin-top: 10px;
  }
  .index_page .clients .clients_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 35px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .clients .clients_box ul li {
    width: 25%;
  }
  .index_page .clients .more_clients {
    width: 100%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .index_page .clients {
    padding: 20px 0px;
  }
  .index_page .clients .clients_box p {
    font-size: 20px;
  }
  .index_page .clients .clients_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 30px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .clients .clients_box ul li {
    width: 33.3%;
  }
}
.index_page .contact .contact_box {
  width: 1200px;
  margin: 0px auto;
  text-align: center;
  padding: 80px 0px;
}
.index_page .contact .contact_box p {
  font-size: 24px;
  color: #808080;
}
.index_page .contact .contact_box .text {
  font-size: 16px;
  width: 60%;
  margin: 20px auto 0px auto;
  line-height: 30px;
}
.index_page .contact .contact_box .title {
  font-size: 40px;
  color: #424242;
  margin-bottom: 8px;
}
.index_page .contact .contact_box .input {
  margin-top: 30px;
}
.index_page .contact .contact_box .input div {
  width: 106.32%;
  position: relative;
  left: -3.16%;
}
.index_page .contact .contact_box .input div input {
  width: 27%;
  padding: 0px 1% ;
  height: 40px;
  border: 1px solid #e5e5e5;
  float: left;
  margin: 0px 3.16%;
}
.index_page .contact .contact_box .input .textarea {
  border: 1px solid #e5e5e5 ;
  margin-top: 20px;
  padding: 10px 1%;
  width: 100%;
  height: 120px;
}
.index_page .contact .contact_box .sed_btn {
  background: #fff;
  height: 35px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}
.index_page .contact .contact_box .sed_btn:hover {
  background: #0063a7;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .index_page .contact .contact_box {
    width: 100%;
    padding: 0px 5% 20px 5%;
  }
}
@media screen and (max-width: 800px) {
  .index_page .contact .contact_box p {
    font-size: 24px;
    margin-top: 10px;
  }
  .index_page .contact .contact_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 35px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .contact .contact_box .text {
    font-size: 16px;
    width: 100%;
  }
  .index_page .contact .contact_box .input div {
    width: 100%;
    left: 0px;
  }
}
@media screen and (max-width: 500px) {
  #verify_input{
    width:60%;
  }
  #verify_img{
    display: block;
    margin-left: 250px;
  }
  .index_page .contact .contact_box p {
    font-size: 20px;
    margin-top: 10px;
  }
  .index_page .contact .contact_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 30px;
    font-family: "Adobe Caslon Pro";
  }
  .index_page .contact .contact_box .text {
    font-size: 14px;
    width: 100%;
  }
  .index_page .contact .contact_box .input {
    margin-top: 15px;
  }
  .index_page .contact .contact_box .input div input {
    width: 100%;
    padding: 0px 2%;
    margin: 0px 0px 20px 0px;
  }
  .index_page .contact .contact_box .input .textarea {
    width: 100%;
    padding: 10px 2%;
    margin-top: 0px;
    height: 80px;
  }
  .index_page .contact .contact_box .sed_btn {
    background: #fff;
    border: 1px solid #0063a7;
    color: #0063a7;
  }
}
/*============================================================案例作品页面=============================================================*/
#bdshare_weixin_qrcode_dialog {
  height: auto !important;
}
.page_case {
  position: relative;
}
.page_case .case {
  background: #ededed;
}
.page_case .case .case_box {
  width: 1200px;
  margin: 0px auto;
  text-align: center;
  padding: 0px 0px 30px 0px ;
  min-height: 600px;
}
.page_case .case .case_box ul {
  margin: 0px auto;
  /*display:flex;align-items: center ; flex-direction:row; flex-wrap:wrap;justify-content:space-between ;*/
  height: 76px;
  text-align: center;
  /*li:hover{
          color:#e1310b;
          .line{
            width:100%;
            transition: all .3s linear;
          }
        }*/
}
.page_case .case .case_box ul li {
  font-size: 16px;
  color: #666666;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin: 20px 20px;
}
.page_case .case .case_box ul li .line {
  display: inline-block;
  height: 2px;
  width: 0;
  position: absolute;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #0063a7;
  bottom: -10px;
}
.page_case .case .case_box ul .on {
  color: #e1310b;
}
.page_case .case .case_box ul .on:after {
  content: "";
  width: 100%;
  border-top: 2px solid  #e1310b;
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: -10px;
}
.page_case .case .case_box .case_div {
  width: 100%;
  margin: 0px auto 30px auto;
  position: relative;
  display: flex;
  align-items: center ;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px;
  background: none;
}
.page_case .case .case_box .case_div .gallery-wrapper {
  width: 100%;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel {
  width: 280px;
  background: #fff;
  float: left;
  display: inline;
  margin-bottom: 40px;
  cursor: pointer;
  box-shadow: 0px 2px 1.92px 0.08px rgba(213, 213, 213, 0.7);
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel div {
  position: relative;
  width: 100%;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel div img {
  width: 100%;
  padding: 6px 6px;
  display: block;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel div .video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel img {
  width: 100%;
  padding: 6px 6px;
  display: block;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel .text {
  text-align: left;
  position: relative;
  padding-bottom: 20px;
  background: #fafafa ;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel .text .title {
  font-size: 16px;
  color: #4c4c4c;
  line-height: 30px;
  padding: 0px 16px 30px 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  background: #fff;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel .text .time {
  position: absolute;
  left: 16px;
  top: 25px;
  line-height: 30px;
  color: #808080;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel .text .introduce {
  width: 100%;
  font-size: 12px;
  color: #808080;
  line-height: 20px;
  height: 46px;
  border-top: 1px solid #e5e5e5;
  background: #fafafa ;
  padding: 6px 16px 0px 16px;
  overflow: hidden;
}
.page_case .case .case_box .case_div .gallery-wrapper .white-panel .text .more_btn {
  padding: 0px 30px;
  height: 40px;
  background: #e6e6e6;
  color: #e13c14;
  border: 0px;
  margin: 15px 0px 20px 0px;
  cursor: pointer;
}
.page_case .case .case_box .more {
  background: #fff;
  height: 35px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  display: none;
  line-height: 33px;

}
.page_case .case .case_box .more:hover {
  background: #0063a7;
  color: #fff;
}
.page_case .case_bounced_cover {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  background: rgba(229, 229, 229, 0.9);
  top: 0px;
  left: 0px;
}
.page_case .case_bounced {
  width: 100%;
  padding: 0px 0px 80px 0px;
  position: fixed;
  top: 0px;
  z-index: 30;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  left: 0px;
  margin-left: 0px;
}
.page_case .case_bounced .content {
  width: 100%;
  margin: 0px auto;
}
.page_case .case_bounced .content .content_left {
  padding: 40px ;
  width: 838px;
  margin: 0px auto;
  background: #fff;
}
.page_case .case_bounced .content .content_left .title {
  text-align: center;
  font-size: 30px;
  color: #4c4c4c;
  line-height: 50px;
}
 .bdsharebuttonbox{
  text-align: center;
  margin-bottom: 10px;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox a {
  width: 37px;
  height: 37px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
  float: none;
}

.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_weixin {
  background: url(../images/footer-logo3.png) no-repeat center;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_weixin:hover {
  background: url(../images/weixin.png) no-repeat center;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_tsina {
  background: url(../images/footer-logo.png) no-repeat center;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_tsina:hover {
  background: url(../images/weibo.png) no-repeat center;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_sqq {
  background: url(../images/footer-logo2.png) no-repeat center;
}
.page_case .case_bounced .content .content_left .bdsharebuttonbox .bds_sqq:hover {
  background: url(../images/qq.png) no-repeat center;
}
.bdsharebuttonbox{position: relative}
.weixin_div{position: absolute;top:45px;width: 120px;height: 120px;left: 50%;margin-left: -50px;display: none;background:#fff;padding:10px;z-index: 25}
.weixin_div img{width: 100%;}
.page_case .case_bounced .content .content_left .particulars {
  line-height: 30px;
  margin: 10px 0px 10px 0px;
  text-align: center;
}
.page_case .case_bounced .content .content_left .particulars p {
  line-height: 30px;
  margin: 20px 0px 10px 0px;
  text-align: center;
  padding-bottom: 15px;
}
.page_case .case_bounced .content .content_left .particulars img {
  width: 100%;
}
.page_case .case_bounced .content .content_left .particulars #html_5 {
  position: relative;
  width: 80%;
  margin: 0px auto;
}
.page_case .case_bounced .content .content_left .particulars #html_5 .pic {
  width: 100%;
}
.page_case .case_bounced .content .content_left .particulars #html_5 .hover {
  background: rgba(73, 73, 73, 0.8);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
}
.page_case .case_bounced .content .content_left .particulars #html_5 .hover img {
  width: 260px;
  height: 260px;
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -130px;
  left: 50%;
  margin-left: -130px;
}
.page_case .case_bounced .content .content_right {
  width: 346px;
  float: right;
  height: 100%;
}
.page_case .case_bounced .content .content_right .top {
  text-align: center;
  padding: 40px 0px;
  background: #fff;
  color: #666666;
  font-size: 16px;
}
.page_case .case_bounced .content .content_right .top img {
  margin: 5px auto;
  display: block;
}
.page_case .case_bounced .content .content_right .top .text {
  margin-top: 20px;
  line-height: 25px;
}
.page_case .case_bounced .content .content_right .content_right_bottom {
  padding: 10px 0px 5px 10px;
  background: #fff;
  margin-top: 30px;
}
.page_case .case_bounced .content .content_right .content_right_bottom article img {
  width: 100%;
}
.page_case .case_bounced .content .content_right .share {
  display: flex;
  align-items: center ;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  background: #fff;
  margin-top: 30px;
}
.page_case .case_bounced .content .content_right .share .icon {
  width: 37px;
  height: 37px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
.page_case .case_bounced .content .content_right .share .icon_sina {
  background: url(../images/icon.png);
}
.page_case .case_bounced .content .content_right .share .icon_sina :hover {
  background: url(../images/weibo.png);
}
.page_case .case_bounced .content .content_right .share .icon_qq {
  background: url(../images/icon.png) -50px 0px;
}
.page_case .case_bounced .content .content_right .share .icon_wexin {
  background: url(../images/icon.png) -100px 0px;
}
.page_case .case_bounced .close {
  width: 50px;
  height: 50px;
  background: url(../images/icon.png) -113px -48px no-repeat;
  position: fixed;
  top: 5px;
  right: 15px;
}
.page_case .case_bounced .prev {
  width: 40px;
  height: 66px;
  background: url(../images/icon.png) 0px -35px no-repeat;
  position: fixed;
  top: 300px;
  left: 60px;
}
.page_case .case_bounced .next {
  width: 40px ;
  height: 66px;
  background: url(../images/icon.png) -56px -35px no-repeat;
  position: fixed;
  top: 300px;
  right: 60px;
}
@media screen and (max-width: 1200px) {
  .page_case .case .case_box {
    width: 100%;
  }
  .page_case .case .case_box .ul {
    width: 60%;
  }
  .page_case .case_bounced_cover {
    top: 88px;
  }
  .page_case .case_bounced {
    background: #f5f5f5;
    width: 100%;
    left: 0px;
    margin-left: 0px;
  }
  .page_case .case_bounced .content {
    width: 100%;
  }
  .page_case .case_bounced .content .content_left {
    width: 60%;
  }
  .page_case .case_bounced .content .content_right {
    width: 35%;
  }
  .page_case .case_bounced .next {
    display: none;
  }
  .page_case .case_bounced .prev {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .page_case .case .case_box ul {
    width: 100%;
  }
  .page_case .case .case_box ul li {
    margin: 20px 5px;
  }
  .page_case .case .case_box .case_div {
    padding: 0px 10px;
  }
  .page_case .case .case_box .more {
    background: none;
    border: none;
  }
  .page_case .case_bounced_cover {
    top: 88px;
  }
  .page_case .case_bounced {
    top: 0px;
    padding: 0px 0px 50px 0px;
  }
  .page_case .case_bounced .content {
    width: 100%;
  }
  .page_case .case_bounced .content .content_left {
    width: 100%;
    background: #f5f5f5;
    padding: 20px 5%;
  }
  .page_case .case_bounced .content .content_left .title {
    font-size: 20px;
  }
  .page_case .case_bounced .content .content_left .particulars {
    margin-top: 0px;
  }
  .page_case .case_bounced .content .content_left .particulars p {
    margin: 10px auto;
  }
  .page_case .case_bounced .content .content_left .particulars #html_5 {
    position: relative;
    width: 100%;
    margin: 0px auto;
  }
  .page_case .case_bounced .content .content_left .particulars #html_5 .pic {
    width: 90%;
    margin-left: 5%;
  }
  .page_case .case_bounced .content .content_left .particulars #html_5 .hover {
    background: rgba(73, 73, 73, 0.8);
    width: 90%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 5%;
  }
  .page_case .case_bounced .content .content_left .particulars #html_5 .hover img {
    width: 150px;
    height: 150px;
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -75px;
  }
  .page_case .case_bounced .content .content_right {
    position: relative;
    padding: 0px 5%;
    width: 100%;
  }
  .page_case .case_bounced .content .content_right .share {
    position: absolute;
    top: 440px;
    left: 0px;
    padding: 20px 5%;
    width: 90%;
    margin-left: 5%;
  }
  .page_case .case_bounced .content .content_right .content_right_bottom {
    margin-top: 120px;
  }
  .page_case .case_bounced .share-dialog {
    display: none;
  }
  .page_case .case_bounced .close {
    width: 40px;
    height: 40px;
    background: url(../images/icon.png) -89px -38px no-repeat;
    position: absolute;
    top: 15px;
    right: 15px;
    background-size: 400px 400px;
    display: none;
  }
}
/*==================================================================合作客户页面==================================================================*/
.clients_page {
  /*============客户群体===========*/
}
.clients_page .clients {
  background: #ffffff;
  padding: 50px 0px;
}
.clients_page .clients .clients_box {
  width: 1200px;
  margin: 0px auto;
  text-align: center;
}
.clients_page .clients .clients_box .title {
  font-size: 30px;
  font-weight: 100;
  color: #4d4d4d;
}
.clients_page .clients .clients_box ul {
  margin: 40px 0px 20px 0px;
  overflow: hidden;
  display: inline-block;
  width: auto;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
}
.clients_page .clients .clients_box ul li {
  width: 16.6666%;
  height: auto;
  float: left;
  position: relative;
  overflow: hidden;
}
.clients_page .clients .clients_box ul li img {
  width: 100%;
}
.clients_page .clients .clients_box ul li::before {
  content: "";
  width: 100%;
  border-top: 1px solid #eaeaea;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 8;
  display: inline-block;
}
.clients_page .clients .clients_box ul li::after {
  content: "";
  height: 100%;
  border-left: 1px solid #eaeaea;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 8;
  display: inline-block;
}
.clients_page .clients .clients_box .more_clients {
  height: 40px;
  padding: 0px 50px;
  font-size: 16px;
  line-height: 40px;
  background: #fff;
  border: 1px solid #0063a7;
  color: #0063a7;
  cursor: pointer;
}
.clients_page .clients .clients_box .more_clients:hover {
  background: #0063a7;
  color: #fff;
}
.clients_page .call_us {
  width: 1162px;
  border-top: 1px solid #eaeaea;
  margin: 0px auto;
  text-align: center;
  padding: 43px 0px;
  cursor: default;
}
.clients_page .call_us p {
  font-size: 24px;
  color: #4d4d4d;
  width: 60%;
  margin: 0px auto;
  line-height: 40px;
}
.clients_page .call_us .call_btn {
  width: 360px;
  height: 46px;
  margin-top: 36px;
  background: #fff;
  border: 1px solid #0063a7;
  color: #0063a7;
  font-size: 16px;
}
.clients_page .call_us .call_btn:hover {
  color: #fff;
  background: #0063a7;
}
@media screen and (max-width: 1100px) {
  .clients_page .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
  .clients_page .clients .clients_box ul li {
    width: 25%;
  }
  .clients_page .call_us {
    width: 100%;
  }
  .clients_page .call_us p {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .clients_page .clients {
    padding: 40px 0px 20px 0px;
  }
  .clients_page .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
  .clients_page .clients .clients_box .title {
    color: #4d4d4d;
    font-weight: 100;
    font-size: 25px;
  }
  .clients_page .clients .clients_box ul li {
    width: 25%;
  }
  .clients_page .clients .clients_box .more_clients {
    width: 100%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px solid #0063a7;
    color: #0063a7;
  }
  .clients_page .call_us {
    width: 100%;
    border-top: 0px solid #eaeaea;
    padding: 0px 0px 30px 0px;
  }
  .clients_page .call_us p {
    width: 90%;
    color: #999999;
    font-size: 20px;
  }
  .clients_page .call_us .call_btn {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .clients_page .clients {
    padding: 30px 0px 5px 0px;
  }
  .clients_page .clients .clients_box {
    width: 100%;
    padding: 0px;
  }
  .clients_page .clients .clients_box .title {
    font-weight: 100;
    font-size: 20px;
    width: 90%;
    padding: 0px 5%;
      margin-left: 5%;
  }
  .clients_page .clients .clients_box ul {
    border: none;
  }
  .clients_page .clients .clients_box ul li {
    width: 33.3%;
    border: none;
  }
  .clients_page .clients .clients_box ul li:before {
    border: none;
  }
  .clients_page .clients .clients_box ul li:after {
    border: none;
  }
  .clients_page .clients .clients_box .more_clients {
    width: 90%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px solid #0063a7;
    color: #0063a7;
  }
  .clients_page .call_us {
    width: 100%;
  }
  .clients_page .call_us p {
    width: 90%;
    color: #999999;
    font-size: 16px;
  }
  .clients_page .call_us .call_btn {
    width: 90%;
  }
}
/*==================================================================关于我们页面==================================================================*/
.about_us_page {
  background: #f7f7f7;
}
.about_us_page .work_environment {
  width: 100%;
  background: #fff;
}
.about_us_page .work_environment .work_environment_box {
  width: 1280px;
  margin: 0px auto 60px auto;
  padding: 50px 0px 30px 0px;
}
.about_us_page .work_environment .work_environment_box p {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}
.about_us_page .work_environment .work_environment_box .left {
  float: left;
  width: 60%;
  padding-right: 5px;
}
.about_us_page .work_environment .work_environment_box .left img {
  vertical-align: middle;
}
.about_us_page .work_environment .work_environment_box .left .img_top {
  width: 50%;
  margin-bottom: 5px;
  overflow: hidden;
  float: left;
  padding-right: 2.5px;
}
.about_us_page .work_environment .work_environment_box .left .img_top img {
  width: 100%;
  display: block;
}
.about_us_page .work_environment .work_environment_box .left .img_top_right {
  float: right;
  padding: 0px 0px 0px 2.5px;
}
.about_us_page .work_environment .work_environment_box .left .img_bottom {
  width: 33.333%;
  overflow: hidden;
  float: left;
  padding: 0px 3.5px;
  margin-bottom: 5px;
}
.about_us_page .work_environment .work_environment_box .left .img_bottom img {
  width: 100%;
  display: block;
}
.about_us_page .work_environment .work_environment_box .left .img_bottom_left {
  padding-left: 0px;
}
.about_us_page .work_environment .work_environment_box .left .img_bottom_right {
  padding-right: 0px;
}
.about_us_page .work_environment .work_environment_box .left .img_bottom_center {
  padding: 0px 1.5px;
}
.about_us_page .work_environment .work_environment_box .right {
  width: 40%;
  float: right;
}
.about_us_page .work_environment .work_environment_box .right img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1280px) {
  .about_us_page .work_environment .work_environment_box {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .about_us_page .work_environment .work_environment_box {
    width: 100%;
    margin: 0px;
  }
  .about_us_page .work_environment .work_environment_box p {
    font-size: 35px;
    margin: 0px 0px 40px 0px;
  }
}
@media screen and (max-width: 500px) {
  .about_us_page .work_environment .work_environment_box {
    width: 100%;
    padding: 0px;
  }
  .about_us_page .work_environment .work_environment_box .left,
  .about_us_page .work_environment .work_environment_box .right {
    width: 100%;
    padding-right: 0px;
  }
  .about_us_page .work_environment .work_environment_box p {
    font-size: 20px;
    margin: 0px 0px 30px 0px;
  }
  .about_us_page .work_environment .work_environment_box .left .img_top {
    width: 50%;
    margin-bottom: 5px;
  }
}
/*==================================================================新闻动态页面=================================================================*/
.new_page {
  background: #eeeeee;
}
.new_page .new .new_div {
  width: 1200px;
  margin: 60px auto 0px auto;
}
.new_page .new .new_div .left {
  width: 65%;
  float: left;
}
.new_page .new .new_div .left .item {
  background: #fffdfd;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.new_page .new .new_div .left .item img {
  width: 100%;
}
.new_page .new .new_div .left .item .text {
  width: 100%;
  padding: 0px 5%;
  line-height: 25px;
}
.new_page .new .new_div .left .item .text .time {
  color: #999999;
  font-size: 16px;
  margin-top: 10px;
}
.new_page .new .new_div .left .item .text .title {
  font-size: 24px;
  color: #333333;
  line-height: 35px;
}
.new_page .new .new_div .left .item .text .introduce {
  font-size: 14px;
  color: #727171;
}
.new_page .new .new_div .left .item .text .more_introduce {
  width: 115px;
  height: 40px;
  line-height: 40px;
  background: #e6e6e6;
  color: #e13c14;
  font-size: 16px;
  border: 0px;
  margin-top: 10px;
  cursor: pointer;
}
.new_page .new .new_div .left .paging {
  text-align: center;
  margin: 15px auto;
}
.new_page .new .new_div .left .paging ul {
  display: inline-block;
}
.new_page .new .new_div .left .paging ul li {
  display: inline-block;
  margin: 0px 5px;
  padding: 3px 10px;
  color: #8f8f8f;
}
.new_page .new .new_div .left .paging ul .active {
  background: #e13c14;
  color: #fff;
}
.new_page .new .new_div .right {
  float: right;
  width: 30%;
  background: #fff;
  padding: 20px 1.5% 60px 1.5%;
}
.new_page .new .new_div .right .lable {
  font-size: 18px;
  padding: 48px 10px;
  border-bottom: 1px solid #ececec;
  position: relative;
}
.new_page .new .new_div .right .lable:before {
  content: "";
  height: 20px;
  border-left: 3px solid #e13c14;
  margin-right: 10px;
  position: absolute;
  left: 0px;
  top: 50px;
}
.new_page .new .new_div .right .right_nav ul li {
  padding: 20px 0px;
  border-bottom: 1px solid #ececec;
  color: #808080;
}
.new_page .new .new_div .right .news_title .news_item {
  padding: 20px 0px;
  border-bottom: 2px solid #ececec;
  line-height: 25px;
}
.new_page .new .new_div .right .news_title .news_item .title {
  color: #e13c14;
}
.new_page .new .new_div .right .news_title .news_item img {
  width: 100%;
  margin-top: 15px;
}
.new_page .new .new_div .right .hot_new .lable {
  font-size: 18px;
  padding: 30px 10px 20px 10px;
  position: relative;
}
.new_page .new .new_div .right .hot_new .lable:before {
  content: "";
  height: 20px;
  border-left: 3px solid #e13c14;
  margin-right: 10px;
  position: absolute;
  left: 0px;
  top: 32px;
}
.new_page .new .new_div .right .hot_new .news_item {
  padding: 20px 0px;
  line-height: 25px;
}
.new_page .new .new_div .right .hot_new .news_item .title {
  color: #e13c14 ;
  margin-top: 15px;
}
.new_page .new .new_div .right .hot_new .news_item img {
  width: 100%;
}
.new_page .new .new_div .right .search {
  border: 1px solid #ececec;
  height: 40px;
  position: relative;
}
.new_page .new .new_div .right .search .search_icon {
  width: 35px;
  height: 35px;
  background: url(../images/icon.png) -3px -120px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
}
.new_page .new .new_div .right .search input {
  width: 100%;
  padding-left: 40px;
  border: none;
  height: 38px;
  line-height: 38px;
}
@media screen and (max-width: 1200px) {
  .new_page .new .new_div {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .new_page .new .new_div {
    width: 100%;
    margin: 20px 0px;
  }
  .new_page .new .new_div .left {
    width: 100%;
    padding: 0px 5%;
  }
  .new_page .new .new_div .right {
    width: 100%;
    padding: 20px 5%;
  }
  .new_page .new .new_div .right .lable {
    padding: 20px 10px;
  }
  .new_page .new .new_div .right .lable:before {
    top: 22px;
  }
}
@media screen and (max-width: 800px) {
  .new_page .new .new_div {
    width: 100%;
    margin-bottom: 0px;
  }
}
/*==================================================================加入我们页面================================================================*/
.join_us .join_us_box {
  width: 1200px;
  margin: 0px auto;
  padding: 0px 0px 30px 0px;
}
.join_us .join_us_box ul li {
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 0px 20px 0px;
  cursor: pointer;
  overflow: hidden;
}
.join_us .join_us_box ul li .job_div {
  color: #828282;
  padding-bottom: 20px;
  position: relative;
}
.join_us .join_us_box ul li .job_div .job_name {
  line-height: 50px;
  font-size: 24px;
}
.join_us .join_us_box ul li .job_div .job_name .color_red {
  color: #e13c14;
  font-size: 24px;
  margin-right: 5px;
}
.join_us .join_us_box ul li .job_div .icon_slide {
  width: 50px;
  height: 40px;
  display: inline-block;
  background: url(../images/icon.png) -40px -120px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  right: 0px;
}
.join_us .join_us_box ul li .introduce {
  display: none;
  color: #828282 ;
  line-height: 30px;
}
.join_us .join_us_box ul li .introduce .job_function {
  margin-top: 20px;
}
.join_us .join_us_box ul li .introduce .job_function .color_red {
  color: #e13c14;
}
.join_us .join_us_box .process {
  margin-top: 20px;
}
.join_us .join_us_box .process .title {
  color: #e13c14;
  font-size: 18px;
  line-height: 40px;
}
.join_us .join_us_box .process p {
  line-height: 30px;
  color: #828282;
}
@media screen and (max-width: 1200px) {
  .join_us .join_us_box {
    width: 100%;
    padding: 0px 5%;
  }
  .join_us .join_us_box ul li .job_div {
    padding-right: 10%;
  }
}
@media screen and (max-width: 500px) {
  .join_us .join_us_box ul li {
    padding: 15px 0px;
  }
  .join_us .join_us_box ul li .job_div {
    padding-bottom: 15px;
  }
  .join_us .join_us_box ul li .job_div .job_name {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 10px;
  }
  .join_us .join_us_box ul li .job_div .job_name .color_red {
    font-size: 18px;
    display: block;
    line-height: 25px;
  }
  .join_us .join_us_box ul li .job_div .icon_slide {
    width: 30px;
    height: 30px;
    background-position: -26px -67px;
    background-size: 300px 300px;
  }
  .join_us .join_us_box ul li .introduce {
    line-height: 25px;
  }
  .join_us .join_us_box .process {
    margin-top: 20px;
    padding-bottom: 15px;
  }
  .join_us .join_us_box .process .title {
    color: #e13c14;
    font-size: 18px;
    line-height: 40px;
  }
  .join_us .join_us_box .process p {
    line-height: 25px;
    color: #828282;
  }
}
.rotate180 {
  animation: rotate180 0.5s forwards;
  -moz-animation: rotate180 0.5s forwards;
  /* Firefox */
  -webkit-animation: rotate180 0.5s forwards;
  /* Safari and Chrome */
  -o-animation: rotate180 0.5s forwards;
  /* Opera */
}
/*旋转动画*/
@keyframes rotate180 {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
}
@-moz-keyframes rotate180 {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
}
@-webkit-keyframes rotate180 {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes rotate180 {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
}
.rotate180_back {
  animation: rotate180_back 0.5s forwards;
  -moz-animation: rotate180_back 0.5s forwards;
  /* Firefox */
  -webkit-animation: rotate180_back 0.5s forwards;
  /* Safari and Chrome */
  -o-animation: rotate180_back 0.5s forwards;
  /* Opera */
}
/*旋转back动画*/
@keyframes rotate180_back {
  from {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
}
@-moz-keyframes rotate180_back {
  from {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate180_back {
  from {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotate180_back {
  from {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
}
/*==================================================================联系我们页面================================================================*/
.contact_page .contact_us {
  width: 1200px;
  margin: 0px auto;
}
.contact_page .contact_us .bounced {
  width: 100%;
  border-radius: 0px;
  padding: 50px 0px;
  position: relative;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 5;
}
.contact_page .contact_us .bounced .introduce {
  color: #808080;
  font-weight: 100;
}
.contact_page .contact_us .bounced .text {
  color: #e1310b;
}
.contact_page .media_call {
  cursor: default;
  margin-top: 10px;
}
.contact_page .media_call .title {
  color: #e13c14;
  font-size: 30px;
  text-align: center;
}
.contact_page .media_call .text {
  color: #808080;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}
.contact_page .media_call ul {
  width: 80%;
  margin: 40px auto 20px auto;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.contact_page .media_call #allmap {
  width: 1200px;
  height: 300px;
  overflow: hidden;
  margin: 0px auto 30px auto;
}
.contact_page .media_call .BMap_mask {
  box-shadow: 3px 17px 9px rgba(143, 143, 143, 0.2) inset;
}
@media screen and (max-width: 1200px) {
  .contact_page .contact_us {
    width: 100%;
    padding: 0px 5%;
  }
  .contact_page .contact_us .bounced {
    width: 100%;
    top: 0px;
    background: #fff;
    text-justify: auto;
    text-align: justify;
    padding: 40px 0px;
  }
  .contact_page .contact_us .bounced .title {
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 20px;
  }
  .contact_page .contact_us .bounced .introduce {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
  }
  .contact_page .contact_us .bounced .contact_div .left .text {
    display: block;
    font-size: 16px;
    line-height: 23px;
  }
  .contact_page .media_call .title {
    font-size: 22px;
  }
  .contact_page .media_call .text {
    font-size: 14px;
  }
  .contact_page .media_call #allmap {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
}
@media screen and (max-width: 500px) {
  .contact_page .contact_us .bounced {
    padding: 20px 0px;
  }
  .contact_page .contact_us .bounced .title {
    font-size: 30px;
  }
  .contact_page .contact_us .bounced .introduce {
    font-size: 16px;
    text-align: center;
  }
  .contact_page .contact_us .bounced .contact_div .left .text {
    font-size: 16px;
    line-height: 23px;
    text-align: center;
  }
  .contact_page .media_call .title {
    font-size: 22px;
  }
  .contact_page .media_call .text {
    font-size: 14px;
  }
  .contact_page .media_call ul li {
    margin: 5%;
  }
  .contact_page .media_call #allmap {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
}
#new_case_page .new_case_bounced {
  width: 1200px;
  padding: 60px 0px 80px 0px;
  top: -88px;
  z-index: 30;
  margin: 0px auto;
}
#new_case_page .new_case_bounced .content {
  width: 100%;
  margin: 0px auto;
}
#new_case_page .new_case_bounced .content .content_left {
  padding: 40px ;
  width: 838px;
  margin: 0px auto;
  background: #fff;
}
#new_case_page .new_case_bounced .content .content_left .title {
  text-align: center;
  font-size: 30px;
  color: #4c4c4c;
  line-height: 50px;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox {
  text-align: center;
  margin-bottom: 10px;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox a {
  width: 37px;
  height: 37px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px;
  float: none;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_weixin {
  background: url(../images/footer-logo3.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_weixin:hover {
  background: url(../images/weixin.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_tsina {
  background: url(../images/footer-logo.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_tsina:hover {
  background: url(../images/weibo.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_sqq {
  background: url(../images/footer-logo2.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .bdsharebuttonbox .bds_sqq:hover {
  background: url(../images/qq.png) no-repeat center;
}
#new_case_page .new_case_bounced .content .content_left .particulars p {
  line-height: 30px;
  margin: 20px 0px 10px 0px;
  text-align: center;
}
#new_case_page .new_case_bounced .content .content_left .particulars img {
  width: 100%;
}
#new_case_page .new_case_bounced .content .content_left .particulars #html_5 {
  position: relative;
  width: 80%;
  margin: 0px auto;
}
#new_case_page .new_case_bounced .content .content_left .particulars #html_5 .pic {
  width: 100%;
}
#new_case_page .new_case_bounced .content .content_left .particulars #html_5 .hover {
  background: rgba(73, 73, 73, 0.8);
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
}
#new_case_page .new_case_bounced .content .content_left .particulars #html_5 .hover img {
  width: 260px;
  height: 260px;
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -130px;
  left: 50%;
  margin-left: -130px;
}
#new_case_page .new_case_bounced .close {
  width: 50px;
  height: 50px;
  background: url(../images/icon.png) -113px -48px no-repeat;
  position: fixed;
  top: 5px;
  right: 15px;
}
@media screen and (max-width: 1200px) {
  #new_case_page .new_case_bounced {
    width: 100%;
    padding: 60px 0px 40px 0px;
  }
  #new_case_page .new_case_bounced .content .content_left {
    width: 80%;
    margin-left: 10%;
    padding: 20px 0px;
  }
}
@media screen and (max-width: 800px) {
  #new_case_page .new_case_bounced {
    width: 100%;
    padding: 60px 0px 0px 0px;
  }
  #new_case_page .new_case_bounced .content .content_left {
    width: 90%;
    margin-left: 5%;
    padding: 20px 0px;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars p {
    line-height: 30px;
    margin: 20px 0px 10px 0px;
    text-align: center;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars img {
    width: 100%;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars #html_5 {
    position: relative;
    width: 100%;
    margin: 0px auto;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars #html_5 .pic {
    width: 90%;
    margin-left: 5%;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars #html_5 .hover {
    background: rgba(73, 73, 73, 0.8);
    width: 90%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 5%;
  }
  #new_case_page .new_case_bounced .content .content_left .particulars #html_5 .hover img {
    width: 150px;
    height: 150px;
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -75px;
  }
}

@media screen and (max-width: 1100px) {
   .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
   .clients .clients_box ul li {
    width: 25%;
  }
}
@media screen and (max-width: 800px) {
   .clients .clients_box {
    width: 90%;
    padding: 0px 5%;
  }
   .clients .clients_box p {
    font-size: 24px;
    margin-top: 10px;
  }
   .clients .clients_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 35px;
    font-family: "Adobe Caslon Pro";
  }
   .clients .clients_box ul li {
    width: 25%;
  }
   .clients .more_clients {
    width: 100%;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
   .clients {
    padding: 20px 0px;
  }
   .clients .clients_box p {
    font-size: 20px;
  }
   .clients .clients_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 30px;
    font-family: "Adobe Caslon Pro";
  }
   .clients .clients_box ul li {
    width: 33.3%;
  }
}
 .contact .contact_box {
  width: 1200px;
  margin: 0px auto;
  text-align: center;
  padding: 80px 0px;
}
 .contact .contact_box p {
  font-size: 24px;
  color: #808080;
}
 .contact .contact_box .text {
  font-size: 16px;
  width: 60%;
  margin: 20px auto 0px auto;
  line-height: 30px;
}
 .contact .contact_box .title {
  font-size: 40px;
  color: #424242;
  margin-bottom: 8px;
}
 .contact .contact_box .input {
  margin-top: 30px;
}
 .contact .contact_box .input div {
  width: 106.32%;
  position: relative;
  left: -3.16%;
}
 .contact .contact_box .input div input {
  width: 27%;
  padding: 0px 1% ;
  height: 40px;
  border: 1px solid #e5e5e5;
  float: left;
  margin: 0px 3.16%;
}
 .contact .contact_box .input .textarea {
  border: 1px solid #e5e5e5 ;
  margin-top: 20px;
  padding: 10px 1%;
  width: 100%;
  height: 120px;
}
 .contact .contact_box .sed_btn {
  background: #fff;
  height: 35px;
  border: 1px solid #0063a7;
  color: #0063a7;
  padding: 0px 50px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
}
 .contact .contact_box .sed_btn:hover {
  background: #0063a7;
  color: #fff;
}
@media screen and (max-width: 1200px) {
   .contact .contact_box {
    width: 100%;
    padding: 0px 5% 20px 5%;
  }
}
@media screen and (max-width: 800px) {
   .contact .contact_box p {
    font-size: 24px;
    margin-top: 10px;
  }
   .contact .contact_box .title {
    color: #999999;
    font-weight: 100;
    font-size: 35px;
    font-family: "Adobe Caslon Pro";
  }
   .contact .contact_box .text {
    font-size: 16px;
    width: 100%;
  }
   .contact .contact_box .input div {
    width: 100%;
    left: 0px;
  }
}