/* ----------------------------------------------
        CSS TABLE OF CONTENTS
------------------------------------------------- */
/*
1:  Pre-loader
2:  Default styles
3:  Common section styles
4:  Navigation
5:  Page sections (sections included in the navigation)
    5.1:    Hero Unit (Main slider)
    5.2:    About section ("About us")
    5.3:    News section
    5.4:    Services section
    5.5:    Technology section 
    5.6:    Clients section 
    5.7:    Contact Us section
6: CSS3 Animations
7: Buttons
8: Modal
9: Media queries

/*
----------------------------------------------------- */
@charset 'utf-8';
body,
.services-item p {
  color: #666;
}
body {
  color: #000;
  background-color: #fff;
}
a {
  color: #fff;
}
.bgfff {
  background-color: #fff;
}
.corange {
  color: #667cf5;
}
.cfff {
  color: #fff;
}
.c000 {
  color: #000;
}
.c333 {
  color: #333;
}
.c666 {
  color: #666;
}
.c999 {
  color: #999;
}
.cccc {
  color: #ccc;
}
.ceee {
  color: #eee;
}
.underline-title::after {
/* background: $color-orange; */
  background: linear-gradient(to right, #7c4ef7, #12cfec);
}
.underline-title.cfff::after {
  background: #fff;
}
.pace .pace-progress {
  background: #ff8426;
}
.overlay {
  background: #ff8426;
}
#navbar .navbar-nav li h5 {
  color: #fff;
  padding-top: 10px;
}
#navbar .navbar-nav li span {
  color: #fff;
}
#navbar .navbar-nav li:hover h5,
#navbar .navbar-nav li.active h5 {
  color: #26fff2;
  position: relative;
}
#navbar .navbar-nav li:hover h5::after,
#navbar .navbar-nav li.active h5::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -15px;
  background: #26fff2;
  width: 30px;
  height: 2px;
}
#navbar .navbar-nav li:hover span,
#navbar .navbar-nav li.active span {
  color: #26fff2;
}
#intro-carousel .owl-prev:hover>span,
#intro-carousel .owl-next:hover>span {
  color: #43f7bf;
}
#intro-carousel .owl-prev>span,
#intro-carousel .owl-next>span {
  color: #fff;
}
#intro-carousel .banner-title h1 {
  color: #fff;
}
#intro-carousel .banner-title-caption::before {
  background: #fff;
}
#services .readmore:hover {
  color: #fff;
/* background: $color-orange; */
/* border: 1px solid $color-orange; */
  background: url("../images/step_btn2.png") no-repeat left top/100% auto;
}
#technology .step-m>div::before {
  background: #ff8426;
}
#contact .copynote,
#contact a {
  color: #bfbfbf;
  background: #fcfcfc;
}
#contact .copynote {
  border-top: 1px solid #ebebeb;
}
.scroll-top a:link,
.scroll-top a:visited {
  border: 1px solid #fff;
  color: #fff;
  background: #3d9bef;
}
.scroll-top a:hover {
/* border: 1px solid $color-dark-orange; */
  background: #0376fa;
  color: #fff;
}
.news-content li[data-content]:hover {
/* color: $color-orange; */
  color: #0376fa;
}
#modal {
  background: #fff;
}
#modal a,
#modal h1,
#modal h2,
#modal h3,
#modal h4,
#modal h5 {
  color: #000;
}
#modal .modal-contents .article p {
  color: #666;
}
::-moz-selection {
  background: rgba(255,90,0,0.7);
/* RGBA of Primary color - opacity .7 */
}
::selection {
  background: rgba(255,90,0,0.7);
/* RGBA of Primary color - opacity .7 */
}
body {
  webkit-tap-highlight-color: rgba(255,90,0,0.7);
/* RGBA of Primary color - opacity .7 */
}
/* $color-white = #fff;
$color-black = #000; */
.scroll-style::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
/* background: rgba(254, 82, 76, 1); */
  background: linear-gradient(to bottom, #7c4ef7, #12cfec);
}
.scroll-style::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 1.5px;
}
.scroll-style::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: #ededed;
}
/* 1:   Pre-loader -  Need more customizations? Visit-> http://github.hubspot.com/pace/docs/welcome/
/* ---------------------------------------------- */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  -webkit-transform: translate3d(0, -50px, 0);
  -ms-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  -ms-transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
}
.pace.pace-active {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 3px;
  background: #fe524c;
  pointer-events: none;
}
/* 2:   Default styles
/* ---------------------------------------------- */
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: '微软雅黑', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #999;
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  text-transform: none;
  font-family: '微软雅黑', 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.6;
}
p {
  font-size: 14px;
  line-height: 1.6;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.light {
  font-weight: 100;
}
.buffer-twenty {
  margin: 20px 0;
}
.buffer-twenty-top {
  margin-top: 20px;
}
.buffer-twenty-bottom {
  margin-bottom: 20px;
}
.buffer-forty {
  margin: 40px 0;
}
.buffer-forty-top {
  margin-top: 40px;
}
.no-bottom-pad {
  padding-bottom: 0 !important;
}
.no-top-pad {
  padding-top: 0 !important;
}
.list-ord {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  font-size: 16px;
  line-height: 28px;
}
.no-bg {
  background: none !important;
}
/* 3:   Common section styles
/* ---------------------------------------------- */
.caption {
  font-weight: 100;
  font-size: 20px;
}
.text-center {
  text-align: center;
}
.align-middle {
  margin: 0 auto;
}
.sans-border {
  border-radius: 0;
}
.sans-shadow {
  box-shadow: none;
}
.underline-title {
  position: relative;
  display: inline-block;
  color: #161616;
/* margin: 0 0 0 0;
  padding-bottom 20px; */
  margin: 0 0 10px 0;
  padding-bottom: 10px;
}
.underline-title::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
/* bottom: -8px; */
  left: 0;
  z-index: 99;
  bottom: 0;
}
/* 4:   Navigation
/* ---------------------------------------------- */
#navbar {
  margin-bottom: 0;
  text-transform: none;
  font-family: '微软雅黑', 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
