/*全局样式*/
:root {
  --animate-delay: 0.1s;
}
body {
  margin: 0;
  padding: 0;
  font: 14px/200% Helvetica, Pingfang SC, Microsoft YaHei, STHeiti, Verdana,
    Arial, Tahoma, sans-serif;
  color: #777;
}

a:link {
  color: #e1251b;
  text-decoration: none;
}

/*未访问*/
a:hover,
a:focus {
  color: #e1251b;
  text-decoration: none;
  outline: none;
  -moz-outline: none;
}

/*鼠标悬停*/
a:visited {
  color: #e1251b;
}

/*已访问*/
a:active {
  color: #ff0000;
}

/*被选择*/
input,
textarea {
  outline: none;
  -moz-outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #000;
  font-weight: 500;
  line-height: 150%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}

img {
  padding: 0;
  margin: 0;
  border: 0;
}

.comment-respond #submit,
.banner p,
.process figcaption,
.kefu,
.navbar-brand,
.navbar-default,
.transition,
*:link,
*:visited,
*:hover,
*:active,
*:focus {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.parallax {
  background-attachment: fixed !important;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

::-moz-selection {
  background: #e1251b;
  color: #fff;
}

::selection {
  background: #e1251b;
  color: #fff;
}

.pingpu-bg {
  background: no-repeat center top fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
}

.pingpu-bg {
  min-width: 1140px;
}

.red {
  color: #ff6050 !important;
}

.blue {
  color: #e1251b !important;
}

.green {
  color: #089500 !important;
}

.font-12 {
  font-size: 12px !important;
}

hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid #eee;
}

hr.small {
  margin: 15px 0;
}

hr.big {
  margin: 40px 0;
}

hr.white {
  border-color: rgba(255, 255, 255, 0.3);
}

.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

/*placeholder*/
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #ccc;
  font-size: 12px;
}

/*加载进度条*/
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.carousel-indicators li {
  width: 30px;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  filter: alpha(opacity=30);
  opacity: 0.3;
  height: 5px;
  margin: 0;
}

.carousel-indicators .active {
  width: 30px;
  border-radius: 0;
  border: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
  height: 5px;
  margin: 0;
}

.carousel-inner img {
  width: 100%;
}

div.carousel.tiny-carousel
  > div.carousel-panels
  > div.carousel-panel
  > picture > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .carousel-indicators {
    bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .carousel-indicators {
    bottom: 0;
  }
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #fff;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #fff, 0 0 5px #fff;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -moz-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  -o-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
}

/*上下跳动*/

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    filter: alpha(opacity=30);
    opacity: 0.3;
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    filter: alpha(opacity=30);
    opacity: 0.3;
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/*header start*/
.navbar-header {
  position: relative;
}

/*logo start*/
.navbar-brand {
  padding: 0 15px;
  width: 200px;
  height: 73px;
  background: url(../images/logo.png) no-repeat;
  background-size: 200px auto;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
  screen and (min--moz-device-pixel-ratio: 2) {
  .navbar-brand {
    background: url(../images/logo@2x.png) no-repeat;
    background-size: 200px auto;
  }
}

.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
  margin-left: 0;
}

/*nav start*/
.nav {
  line-height: 56px;
}

.nav > li > a {
  color: #fff;
  display: block;
  padding: 0;
  margin-left: 32px;
  font-size: 15px;
}

.nav > li.active > a,
.nav > li > a:hover,
.nav > li > a:focus {
  color: #e1251b;
  background-color: transparent;
}

/*header.scroll start*/
.navbar-default {
  padding: 20px 0;
  background-color: rgba(52, 152, 219, 0);
}

.navbar-default {
  background-color: transparent;
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover {
  background-color: rgba(255, 255, 255, 0);
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #ddd;
}

.navbar-fixed-top {
  border-width: 0;
}

.navbar {
  margin-bottom: 0;
  border: 0;
  background: #000000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media (max-width: 767px) {
  .row figure img {
    width: 100%;
  }

  .navbar-default .navbar-collapse {
    border-width: 0;
    margin-top: 10px;
    padding: 10px 0;
    height: auto;
    background: #000000;
    opacity: 0.85;
    filter: alpha(opacity=85);
  }

  .navbar-default .navbar-collapse a {
    line-height: 40px;
  }

  .sticky .navbar-collapse {
    border-width: 0;
    margin-top: 10px;
    padding-top: 0;
  }

  .sticky .nav {
    margin-top: 10px;
  }

  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: 15px;
  }
}

.sticky {
  background-color: rgba(45, 45, 47, 0.54);
}

.sticky.navbar {
  padding: 15px 0;
}

.sticky .nav {
  line-height: 40px;
}

.sticky .navbar-brand {
  width: 122px;
  height: 40px;
}

.sticky .navbar-toggle {
  margin-top: 3px;
  margin-bottom: 0;
}

.sticky .navbar-brand {
  background-size: 122px auto;
}

.sticky .navbar-brand {
  background-size: 122px auto;
}

/*解决非视网膜显示屏下的LOGO向下滚动缩放*/
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #e1251b;
  background-color: rgba(255, 255, 255, 0);
}

/*banner start*/
.banner {
  height: 566px;
  position: relative;
}

.app-banner {
  background-image: url(../images/app-banner.jpg);
}

.applet-banner {
  background-image: url(../images/applet-banner.jpg);
}

.web-banner {
  background-image: url(../images/web-banner.jpg);
}

.vc-banner {
  background-image: url(../images/vc-banner.jpg);
}

.news-banner {
  background: url(../images/news-banner.jpg) no-repeat;
  min-height: 560px !important;
  background-size: 100% !important;
  height: auto !important;
}

.news-banner > .container {
  display: none;
}

.about-banner {
  background-image: url(../images/about-banner.jpg);
  height: 400px;
}

@media (min-width: 992px) and (max-width: 1380px) {
  .banner {
    height: 494px;
  }
  .news-banner {
    min-height: 395px !important;
  }
}

@media (max-width: 991px) {
  .banner {
    height: 410px;
  }

  .news-banner {
    min-height: 180px !important;
    margin-top: 75px !important;
    background-size: 230% !important;
  }
}

.banner {
  background-size: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner {
    background-size: 1650px auto;
  }
}

@media (max-width: 991px) {
  .banner {
    background-size: 1262px auto;
  }
}

@media (min-width: 2000px) {
  .full-bg,
  .banner {
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }
}

@media (max-width: 767px) {
  .news-banner {
    background-position-x: center;
  }
}

/*banner text*/
.banner {
  text-align: center;
}

.banner div {
  padding-top: 16em;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
}