/* &.top-nav-collapse .navbar-nav {
    opacity: 1;
  } */
}
#navbar .navbar-nav {
  opacity: 1;
  margin: 0 25px;
}
#navbar .navbar-nav li a {
  padding: 8px 15px;
}
#navbar .navbar-nav li h5 {
  font-size: 16px;
  margin: 0;
  font-weight: normal;
}
#navbar .navbar-nav li span {
  font-weight: lighter;
  font-size: 12px;
}
#navbar.top-nav-collapse {
  background: rgba(0,0,0,0.7);
}
#navbar .brand-logo {
  display: inline-block;
  padding: 12px;
  margin: 0 26px;
}
#navbar .nav > li > a:focus,
#navbar .nav li a:hover {
  outline: 0;
  background-color: transparent;
}
/* Custom overlay navigation
/* ---------------------------------------------- */
/* .button_container {
  position: relative;
  margin-top: 18px;
  height: 28px;
  width: 28px;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

!* Animate the top hamburger bar *!
.button_container.active .top {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
  background: #FFF;
}

!* Set the middle hamburger bar's opacity to 0 *!
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

!* Animate the bottom hamburger bar *!
.button_container.active .bottom {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
  background: #FFF;
}

.button_container span {
  background: #fff;
  border: none;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 8px;
}

.button_container span:nth-of-type(3) {
  top: 16px;
} */
/* The overlay */
/* .overlay {
  position: fixed;
  display: block;
  top: 0;
  border: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: auto;
}

.overlay.open {
  opacity: 0.95;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.overlay.open li:nth-of-type(2n) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.overlay nav {
  position: relative;
  height: 50%;
  top: 40%;
  font-size: 30px;
  font-family: '微软雅黑', 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  text-transform: none;
  font-weight: 600;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 15%;
  height: calc((100% / 8));
  min-height: 65px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}

!* Link underline on hover *!
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
} */
/* Background images are set within the HTML using inline CSS, not here */
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
/* 5:   PAGE SECTIONS
/* ---------------------------------------------- */
/* 5.1: Hero unit (Main slider)
/* ---------------------------------------------- */
#intro-carousel {
  width: 100%;
  height: 100%;
}
#intro-carousel .banner-slide,
#intro-carousel .owl-stage-outer,
#intro-carousel .owl-stage,
#intro-carousel .owl-item {
  height: 100%;
}
#intro-carousel .banner-slide .item {
  position: relative;
  height: 100%;
}
#intro-carousel .banner-slide .item .banner-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
#intro-carousel .banner-slide .item .banner-title h3 {
  color: #fff;
}
#intro-carousel .banner-slide .item .banner-title img {
  width: 80px;
  margin: 0 auto;
}
#intro-carousel .banner-slide .item .banner-title-caption {
/* position: relative;
      display: inline-block; */
  margin: 0 0px;