.banner div h2 {
  color: #fff;
  font-size: 40px;
  font-weight: bolder;
  margin: 0 0 10px 0;
  padding: 0;
  -webkit-text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.banner div p {
  color: #fff;
  font-size: 16px;
  margin: 0 0 4px 0;
  border-radius: 4px;
  cursor: pointer;
}

.banner div a {
  display: inline-block;
  width: 30px;
  height: 64px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/scroll.svg) no-repeat center top;
  background-size: 30px auto;
  cursor: pointer;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner div {
    padding-top: 14em;
  }

  .banner div h2 {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner div {
    padding-top: 10em;
  }

  .banner div h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .banner div {
    padding-top: 8em;
  }

  .banner div p {
    font-size: 14px;
    line-height: 24px;
  }

  .banner div h2 {
    font-size: 26px;
  }
}

.banner div .shake {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  margin-top: 30px;

  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.news-banner div {
  padding-top: 9em !important;
  text-align: left;
}

.about-banner {
  text-align: left;
  padding-left: 10%;
}
.about-banner div {
  padding-top: 12em;
}

.about-banner div h2 {
  color: #fff;
  font-size: 40px;
}

.about-banner div p {
  color: #fff;
  font-size: 30px;
}

.about-logo {
  text-align: center;
}

.about-logo img {
  width: 60%;
}

@media (max-width: 767px) {
  .about-banner {
    padding-left: 0;
  }

  .about-banner h2 {
    font-size: 30px;
  }

  .about-banner div {
    padding-top: 8em;
  }

  .about-banner div p {
    line-height: 40px;
  }
}

/*全局h2标签*/
.h-h2 {
  font-size: 30px;
  color: #303030;
  padding: 0 0 20px 0;
  margin: 20px 0 30px 0;
  /*border-bottom: #e5e5e5 solid 1px;*/
  line-height: 150%;
  text-align: center;
}

.p-h2 {
  font-size: 2em;
  line-height: 150%;
  color: #000;
  padding: 0;
  margin: 0 0 30px 0;
}

.p-h2-white {
  color: #fff;
}

@media (max-width: 767px) {
  .h-h2 {
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
  }

  .p-h2 {
    font-size: 1.6em;
  }
}

.h-h2 small,
.p-h2 small {
  display: block;
  font-size: 14px;
  line-height: 150%;
  margin: 10px 0;
}

.sx-jianju {
  padding: 70px 0 60px 0;
}

@media (max-width: 767px) {
  .sx-jianju {
    padding: 20px 0 20px 0;
  }
}

.our-total {
  background: white;
}

.our-total div h2 {
  padding: 0 0 0 55px;
  font-size: 16px;
  color: #333;
  background: no-repeat left 2px;
  margin-bottom: 20px;
}

.our-total div h2 a {
  color: #000;
  text-decoration: none;
}

.our-total div h2 {
  background-size: auto 40px;
}

.our-total div h2.jy {
  background-image: url(../images/t-jy.svg);
}
.our-total div h2.js {
  background-image: url(../images/t-js.svg);
}
.our-total div h2.ky {
  background-image: url(../images/t-ky.svg);
}
.our-total div h2.td {
  background-image: url(../images/t-td.svg);
}
.our-total div h2.kh {
  background-image: url(../images/t-kh.svg);
}
.our-total div h2.yy {
  background-image: url(../images/t-yy.svg);
}

.our-total div h2 a:hover {
  color: #e1251b;
}

.our-total div h2 small {
  font-size: 14px;
  display: block;
  margin: 5px 0 15px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.our-service {
  padding: 60px 0 65px 0;
  background: #f8f9fd;
}

.our-service h3,
.our-service p {
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .our-total {
    padding-top: 0;
  }
  .our-total div h2 {
    padding: 0;
  }
  .our-total > .container > .row > .col-xs-6 {
    text-align: center;
    width: 25%;
  }
  .col-xs-6 > h2 {
    background-image: none !important;
  }
  .hidden1 {
    display: none;
  }
}

.case-category {
  margin: auto;
  padding: 80px 10vw 0 10vw;
}

.case-category ul li {
  border: 1px solid #ededed;
  background: #fbfbfb;
}

.case-category ul li a {
  color: #7b7b7b;
  margin-left: 10px;
  padding: 3px 5px;
  border-radius: 3px;
}

.case-category ul li a.active {
  color: #fff;
  background: #e1251b;
}

@media (max-width: 767px) {
  .case-category {
    padding: 0;
  }
  .case-category ul li a {
    margin: 0;
  }
}

.case {
  padding: 40px 20vw 40px 20vw;
  margin: auto;
  text-align: center;
  background: #f0f0f0;
}

@media (max-width: 767px) {
  .case {
    padding: 0;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .case {
    padding: 40px 0;
  }
}

.case .row {
  margin-bottom: 60px;
}

.case .row a {
display: flex;
position: relative;
text-decoration: none;
align-items: center;
justify-content: center;
height: 24vh;
border-radius: 15px;
overflow: hidden;
}

.case .row a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.case .row a:hover > img {
  transform: scale(1.1);
}

.case .row a .post-warp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: #0009;
}

.case .row a:hover > .post-warp {
  opacity: 1;
}

.case .row a .post-warp b {
overflow: hidden;
max-width: 10em;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
color: white;
font-size: 30px;
line-height: 36px;
}

.case .row a .post-warp b::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 10px;
}

.case-more {
  padding: 40px 10vw 40px 10vw;
  margin: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .case-more {
    padding: 0;
    width: 100%;
  }
}

.case-more .row {
  padding-bottom: 20px;
}

.case-more .row div {
  margin-bottom: 5px;
  text-align: left;
  line-height: 22px;
}

.case-more .row a {
  text-decoration: none;
}

.case-more .row a img {
  margin-bottom: 5px;
  width: 100%;
}

.case-more .row a b {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 25em;
  white-space: nowrap;
  color: #333;
  font-size: 14px;
}

.case-more .row a p {
  color: #b2b2b2;
  font-size: 14px;
}

.hezuo {
  width: 76%;
  padding: 60px 0 65px 0;
  margin: auto;
}

.hezuo .row {
  padding-bottom: 5px;
}

.hezuo .row div {
  margin-bottom: 5px;
  padding: 3px;
  text-align: left;
  line-height: 22px;
}

.hezuo .row div img {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .hezuo {
    width: 100%;
  }
  .case .row a {
    border-radius: 0;
    margin-bottom: 40px;
  }
  .case .row a b {
    width: 12em;
  }
}

@media (min-width: 1200px) {
  .col-zdlg-2-5 {
    float: left;
    width: 20%;
  }
}

.btn-center {
  text-align: center;
  font-size: 14px;
  padding: 14px 60px;
  color: #e1251b;
  border: 2px solid #e1251b;
  cursor: pointer;
}

.btn-center:hover {
  background-color: #e1251b;
  color: #fff;
  text-decoration: none;
}

/*模态窗*/
.modal-title {
  color: #000;
  text-align: center;
}

.modal-body {
  padding: 20px 30px;
  text-align: center;
}

.modal-body,
.modal-body p {
  color: #999;
}

.modal-body img {
  width: 200px;
  margin: auto;
}

.modal-content {
  border-radius: 5px;
  margin-top: 80px;
}

.modal-header {
  background: #f5f5f5;
  border-radius: 5px 5px 0 0;
}

/*服务项目*/

.services div h3 {
  padding: 0 0 0 65px;
  font-size: 18px;
  color: #000;
  background: no-repeat left 2px;
}

.services div h3 a {
  color: #000;
  text-decoration: none;
}

.services div h3 a:hover {
  color: #e1251b;
}

.services div h3 small {
  font-size: 14px;
  display: block;
  margin: 10px 0 15px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.services div h3 {
  background-size: auto 40px;
}

.services div h3.wj {
  background-image: url(../images/s-app.svg);
}

.services div h3.yy {
  background-image: url(../images/s-weixin.svg);
}

.services div h3.yx {
  background-image: url(../images/s-xiaochengxu.svg);
}

.services div h3.pp {
  background-image: url(../images/s-pc.svg);
}

.services div h3.hh {
  background-image: url(../images/s-h5.svg);
}

.services div h3.vc-lc-1 {
  background-image: url(../images/vc-lc-1.svg);
}
.services div h3.vc-lc-2 {
  background-image: url(../images/vc-lc-2.svg);
}
.services div h3.vc-lc-3 {
  background-image: url(../images/vc-lc-3.svg);
}
.services div h3.vc-lc-4 {
  background-image: url(../images/vc-lc-4.svg);
}
.services div h3.vc-lc-5 {
  background-image: url(../images/vc-lc-5.svg);
}

.services div p {
  margin-bottom: 0;
  text-align: center;
}

.services .c {
  padding-top: 70px;
  text-align: center;
}

@media (max-width: 767px) {
  .services div p {
    padding-left: 5px;
  }

  .services div h3 {
    margin-bottom: 2px;
    padding: 0 0 0 50px;
  }
  .services div h3 a {
    font-size: 14px;
  }
}

/*服务优势*/
.superiority {
  background-color: #f8f9fd;
}

.superiority figure h3 {
  margin-top: 40px;
  color: #000;
}

.superiority figure p {
  color: rgba(43, 43, 43, 0.8);
}

@media (min-width: 992px) {
  .superiority figure p {
    width: 80%;
    margin: 0 auto;
  }
}

/*服务流程*/
.process > .process-thumbs {
  padding: 80px 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

.process-item {
  height: 166px;
  width: 166px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  cursor: pointer;
}

.process-item > .icon {
  height: 64px;
  width: 64px;
}

.process-item > .text {
  margin: 0;
  color: #0009;
  transition: all 0.5s;
  text-align: center;
}

.process-item:hover > .text {
  transform: translateY(-5px);
}

@media screen and (max-width: 767px) {
  .process-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .process-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*解决什么问题*/
.solve {
  background-size: cover;
  padding: 60px 10vw;
  display: flex;
  animation-delay: 0s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.solve.lazy {
  background: none;
  background-color: #232323;
}

.solve > .container {
  flex: 1;
}

.solve > .container > h3 {
  font-size: 30px;
  color: white;
}

.container > .contents {
  display: flex;
  margin-top: 20px;
}

.container > .contents > .li {
  flex: none;
  width: 70px;
  height: 70px;
  background-color: red;
  border-radius: 5px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents > .li > p {
  color: white;
  font-size: 32px;
  margin: 0;
}

.contents > .content {
  display: flex;
  flex-direction: column;
}

.contents > .content > p:first-child {
  font-size: 20px;
  color: white;
}

.solve > .solve-img {
  width: 35vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solve > .solve-img > img {
  width: 300px;
  z-index: 998;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .solve {
    padding: 0;
    height: auto;
    overflow: hidden;
  }
  .solve > .solve-img > img {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .solve {
    padding: 0;
    height: auto;
    overflow: hidden;
    flex-direction: column;
  }
  .solve > .container > h3 {
    font-size: 16px;
  }
  .solve > .container > p {
    font-size: 13px;
  }
  .contents > .content > p:first-child {
    font-size: 14px;
  }
  .container > .contents > .li {
    width: 35px;
    height: 35px;
  }
  .contents > .li > p {
    font-size: 20px;
  }
  .solve > .solve-img {
    display: none;
    width: auto;
  }
  .solve > .solve-img > img {
    width: 200px;
  }
}

/*解决方案*/
.solution {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0 0 0;
}

.solution > .warp {
  background-color: #f36979;
  margin-top: 40px;
}

.solution > .warp > .content {
  display: flex;
  padding: 40px 18.75vw 40px 18.75vw;
  height: 60vh;
}

.warp > .content > .left {
  flex: 1;
  display: flex;
}

.content > .left > .phone {
  width: 30%;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.left > .phone > .top {
  background: black;
  height: 50px;
  display: flex;
  align-items: center;
}

.phone > .top > img {
  height: 16px;
  margin-left: 10px;
}

.phone > .top > p {
  margin: 0 0 0 10px;
  color: white;
}

.left > .phone > .select {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.phone > .select > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #23222b;
  border-top: 1px solid #2e2d36;
  border-right: 1px solid #2e2d36;
  cursor: pointer;
}

.phone > .select > div:first-child {
  background-color: #f36979;
}

.select > div > img {
  width: 21px;
}

.select > div > p {
  color: white;
  margin: 0;
}

.content > .left > .text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.left > .text > .part {
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 14vw;
}

.left > .text > .part:first-child {
  display: flex;
}

.text > .part > p {
  color: white;
  font-size: 14px;
  margin: 7px 0 7px 0;
}

.text > .part > p:first-child {
  font-size: 30px;
}

.text > .part > a {
  color: white;
  border-color: white;
  overflow: hidden;
  padding: 10px;
}

.text > .part > a:hover {
  transition: all 0.8s cubic-bezier(0.7, -0.5, 0.2, 2);
  color: #e1251b;
  background-color: transparent;
  border-color: white;
}

.text > .part > a:before {
  transition: all 0.8s cubic-bezier(0.7, -0.5, 0.2, 2);
  content: "";
  width: 0%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
}

.text > .part > a > span {
  mix-blend-mode: darken;
}

.text > .part > a:hover:before {
  background: white;
  width: 100%;
}

.warp > .content > .right {
  width: 18vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content > .right > img {
  display: none;
}

.content > .right > img:first-child {
  display: block;
}

@media (min-width: 2000px) {
  .content > .left > .phone {
    width: 28%;
  }
}

@media screen and (max-width: 767px) {
  .solution {
    padding: 20px 0 0 0;
  }
  .solution > .warp > .content {
    padding: 0px 0 40px 0;
    height: auto;
  }
  .warp > .content > .left {
    flex-direction: column;
  }
  .left > .phone > .top {
    display: none;
  }
  .content > .left > .phone {
    width: auto;
    height: 22vh;
    border-radius: 0px;
  }
  .left > .phone > .select {
    grid-template-columns: repeat(5, 1fr);
  }
  .phone > .select > div {
    border-right: 1px solid #2e2d36 !important;
  }
  .left > .text > .part {
    width: 60vw;
  }
  .text > .part > p {
    font-size: 12px;
  }
  .text > .part > p:first-child {
    font-size: 20px;
  }
  .warp > .content > .right {
    display: none;
  }
  .select > div > p {
    font-size: 12px;
    margin: 10px 0 0 0;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .solution > .warp > .content {
    padding: 0;
    height: 38vh;
  }
  .content > .left > .phone {
    width: 28vw;
  }
  .left > .text > .part {
    width: 26vw;
  }
  .warp > .content > .right {
    display: none;
  }
}

@media only screen and (min-device-width: 2000px) {
  .solution > .warp > .content {
    height: 50vh;
  }
}

/* 新闻动态 */
.news {
  display: flex;
  padding: 80px 18.75vw 40px 18.75vw;
  flex-direction: column;
}

.news > .news-warp {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.newsTab.tiny-tabs > .tab-header {
  border: none;
}

.news-warp > .more {
  font-size: 20px;
  text-align: right;
}

.newsTab.tiny-tabs > .tab-header > .tab-item {
  font-size: 16px;
  padding: 6px 16px;
  border: solid #999 1px;
}

.newsTab.tiny-tabs > .tab-header > .tab-item.active {
  color: white;
  background-color: #e1251b;
}

.newsTab.tiny-tabs > .tab-header > .tab-line {
  display: none;
  height: 1px;
  background: #e1251b;
}

.newsTab.tiny-tabs > .tab-panels > .tab-panel {
  display: flex;
}

.newsTab.tiny-tabs > .tab-panels > .tab-panel > .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  flex: 1;
}

.newsTab.tiny-tabs > .tab-panels > .tab-panel > .contents > .content {
  display: flex;
  flex-direction: row;
  background-color: #f3f3f3;
  padding: 20px;
}

.contents > .content > .content-time {
  width: 28%;
  background: #e1251b;
  margin-right: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.contents > .content > .content-time > p {
  color: white;
}

.contents > .content > .content-time > .day {
  font-size: 48px;
}

.contents > .content > .content-time > .date {
  font-size: 24px;
  margin: 0;
}

.tab-panel.active > div > a > div.content-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contents > .content > .content-item > .title {
  font-size: 16px;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  color: black;
}

.contents > .content > .content-item > .summary {
  color: #0009;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 40px 15px 40px 15px;
    overflow: hidden;
  }
  .newsTab.tiny-tabs > .tab-header > .tab-item {
    font-size: 16px;
    margin-right: 10px;
  }
  .newsTab.tiny-tabs > .tab-panels > .tab-panel > .contents {
    grid-template-columns: 1fr;
  }
  .tab-panel > .contents > .content {
    flex-direction: column !important;
  }
  .contents > .content > .content-item > .title {
    width: 80vw;
  }
  .contents > .content > .content-item > .summary {
    width: 80vw;
  }
  .news-warp > .more {
    font-size: 16px;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .news {
    padding: 20px 20px;
  }
  .news > .news-warp > .picture {
    display: none;
  }
  .news-warp > .more {
    right: 20px;
  }
}

/*联系我们*/
.jiao {
  padding-top: 20px;
  background: url(../images/foot-jiao.png) no-repeat center top;
}

.footer .c {
  background-color: #1d202c;
  padding: 60px 0 40px 0;
  font-size: 12px;
  text-align: center;
  padding: 40px 20px;
}

.footer .c p,
.footer .c a.links {
  color: rgba(255, 255, 255, 0.3);
}

.footer .c .links {
  border-top: 1px solid #34363c;
  border-bottom: 1px solid #34363c;
  margin: 10px auto;
  width: 80%;
  padding: 8px;
}

@media (max-width: 767px) {
  .footer .c .links {
    width: 100%;
  }
}

.footer .c .links a {
  margin-right: 10px;
  color: #5e5f66;
}

.footer .c p {
  line-height: 18px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min--moz-device-pixel-ratio: 1.5),
  only screen and (-o-min-device-pixel-ratio: 3/2),
  only screen and (min-device-pixel-ratio: 1.5) {
  .footer {
    background-size: 46px auto;
    background-image: url(../images/foot-jiao@2x.png);
  }
}

#button {
  height: 46px;
  width: 100%;
  font: 16px/46px;
  text-align: center;
  vertical-align: middle;
  border-width: 0;
  color: rgba(255, 255, 255, 0.5);
  background-color: #e1251b;
  padding: 0;
}

#button:hover {
  color: #fff;
  background-color: #73bf3a;
  border-width: 0;
}

.weixin-pic {
  width: auto;
  height: auto;
}

@media (min-width: 376px) {
  .weixin-pic {
    max-width: 300px;
  }
}

/*活动*/
.xingxiang {
  background: url(../images/xingxiang.png) no-repeat;
  position: fixed;
  right: 15px;
  cursor: pointer;
}

.xingxiang:hover {
  bottom: -35px;
}

@media (max-width: 767px) {
  .xingxiang {
    display: none;
  }
}

@media (min-width: 768px) {
  .xingxiang {
    width: 90px;
    height: 184px;
    bottom: -45px;
    display: block;
  }
}

@media (min-width: 1025px) {
  .xingxiang {
    width: 150px;
    height: 306px;
    bottom: -80px;
    display: block;
  }
}

@media (min-width: 768px) {
  .xingxiang {
    background-size: 90px auto;
  }
}

@media (min-width: 1025px) {
  .xingxiang {
    background-size: 150px auto;
  }
}

/* 微信二维码 */
.wechat {
  display: none;
  position: absolute;
  right: 120%;
  bottom: 16px;
  height: 200px;
  width: 200px;
  background-size: 100% 100%;
  justify-content: center;
  border-radius: 15px;
}
.wechat:after {
  content: " ";
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent black black;
  padding: 0px;
  width: 0px;
  height: 0px;
  position: absolute;
  transform: rotate(-135deg);
  margin-top: 95px;
  margin-left: 185px;
}
.wechat p {
  margin-bottom: 5px;
  color: #e1251b;
}
.wechat img {
  height: 150px;
  width: 150px;
  position: absolute;
  top: 40%;
  margin-top: -50px;
}

.contact-foot {
  display: none;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 260px;
  }
}

/*客服*/
.kefu {
  width: 150px;
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 997;
  cursor: pointer;
}

.kefu:hover {
  transform: translate3d(-10px, 0, 0);
}

.kefu a {
  display: block;
  width: 72px;
  height: 72px;
  text-indent: -9999px;
  overflow: hidden;
  background: no-repeat center center;
  opacity: 0.8;
}

.kefu a.kf-top {
  background-color: black;
  background-image: url(../images/top.svg);
  background-size: 20px auto;
  border-bottom: 1px solid #fff;
}

.kefu a.kf-qq {
  background-color: black;
  background-image: url(../images/index/qq@2x.png);
  background-size: 40px auto;
  border-bottom: 1px solid #fff;
}

.kefu a.kf-wechat {
  background-color: black;
  background-image: url(../images/index/wechat@2x.png);
  background-size: 40px auto;
  border-bottom: 1px solid #fff;
}

.kefu a.kf-bottom {
  background-color: black;
  background-image: url(../images/bottom.svg);
  background-size: 20px auto;
}

.kefu a:hover {
  opacity: 1;
}

.kf-wechat:hover + .wechat {
  display: flex;
}

@media (min-width: 768px) {
  .kefu a.kf-ly {
    display: none;
  }
}

/*友情链接*/
#menu-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu-links li {
  display: inline;
}

#menu-links li + li:before {
  padding: 0 5px;
  color: #444;
  content: "/\00a0";
}

.copy .well {
  min-height: 20px;
  padding: 15px;
  margin: 30px 0 0 0;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/*内页样式*/
/*内页服务页面*/
.web-service .t {
  text-align: center;
}

.fanchou div.row,
.liucheng article {
  border-bottom: 1px solid #ddd;
  padding-top: 25px;
  padding-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

.fanchou div.row a,
.fanchou div.row div {
  padding-left: 0;
  padding-right: 0;
}

.fanchou div.row a {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .fanchou div.col-xs-12 h2 {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .fanchou div.row {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .fanchou div.row:nth-child(odd) div {
    padding-left: 60px;
  }

  .fanchou div.row:nth-child(even) div {
    padding-right: 60px;
  }
}

.fanchou h2,
.liucheng h2 {
  padding: 0 0 6px 0;
  font-size: 2em;
  color: #000;
}

.fanchou h2 small,
.liucheng h2 small {
  font-size: 14px;
  display: block;
  margin: 10px 0 15px 0;
  line-height: 150%;
}

.app-type {
  text-align: center;
}

.app-type .row {
  margin-bottom: 50px;
}

.app-type .row .ic {
  width: 80px;
  height: 80px;
  display: block;
  margin: 20px auto;
  background-size: 80px auto !important;
  background-repeat: no-repeat;
  background-position: center;
}

.app-type .row .is {
  width: 80px;
  height: 80px;
  display: block;
  margin: 20px auto;
  background-size: 30px auto !important;
  border-radius: 2px;
}

.app-type .row .ios {
  background: #fff url(../images/app-type-ios.svg);
}

.app-type .row .android {
  background: #fff url(../images/app-type-android.svg);
}

.app-type .row .hunhe {
  background: #fff url(../images/app-type-hunhe.svg);
}

.app-type .row .h5 {
  background: #fff url(../images/app-type-h5.svg);
}

.app-type .row .i1 {
  background: #ff9752 url(../images/ly-1.svg) 25px 25px no-repeat;
}
.app-type .row .i2 {
  background: #ff5c5c url(../images/ly-2.svg) 25px 25px no-repeat;
}
.app-type .row .i3 {
  background: #cc7fff url(../images/ly-3.svg) 25px 25px no-repeat;
}
.app-type .row .i4 {
  background: #ffcf3f url(../images/ly-4.svg) 25px 25px no-repeat;
}
.app-type .row .i5 {
  background: #2ab2eb url(../images/ly-5.svg) 25px 25px no-repeat;
}
.app-type .row .i6 {
  background: #93d752 url(../images/ly-6.svg) 25px 25px no-repeat;
}
.app-type .row .i7 {
  background: #e65336 url(../images/ly-7.svg) 25px 25px no-repeat;
}
.app-type .row .i8 {
  background: #4dcae3 url(../images/ly-8.svg) 25px 25px no-repeat;
}
.app-type .row .i9 {
  background: #3ee1d9 url(../images/ly-9.svg) 25px 25px no-repeat;
}
.app-type .row .i10 {
  background: #4be183 url(../images/ly-10.svg) 25px 25px no-repeat;
}
.app-type .row .i11 {
  background: #4894e9 url(../images/ly-11.svg) 25px 25px no-repeat;
}
.app-type .row .i12 {
  background: #906ad5 url(../images/ly-12.svg) 25px 25px no-repeat;
}
.app-type .row .i13 {
  background: #d763c8 url(../images/ly-13.svg) 25px 25px no-repeat;
}
.app-type .row .i14 {
  background: #b263d7 url(../images/ly-14.svg) 25px 25px no-repeat;
}
.app-type .row .i15 {
  background: #6fabf0 url(../images/ly-15.svg) 25px 25px no-repeat;
}
.app-type .row .i16 {
  background: #d85ea6 url(../images/ly-16.svg) 25px 25px no-repeat;
}

.app-type .row .t {
  color: #000000;
  font-size: 20px;
  margin-bottom: 20px;
}

.app-type .row .s {
  font-size: 16px;
  margin-bottom: 20px;
}

/* 优势 */
.app-advan {
  text-align: center;
}

.app-advan > .container > .content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 20px;
}

.app-advan > .container > .content > .content-part {
  display: flex;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  padding: 20px;
  align-items: center;
}

.content > .content-part > .picture {
  width: 18%;
}

.content > .content-part > .text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content > .content-part > .text > p {
  text-align: left;
}

.content > .content-part > .text > p:first-child {
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .app-advan > .container > .content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .app-advan > .container > .content > .content-part {
    align-items: center;
    padding: 10px;
  }
  .content > .content-part > .text {
    margin-left: 10px;
  }
  .content > .content-part > .text > p {
    font-size: 12px;
  }
}

/* 服务保障 */
.app-service {
  text-align: center;
}

.app-service > .container > .service-warp {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15%;
}

.container > .service-warp > .service-part {
  height: 350px;
  display: flex;
  border-radius: 15px;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: space-evenly;
  background-position-x: -90px;
  background-position-y: -100px;
}

.service-part:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-part.left {
  background: url(../images/app/bg1.png);
}

.service-part.center {
  background: url(../images/app/bg2.png);
}

.service-part.right {
  background: url(../images/app/bg3.png);
}

.service-warp > .service-part > .picture {
  width: 100px;
  height: 100px;
}

.service-warp > .service-part > p {
  text-align: left;
  color: white;
}

.service-warp > .service-part > p:nth-child(2) {
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .app-service > .container > .service-warp {
    grid-template-columns: 1fr;
    grid-gap: 2%;
    padding: 40px;
    margin-top: 0;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .app-service > .container > .service-warp {
    grid-gap: 10%;
  }
}

/* 制作问题 */
.app-problem {
  text-align: center;
}

.app-problem > .container > .problem-warp {
  margin-top: 40px;
  display: flex;
  height: 350px;
}

.container > .problem-warp > .problem-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.problem-left > .text > p {
  text-align: right;
}

.problem-left > .text > p:first-child {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.container > .problem-warp > .problem-center {
  width: 30%;
  background: url(../images/app/problem-center.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-warp > .problem-center > p {
  border-bottom: 3px solid #e86868;
  color: #e86868;
  font-size: 18px;
  width: 40%;
}

.problem-warp > .problem-center > p:first-child {
  margin-top: 70px;
  font-weight: bold;
  color: black;
  font-size: 22px;
}

.container > .problem-warp > .problem-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.problem-right > .text > p {
  text-align: left;
}

.problem-right > .text > p:first-child {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

@media screen and (max-width: 767px) {
  .app-problem > .container > .problem-warp {
    height: 100vh;
    flex-direction: column;
  }
  .problem-left > .text > p {
    text-align: left;
  }
  .problem-right > .text > p:first-child::before {
    content: "📱 ";
  }
  .container > .problem-warp > .problem-center {
    display: none;
  }
  .problem-left > .text > p:first-child::before {
    content: "📱 ";
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .problem-warp > .problem-center > p {
    width: 50%;
  }
}

.app-solution .row div {
  padding: 5px 10px;
}

.app-solution .row div p {
  padding: 20px 0;
  font-size: 18px;
  border: 1px solid #d4d4d4;
  background: #fdfdfd;
  color: #333;
}

.applet-service {
  text-align: center;
  background: #f6f6f6;
  padding: 70px 0 60px 0;
}

@media (max-width: 767px) {
  .applet-service {
    padding: 10px 0 60px 0;
  }
}

.applet-service .row div.item {
  background: #fff;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.applet-service .row div.item img {
  width: 100%;
}

.applet-service .row div.item .t {
  color: #000000;
  font-size: 20px;
  margin: 20px 0 10px 0;
}

.applet-service .row div.item .c {
  line-height: 20px;
  padding: 0 20px;
  height: 80px;
  overflow: hidden;
  text-align: left;
}

.applet-service .row div.item a {
  text-align: center;
  font-size: 14px;
  padding: 2px;
  color: #fff;
  background: #e1251b;
  display: block;
  margin-top: 20px;
  width: 80px;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 20px;
}

.applet-service .row div.item a:hover {
  background-color: #f35750;
}

.anli-banner {
  padding: 120px 0 40px 0;
  text-align: center;
  background-image: url(../images/lc-bg-2.jpg);
  color: #ffffff;
}

.anli-banner h2 {
  color: #ffffff;
  border-bottom: rgba(145, 145, 145, 0.51) solid 1px;
}

.vc-type {
  background: #f7f7f7;
  text-align: center;
}

.vc-type .item {
  margin: 5px;
  padding: 20px;
  background: #fff;
  text-align: left;
}

.vc-type .item .i {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  display: block;
  background-size: 50px auto !important;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
}

.vc-type .item .i1 {
  background: #fff url(../images/vc-js.svg) 0 0 no-repeat;
}
.vc-type .item .i2 {
  background: #fff url(../images/vc-yy.svg) 0 0 no-repeat;
}
.vc-type .item .t {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
}

.vc-type .bt {
  margin-top: 70px;
}

@media (min-width: 1000px) {
  .fanchou,
  .liucheng,
  .taocan {
    margin: 0 auto;
  }
}

.liucheng .dl-horizontal dt div {
  width: 100px;
  height: 100px;
  background-color: #eaeaea;
  border-radius: 100%;
  color: #777777;
  margin: 25px 0 0 0;
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
}

.liucheng .dl-horizontal dt div small {
  font-size: 14px;
  display: block;
  margin: 0;
  font-weight: 500;
}

.liucheng .dl-horizontal dd {
  padding: 20px 0 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  margin-left: 0;
  padding-left: 180px;
}

@media (max-width: 767px) {
  .liucheng .dl-horizontal dd {
    padding-left: 0;
    padding-right: 0;
  }
}

.liucheng .dl-horizontal dd h2 {
  margin: 0;
}

.liucheng .dl-horizontal dd p {
  color: #434343;
  line-height: 200%;
  font-size: 16px;
  font-weight: bold;
}

.company {
  margin: 50px 0 30px 0;
}

.company .address {
  font-size: 16px;
  color: #505050;
}

.company .row {
  border-bottom: 1px solid #e2e2e2;
  padding: 40px 0;
}

.zs {
  text-align: center;
  padding: 0 0 60px 0;
}

.zs img {
  width: 85%;
  border: 2px solid #575757;
  border-radius: 3px;
  box-shadow: 5px 5px 15px #dfdfdf, 5px 5px 15px #dfdfdf;
}

@media (max-width: 767px) {
  .company .row {
    margin-top: 0;
  }

  .zs {
    padding: 0 0 10px 0;
  }

  .zs img {
    width: 100%;
  }

  .bghj img {
    width: 100%;
  }
}

.zs p {
  margin: 10px 0 50px 0;
  font-size: 16px;
  color: #3e3e3e;
}

.bghj {
  text-align: center;
}

.bghj img {
  width: 96%;
  margin-bottom: 10px;
}

/*二级菜单*/
.fl-nav {
  text-align: center;
}

.fl-nav li {
  display: inline-block;
}

.fl-nav li + li:before {
  padding: 0 15px 0 5px;
  color: #ddd;
  content: "|\00a0";
}

.fl-nav li a {
  color: #999;
}

.fl-nav li.active a,
.fl-nav li a:hover {
  color: #e1251b;
}

/*new-list style*/
@media (min-width: 992px) {
  .new-list .row .col-lg-9 {
    padding-right: 20px;
  }

  .y40 {
    padding-right: 40px;
  }
}

.new-list {
  padding: 50px 0 40px 0;
  margin: auto;
  user-select: none;
  display: flex;
  align-items: flex-start;
  background: #f5f5f5;
}

.new-list > .container-fluid {
  width: 60%;
}

.new-list .desi {
  padding: 10px;
  background: #eeeeee;
  margin: 10px 0;
}

.new-list .list .new-intro {
  color: #939393;
  font-size: 13px;
  display: -webkit-box;
  margin-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.new-list .list div .new-tag {
  min-width: 60px;
  line-height: 21px;
  margin: 5px 10px 0 0;
  padding: 4px 9px;
  background: #e6fdff;
  cursor: pointer;
}

.new-list .list div .new-tag a {
  color: #57cfd9 !important;
}

.new-list .list .new-item-container {
  margin-bottom: 30px;
  padding: 30px 12px;
  background: #fff;
  display: flex;
  flex-direction: row;
}
/* TODO */
.new-list .list div img {
  width: 250px;
  height: 180px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .new-list {
    width: 100%;
    padding: 20px 0 40px 0;
  }

  .new-list .list div img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

.new-list header {
  position: relative;
}

.new-list header a.t {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.new-list .bianlan {
  margin-bottom: 10px;
  padding: 10px 0 0 10px;
  background: #fafafa;
}

.new-list .bianlan img {
  width: 83px;
  height: 60px;
  margin-right: 5px;
  float: left;
}

.new-list .bianlan h3 {
  font-size: 20px;
  margin: 0;
}

.new-list .bianlan ul {
  line-height: 36px;
}

.new-list .bianlan ul li {
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  line-height: 14px;
  padding: 8px 0;
}

.new-list .bianlan ul li a {
  color: #707070;
  line-height: 20px;
  height: 20px;
  vertical-align: top;
  font-weight: bold;
}

.new-list .bianlan ul li p {
  line-height: 20px;
  height: 40px;
  font-weight: 400;
  overflow: hidden;
  margin-bottom: 0;
}

.new-list .bianlan ul li + li {
  border-top: #e4e4e4 solid 1px;
}

.new-list .bianlan-wechat {
  text-align: center;
}

.new-list .bianlan-wechat h4 {
  margin: 5px 0;
}

.new-list .bianlan-wechat img.wt {
  width: 150px;
  height: auto;
  border-radius: 5px;
  box-shadow: 5px 5px 10px #d6d6d6;
  float: none;
  margin: 10px auto 30px auto;
}

.new-list .casebianlan {
  text-align: left;
}

.new-list .casebianlan ul li {
  padding-bottom: 20px;
}

.new-list .casebianlan img {
  width: 100%;
  height: auto;
  margin: 0 0 5px 0;
}

.new-list .casebianlan ul li a {
  font-size: 14px;
  color: #4e4e4e;
  font-weight: normal;
}

.bianlan > .recommend > li > a {
  color: black;
  display: flex;
  height: 100px;
  margin: 10px;
}

.new-list > div.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 10%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  padding: 20px;
}

.new-list > div.info-box:hover {
  transform: translateY(-10px);
  transition: all 0.5s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 hsl(0deg 0% 73% / 50%);
}

.new-list > .info-box > .pic-box {
  display: flex;
  justify-content: center;
  margin: 20px;
  padding: 20px;
}

.info-box > .pic-box > img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.info-box > .info-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.info-box > .info-label > .info-main {
  display: flex;
  justify-content: center;
}

.info-box > .info-label > .info-main > .info-name {
  font-size: 20px;
  margin-right: 5px;
  color: #000;
}

.info-box > .info-label > .info-main > .info-spec {
  font-size: 12px;
  color: #018cf1;
  border: 1px solid #018cf1;
  border-radius: 4px;
  padding: 0 4px;
  transform: scale(0.8);
}

.info-box > .info-label > .info-p {
  margin: 0;
  color: #000;
}
.new-list > .info-box > .info-tag {
  display: flex;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #e5e5e5;
  margin: 20px 0;
}

.info-box > .info-tag > .info2 {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.info-box > .info-tag > .info2:first-child {
  border-right: #e5e5e5 1px solid;
}
.info-box > .info-tag > .info2 p:first-child:hover {
  color: #e1251b !important;
}
.info-box > .info-tag > .info2 > p {
  font-size: 14px;
  margin: 0;
  color: #b3b3b3;
}

.info-box > .info-tag > .info2 > p:first-child {
  color: black;
  font-size: 26px;
}
.hboxs-news h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.hboxs-news h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  position: relative;
  padding-left: 9px;
  line-height: 27px;
}
.hboxs-news h2:before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 5px;
  background-color: #3c76ff;
  position: absolute;
  top: 0;
  left: 0;
}
.hboxs-news h3 {
  font-size: 16px;
  font-weight: 800;
  color: #000;
}
.hboxs-news p {
  margin-top: 22px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body
    > section
    > div
    > div
    > div.col-xs-12.col-sm-12.col-md-3.col-lg-3
    > .bianlan {
    display: none;
  }
  .hboxs-news p {
    margin-top: 6px;
    margin-bottom: 0;
  }
}

section.solution-list > div > div.left > div > ul > li > a > img {
  width: 100%;
}

section.solution-list > div > div.left > div > ul > li > a > p {
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 10px;
}

section.solution-list > div > div.left > hr {
  margin: 20px 0;
}

.bianlan > .recommend > li > a > .pic {
  width: 40%;
}

.bianlan > .recommend > li > a > .content > .title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: black;
}

.bianlan > .recommend > li > a > .content > .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  color: #666;
}

/* 解决方案内容 */
.solution-list {
  background: #f7f7f7;
  display: flex;
  user-select: none;
}

.solution-list > .container {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.container > .left {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-sizing: border-box;
  box-shadow: 0 2px 15px #ddd;
  margin: 10px;
  padding: 20px;
  width: 18vw;
}

.container > .left > .summary {
  font-size: 14px;
  color: #bbb;
  line-height: 26px;
}

.container > .left > .fix {
  box-shadow: 0 3px 5px #ddd;
  display: flex;
  height: 50px;
}

.left > .fix > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
}

.left > .fix > .prev {
  border: 1px solid #f0f0f0;
  flex: 1;
  border-radius: 5px 0 0 5px;
}

.left > .fix > .home {
  border: 1px solid #f0f0f0;
  flex: 1;
}

.left > .fix > .next {
  border: 1px solid #f0f0f0;
  flex: 1;
  border-radius: 0 5px 5px 0;
}

.container > .right {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-sizing: border-box;
  box-shadow: 0 2px 15px #ddd;
  margin: 10px;
  padding: 50px;
  flex: 1;
}

.container > .right > .content > p {
  font-size: 18px;
  color: black;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  .solution-list > .container {
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
    align-items: center;
    flex: 1;
    padding: 0;
  }

  .container > .left {
    width: 100%;
  }

  .container > .right {
    width: 100%;
  }

  body > section.solution-list > div > div.left > .bianlan {
    display: none;
  }

  .new-list {
    flex-direction: column;
  }

  .new-list > div.info-box {
    flex-direction: row;
    display: none;
  }

  .info-box > .info-label {
    flex-direction: row;
  }

  .info-box > .info-label > .info-main {
    width: 100%;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
  }

  .info-box > .info-label > .info-p {
    margin-right: 10px;
  }

  .info-box > .pic-box > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #fff;
  }
  .new-list > .info-box > .info-tag {
    display: none;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .container > .left {
    width: 30vw;
  }
  .new-list > div.info-box {
    flex-direction: row;
    display: none;
  }
}

/*面包屑导航*/
.crumbs {
  background-color: #f7f7f7;
  padding: 10px 20px;
}

.crumbs a {
  color: #8f8f8f;
}

/*官方评论*/
/*comments-area*/
.comments-area h3 {
  font-size: 22px;
}

.comments-area .comments-title {
  margin: 50px 0 40px 0;
}

.comments-area .no-comments {
  font-size: 16px;
  margin-top: 30px;
  text-transform: uppercase;
}

/*评论已关闭*/
/*comment-list*/
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #eee;
}

.comment-list .comment-body {
  margin-bottom: 30px;
}

.comment-list .comment-body p {
  margin: 15px 0 24px 60px;
  padding: 10px 15px;
  color: #666;
  border: #f2f2f2 solid 1px;
  background-color: #f9f9f9;
}

/*评论回复*/
/*.comment-list .children .byuser p {color:#ff6050}
.comment-list .comment-body p.comment-awaiting-moderation {color:#ff6050}*/
.comment-list .children {
  list-style: none;
  margin-left: 15px;
}

.comment-list .comment-meta a.comment-edit-link {
  margin-left: 10px;
  color: #e1251b;
}

/*comment-body*/
.comment-body .comment-meta {
  font-size: 12px;
  text-transform: uppercase;
}

.comment-body .reply {
  line-height: 100%;
}

.comment-body .reply a:before {
  content: "→ ";
}

.comment-body .comment-author {
  font-size: 14px;
}

.comment-body .comment-author a {
  color: #777;
}

.comment-body .comment-author .fn {
  font-size: 16px;
  color: #777;
  font-style: normal;
  font-weight: normal;
}

.comment-body .comment-meta a {
  color: #999;
}

.comment-body .comment-author a:hover,
.comment-body .comment-meta a:hover {
  color: #e1251b;
}

.comment-body .comment-author {
  position: relative;
  line-height: 130%;
}

.comment-body .comment-author .avatar {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  border-radius: 50%;
  width: 40px;
}

.comment-body .comment-author .says {
  display: none;
}

.comment-body .comment-author,
.comment-body .reply,
.comment-metadata {
  padding-left: 60px;
}

/*评论翻页导航*/
.comment-navigation {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.comment-navigation .nav-next,
.comment-navigation .nav-previous {
  display: inline-block;
}

.comment-navigation .nav-previous a {
  margin-right: 10px;
}

#comment-nav-above {
  margin-top: 40px;
  margin-bottom: 0;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.no-comments,
.form-allowed-tags,
.form-allowed-tags code {
  color: #bbb;
}

/*comment-form*/
.comment-form p {
  margin: 0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
}

.comment-form .form-allowed-tags {
  display: none;
}

.required {
  color: #ff6050;
}

.comment-reply-title {
  margin: 40px 0 20px 0;
}

.comment-form p.comment-notes,
.comment-form p.logged-in-as {
  margin-bottom: 15px;
}

.comment-respond small {
  font-size: 12px;
  color: #bbb;
  display: block;
  margin-top: 10px;
}

.comment-respond .comment-reply-title {
  position: relative;
}

.comment-respond .comment-reply-title small {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 30px;
}

.comment-respond .comment-reply-title small a {
  font-size: 14px;
}

.comment-respond .comment-reply-title small a:before {
  content: "→ ";
}

.comment-respond #author,
.comment-respond #email,
.comment-respond #url,
.comment-respond #comment {
  height: 40px;
  width: 100%;
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.comment-respond #comment {
  height: 160px;
}

.comment-respond #submit {
  height: 40px;
  line-height: 40px;
  padding: 0 80px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.5);
  background-color: #e1251b;
  border-width: 0;
  margin-top: 20px;
}

.comment-respond #submit:hover {
  color: #fff;
  background-color: #73bf3a;
}

.comment-form label {
  display: block;
  font-weight: normal;
}

/*相册*/
.gallery {
  margin: 20px 0;
  border: 1px solid #eee;
  padding: 10px;
}

.gallery:after {
  display: table;
  content: "";
}

.gallery:after {
  clear: both;
}

.gallery-item {
  float: left;
  margin: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 48%;
  max-width: -webkit-calc(50% - 20px);
  max-width: calc(50% - 20px);
}

/*359px*/
.gallery-columns-3 .gallery-item {
  max-width: 32%;
  max-width: -webkit-calc(33.3% - 20px);
  max-width: calc(33.3% - 20px);
}

/*232px*/
.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 20px);
  max-width: calc(25% - 20px);
}

/*169px*/
.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 20px);
  max-width: calc(20% - 20px);
}

.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 20px);
  max-width: calc(16.7% - 20px);
}

.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 20px);
  max-width: calc(14.28% - 20px);
}

.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 20px);
  max-width: calc(12.5% - 20px);
}

.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 20px);
  max-width: calc(11.1% - 20px);
}

/*.gallery-columns-1 .gallery-item:nth-of-type(1n),.gallery-columns-2 .gallery-item:nth-of-type(2n),.gallery-columns-3 .gallery-item:nth-of-type(3n),.gallery-columns-4 .gallery-item:nth-of-type(4n),.gallery-columns-5 .gallery-item:nth-of-type(5n),.gallery-columns-6 .gallery-item:nth-of-type(6n),.gallery-columns-7 .gallery-item:nth-of-type(7n),.gallery-columns-8 .gallery-item:nth-of-type(8n),.gallery-columns-9 .gallery-item:nth-of-type(9n) {margin-right:0}*/
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n + 1),
.gallery-columns-1.gallery-size-thumbnail
  figure.gallery-item:nth-of-type(1n + 1),
.gallery-columns-2.gallery-size-thumbnail
  figure.gallery-item:nth-of-type(2n + 1),
.gallery-columns-3.gallery-size-thumbnail
  figure.gallery-item:nth-of-type(3n + 1) {
  clear: left;
}

.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 6px;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/*多媒体展示页面*/
.entry-header .entry-title {
  font-size: 24px;
  margin-bottom: 5px;
}

.entry-header .entry-meta {
  color: #999;
  font-size: 12px;
}

.entry-header .entry-meta span + span:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.new-list .entry-content .entry-attachment p {
  margin: 0 0 20px 0;
}