/* &::before {
        content: '';
        width: 100%;
        height: 1.1px;
        position: absolute;
        top: -8px;
        left: 0;
      } */
}
#intro-carousel .owl-prev,
#intro-carousel .owl-next {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  background: none;
  border-radius: 0;
  z-index: 100;
  width: 60px;
  margin-top: -42.5px;
}
#intro-carousel .owl-prev > span,
#intro-carousel .owl-next > span {
  font-size: 60px;
}
#intro-carousel .owl-prev {
  left: 10px;
}
#intro-carousel .owl-next {
  right: 10px;
}
/* 5.2: About section
/* ---------------------------------------------- */
#about {
  background-color: #fff;
/* .company-size-img{
    opacity 0;
  } */
/* .owl-dots .owl-dot:nth-child(4)::before {
    content: '公司荣誉';
  } */
}
#about .container-fluid {
  position: relative;
  margin-top: 50px;
}
#about .about-company {
  float: right;
  width: 100%;
  cursor: grab;
  cursor: -webkit-grab;
  background: #fff;
}
#about .item-content {
  padding: 100px 50px 0px 50px;
  background: #fff;
  overflow: hidden;
}
#about .owl-carousel,
#about .owl-carousel .owl-item {
  position: static;
}
#about .owl-dots {
  position: absolute;
  list-style: none;
  top: -10px;
  left: 0px;
  padding: 0px;
  width: 100%;
  text-align: center;
}
#about .owl-dots .owl-dot {
  position: relative;
  width: 88px;
  height: 32px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
/* background: #e3721c; */
  background: url("../images/owl-dot_2.png") no-repeat left top/100% 100%;
  z-index: 30;
  border: none;
  outline: none;
  margin-bottom: 10px;
  margin-right: 5px;
}
#about .owl-dots .owl-dot::before {
  font-size: 14px;
  color: #4492f1;
}
#about .owl-dots .owl-dot.active::before {
  color: #fff;
}
#about .owl-dots .owl-dot:nth-child(1)::before {
  content: '关于语锡';
}
#about .owl-dots .owl-dot:nth-child(2)::before {
  content: '公司规模';
}
#about .owl-dots .owl-dot:nth-child(3)::before {
  content: '公司文化';
}
#about .owl-dots .owl-dot.active {
  background: url("../images/owl-dot_1.png") no-repeat left top/100% 100%;
}
#about .owl-dots .owl-dot span {
  display: none;
}
#about .company-size {
  min-height: 500px;
  /* background: url("../images/about-company-size.png") no-repeat 93% bottom/auto; */
}
#about .company-culture .sub-content {
  float: left;
  margin-right: 50px;
}
#about .honor-content {
  background: #fff;
}
#about .honor-content .honor-picture {
  padding: 0;
}
#about .honor-content .honor-picture li {
  position: relative;
  list-style: none;
  float: left;
  width: 80px;
  margin: 5px 15px 15px 15px;
  padding-top: 80px;
  font-size: 12px;
  min-height: 132px;
}
#about .honor-content .honor-picture li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-size: 80%;
}
#about .honor-content .social-honor li.honor1::before {
  background: url("../images/about-honor.png") no-repeat -28px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor2::before {
  background: url("../images/about-honor.png") no-repeat -155px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor3::before {
  background: url("../images/about-honor.png") no-repeat -290px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor4::before {
  background: url("../images/about-honor.png") no-repeat -418px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor5::before {
  background: url("../images/about-honor.png") no-repeat -543px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor6::before {
  background: url("../images/about-honor.png") no-repeat -673px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor7::before {
  background: url("../images/about-honor.png") no-repeat -802px -28px/900px 510px;
}
#about .honor-content .social-honor li.honor8::before {
  background: url("../images/about-honor.png") no-repeat -27px -210px/900px 510px;
}
#about .honor-content .social-honor li.honor9::before {
  background: url("../images/about-honor.png") no-repeat -156px -210px/900px 510px;
}
#about .honor-content .social-honor li.honor10::before {
  background: url("../images/about-honor.png") no-repeat -286px -210px/900px 510px;
}
#about .honor-content .social-honor li.honor11::before {
  background: url("../images/about-honor.png") no-repeat -416px -210px/900px 510px;
}
#about .honor-content .social-honor li.honor12::before {
  background: url("../images/about-honor.png") no-repeat -544px -210px/900px 510px;
}
#about .honor-content .media-honour li.honor1::before {
  background: url("../images/about-honor.png") no-repeat -24px -416px/900px 510px;
}
#about .honor-content .media-honour li.honor2::before {
  background: url("../images/about-honor.png") no-repeat -159px -416px/900px 510px;
}
#about .honor-content .media-honour li.honor3::before {
  background: url("../images/about-honor.png") no-repeat -288px -402px/900px 510px;
}
#about .honor-content .media-honour li.honor4::before {
  background: url("../images/about-honor.png") no-repeat -421px -435px/900px 510px;
}
#about .honor-content .media-honour li.honor5::before {
  background: url("../images/about-honor.png") no-repeat -549px -429px/900px 510px;
}
#about .honor-content .media-honour li.honor6::before {
  background: url("../images/about-honor.png") no-repeat -689px -409px/900px 510px;
}
#about .honor-content .media-honour li.honor7::before {
  background: url("../images/about-honor.png") no-repeat -806px -416px/900px 510px;
}
/* Honor section
/* ---------------------------------------------- */
#honor {
  background: linear-gradient(to left, #817df5, #20bdee);
}
#honor .title {
  padding-bottom: 40px;
}
#honor .title h2 {
  color: #fff;
  width: 130px;
  margin: 0 auto 5px;
  font-size: 30px;
}
#honor .title .border {
  width: 120px;
  height: 1px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}