.new-list .entry-content .entry-caption p {
  margin: 20px 0 0 0;
}

.nav-links {
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.image-navigation .previous-image,
.image-navigation .next-image {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  width: 100%;
}

.image-navigation a {
  display: block;
  font-size: 14px;
  text-transform: none;
}

/*baidu*/
.fenxiang.bdshare-button-style0-16 .bds_more {
  color: #e1251b !important;
  float: inherit !important;
}

.fenxiang.bdshare-button-style0-16 a,
.fenxiang.bdshare-button-style0-16 .bds_more {
  font-size: 14px !important;
  padding-left: 0 !important;
  line-height: 2 !important;
  height: auto !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  cursor: pointer !important;
  margin: auto !important;
}

/*活动有礼*/
.youli {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0;
  display: block;
}

@media (max-width: 500px) {
  .kefu {
    display: none;
  }
}

@media (max-width: 600px) {
  .col-xs-12 img {
    width: 100%;
  }
}

.pagination > li > a,
.pagination > li > a:hover {
  color: #828282;
}

.pagination > .active > a,
.pagination > .active > a:hover {
  background-color: #e1251b;
  border-color: #e1251b;
}

/* fix content image */
.content img {
  max-width: 100%;
   display: block;    
    width: 100px;
    margin: 0 auto;
}

/* 服务项目 */
.s-radius {
  border-radius: 15px;
}

.case-title {
  text-align: center;
  height: 30px;
  font-size: 30px;
  font-weight: bold;
  color: #303030;
  line-height: 18px;
}

.case-intro {
  text-align: center;
  height: 20px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #777777;
  line-height: 18px;
}

@media screen and (max-width: 767px) {
  .case-title {
    font-size: 20px;
    padding: 0 15px;
  }
  .case-intro {
    font-size: 12px;
    padding: 0 2em;
    margin: 0;
  }
  body > section.sx-jianju.app-service > div > p:nth-child(2) {
    margin: 20px 0;
  }
}

.case-thumbs {
  background-color: #f0f0f0;
  padding: 80px 18.75vw 40px 18.75vw;
  display: flex;
  flex-direction: column;
}

.swiper-case {
  overflow: hidden;
}

.thumbs {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 1380px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}

.thumbs > .swiper-slide {
  max-width: 16vw;
  height: 40vh;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 1s;
  cursor: pointer;
  overflow: hidden;
}

.thumbs > .swiper-slide > .card {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  backface-visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  transition: 1s;
}

.swiper-slide > .card > hr {
  margin: 0;
  color: #a4a4a4;
}

.front {
  backface-visibility: visible;
  background-color: #fafafa;
}

.back {
  background-color: #656565;
  transform: translate3d(0, 41vh, 0);
  /*transform: rotate3d(0, 1, 0, 180deg);*/
}

.thumbs > .swiper-slide:hover,
.thumbs > .swiper-slide:active {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.thumbs > .swiper-slide:hover > .back {
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s ease-in-out;
  /*transform: rotate3d(0, 1, 0, 180deg);*/
}

.front > p {
  text-align: center;
  padding: 0 20px 0 20px;
}

.back > p {
  text-align: center;
  padding: 0 20px 0 20px;
}

.front > .title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #303030;
  line-height: 18px;
}

.back > .title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 18px;
}

.front > .sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  line-height: 18px;
}

.back > .sub-title {
  font-size: 14px;
  font-weight: 500;
  color: white;
  line-height: 18px;
  text-align: left;
}

.front > .picture {
  display: flex;
  justify-content: center;
}

.front > a {
  height: 40px;
  background: #eaeaea;
  border-radius: 20px;
  border-style: none;
  margin: 0 25px 20px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
}

.back > a {
  height: 40px;
  background: #e1251b;
  color: white;
  border-radius: 20px;
  border-style: none;
  margin: 0 25px 20px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .back {
    display: none !important;
  }
  .case-thumbs {
    padding: 15px 10px 40px 10px;
  }
  .thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px 10px;
    z-index: 0;
  }
  .thumbs > .swiper-slide:hover {
    transform: none;
  }
  .s-radius {
    border-radius: 0px;
  }
  .thumbs > .swiper-slide {
    width: auto !important;
    height: 45vh;
    max-width: 100%;
  }
  .front > .title {
    font-size: 16px;
  }
  .front > a {
    margin: 0;
    padding: 0;
    border-radius: 0px;
    font-size: 12px;
  }
  .thumbs > .swiper-slide > .card > p {
    font-size: 12px;
  }
  .front > .picture > img {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .case-thumbs {
    padding: 80px 15px 40px 15px;
  }
  .thumbs > .swiper-slide {
    width: 23vw !important;
    max-width: 23vw;
  }
  .thumbs > .swiper-slide {
    height: 310px;
  }
  .front > p {
    padding: 0;
  }
  .front > .sub-title {
    font-size: 12px;
  }
}