#honor .portfolio-filter {
  margin-bottom: 40px;
  text-align: center;
  overflow: hidden;
  font-size: 0;
  border-radius: 30px;
  display: inline-block;
  border: 1px solid #fff;
  height: 50px;
  width: 390px;
  box-sizing: border-box;
  letter-spacing: 0;
  position: relative;
  left: 50%;
  margin-left: -195px;
}
#honor .portfolio-filter button {
  outline: none;
  height: 100%;
  border: none;
  background: transparent;
  display: inline-block;
  font-size: 16px;
/* padding: 6px 20px; */
/* font-weight: 700; */
  color: #fff;
  transition: 0.3s all;
  width: 130px;
  box-sizing: border-box;
  float: left;
  position: absolute;
  top: 0;
}
#honor .portfolio-filter button:nth-child(1) {
  left: -2px;
}
#honor .portfolio-filter button:nth-child(2) {
  right: 130px;
}
#honor .portfolio-filter button:nth-child(3) {
  right: -2px;
}
#honor .portfolio-filter button:nth-child(2).mixitup-control-active {
  background: linear-gradient(to left, #817df5, #20bdee);
}
#honor .portfolio-filter button.mixitup-control-active {
  background: linear-gradient(to right, #817df5, #20bdee);
}
#honor .portfolio-items-wrapper .mix {
  padding: 5px;
}
#honor .portfolio-items-wrapper .mix .portfolio-block {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  background: url("../images/portfolio-block-bg.png") no-repeat center center/100% 100%;
}
#honor .portfolio-items-wrapper .mix .portfolio-block:hover:before {
  opacity: 0.8;
}
#honor .portfolio-items-wrapper .mix .portfolio-block:hover .caption {
  opacity: 1;
  top: 50%;
  z-index: 100;
}
#honor .portfolio-items-wrapper .mix .portfolio-block:before {
  transition: all 0.3s ease-in-out;
  background: url("../images/portfolio-block.png") no-repeat left top/100% 100%;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  z-index: 99;
  border-radius: 10px;
}
#honor .portfolio-items-wrapper .mix .portfolio-block img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .caption {
  position: absolute;
  top: 48%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
  transition: all 0.2s ease-in-out;
  text-align: center;
  color: #fffffe;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .caption p {
  margin-bottom: 0px;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .caption h2 {
  color: #fff;
  font-size: 30px;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .caption .portfolio-title {
  margin: 0;
  color: #fff;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .caption .portfolio-border {
  height: 2px;
  width: 40px;
  background-color: #fff;
  margin: 0 auto 3px;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .mix-more {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: #fff;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .mix-more:hover {
  cursor: pointer;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .mix-more div {
  text-align: center;
}
#honor .portfolio-items-wrapper .mix .portfolio-block .mix-more div span {
  display: inline-block;
  background-color: #fff;
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
/* Honor Section */
/* 5.3: News Section
/* ---------------------------------------------- */
#news .news-content-bg {
  padding-bottom: 50px;
  overflow: hidden;
  background: #fff;
}
#news .news-contents {
  width: 50%;
  margin: auto;
}
#news .news-content {
  height: 240px;
  overflow-y: auto;
  padding-right: 20px;
}
#news .news-content ul {
  padding-left: 0;
  list-style-type: none;
}
#news .news-content ul li {
  font-weight: normal;
  line-height: 40px;
  cursor: pointer;
}
#news .news-content li .news-title {
  float: left;
  position: relative;
  font-size: 100%;
  width: 80%;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 5.4: Services section
/* ---------------------------------------------- */
#services {
  background: #fff;
/*
  .readmore::after {
    content: '››';
    position: absolute;
    top: 0px;
    right: 16px;
    font-size: 30px;
  } */
}
#services .services-info {
  margin-top: 50px;
}
#services .readmore {
  cursor: pointer;
  position: relative;
  display: inline-block;
/* border: 1px solid #999; */
  padding: 8px 50px 8px 30px;
  font-size: 20px;
  transition: 0.3s;
  margin-top: 30px;
  background: url("../images/step_btn.png") no-repeat left top/100% auto;
}
/* 二级页面 */
.services-content .item-content h3,
.services-content .item-content h4 {
  color: #3f3f3f;
}
/* 5.5: Technology section
/* ---------------------------------------------- */
#technology .step-m h3,
#technology .step-pc h3 {
  margin-bottom: 0;
}
#technology .step-m p,
#technology .step-pc p {
  margin-bottom: 0;
}
/* 5.6: Clients section
/* ---------------------------------------------- */
#clients .client-logo {
  margin-top: 100px;
}
#clients .clients-line::after {
  width: 60%;
  left: 50%;
  margin-left: -30%;
}
/* 5.7:  contact us
/* ---------------------------------------------- */
#joinus {
  background: url("../images/contact-joinus.png") no-repeat center center/100% auto;
  position: relative;
/* margin: 40px 20px; */
  text-align: center;
}
#joinus .container {
  position: relative;
}
#joinus .joinus-content {
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 0;
/* margin-top: -53px; */
  padding: 0 5%;
}
#joinus .joinus-content .underline-title {
  color: #fff;
}
#joinus .joinus-content .joinus-readmore {
  position: relative;
  text-align: left;
}
#joinus .joinus-content .joinus-readmore::after {
  content: '';
  width: 85%;
  height: 1px;
  position: absolute;
  bottom: -8px;
  left: 0;
  background: #fff;
}
#joinus .joinus-content .readmore-btn {
  position: absolute;
  right: 5%;
  bottom: 5px;
  width: 10%;
}
#contact {
  padding: 0px;