/* @media (min-width: 768px) {
    .thumbs > .swiper-slide {
      max-width: 100%;
      width: 50%;
      width: calc(50% - 20px);
    }
  }
  
  @media (min-width: 1024px) {
    .thumbs > .swiper-slide {
      width: 25%;
      width: 14.5vw;
    }
  } */

/* 小程序开发流程 */
.applet-process {
  display: flex;
  padding: 70px 18.75vw 0 18.75vw;
  flex-direction: column;
}

.applet-process > .warp {
  display: flex;
  justify-content: center;
}

.applet-process > .warp > .clearfix {
  display: flex;
  list-style-type: none;
  padding: 236px 0;
}

.clearfix > li {
  position: relative;
  float: left;
  width: 124px;
  height: 124px;
  margin-left: 61.7px;
  cursor: pointer;
  transition: margin-left 0.5s;
}

.clearfix > li:first-child {
  margin: 0;
}

.clearfix > li:before {
  position: absolute;
  top: 50%;
  left: -32px;
  width: 9px;
  height: 14px;
  content: "";
  margin-top: -7px;
  background: url(../images/app/arrow.png) no-repeat center;
  transition: left 0.5s;
}

.clearfix > li:first-child:before {
  display: none;
}

.clearfix > li > .gb {
  width: 100%;
  height: 100%;
}