/* background: url('../images/contact-bg.jpg') 0 0 / 100% 100% no-repeat; */
}
#contact .company-code {
  position: relative;
  display: inline-block;
  background: url("../images/company_code.png");
  width: 130px;
  height: 130px;
  margin-bottom: 25px;
}
#contact .company-code::after {
  content: '关注公众号';
  position: absolute;
  bottom: -25px;
  left: 31px;
}
#contact .contact-type {
  margin: 80px auto 50px auto;
  text-align: center;
}
#contact .contact-type .row {
  margin-top: 20px;
}
#contact .contact-way ul li {
  line-height: 26px;
}
#contact .contact-way ul {
  list-style-type: none;
  -moz-padding-start: 10px;
  -webkit-padding-start: 10px;
}
#contact .copynote {
  padding: 30px 0;
  margin-top: 40px;
}
.scroll-top {
  display: none;
  position: fixed;
  bottom: 4%;
  right: 1%;
  z-index: 100;
}
.scroll-top a {
  text-decoration: none;
}
.scroll-top a:link,
.scroll-top a:visited {
  display: inline-block;
  padding: 5px 15px;
  font-size: 30px;
}
/* 7.  CSS3 Animations
/* ---------------------------------------------- */
/* Hero unit mouse animation */
/* Navigation link animation */
/* 8:  Buttons
/* ---------------------------------------------- */
.btn {
  border-radius: 0;
  border: 0;
  padding: 10px 30px;
  text-transform: none;
  font-family: '微软雅黑', 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* 9:  Modal
/* ---------------------------------------------- */
#modal {
  font-weight: normal;
}
#modal ul,
#modal li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#modal a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#modal .modal-fluid {
  width: auto;
}
#modal .modal-title {
  margin: auto;
  font-weight: bold;
}
#modal .modal-back {
  position: fixed;
  top: 36px;
  left: 15px;
  cursor: pointer;
}
#modal .modal-back a {
  display: inline-block;
  height: 50px;
  width: 50px;
  padding: 5px 15px;
  font-size: 30px;
  background: url("../images/turn_back.png") no-repeat center center/contain;
}
#modal .modal-header {
  border: none;
  text-align: center;
  margin-top: 50px;
}
#modal .modal-container {
  background: #f9f9f9;
  padding: 20px;
  position: relative;
}
#modal .modal-container h4 {
  padding-left: 10px;
  font-size: 20px;
}
#modal .modal-container .line-left {
  border-left: solid 2px;
}
#modal .modal-container h5 {
  margin-bottom: 10px;
  font-size: 18px;
}
#modal .modal-contents {
  padding-top: 50px;
  background: #fff;
}
#modal .modal-contents p {
  margin-bottom: 20px;
  text-indent: 2em;
}
#modal .modal-contents .title {
  text-align: center;
  font-size: 150%;
  font-weight: bold;
}
#modal .modal-contents .subtitle {
  font-size: 100%;
  text-align: center;
}
#modal .modal-contents .article {
  text-align: center;
  padding: 20px;
}
#modal .modal-contents .article p {
  text-align: left;
  font-weight: lighter;
}
#modal .modal-contents .article p.text-center {
  text-align: center;
}
#modal .modal-contents .article p.img-title {
  text-align: center !important;
  font-size: 13px;
  color: #3f3f3f;
  margin-top: 5px;
}
#modal .modal-contents .article strong {
  display: inline;
  font-weight: normal;
  font-size: 100%;
  color: #999;
  line-height: 0;
}
#modal .modal-contents img {
  max-width: 100%;
  height: auto;
}
#modal .modal-contents .article img {
  margin-bottom: 10px;
}
#modal .modal-contents .article .img-title-bottom {
  display: block;
  text-align: center;
  font-size: 12px;
  padding: 2px 0 10px 0;
}
/* 10:  MEDIA QUERIES START
/* ---------------------------------------------- */
/* Media Queries [max-width:991px]
/* ---------------------------------------------- */
@media screen and (min-width: 500px) {
  #about .owl-dots .owl-dot {
    width: 120px;
    height: 44px;
  }
}
@media screen and (max-width: 499px) {
  #honor .portfolio-items-wrapper .mix .portfolio-block {
    height: 150px;
  }
  #honor .portfolio-items-wrapper .mix .portfolio-block img {
    width: 80%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  #news .news-contents {
    width: 80%;
  }
  #about .about-company .item-title {
    text-align: center;
  }
  #about .honor-content-pc {
    display: none !important;
  }
  #about .honor-content-m .social-honor,
  #about .honor-content-m .media-honour {
    width: 375px;
    margin: 0px auto 15px auto;
  }
  #about .company-culture .sub-content {
    float: none;
    text-align: center;
    margin-right: 0;
  }
  /* #about .company-size {
    background: #fff url("../images/about-company-size.png") no-repeat 93% bottom/auto 65%;
  } */
  #services .services-cp {
    display: none !important;
  }
  #services .fullweight {
    width: 100%;
    text-align: center;
  }
  #services .fullweight > div {
    margin-bottom: 20px;
  }
  #services .step4.pc {
    display: none !important;
  }
  #services .step4.mobile {
    display: block;
  }
  #technology .technology-m-title {
    text-align: center;
  }
  #technology .step-pc {
    display: none !important;
  }
  #technology .step-m > div {
    padding-left: 20px;
    position: relative;
    margin-top: 20px;
  }
  #technology .step-m > div::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 5px;
    height: 80%;
    background: #ffa000;
  }
  #technology .trend-img-pc {
    display: none !important;
  }
  #clients .client-logo {
    margin-top: 30px;
  }
}
/* ---------------------------------------------- */
/* Media Queries [max-width:767px]
/* ---------------------------------------------- */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 20px;
  }
  .h2,
  h2 {
    font-size: 24px;
  }
  .h3,
  h3 {
    font-size: 18px;
  }
  .h4,
  h4 {
    font-size: 14px;
  }
  .h5,
  h5 {
    font-size: 12px;
  }
  .h6,
  h6 {
    font-size: 10px;
  }
  .content-section {
    padding: 10px 0;
  }
  #modal .modal-contents {
    margin-top: 0px;
  }
  #intro-carousel .owl-nav {
    display: none;
  }
  #intro-carousel .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
  }
  #intro-carousel .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fff;
    margin-right: 10px;
  }
  #intro-carousel .owl-dots .owl-dot.active {
    background-color: #43f7bf;
  }
  #news .news-contents {
    width: 100%;
  }
  #news .news-content li .news-title {
    width: 70%;
  }
  #news .news-content-bg {
    padding-bottom: 20px;
  }
  #news h1 {
    text-align: center;
  }
  #joinus .container {
    min-height: 120px;
  }
  #contact .company-ico {
    position: relative;
    height: 130px;
    margin: 0 0 50px 0;
    text-align: center;
  }
  #contact .contact-way ul {
    text-align: center;
  }
  #contact .contact-type {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  #contact .copynote {
    line-height: 24px;
    margin-top: 0px;
  }
  #contact a {
    line-height: 24px;
  }
  blockquote .culture-detail {
    padding-left: 0px;
  }
  .modal-contents .article {
    text-align: center;
    padding: 0 10px;
  }
  .carousel-caption {
    top: 30%;
    margin: 0;
  }
  .carousel-caption h1 {
    font-size: 25px;
  }
  .carousel-caption .intro-text {
    font-size: 20px;
    padding: 0;
  }
  .mouse {
    display: none;
  }
  .circle {
    padding: 0px;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  .navbar-custom a {
    color: #fe524c;
    color: #fff;
  }
  .video-section {
    background: url("https://www.gzjunbo.net/assets/images/youtube-video-cover.jpg") no-repeat bottom center scroll;
  }
  .button_container span {
    background: #fff !important;
  }
  .button_container.active span.top,
  .button_container.active span.bottom {
    background: #fff;
  }
  .cta-two-section .btn {
    margin: 20px 0 0 0;
  }
  #modal .modal-container {
    position: relative;
    background: #fff;
    padding: 0;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:768px]
/* ---------------------------------------------- */
@media screen and (min-width: 768px) {
  .content-section {
    padding: 30px 0;
  }
  #news {
    background: url("../images/news-bg.png") 0 0/cover no-repeat;
  }
  #about .owl-dots .owl-dot {
    width: 140px;
    height: 44px;
  }
  #joinus .container {
    min-height: 250px;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:992px]
/* ---------------------------------------------- */
@media screen and (min-width: 992px) {
  #honor {
    background: url("../images/honor-bg.png") 0 0/cover no-repeat;
    height: 1050px;
    padding-bottom: 80px;
  }
  .content-section {
    padding: 50px 0;
  }
  #about .honor-content .honor-picture {
    margin-left: -10%;
  }
  #about .owl-dots .owl-dot::before {
    font-size: 16px;
  }
  #about .honor-content-m {
    display: none !important;
  }
  #services {
    min-height: 850px;
  }
  #services .step1,
  #services .step2 {
    position: absolute;
    top: -20px;
  }
  #services .step1 h2 span {
    padding-left: 50px;
    background: url("../images/step1.png") no-repeat left center/32px auto;
  }
  #services .step2 h2 span {
    padding-left: 50px;
    background: url("../images/step2.png") no-repeat left center/32px auto;
  }
  #services .step3 h2 span {
    padding-left: 50px;
    background: url("../images/step3.png") no-repeat left center/32px auto;
  }
  #services .step4 h2 span {
    padding-left: 50px;
    background: url("../images/step4.png") no-repeat left center/32px auto;
  }
  #services .step3,
  #services .step4 {
    position: absolute;
    top: 250px;
  }
  #services .services-cp {
    margin-top: 30px;
  }
  #services .step1,
  #services .step4 {
    text-align: right;
  }
  #services .step4.mobile {
    display: none !important;
  }
  #news .news-content-bg {
    padding-bottom: 100px;
  }
  #news .news-title-img {
    padding: 20px 100px;
  }
  #technology {
    background: url("../images/technology-bg.png") 0 0/cover no-repeat;
    color: #fff;
  }
  #technology h1.underline-title {
    color: #fff;
  }
  #technology h1.underline-title::after {
    background: #fff;
  }
  #technology .trend-img-m {
    display: none !important;
  }
  #technology .step-m {
    display: none !important;
  }
  #technology .step3 {
    position: absolute;
    top: 80px;
  }
  #technology .step2 {
    position: absolute;
    top: 215px;
  }
  #technology .step1 {
    position: absolute;
    top: 342px;
  }
  #joinus .container {
    min-height: 300px;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:1200px]