.clearfix > li > .gb > i {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid #c0deef;
  border-radius: 50%;
  background: no-repeat center;
  box-sizing: border-box;
}

li.a1 > .gb > i {
  background-image: url(../images/app/p1.jpg);
}

li.a2 > .gb > i {
  background-image: url(../images/app/p2.jpg);
}

li.a3 > .gb > i {
  background-image: url(../images/app/p3.jpg);
}

li.a4 > .gb > i {
  background-image: url(../images/app/p4.jpg);
}

li.a5 > .gb > i {
  background-image: url(../images/app/p5.jpg);
}

li.a6 > .gb > i {
  background-image: url(../images/app/p6.jpg);
}

.clearfix > li > em {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 38px;
  margin-left: -1.5px;
  background: #c0deef;
}

.clearfix > li.odd > em {
  bottom: -58px;
}

.clearfix > li.even > em {
  top: -58px;
}

.clearfix > li > em:before {
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  content: "";
  overflow: hidden;
  margin-left: -5.5px;
  border-radius: 50%;
  background: #c0deef;
}

.clearfix > li > em:after {
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  content: "";
  overflow: hidden;
  margin-left: -5.5px;
  border: 2px solid #c0deef;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

.clearfix > li.odd > em:before {
  top: -10px;
}

.clearfix > li.odd > em:after {
  bottom: -10px;
}

.clearfix > li.even > em:before {
  bottom: -10px;
}

.clearfix > li.even > em:after {
  top: -10px;
}

.clearfix > li > .gh {
  position: absolute;
  left: 50%;
  width: 248px;
  margin-left: -124px;
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #c0deef;
  box-sizing: border-box;
  transition: border 0.5s;
}

.clearfix > li.odd > .gh {
  top: 180px;
}

.clearfix > li.even > .gh {
  bottom: 180px;
}

.gh > h5 {
  font-size: 15px;
  line-height: 36px;
  margin: 0;
  text-align: center;
}

.gh > h5 > span {
  display: inline-block;
  width: 45px;
  margin-right: 5px;
  background: no-repeat left center;
  color: #999;
  font-weight: 100;
  text-align: right;
  vertical-align: top;
}

li.a1 > .gh > h5 > span {
  background-image: url(../images/app/s1.png);
}

li.a2 > .gh > h5 > span {
  background-image: url(../images/app/s2.png);
}

li.a3 > .gh > h5 > span {
  background-image: url(../images/app/s3.png);
}

li.a4 > .gh > h5 > span {
  background-image: url(../images/app/s4.png);
}

li.a5 > .gh > h5 > span {
  background-image: url(../images/app/s5.png);
}

li.a6 > .gh > h5 > span {
  background-image: url(../images/app/s6.png);
}

.applet-processm {
  display: none;
}

@media screen and (max-width: 767px) {
  .applet-process {
    display: none;
  }
  .applet-processm {
    padding: 20px 0;
    display: table-cell;
    vertical-align: middle;
    width: 100vw;
  }
  .applet-processm > img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
  }
}

/*footer*/
footer {
  background-color: #000;
}

.footer-content {
  display: flex;
  padding: 20px 18.75vw 0 18.75vw;
  flex-direction: column;
}