/* ---------------------------------------------- */
@media (min-width: 1200px) {
  .content-section {
    padding: 80px 0;
  }
  p {
    font-size: 16px;
  }
  #navbar.top-nav-collapse {
    padding: 10px 0;
  }
  #about {
    background: url("../images/about-bg.png") 0 0/cover no-repeat;
  }
  #about .about-company {
    float: right;
    max-width: 1080px;
    margin-right: 20px;
    cursor: grab;
    cursor: -webkit-grab;
  }
  #about .item-content {
    background: #fff url("../images/about-inner.png") no-repeat left top/auto;
    padding: 150px 0 0 270px;
    color: #545454;
  }
  #about .honor-content {
    padding: 100px 50px;
    background: #fff;
  }
  #about .company-size {
    min-height: 600px;
    /* background: url("../images/about-inner.png") no-repeat left top/auto, url("../images/about-company-size.png") no-repeat 93% bottom/auto; */
  }
  #about .company-size .company-size-img {
    position: absolute;
    width: 30%;
    right: 0;
    bottom: -126px;
    z-index: 999;
    opacity: 1;
  }
  #about .owl-dots {
    width: 100px;
    left: 10px;
  }
  #about .owl-dots .owl-dot {
    width: 100%;
  }
  #services {
    min-height: 1000px;
  }
  #technology .step3 {
    position: absolute;
    top: 105px;
  }
  #technology .step2 {
    position: absolute;
    top: 266px;
  }
  #technology .step1 {
    position: absolute;
    top: 424px;
  }
  #joinus .container {
    min-height: 464px;
  }
  #joinus .joinus-readmore {
    margin-top: 50px;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:1320px]
/* ---------------------------------------------- */
@media (min-width: 1320px) {
  #about .company-culture .sub-content:last-child {
    margin-top: 50px;
  }
  #about .owl-dots {
    width: 140px;
    left: 50px;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:1460px]
/* ---------------------------------------------- */
@media (min-width: 1460px) {
  .content-section {
    padding: 100px 0;
  }
  #navbar .navbar-nav li {
    padding: 0 15px;
  }
  #about {
    min-height: 100vh;
  }
  #about .about-company {
    float: right;
    max-width: 1200px;
    margin-right: 20px;
    cursor: grab;
    cursor: -webkit-grab;
  }
  #about .company-culture .sub-content:last-child {
    margin-top: 50px;
  }
  #about .honor-content {
    padding: 100px 50px 50px 100px;
  }
  #about .honor-content .honor-picture li {
    margin: 5px 20px 15px 20px;
  }
  #news {
    min-height: 1080px;
  }
  #services .container-fluid {
    padding: 0 150px;
  }
  #services .step3,
  #services .step4 {
    position: absolute;
    top: 300px;
  }
  #technology {
    min-height: 1080px;
  }
  #clients {
    min-height: 1080px;
    background: url("../images/client-bg.png") no-repeat 0 0/100% 100%;
  }
}
/* ---------------------------------------------- */
/* Media Queries [min-width:1560px]
/* ---------------------------------------------- */
@media (min-width: 1560px) {
  #about .about-company {
    max-width: 1280px;
  }
}
/* Selection and other generic styles
/* ---------------------------------------------- */
::-moz-selection {
  text-shadow: none;
  background: #fcfcfc;
  color: #fff;
  background: rgba(254,82,76,0.8);
}
::selection {
  text-shadow: none;
  background: #fcfcfc;
  color: #fff;
  background: rgba(254,82,76,0.8);
}
img::selection {
  background: 0 0;
}
img::-moz-selection {
  background: 0 0;
}
body {
  webkit-tap-highlight-color: rgba(254,82,76,0.8);
}
/* Debug styles (remove before exporting for production)
/* ---------------------------------------------- */
.debug {
  border: 1px solid #f00;
}
@-moz-keyframes rotateplane {
  0% {
    -webkit-transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(7px);
  }
}
@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(7px);
  }
}
@-o-keyframes rotateplane {
  0% {
    -webkit-transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(7px);
  }
}
@keyframes rotateplane {
  0% {
    -webkit-transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(7px);
  }
}
@-moz-keyframes rotateplane {
  0% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
  100% {
    transform: translateY(7px);
    -webkit-transform: translateY(7px);
  }
}
@-webkit-keyframes rotateplane {
  0% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
  100% {
    transform: translateY(7px);
    -webkit-transform: translateY(7px);
  }
}
@-o-keyframes rotateplane {
  0% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
  100% {
    transform: translateY(7px);
    -webkit-transform: translateY(7px);
  }
}
@keyframes rotateplane {
  0% {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
  }
  100% {
    transform: translateY(7px);
    -webkit-transform: translateY(7px);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