.footer-content > .content {
  display: flex;
  padding-bottom: 40px;
}

.footer-content > .content > .content-part {
  flex: 1;
}

.footer-content > .content > .content-part > p:first-child {
  font-size: 16px;
  color: white;
}
.content > .content-part > p > a {
  color: white;
}

.footer-content > .links {
  display: flex;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer-content > .links > a {
  color: #999999;
  margin-left: 5px;
}

.footer-content > .links > a::after {
  content: "";
  margin-left: 5px;
  border-left: 1px solid #999999;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
}

.footer-content > .copyright {
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-content {
    padding: 20px 15px 0 15px;
  }
  .footer-content > .content {
    flex-wrap: wrap;
  }
  .footer-content > .content > .content-part {
    flex: auto;
  }
  .footer-content > .content > .content-part:first-child {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .footer-content > .content > .content-part:first-child > p {
    margin-right: 10px;
  }
  .footer-content > .content > .content-part:first-child > p:first-child {
    margin-right: 0;
    width: 100vw;
  }
  .footer-content > .links {
    flex-wrap: wrap;
    padding: 0;
  }
  .footer-content > .copyright {
    margin-top: 20px;
    flex-direction: column;
  }
}

@media only screen and (max-device-width: 1199px) and (min-width: 768px) {
  .footer-content {
    padding: 20px 10vw 0 10vw;
  }
  .footer-content > .links {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .wechat {
    display: none;
  }
  .cnzz {
    display: none;
  }
  .contact-foot {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
  }
  .contact-foot > div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-foot > div > a {
    color: white;
  }
  .contact-foot > div > p {
    margin: 0;
    color: white;
  }
}

.page1 .content {
  background: url(../images/solution/bg_1.png) no-repeat center;
  top: 130px;
  width: 100%;
  height: calc(100% - 130px);
  background-size: cover;
  position: relative;
}

.page1 .content > .phone {
  background: url(../images/solution/phone.png) no-repeat center;
  position: absolute;
  width: 598px;
  height: 170px;
  left: 50%;
  top: 50%;
  margin: -100px -310px;
}

.page1 .content > .box {
  background: url(../images/solution/box.svg) no-repeat center;
  position: absolute;
  width: 888px;
  height: 452px;
  left: 50%;
  top: 50%;
  margin: -450px -500px;
}

.page1 .content > .logo {
  background: url(../images/solution/logo.png) no-repeat center;
  position: absolute;
  width: 888px;
  height: 452px;
  left: 50%;
  top: 50%;
  margin: -630px -420px;
}

#fullpage .wrap {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#fullpage .wrap > .content {
  width: 65%;
  height: 60%;
  display: flex;
}

#fullpage .wrap > .content > .image {
  display: flex;
  align-items: center;
}

#fullpage .wrap > .content > .content-left {
  margin-right: 12vw;
}

#fullpage .wrap > .content .text-white > * {
  color: #fff;
}

#fullpage .wrap > .content .bg {
  width: 385px;
  height: 424px;
}

#fullpage .wrap > .content .text-icon > * {
  color: #fff;
}

#fullpage .wrap > .content .text-icon ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  transform: translateX(-18px);
  width: 25vw;
}

#fullpage .wrap > .content .text-icon ul li {
  float: left;
  text-align: center;
  margin-bottom: 8px;
  width: 102px;
}

#fullpage .wrap > .content .text-icon ul li i {
  width: 100%;
  height: 58px;
  display: block;
  font-size: 42px;
  line-height: 58px;
}

#fullpage .wrap > .content .case-wrap {
  clear: both;
}

#fullpage .wrap > .content .case-wrap > * {
  color: #fff;
}

#fullpage .wrap > .content .case-wrap > .cases {
  height: 75px;
}

#fullpage .wrap > .content .case-wrap > .cases > a {
  height: 75px;
  width: 75px;
  float: left;
  margin-right: 15px;
}

#fullpage .wrap > .content .more {
  margin-top: 24px;
}

#fullpage .wrap > .content .more > a > .more-case {
  font-size: 16px;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 24px;
  transition: all 0.2s;
  border-radius: 3px;
  position: relative;
}

#fullpage > .page2 .wrap > .content .more > a > .more-case:hover {
  color: #f2684c;
  z-index: 1;
}

#fullpage > .page3 .wrap > .content .more > a > .more-case:hover {
  color: #3ec6ae;
  z-index: 1;
}

#fullpage > .page4 .wrap > .content .more > a > .more-case:hover {
  color: #ffb329;
  z-index: 1;
}

#fullpage > .page5 .wrap > .content .more > a > .more-case:hover {
  color: #e3493d;
  z-index: 1;
}

#fullpage > .page6 .wrap > .content .more > a > .more-case:hover {
  color: #01b760;
  z-index: 1;
}

#fullpage > .page7 .wrap > .content .more > a > .more-case:hover {
  color: #fda73a;
  z-index: 1;
}

#fullpage > .page8 .wrap > .content .more > a > .more-case:hover {
  color: #4987d2;
  z-index: 1;
}

#fullpage > .page9 .wrap > .content .more > a > .more-case:hover {
  color: #fdd13d;
  z-index: 1;
}

#fullpage > .page10 .wrap > .content .more > a > .more-case:hover {
  color: #7d5ee8;
  z-index: 1;
}

#fullpage .wrap > .content .more > a > .more-case::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  background: #fff;
  height: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  left: 0;
  top: 0;
}

#fullpage .wrap > .content .more > a > .more-case:hover::after {
  width: 100%;
  z-index: -1;
}

#navMenu {
  position: fixed;
  right: 32px;
  top: 40%;
  width: 150px;
  height: 535px;
  list-style-type: none;
  z-index: 999;
  margin-top: -200px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

#navMenu.on ul {
  border-right: 1px dashed #724009;
  list-style-type: none;
}

#navMenu li {
  width: 150px;
  text-align: right;
  position: relative;
  margin-bottom: 20px;
  right: 70px;
  top: -10px;
}

#navMenu > ul > li > a {
  color: #724009;
  font-size: 18px;
}

#navMenu.on li.active:after {
  width: 15px;
  height: 14px;
  border-radius: 50%;
  background: #724009;
  content: "";
  display: block;
  position: absolute;
  right: -37px;
  top: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.active .logo {
  -webkit-animation: flipInX 2s;
  animation: flipInX 2s;
}
.active .box {
  -webkit-animation: bounceInDown 1s;
  animation: bounceInDown 1s;
}
.active .phone {
  -webkit-animation: swing 1s;
  animation: swing 1s;
}

.active .content-right .text-white {
  -webkit-animation: fadeInRight 0.7s;
  animation: fadeInRight 0.7s;
}
.active .content-left .text-white {
  -webkit-animation: fadeInLeft 0.7s;
  animation: fadeInLeft 0.7s;
}
.active .content-right .text-icon {
  -webkit-animation: fadeInRight 0.9s;
  animation: fadeInRight 0.9s;
}
.active .content-left .text-icon {
  -webkit-animation: fadeInLeft 0.9s;
  animation: fadeInLeft 0.9s;
}
.active .content-right .case-wrap,
.active .content-right .more {
  -webkit-animation: fadeInRight 1.1s;
  animation: fadeInRight 1.1s;
}
.active .content-left .case-wrap,
.active .content-left .more {
  -webkit-animation: fadeInLeft 1.1s;
  animation: fadeInLeft 1.1s;
}
.active .content img {
  -webkit-animation: zoomIn 1.1s;
  animation: zoomIn 1.1s;
}
.imgcen p img {
  padding: 0 3% 0 3%;
  display: block;
  margin: 0 auto;
}
.imgcen p {
  color: #363636;
  font-size: 16px;
  line-height: 1.8;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, Noto Sans CJK SC, WenQuanYi Micro Hei, Arial, sans-serif;
}
.time {
  padding-right: 20px;
}
.time-mun {
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px solid #777;
}
.color-fff{
background-color:#ffffff;
}
.case-padd{
padding-bottom:20px;
}
@media screen and (max-width: 767px) {
.case-padd{
padding-bottom:10px;
}
}
/* post */
.kefu {
  width: 150px;
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 997;
  cursor: pointer;
}
.left123{
  position: absolute;
  padding-left: 10px;
 padding-top: 6px;
}
.kefu1 {
  background: linear-gradient(to bottom,#ff6382,#ff965b);
  width: 41px;
  position: fixed;
  top: 30%;
  right: 0px;
  z-index: 997;
  cursor: pointer;
  text-align: center;
   height: 140px;
padding-top: 10px;
}
.kefu1 p{
padding:0px 11px;
color:#ffffff;
line-height: 26px;
}

.kefu:hover {
  transform: translate3d(-10px, 0, 0);
}
.kefu a {
  display: block;
  width: 72px;
  height: 80px;
  overflow: hidden;
  background: no-repeat center center;
  opacity: 1;
  text-align: center;
  padding-top: 55px;
  color:red;
}
