/*-------------------------------------------------------*/
/* General
/*-------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.oh {
  overflow: hidden;
}

.relative {
  position: relative;
}

.section-wrap {
  padding: 90px 0 50px;
  overflow: hidden;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-wrap-lg {
  padding: 150px 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.mobile section {
  background-attachment: scroll !important;
}

.bg-dark {
  background-color: #191b1f;
}

.bg-light {
  background-color: #fafcfc;
}

.bg-color {
  background-color: #ec1d23;
}

.white {
  color: #fff;
}

.static {
  position: static;
}

.left {
  float: left;
}

.right {
  float: right;
}

.valign {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.container-fluid.semi-fluid {
  padding: 0 50px;
}

.img-fw {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.last {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .sm-text-center {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .xs-text-center {
    text-align: center;
  }
}
img.alignleft {
  float: left;
  margin: 10px 20px 10px 0;
}

img.alignright {
  float: right;
  margin: 10px 0 10px 20px;
}

::-moz-selection {
  color: #fff;
  background-color: #ec1d23;
}

::-webkit-selection {
  color: #fff;
  background-color: #ec1d23;
}

::selection {
  color: #fff;
  background-color: #ec1d23;
}

a {
  text-decoration: none;
  color: #ec1d23;
  outline: none;
  -webkit-transition: color 0.1s ease-in-out;
  -moz-transition: color 0.1s ease-in-out;
  -ms-transition: color 0.1s ease-in-out;
  -o-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
a:hover {
  text-decoration: none;
  color: #191b1f;
  outline: none;
}
a:focus {
  color: #ec1d23;
  text-decoration: none;
  outline: none;
}

:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "微软雅黑", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  background: #fff;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: #525252;
}
body img {
  border: none;
  max-width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

video {
  height: 100%;
  width: 100%;
}

/*-------------------------------------------------------*/
/* Preloader
/*-------------------------------------------------------*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: #ec1d23;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border-width: 2px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  -moz-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  -o-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}
.loader > div:nth-child(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.loader > div:nth-child(2) {
  -webkit-animation-delay: .25s;
  -moz-animation-delay: .25s;
  -o-animation-delay: .25s;
  animation-delay: .25s;
}
.loader > div:nth-child(3) {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@-moz-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -moz-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@-o-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -o-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: .5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  95% {
    opacity: 0;
  }
}
/* Scroll Down icon
-------------------------------------------------------*/
.scroll-down {
  font-size: 16px;
  width: 30px;
  height: 30px;
  background-color: white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  z-index: 50 !important;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -15px;
}
.scroll-down a {
  line-height: 34px;
  position: relative;
  z-index: 50 !important;
}
.scroll-down i {
  color: #000;
  -webkit-animation: scroll-down-icon 1s infinite;
  -moz-animation: scroll-down-icon 1s infinite;
  -o-animation: scroll-down-icon 1s infinite;
  animation: scroll-down-icon 1s infinite;
  position: absolute;
  left: 10px;
}

@-webkit-keyframes scroll-down-icon {
  0% {
    bottom: 3px;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 3px;
  }
}
@-moz-keyframes scroll-down-icon {
  0% {
    bottom: 3px;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 3px;
  }
}
@-o-keyframes scroll-down-icon {
  0% {
    bottom: 3px;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 3px;
  }
}
@keyframes scroll-down-icon {
  0% {
    bottom: 3px;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 3px;
  }
}
.row.row-10 {
  margin: 0 -5px;
}

.row.row-10 > div {
  padding: 0 5px;
}

.row.row-16 {
  margin: 0 -8px;
}

.row.row-16 > div {
  padding: 0 8px;
}

.row.row-20 {
  margin: 0 -10px;
}

.row.row-20 > div {
  padding: 0 10px;
}

.bg-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #EC1D23;
  /* Old browsers */
  background: -moz-linear-gradient(left, #EC1D23 0%, #ff8286 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #EC1D23), color-stop(100%, #ff8286));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #EC1D23 0%, #ff8286 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #EC1D23 0%, #ff8286 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #EC1D23 0%, #ff8286 100%);
  /* IE10+ */
  background: linear-gradient(to right, #EC1D23 0%, #ff8286 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */
}

.bg-gradient-2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .9;
  z-index: -1;
  background: #1abc9c;
  /* Old browsers */
  background: -moz-linear-gradient(left, #1abc9c 0%, #29c7c8 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #1abc9c), color-stop(100%, #29c7c8));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #1abc9c 0%, #29c7c8 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #1abc9c 0%, #29c7c8 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #1abc9c 0%, #29c7c8 100%);
  /* IE10+ */
  background: linear-gradient(to right, #1abc9c 0%, #29c7c8 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */
}

/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "微软雅黑", sans-serif;
  margin-top: 0;
  color: #5a5b5f;
  font-weight: 300;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
  font-weight: normal;
}

h5 {
  font-size: 20px;
  font-weight: normal;
}

h6 {
  font-size: 18px;
  font-weight: normal;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  color: inherit;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: #5a5b5f;
  font-size: 70%;
}

p {
  font-size: 15px;
  color: #8c8c8c;
  font-weight: normal;
  line-height: 26px;
}

.heading {
  position: relative;
  margin-bottom: 30px;
}
.heading.large {
  font-size: 42px;
}

.heading-row {
  margin-bottom: 30px;
}
.heading-row.style-2 {
  margin-bottom: 60px;
}

.subheading {
  font-family: "微软雅黑", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 34px;
}

.list-inline {
  margin: 0;
}

.bottom-line:after {
  content: "";
  display: block;
  width: 56px;
  border-bottom: 2px solid #ec1d23;
  margin: 12px auto 24px;
  z-index: 1;
  position: relative;
}

.bottom-line:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  width: 100%;
  border-bottom: 1px solid #e8ebee;
}

.bottom-line.style-2:before {
  display: none;
}

.bottom-line.left-align:after {
  margin: 12px auto 24px 0;
}

.footer-widgets .bottom-line:before {
  border-color: #40434a;
}

.sliding-link {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
.sliding-link:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  -webkit-transition: width 0s ease, background 0.5s ease;
  -moz-transition: width 0s ease, background 0.5s ease;
  -ms-transition: width 0s ease, background 0.5s ease;
  -o-transition: width 0s ease, background 0.5s ease;
  transition: width 0s ease, background 0.5s ease;
}
.sliding-link:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #ec1d23;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.sliding-link:hover:before {
  width: 100%;
  background: #ec1d23;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.sliding-link:hover:after {
  width: 100%;
  background: transparent;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -ms-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}

.mobile .sliding-link:before,
.mobile .sliding-link:after,
.mobile .underline-link:after {
  display: none;
}

.underline-link {
  display: inline-block;
}

.underline-link:after {
  content: "";
  display: block;
  border-bottom: 2px solid #fff;
  width: 100%;
  opacity: 0;
  bottom: -10px;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.underline-link:hover:after {
  opacity: 1;
  bottom: -3px;
}

p.large {
  font-size: 120%;
  line-height: 1.8;
}

blockquote {
  padding: 0 0 20px;
  margin: 0;
  border: none;
}
blockquote > p {
  font-size: 20px;
  line-height: 34px;
  font-family: "微软雅黑", serif;
  margin-bottom: 5px !important;
  position: relative;
  font-style: italic;
}
blockquote > span {
  color: #ec1d23;
  font-size: 16px;
}

.blockquote-style-1 {
  padding: 40px 40px 40px 90px;
  border: 1px solid #e8ebee;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #fff;
}
.blockquote-style-1 span {
  color: #ec1d23;
}
.blockquote-style-1 p:before {
  content: "\f10d";
  font-size: 30px;
  position: absolute;
  left: -50px;
  margin-top: 3px;
  font-family: "微软雅黑";
  font-style: normal;
  color: #979ba3;
  opacity: 0.3;
}

.blockquote-style-2 {
  padding: 40px;
  border-left: 2px solid #ec1d23;
}

.dropcap {
  font-family: '微软雅黑', sans-serif;
}

.dropcap.style-1 {
  float: left;
  color: #ec1d23;
  font-size: 47px;
  line-height: 48px;
  padding-right: 10px;
}

.dropcap.style-2 {
  float: left;
  color: #fff;
  text-align: center;
  background-color: #ec1d23;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 40px;
  margin: 7px 10px 0 0;
}

.highlight {
  padding: 3px 5px;
  color: #fff;
  background-color: #ec1d23;
}

.list li {
  line-height: 24px;
}
.list li i {
  line-height: 21px;
}

.bullets li,
.arrows li,
.checks li,
.numbers li {
  margin-bottom: 20px;
  color: #979ba3;
}

.bullets li:before {
  content: "\2022";
  font-size: 14px;
  color: #ec1d23;
  padding-right: 0.5em;
}

.arrows i {
  margin-right: 5px;
}

.arrows i,
.checks i {
  color: #ec1d23;
}

.checks i {
  font-size: 12px;
  margin-right: 7px;
  vertical-align: middle;
}

ol.numbers {
  padding-left: 20px;
}

.section-columns p {
  margin-bottom: 40px;
}

/*-------------------------------------------------------*/
/* Top Bar
/*-------------------------------------------------------*/
.top-bar {
  background-color: #191b1f;
  width: 100%;
  position: relative;
  height: 44px;
  color: #979ba3;
}

.top-bar-links {
  line-height: 44px;
  font-size: 12px;
}
.top-bar-links li {
  padding-right: 20px;
}
.top-bar-links a {
  color: #979ba3;
}
.top-bar-links a:hover {
  color: #ec1d23;
}
.top-bar-links > ul:first-child i {
  margin-right: 5px;
  color: #979ba3;
}

.top-bar > ul,
.top-bar-links > ul > li {
  display: inline-block;
  position: relative;
}

.top-bar-currency-language > li > a {
  color: #fff;
}

.top-bar-currency-language i {
  margin-left: 5px;
}

.currency-dropdown,
.language-dropdown {
  background-color: #fff;
  padding: 0 10px;
  position: absolute;
  border: 1px solid #f2f2f2;
  z-index: 150;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.language-dropdown {
  right: 0;
}

.currency-dropdown ul li,
.language-dropdown ul li {
  line-height: 26px;
  border-top: 1px solid #f2f2f2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.currency-dropdown ul li > a,
.language-dropdown ul li > a {
  color: #7a7a7a;
}

.top-bar-currency-language > li:hover .currency-dropdown,
.top-bar-currency-language > li.language:hover .language-dropdown {
  visibility: visible;
  opacity: 1;
}

.top-bar-links .top-bar-link a:after {
  content: "";
  border-right: 1px solid #606060;
  margin: 0 7px 0 10px;
}

.top-bar-links .top-bar-link:last-child a:after {
  content: "";
  border-right: none;
  margin: 0;
}

/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/
.navbar {
  margin-bottom: 0;
  border: none;
  min-height: 100px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 120;
  background:rgba(0,0,0,0.5);
}

.navigation {
  width: 100%;
  line-height: 0;
}
.navigation.offset {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation.scrolling {
  -webkit-transform: translate3d(0, 0px, 0);
  -moz-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
}
.navigation.sticky {
  position: fixed;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100px;
  top: 0;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow:0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  z-index: 120;
}
.navigation.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}
.navigation.sticky .navbar-nav > li > a {
  line-height: 100px;
  color: #323232;
  font-size:15px;
}
.shrink img{
	width:100%;
}
.navigation.sticky .nav-right {
  color: #5a5b5f;
}
.navigation.sticky #nav-icon span {
  background-color: #5a5b5f;
}

@media (min-width: 992px) {
  header.transparent .navbar {
    position: absolute;
    top: 0;
    width: 100%;
   
  }

  header.transparent .logo-dark,
  header.transparent .navigation.scrolling .logo {
    display: none;
  }

  header.transparent .navigation.scrolling .logo-dark,
  header.transparent .logo {
    display: inline-block;
  }
}
.logo-container {
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}

.logo-wrap {
  display: table;
  width: 100%;
}
.logo-wrap > a {
  display: table-cell;
  vertical-align: middle;
  height: 100px;
}
.logo-wrap.shrink > a {
  height: 100px;
}

.logo {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-header {
  width: 20%;
  padding-right: 15px;
}

.nav-wrap {
  width: 60%;
}

.nav-type-3 .nav-wrap {
  width: 80%;
  float: right;
}

.navbar-nav {
  margin: 0;
  display: inline-block;
  float: none;
}
.navbar-nav > li > a {
  font-family: "微软雅黑", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a5b5f;
  font-size: 18px;
  padding: 0 16px;
  line-height: 100px;
}
@media(max-width:1366px){
	.navbar-nav > li > a {

  padding: 0 13px;
 
}
}
.navbar-nav > li:last-child > a {
  padding-right: 0;
}

header.transparent .navbar-nav > li > a {
  color: #fff;
}
header.transparent .navbar-nav > li > .active{
	 color: #ec1d23;
}

.navbar-collapse {
  border: none;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.navbar-collapse.in {
  overflow-x: hidden;
}

.navbar-nav > li > a:hover,
.navbar-nav > .active > a,
.navbar-nav > .active > a:focus,
.navbar-nav > .active > a:hover,
header.transparent .navigation.scrolling .navbar-nav > li > a:hover,
header.transparent .navigation.scrolling .navbar-nav > .active > a,
header.transparent .navigation.scrolling .navbar-nav > .active > a:focus,
header.transparent .navigation.scrolling .navbar-nav > .active > a:hover {
  color: #ec1d23 !important;
}

.navbar-nav > .open > a,
.navbar-nav > .open > a:focus,
.navbar-nav > .open > a:hover {
  background-color: transparent;
  color: #ec1d23;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover,
.nav > li > a:focus,
.nav > li > a:hover {
  background-color: transparent;
  border-color: #e8ebee;
  text-decoration: none;
}

.navbar-nav .dropdown-menu {
  left: 0;
}

.navbar-nav .dropdown-menu.menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu {
  min-width: 200px;
  margin: 0;
  padding: 20px 0;
  border-top: 2px solid #ec1d23;
  border-left: 1px solid #e8ebee;
  border-right: 1px solid #e8ebee;
  border-bottom: none;
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dropdown-menu li > a {
  padding: 5px 30px;
  color: #979ba3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.dropdown-menu.megamenu, .dropdown-menu.megamenu-wide {
  padding: 0 20px;
}
.dropdown-menu .megamenu-wrap ul > li > a {
  display: block;
  clear: both;
  font-weight: 500;
  line-height: 1.42857143;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dropdown-menu .megamenu-wrap ul > li > a i {
  margin-right: 6px;
  width: 16px;
  text-align: center;
}

.menu-list li > a {
  border: none;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.megamenu .menu-list > li > a:hover,
.megamenu-wide .menu-list > li > a:hover {
  background-color: transparent;
  color: #ec1d23;
}

.megamenu-item {
  border-right: 1px solid #e8ebee;
  padding: 30px;
}
.megamenu-item:last-child {
  border-right: none;
}

.megamenu-wrap .menu-list > li > a {
  padding: 5px 0;
}

.megamenu-wrap .menu-list > li:last-child > a {
  border-bottom: none;
}

.megamenu-item h6 {
  text-transform: uppercase;
  font-family: "微软雅黑", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.navbar .dropdown-menu {
  margin-top: 0;
}

.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .dropdown-menu {
  top: -20px;
  left: 100%;
  margin-top: -2px;
}
.dropdown-submenu > a:after {
  font-family: "微软雅黑";
  position: absolute;
  content: "\f105";
  right: 15px;
  color: #979ba3;
}

@media (min-width: 992px) {
  .dropdown-menu,
  .dropdown-submenu > .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
/*-------------------------------------------------------*/
/* Navigation Right Links
/*-------------------------------------------------------*/
.navigation.sticky #nav-icon .nav-icon-inner,
.navigation.sticky .nav-right li {
  height: 100px;
}

.nav-right {
  float: right;
  display: table;
  color: #5a5b5f;
  padding-right: 15px;
  padding-left: 30px;
}
.nav-right li {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  padding-right: 30px;
  height: 100px;
}
.nav-right li:last-child {
  padding-right: 0;
}

.nav-type-3 .nav-right {
  padding-right: 0;
}

header.transparent .nav-right {
  color: #fff;
}

/* Menu Search
-------------------------------------------------------*/
a.nav-search {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background-color: #191b1f;
}
.search-wrap .search-inner {
  display: table;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  display: table-cell;
  vertical-align: middle;
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp .3s;
}
.search-wrap .form-control {
  height: auto;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #fff;
  font-size: 38px;
  line-height: 2;
  margin-bottom: 0;
  color: #fff;
  position: relative;
}
.search-wrap input.form-control, .search-wrap input.form-control:focus {
  background-color: #191b1f;
}
.search-wrap .search-submit {
  font-family: "微软雅黑";
  font-size: 24px;
  position: absolute;
  color: #fff;
  background: 0 0;
  border: none;
  top: 22px;
  right: 0;
}

input.main-search-input::-webkit-input-placeholder {
  color: #fff;
}

input.main-search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input.main-search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input.main-search-input:-ms-input-placeholder {
  color: #fff;
}

.search-trigger {
  z-index: 122;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 0;
  opacity: 1;
}

.search-close {
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  z-index: 121;
  position: fixed;
  top: 42px;
  right: 116px;
  color: #fff;
  cursor: pointer;
}

.search-close.open {
  opacity: 1;
  visibility: visible;
}

.nav-search.open .search-trigger {
  opacity: 0;
  z-index: 20;
}

.mobile-links li > a {
  padding: 15px 0 15px 15px;
  line-height: 20px;
  border-bottom: 1px solid #e8ebee;
  color: #979ba3;
  display: block;
}
.mobile-links li > a:hover {
  color: #ec1d23;
}

/* Menu Cart
-------------------------------------------------------*/
.nav-cart-wrap.style-1,
.nav-search {
  font-size: 20px !important;
}

.nav-cart {
  position: relative;
}
.nav-cart .cart-outer {
  display: table;
  position: relative;
  width: 20px;
}
.nav-cart:hover .nav-cart-container {
  opacity: 1;
  visibility: visible;
}

.cart-inner {
  display: table-cell;
  height: 100px;
  vertical-align: middle;
}

.navigation.sticky .cart-inner {
  height: 60px;
}

.nav-cart-ammount {
  display: inline-block;
}
.nav-cart-ammount span, .nav-cart-ammount a {
  line-height: 66px;
  color: #979ba3;
  font-size: 13px;
}

.mobile-cart {
  float: right;
  margin-right: 15px;
  color: #5a5b5f;
}

/* Menu Cart Popup
-------------------------------------------------------*/
.nav-cart-container {
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  position: absolute;
  left: auto;
  right: -20px;
  background-color: #fff;
  padding: 30px;
  line-height: 1;
  border-top: 2px solid #ec1d23;
  border-left: 1px solid #e8ebee;
  border-right: 1px solid #e8ebee;
  border-bottom: none;
  text-align: left;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 201;
}

.nav-cart-items {
  position: relative;
}

.nav-cart-item {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}
.nav-cart-item:first-child {
  margin-top: 0;
}
.nav-cart-item .nav-cart-img {
  float: left;
  margin-right: 20px;
}
.nav-cart-item .nav-cart-price {
  color: #979ba3;
  font-size: 13px;
}

.nav-cart-title {
  position: relative;
  overflow: hidden;
  margin-right: 30px;
}
.nav-cart-title > a {
  position: relative;
  color: #5a5b5f;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.5;
}
.nav-cart-title > a:hover {
  color: #ec1d23;
}

.nav-cart-price {
  margin-top: 5px;
}

.nav-cart-remove {
  background: url(../img/shop/shop_icons.png) 0 -26px no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fafcfc;
}
.nav-cart-remove a {
  width: 20px;
  height: 20px;
  display: block;
}
.nav-cart-remove:hover {
  background-position: 0 -52px;
  background-color: #ec1d23;
}

.nav-cart-summary {
  margin-top: 10px;
  font-weight: 700;
  color: #5a5b5f;
  font-size: 14px;
}
.nav-cart-summary .total-price {
  float: right;
}

.nav-cart-actions a {
  width: 100%;
}

.nav-cart-wrap .shopping-cart {
  color: inherit;
}
.nav-cart-wrap .shopping-cart:hover {
  color: #ec1d23;
}

.cart-inner a > span {
  display: block;
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ec1d23;
  color: #fff;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 10px;
}

/* Navigation Toggle
-------------------------------------------------------*/
.navbar-toggle {
  margin-top: 13px;
  border: none;
  z-index: 50;
  margin-right: 5px;
}
.navbar-toggle .icon-bar {
  background-color: #5a5b5f;
  width: 18px;
}
.navbar-toggle:focus .icon-bar, .navbar-toggle:hover .icon-bar {
  background-color: #ec1d23;
}
.navbar-toggle:focus, .navbar-toggle:hover {
  background-color: transparent;
}

/* Nav Side Icon
-------------------------------------------------------*/
.nav-icon-trigger {
  position: relative;
  margin-left: 15px;
}

#nav-icon {
  display: table;
  width: 20px;
  height: 20px;
  padding: 0;
}
#nav-icon .nav-icon-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  height: 100px;
  z-index: 300;
  cursor: pointer;
}
#nav-icon .nav-icon-wrap {
  height: 20px;
  position: relative;
  top: 3px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #5a5b5f;
  opacity: 1;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 6px;
}
#nav-icon span:nth-child(4) {
  top: 12px;
}
#nav-icon.open span:nth-child(1), #nav-icon.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header.transparent #nav-icon span {
  background-color: #fff;
}

/* Offset Sidenav
-------------------------------------------------------*/
.sidenav {
  background-color: #191b1f;
  padding: 60px 40px;
  height: 100%;
  width: 350px;
  position: fixed;
  right: -350px;
  z-index: 121;
  font-size: 13px;
  -webkit-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -moz-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -ms-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.sidenav.opened {
  right: 0;
}
.sidenav p {
  font-size: 13px;
  margin-bottom: 0;
}
.sidenav address {
  line-height: 26px;
}
.sidenav a {
  color: #fff;
}
.sidenav a:hover {
  color: #ec1d23;
}
.sidenav h6 {
  font-size: 18px;
  color: #fff;
}

#sidenav-close i {
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 40px;
  top: 40px;
}

.links-list li {
  display: block;
  padding: 3px 0;
}
.links-list li a {
  color: #979ba3;
}

.main-wrapper {
  position: relative;
  left: 0;
  -webkit-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -moz-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -ms-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: all 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.main-wrapper.sidenav-opened {
  left: -350px;
}

/*-------------------------------------------------------*/
/* Onepage Navigation / Landing
/*-------------------------------------------------------*/
.nav-type-2 .nav-wrap {
  width: auto;
}
.nav-type-2.landing .navbar-nav > li > a {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
}
.nav-type-2.landing .navbar-nav > li > div {
  line-height: 100px;
  padding-left: 12px;
}
.nav-type-2.landing .navigation.sticky .navbar-nav > li > div {
  line-height: 60px;
}

/* Go to Top
-------------------------------------------------------*/
#back-to-top {
  display: block;
  z-index: 500;
  width: 36px;
  height: 36px;
  text-align: center;
  font-size: 22px;
  position: fixed;
  bottom: -36px;
  right: 20px;
  line-height: 30px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  -webkit-box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0px rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 1px 1.732px 12px 0px rgba(0, 0, 0, 0.14), 1px 1.732px 3px 0px rgba(0, 0, 0, 0.12);
}
#back-to-top i {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#back-to-top a {
  width: 36px;
  height: 36px;
  display: block;
  color: #5a5b5f;
}
#back-to-top.show {
  bottom: 20px;
}
#back-to-top:hover {
  background-color: #ec1d23;
}
#back-to-top:hover i {
  color: #fff;
}

/*-------------------------------------------------------*/
/* Nav Type-4 (Left Nav)
/*-------------------------------------------------------*/
.content-wrap {
  margin-left: 260px;
  position: relative;
  width: auto;
}

.vertical-nav .header-wrap {
  width: 260px;
  height: 100%;
  background-color: #fff;
  padding: 70px 38px;
}

.nav-type-4 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 500;
  height: 100%;
  width: 260px;
}
.nav-type-4 .navbar-header, .nav-type-4 .nav-wrap, .nav-type-4 .logo-container {
  width: 100%;
}
.nav-type-4 .navbar-header {
  padding: 0;
}
.nav-type-4 .navbar {
  min-height: 100%;
}
.nav-type-4 .logo-wrap > a {
  height: auto;
}
.nav-type-4 .nav {
  width: 100%;
  margin-top: 40px;
}
.nav-type-4 .navbar-nav > li, .nav-type-4 .social-icons a {
  float: none;
}
.nav-type-4 .navbar-nav > li > a {
  padding: 17px 0;
  line-height: 1;
}

.nav-item-toggle > a:after {
  font-family: "微软雅黑";
  position: absolute;
  content: "\f107";
  right: 0;
  color: #979ba3;
}

.nav-item-submenu li a {
  display: block;
  padding: 7px 0;
  line-height: 1;
  color: #979ba3;
}
.nav-item-submenu li a:hover {
  color: #ec1d23;
}

/*-------------------------------------------------------*/
/* Promo Section
/*-------------------------------------------------------*/
.promo-section .row > div:last-child {
  padding-right: 15%;
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.promo-section .row > div:first-child {
  float: none;
  display: table-cell;
}
.promo-section .container-fluid {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
}
.promo-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.promo-section p {
  font-size: 16px;
  line-height: 32px;
}
.promo-section .lead-text {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 37px;
}

.customNavigation .btn.prev,
.customNavigation .btn.next {
  width: auto;
  height: auto;
  font-size: 28px;
  padding: 0;
  border: none;
  margin-right: 14px;
  background-color: transparent;
  color: #979ba3;
}
.customNavigation .btn.prev:hover,
.customNavigation .btn.next:hover {
  color: #ec1d23;
}

/*-------------------------------------------------------*/
/* Testimonials
/*-------------------------------------------------------*/
.parallax-testimonials .parallax {
  background-image: url(../img/testimonials_bg.jpg);
}

.parallax {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 0;
  z-index: -1;
}

.mobile .parallax {
  background-attachment: scroll !important;
  background-position: 50% 50% !important;
}

.parallax-testimonials > div {
  padding: 135px 0 115px;
}
.parallax-testimonials h2 {
  font-size: 24px;
  margin-bottom: 41px;
}
.parallax-testimonials .owl-dots {
  bottom: 29px;
  position: absolute;
}
.parallax-testimonials #owl-testimonials {
  position: static;
}
.parallax-testimonials .testimonial-text {
  font-family: "微软雅黑", sans-serif;
  font-size: 31px;
  color: #fff;
  line-height: 46px;
  margin-bottom: 20px;
  font-weight: 300;
}
.parallax-testimonials .testimonial span {
  font-size: 16px;
  color: #fff;
}
.parallax-testimonials .owl-pagination {
  position: relative;
  bottom: 0;
  margin-top: 40px;
}

/*-------------------------------------------------------*/
/* Style-2
/*-------------------------------------------------------*/
.testimonials.style-2 .testimonial-box {
  background-color: #fafcfc;
  padding: 20px;
  margin: 0 15px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e8ebee;
  position: relative;
}
.testimonials.style-2 .testimonial-box:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 25px;
  width: 20px;
  height: 11px;
  background: url(../img/sprite.png) 0 0 no-repeat;
}
.testimonials.style-2 p {
  margin-bottom: 0;
}
.testimonials.style-2 .owl-pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
}
.testimonials.style-2 .testimonial-author {
  margin: 30px 15px 0 15px;
}
.testimonials.style-2 .testimonial-author img {
  -webkit-border-radius: 70px;
  border-radius: 70px;
  margin-right: 20px;
  float: left;
}
.testimonials.style-2 .testimonial-author span {
  display: block;
  color: #5a5b5f;
}
.testimonials.style-2 .testimonial-author .testimonial-name {
  margin-top: 13px;
  margin-bottom: 2px;
}
.testimonials.style-2 .testimonial-author span:last-child {
  color: #979ba3;
  font-style: italic;
  font-size: 14px;
}
.testimonials.style-2 .owl-carousel img {
  width: auto;
  height: auto;
}

/*-------------------------------------------------------*/
/* Style-3
/*-------------------------------------------------------*/
.testimonials.style-3 .testimonial-box {
  margin: 0;
  padding: 30px;
  border: 1px solid #e8ebee;
  background-color: #fafcfc;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.testimonials.style-3 .testimonial-box:after {
  content: none;
}
.testimonials.style-3 .testimonial-author {
  margin: 0 0 10px 0;
}
.testimonials.style-3 .testimonial-author .testimonial-name {
  margin: 0 7px 0 0;
}
.testimonials.style-3 .testimonial-author span {
  display: inline-block;
  margin-right: 7px;
}
.testimonials.style-3 .owl-pagination {
  margin-top: 20px;
  text-align: left;
  position: relative;
  bottom: auto;
}

.owl-dark-dots .owl-page span {
  background-color: #979ba3;
}

.owl-white-dots .owl-page.active span {
  background-color: #fff;
}

.owl-carousel,
.slick-slider,
.featured-works {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

/*-------------------------------------------------------*/
/* Style-4
/*-------------------------------------------------------*/
.parallax-testimonials.style-4 > div {
  padding: 150px 15px 130px;
}
.parallax-testimonials.style-4 .parallax {
  background-image: url(../img/testimonials_bg_2.jpg);
}
.parallax-testimonials.style-4 img {
  width: auto;
  display: block;
  float: none;
  margin: 0 auto -35px auto;
  border-radius: 50%;
}
.parallax-testimonials.style-4 .testimonial-box {
  padding: 60px 35px 40px;
  margin: 0 15px;
  background-color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.parallax-testimonials.style-4 .testimonial-text {
  color: #5a5b5f;
  font-size: 21px;
  line-height: 34px;
  margin-bottom: 0;
  margin-top: 30px;
}
.parallax-testimonials.style-4 span {
  color: #979ba3;
}

/*-------------------------------------------------------*/
/* Partners
/*-------------------------------------------------------*/
.partners {
  padding: 30px 0;
}

/*-------------------------------------------------------*/
/* Call To Action
/*-------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 135px 0;
}
.call-to-action h2 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 15px;
}
.call-to-action.bg-gradient {
  background-image: url(../img/cta_bg.jpg);
}
.call-to-action.bg-gradient:before {
  opacity: .8;
  z-index: 0;
}

.cta-buttons a {
  margin: 5px;
}

/*-------------------------------------------------------*/
/* Call To Action Style-2
/*-------------------------------------------------------*/
.call-to-action.style-2 {
  padding: 56px 0;
}
.call-to-action.style-2 h2 {
  font-size: 28px;
  font-weight: 300;
  margin-top: 3px;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Call To Action Style-3
/*-------------------------------------------------------*/
.call-to-action.style-3 {
  padding: 90px 0;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  animation: color-animate 7s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.call-to-action.style-3 h2 {
  font-size: 42px;
  font-weight: 300;
  display: inline-block;
}
.call-to-action.style-3 i {
  font-size: 30px;
  color: #fff;
  margin-left: 10px;
}

/*-------------------------------------------------------*/
/* Call To Action Style-4
/*-------------------------------------------------------*/
.call-to-action.style-4 {
  background-image: url(../images/1.jpg);
  padding: 200px 0;
}
.call-to-action.style-4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: #191b1f;
}
.call-to-action.style-4 h2 {
  font-size: 54px;
}

/*-------------------------------------------------------*/
/* Onepage Slide
/*-------------------------------------------------------*/
.color-animate {
  animation: color-animate 7s infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  opacity: .8 !important;
}

@-webkit-keyframes color-animate {
  0% {
    background-color: #7b33d4;
  }
  50% {
    background-color: #1abc9c;
  }
  100% {
    background-color: #29c7c8;
  }
}
@-moz-keyframes color-animate {
  0% {
    background-color: #7b33d4;
  }
  50% {
    background-color: #1abc9c;
  }
  100% {
    background-color: #29c7c8;
  }
}
@-o-keyframes color-animate {
  0% {
    background-color: #7b33d4;
  }
  50% {
    background-color: #1abc9c;
  }
  100% {
    background-color: #29c7c8;
  }
}
@keyframes color-animate {
  0% {
    background-color: #7b33d4;
  }
  50% {
    background-color: #1abc9c;
  }
  100% {
    background-color: #29c7c8;
  }
}
/*-------------------------------------------------------*/
/* Intro
/*-------------------------------------------------------*/
.intro {
  padding: 100px 0;
}
.intro.style-2 {
  padding: 90px 0;
}
.intro.style-2 .subheading {
  font-size: 16px;
  color: #ec1d23;
}
.intro.style-3 .intro-heading {
  font-size: 42px;
  line-height: 56px;
  margin-bottom: 32px;
  margin-top: 67px;
}
.intro.style-4 .container-fluid {
  max-width: 1400px;
}
.intro.style-4 .row > div:first-child {
padding-right:50px;
}
.intro.style-4 h3{
	font-size:35px;
}
.intro.style-4 h3:after {
  content: "";
  display: block;
  width: 56px;
  border-bottom: 2px solid #ec1d23;
  margin: 12px 0 24px;
  z-index: 1;
  position: relative;
}

.intro-heading {
  font-size: 38px;
  line-height: 56px;
  margin-bottom: 28px;
}

p.intro-text {
    font-size: 15px;
    line-height: 36px;
    text-indent: 2em;
}

/*-------------------------------------------------------*/
/* iPad with Features
/*-------------------------------------------------------*/
.promo-section.style-2 {
  padding: 150px 0 50px;
}

.promo-device img {
  display: inline-block;
}

.features-text {
  padding-left: 100px;
}

.feature-right .features-text {
  padding-right: 100px;
  padding-left: 0;
}
.feature-right a {
  right: 0;
}

.features-icons {
  margin-top: 60px;
}

.features-icons .service-item-box {
  padding: 0;
  margin-bottom: 50px;
  background-color: transparent;
  position: relative;
}
.features-icons .service-item-box.feature-right {
  text-align: right;
}

/*-------------------------------------------------------*/
/* Pricing Tables
/*-------------------------------------------------------*/
.pricing-table {
  background-color: #fff;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid #e8ebee;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  position: relative;
}
.pricing-table.best {
  margin-top: -20px;
  padding-bottom: 44px;
  -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.07);
  -ms-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}
.pricing-table.best .pricing-title h3 {
  background-color: #ec1d23;
  padding: 36px 0 35px;
  border-bottom: none;
  color: #fff;
  top: -1px;
  margin-left: -1px;
  margin-right: -1px;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.pricing-title h3 {
  position: relative;
  font-size: 22px;
  line-height: 1;
  padding: 25px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e8ebee;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a5b5f;
}

.pricing-price {
  padding: 25px 0;
  font-family: "微软雅黑", sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #5a5b5f;
  border-bottom: 1px solid #e8ebee;
  line-height: 1.3;
}

.pricing-term {
  font-size: 13px;
  display: block;
  color: #babcc1;
  font-weight: normal;
}

.pricing-features {
  color: #979ba3;
  font-size: 14px;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e8ebee;
}
.pricing-features li:nth-child(2n) {
  background-color: #fafcfc;
}
.pricing-features li i {
  margin-right: 5px;
}
.pricing-features li i.red {
  color: #ec1d23;
}
.pricing-features li i.green {
  color: #1abc9c;
}

/*-------------------------------------------------------*/
/* Style-2
/*-------------------------------------------------------*/
.pricing-table.style-2 {
  padding: 56px 20px;
  background-color: #fafcfc;
}
.pricing-table.style-2.violet {
  border-top: 5px solid #7b33d4;
}
.pricing-table.style-2.green {
  border-top: 5px solid #1abc9c;
}
.pricing-table.style-2.red {
  border-top: 5px solid #ec1d23;
}
.pricing-table.style-2.blue {
  border-top: 5px solid #4693cc;
}
.pricing-table.style-2.red .btn {
  background-color: #ec1d23;
}
.pricing-table.style-2 .pricing-title h3 {
  border-bottom: none;
  padding: 0;
  font-size: 16px;
}
.pricing-table.style-2 .pricing-price {
  border-bottom: none;
  font-size: 65px;
  padding-bottom: 15px;
}
.pricing-table.style-2 .pricing-features li {
  border-bottom: none;
}
.pricing-table.style-2 .pricing-currency {
  display: inline-block;
  vertical-align: top;
  margin: 10px -10px 0 0px;
  font-size: 32px;
}

/*-------------------------------------------------------*/
/* Team
/*-------------------------------------------------------*/
.team-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.team-img.rounded {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.team-img.rounded .overlay {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.team-img img {
  width: 100%;
}
.team-img .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 27, 31, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-img .overlay .social-icons a {
  margin-bottom: 0;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-img .team-details {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}
.team-img:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.team-img:hover .social-icons a {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.team-member .team-title {
  font-size: 20px;
  margin-bottom: 0;
}
.team-member span {
  font-size: 14px;
  font-style: italic;
  font-family: "Merriweather", serif;
}

#owl-team-slider .team-wrap {
  padding: 0 15px;
}

#owl-team-slider .owl-pagination {
  position: relative;
  bottom: 0;
  margin-top: 40px;
}

/*-------------------------------------------------------*/
/* About Us Description
/*-------------------------------------------------------*/
.about-description h3 {
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 25px;
}
.about-description p {
  font-size: 16px;
  line-height: 32px;
}

/*-------------------------------------------------------*/
/* Image With Features
/*-------------------------------------------------------*/
.img-box-holder {
  overflow: hidden;
  position: absolute;
  height: 100%;
  padding: 0;
  top: 0;
}
.img-box-holder.right-align {
  right: 0;
  left: auto;
}

.img-box {
  background-image: url(../img/about_us.jpg);
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.img-box.service-1 {
  background-image: url(../img/service_1.jpg);
}

.img-box.service-2 {
  background-image: url(../img/service_2.jpg);
}

.img-box.service-3 {
  background-image: url(../img/service_3.jpg);
}

.text-box {
  padding: 20%;
}
.text-box.style-2 {
  padding: 10%;
}

.text-box-feature h4 {
  font-size: 18px;
}

/*-------------------------------------------------------*/
/* From Blog
/*-------------------------------------------------------*/
.from-blog .entry-item {
  padding: 16px;
  border: 1px solid #e8ebee;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
}
.from-blog .entry-wrap {
  border: none;
  padding: 20px 15px 10px;
}
.from-blog.no-thumbs .entry {
  padding: 35px 0;
  border-bottom: 1px solid #e8ebee;
}
.from-blog.no-thumbs .entry:last-child {
  border-bottom: none;
}
.from-blog.no-thumbs .entry-title {
  margin-bottom: 3px;
  font-size: 24px;
}

.entry-img {
  position: relative;
  overflow: hidden;
}
.entry-img img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.entry-meta {
  margin-bottom: 13px;
}

.entry-meta li {
  color: #acb0b8;
  font-size: 12px;
  font-family: "Merriweather", serif;
  font-style: italic;
  display: inline-block;
}
.entry-meta li:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #acb0b8;
  vertical-align: middle;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 7px 0 3px;
}
.entry-meta li:first-child:before {
  content: "";
  display: none;
  margin: 0;
}
.entry-meta li a {
  color: #acb0b8;
}
.entry-meta li a:hover {
  color: #ec1d23;
}

.entry-content p {
  margin-bottom: 13px;
}

.hover-scale img {
  -webkit-transition: all 3s ease-in-out !important;
  -moz-transition: all 3s ease-in-out !important;
  -ms-transition: all 3s ease-in-out !important;
  -o-transition: all 3s ease-in-out !important;
  transition: all 3s ease-in-out !important;
}

.hover-scale:hover img {
  -webkit-transform: scale(1.5, 1.5) !important;
  -moz-transform: scale(1.5, 1.5) !important;
  -ms-transform: scale(1.5, 1.5) !important;
  -o-transform: scale(1.5, 1.5) !important;
  transform: scale(1.5, 1.5) !important;
}

.read-more {
  text-transform: uppercase;
  font-size: 12px;
}

/*-------------------------------------------------------*/
/* Contact
/*-------------------------------------------------------*/
.parallax-contact {
  background-image: url(../img/contact_title_bg.jpg);
  padding: 120px 0;
}
.parallax-contact .contact-item p, .parallax-contact .contact-item span, .parallax-contact .contact-item a {
  color: #fff;
}

.contact-item {
  position: relative;
  padding-left: 36px;
  margin-top: 30px;
  font-size: 15px;
}
.contact-item p, .contact-item span {
  font-size: inherit;
}
.contact-item a:hover {
  color: #ec1d23;
}

.contact-icon {
  position: absolute;
  left: 0;
}
.contact-icon i {
  font-size: 18px;
  color: #979ba3;
  vertical-align: middle;
}

.parallax-contact input[type="text"],
.parallax-contact input[type="email"],
.parallax-contact textarea {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.parallax-contact input::-webkit-input-placeholder,
.parallax-contact textarea::-webkit-input-placeholder {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.parallax-contact input:-moz-placeholder,
.parallax-contact textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.parallax-contact input::-moz-placeholder,
.parallax-contact textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.parallax-contact input:-ms-input-placeholder,
.parallax-contact textarea:-ms-input-placeholder {
  color: #fff;
}

#contact-form .message {
  height: 50px;
  width: 100%;
  font-size: 13px;
  line-height: 50px;
  text-align: center;
  float: none;
  margin-top: 20px;
  display: none;
  color: #fff;
}

#contact-form .message.error {
  background-color: #ef5659;
}

#contact-form .message.success {
  background-color: #2cb8a5;
}

/*-------------------------------------------------------*/
/* Google Map
/*-------------------------------------------------------*/
.gmap {
  width: 100%;
  height: 450px;
}

/*-------------------------------------------------------*/
/* Who We Are / Vision / Results
/*-------------------------------------------------------*/
.feature-box {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
  -moz-box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
  -ms-box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
  box-shadow: 0px 1px 1px rgba(72, 78, 85, 0.1);
}

/*-------------------------------------------------------*/
/* Play Button
/*-------------------------------------------------------*/
.play-btn.hi-icon {
  display: inline-block;
  width: 120px;
  height: 120px;
  background-color: #ec1d23;
  position: relative;
  border: 15px solid rgba(255, 255, 255, 0.15);
  background-clip: padding-box;
  transition: transform 1s linear;
  -moz-transition: transform 1s linear;
  -webkit-transition: transform 1s linear;
  -o-transition: transform 1s linear;
}

.play-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin: -11px 0 0 -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #ffffff;
}

/*Hi icon Effect 8*/
.icon-effect-8 .hi-icon {
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
}

.icon-effect-8 .hi-icon:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.icon-effect-8 .hi-icon:hover {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
}

.icon-effect-8 .hi-icon:hover:after {
  -webkit-animation: sonarEffect 1.3s ease-out 75ms;
  -moz-animation: sonarEffect 1.3s ease-out 75ms;
  animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.3);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    opacity: 0;
  }
}
/*-------------------------------------------------------*/
/* Sidenav Demo
/*-------------------------------------------------------*/
.vertical-nav .container {
  max-width: 100%;
}

.heading-bg-color {
  width: 100%;
  background-color: #ec1d23;
  padding: 210px 0;
  font-size: 72px;
  margin-bottom: 0;
}

svg * {
  fill: none;
  stroke: currentColor;
}

.svg-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
}

/*5 columns*/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 767px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.process-wrap i {
  font-size: 40px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #f3f5f8;
  color: #ec1d23;
}

.process-wrap h3 {
  font-size: 16px;
  margin: 30px 0 20px;
}

.process-line {
  height: 3px;
  background-color: #f3f5f8;
  width: 100%;
  position: relative;
  top: 60px;
  max-width: calc(100% - 200px);
  left: 100px;
}

/*-------------------------------------------------------*/
/* Tabs Slider
/*-------------------------------------------------------*/
.showcases-tabs {
  padding: 150px 0 120px;
}

.flex-control-nav.flexslider-tabs-nav {
  position: relative;
  bottom: auto;
  margin-bottom: 48px;
}
.flex-control-nav.flexslider-tabs-nav li {
  cursor: pointer;
  background-color: #32353a;
  padding: 11px 22px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 3px;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.flex-control-nav.flexslider-tabs-nav li:hover, .flex-control-nav.flexslider-tabs-nav li.flex-active {
  background-color: #ec1d23;
}

.video-section {
  padding: 162px 0;
}

/*-------------------------------------------------------*/
/* Landing
/*-------------------------------------------------------*/
#landing .btn {
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}

#landing .btn-lg {
  font-size: 16px;
}

#landing .btn-md {
  font-size: 15px;
}

#landing .btn-sm {
  font-size: 15px;
  padding: 5px 23px;
}

#landing .btn.btn-icon > i {
  line-height: 51px;
}

#landing .btn.btn-md.btn-icon > i {
  line-height: 45px;
}

/*-------------------------------------------------------*/
/* Hero Banner
/*-------------------------------------------------------*/
.hero-wrap {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero-wrap .hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/landing_hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hero-holder {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-message {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero-message h1 {
  font-size: 90px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  display: inline-block;
}

.hero-subtitle {
  font-family: "Open Sans", sans-serif;
  text-transform: none;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  font-size: 20px;
  max-width: 800px;
  margin: 15px auto 40px;
}

.btn-holder > a {
  margin: 2px;
}

.typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------------------------------------*/
/* Core Features
/*-------------------------------------------------------*/
#features {
  padding: 80px 0 80px;
}

/*-------------------------------------------------------*/
/* Showcases
/*-------------------------------------------------------*/
#showcases-slider .gallery-cell {
  width: 59.9%;
  margin: 0 20px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
}

#showcases-slider .gallery-cell.is-selected {
  -webkit-box-shadow: 0px 20px 50px 0px rgba(25, 27, 31, 0.37);
  -moz-box-shadow: 0px 20px 50px 0px rgba(25, 27, 31, 0.37);
  -ms-box-shadow: 0px 20px 50px 0px rgba(25, 27, 31, 0.37);
  box-shadow: 0px 20px 50px 0px rgba(25, 27, 31, 0.37);
  -webkit-transition: box-shadow 0.5s ease-in-out;
  -moz-transition: box-shadow 0.5s ease-in-out;
  -ms-transition: box-shadow 0.5s ease-in-out;
  -o-transition: box-shadow 0.5s ease-in-out;
  transition: box-shadow 0.5s ease-in-out;
}

#showcases-slider .flickity-viewport {
  overflow: visible;
}

/*-------------------------------------------------------*/
/* Page Title
/*-------------------------------------------------------*/
.page-title {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  display: block;
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}
.page-title .container {
  height: 650px;
}

.title-holder {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.title-text {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.title-text h1 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
}

.breadcrumb {
  width: auto;
  background-color: transparent;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
}

.page-title .breadcrumb a,
.page-title .breadcrumb > .active {
  color: #fff;
}

.page-title .breadcrumb > li + li:before {
  color: #fff;
  opacity: 0.5;
  padding: 0 1px 0 5px;
}

/*-------------------------------------------------------*/
/* Style-2
/*-------------------------------------------------------*/
.page-title.style-2 {
  background-color: #fafcfc;
  padding: 46px 0;
}
.page-title.style-2 .container {
  height: auto;
}
.page-title.style-2 .title-text h1 {
  margin: 0;
  font-size: 28px;
  color: #5a5b5f;
  font-weight: normal;
}
.page-title.style-2 .breadcrumb {
  position: absolute;
  right: 0;
  width: auto;
  background-color: transparent;
  top: 50%;
  padding: 0;
  margin: -10px 0 0 0;
}
.page-title.style-2 .breadcrumb a, .page-title.style-2 .breadcrumb > li + li:before {
  color: #979ba3;
}
.page-title.style-2 .breadcrumb > .active, .page-title.style-2 .breadcrumb a:hover {
  color: #5a5b5f;
}

/*-------------------------------------------------------*/
/* About Us
/*-------------------------------------------------------*/
.quote-mission {
  padding: 200px 0;
}
.quote-mission .parallax {
  background-image: url(../images/quote_mission.jpg);
}
.quote-mission blockquote {
  font-size: 60px;
  line-height: 1.5;
  padding: 0;
  font-family: "微软雅黑", serif;
  font-weight:bold;
  color:#EC1D23;
}

/*-------------------------------------------------------*/
/* Contact
/*-------------------------------------------------------*/
.icon-boxes.parallax-bg {
  padding: 140px 0 90px;
}

.service-item-box.style-1 .email {
  line-height: 26px;
  color: #979ba3;
}

/*-------------------------------------------------------*/
/* 404
/*-------------------------------------------------------*/
.page-404 h1 {
  font-size: 200px;
  line-height: 1.2;
}

.page-404 a,
.page-404 p {
  font-size: 14px;
}

/*-------------------------------------------------------*/
/* Blog Standard
/*-------------------------------------------------------*/
.entry-wrap {
  position: relative;
  background-color: #fff;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  border: 1px solid #e8ebee;
  padding: 30px;
}

.entry-title {
  font-size: 20px;
  margin-bottom: 13px;
  line-height: 32px;
}
.entry-title a:hover {
  color: #ec1d23;
}

.blog-standard .post-content .entry-title {
  font-size: 22px;
}
.blog-standard .post-content .entry-img, .blog-standard .post-content .entry-slider, .blog-standard .post-content .entry-video {
  position: relative;
  overflow: hidden;
}

.blog-standard .entry-item {
  margin-bottom: 7%;
  position: relative;
}

/* Quote Post
-------------------------------------------------------*/
.entry .blockquote-style-1 a {
  color: #979ba3;
}
.entry .blockquote-style-1 a:hover {
  color: #ec1d23;
}

/* Video Post
-------------------------------------------------------*/
.entry-video iframe {
  width: 100%;
  display: block;
  border: 0;
}

/*-------------------------------------------------------*/
/* Pagination
/*-------------------------------------------------------*/
.pagination {
  margin: 0 auto;
  border-radius: 0;
  display: block;
}

.pagination a,
.pagination span {
  background-color: #fff;
  padding: 8px;
  font-size: 14px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #e8ebee;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pagination a {
  color: #5a5b5f;
}
.pagination a:hover {
  background-color: #ec1d23;
  border-color: transparent;
  color: #fff;
}
.pagination a > i {
  font-size: 16px;
}

.pagination .current {
  color: #ec1d23;
}

/*-------------------------------------------------------*/
/* Sidebar
/*-------------------------------------------------------*/
.left-sidebar {
  float: left;
}

.sidebar:not(.left-sidebar) {
  padding-left: 3.2%;
}

.sidebar .widget-title {
  margin-bottom: 30px;
  font-size: 20px;
}

.sidebar .widget {
  margin-top: 50px;
  margin-bottom: 0;
}

.list-dividers > li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #e8ebee;
}

.sidebar .widget:first-child {
  margin-top: 0;
}

.sidebar .widget:last-child {
  margin-bottom: 30px;
}

.sidebar .widget > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar .widget > ul > li:first-child {
  padding-top: 0;
}

.widget.categories ul li.active-cat a {
  color: #5a5b5f;
}

.widget.categories ul li a {
  color: #979ba3;
}
.widget.categories ul li a:hover {
  color: #ec1d23;
}

.widget.categories li span,
.widget.filter-by-size .count {
  right: 0;
  position: absolute;
  color: #979ba3;
}

/* Entry List
-------------------------------------------------------*/
.entry-list ul > li {
  border-bottom: 1px solid #e8ebee;
  border-top: 0;
}
.entry-list ul > li a:hover {
  color: #ec1d23;
}
.entry-list li .entry-meta {
  margin-top: 0;
  margin-bottom: 0;
}
.entry-list ul > li {
  padding: 12px 0;
}
.entry-list ul > li:first-child {
  padding-top: 0 !important;
}
.entry-list ul > li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.entry-list ul > li .entry-title {
  font-size: 14px;
  margin-bottom: 1px;
  font-weight: normal;
  line-height: 1.5;
}
.entry-list ul > li .entry-meta li:first-child {
  padding-left: 0;
}
.entry-list.w-thumbs ul > li {
  padding: 20px 0;
}

/* Sidebar Search
-------------------------------------------------------*/
.search-button {
  position: absolute;
  top: 0;
  height: 100%;
  right: 10px;
  background-color: transparent;
  border: none;
}

.search-button i {
  width: 14px;
  font-size: 13px;
}
.search-button i:hover {
  color: #191b1f;
}

/* Tags
-------------------------------------------------------*/
.tags a {
  padding: 10px 12px;
  line-height: 1;
  margin: 0 6px 6px 0;
  font-size: 12px;
  color: #979ba3;
  display: inline-block;
  float: left;
  border: 1px solid #e8ebee;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tags a:hover {
  background-color: #ec1d23;
  color: #fff;
  border-color: transparent;
}

/*-------------------------------------------------------*/
/* Blog Single
/*-------------------------------------------------------*/
.post-single .post-content p {
  margin-bottom: 30px;
}

.entry-content .entry-tags span,
.entry-share span {
  display: inline-block;
  margin-right: 10px;
  font-size: 11px;
  line-height: 32px;
  font-family: "微软雅黑", sans-serif;
  color: #5a5b5f;
}

.entry-content .entry-tags a {
  margin: 2px;
  padding: 7px 12px;
}

.entry-share {
  padding: 20px 0;
  border-top: 1px solid #e8ebee;
  border-bottom: 1px solid #e8ebee;
}
.entry-share .social-icons {
  margin-top: 0;
  display: inline-block;
}
.entry-share .social-icons a {
  margin-bottom: 3px;
  height: 30px;
  width: 30px;
  margin-right: 1px;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.entry-author-box {
  padding: 40px 0 30px;
  border-bottom: 1px solid #e8ebee;
  position: relative;
}

.entry-author-box .author-img {
  display: block;
  float: left;
  margin: 5px 25px 20px 0;
}

.entry-author-box h6.author-name,
.entry-comments h6.comment-author {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
}

.author-info span {
  font-size: 13px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.related-posts h4 {
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}

.related-posts .entry {
  margin: 20px 0 40px;
}

.entry-comments .comment-avatar {
  position: absolute;
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.entry-comments .comment-content {
  padding-left: 100px;
  margin-top: 5px;
}

.entry-comments .comment-author {
  color: #5a5b5f;
  font-family: "微软雅黑", sans-serif;
}

.entry-comments span {
  display: inline-block;
  margin-right: 10px;
}

.entry-comments span:last-of-type {
  margin-bottom: 10px;
}

.entry-comments .comment-content span a {
  font-size: 12px;
  color: #acb0b8;
}

.entry-comments .comment-content p {
  margin-bottom: 10px;
}

.comment-reply {
  padding-left: 10%;
}

.comment-body {
  padding: 30px;
  border: 1px solid #e8ebee;
  margin-bottom: 30px;
  background-color: #fafcfc;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.blog-masonry .entry-item {
  margin-bottom: 30px;
}

/*-------------------------------------------------------*/
/* Portfolio
/*-------------------------------------------------------*/
.works-grid.grid-5-col .work-item {
  width: 20%;
}

.works-grid.grid-4-col .work-item {
  width: 25%;
}

.works-grid.grid-3-col .work-item {
  width: 33.333%;
}

.works-grid.grid-2-col .work-item {
  width: 50%;
}

.works-grid.small-gutter {
  margin-left: 10px;
  margin-right: 10px;
}

.works-grid.small-gutter .work-item {
  padding: 0 3px;
}

.works-grid.gutter .work-item {
  padding: 0 15px;
}

.works-grid.gutter {
  margin-left: 15px;
  margin-right: 15px;
}

.works-grid.no-gutter .work-item {
  padding: 0;
}

.works-grid.small-gutter .work-container {
  margin-bottom: 6px;
}

.works-grid.no-gutter .work-img {
  -webkit-border-radius: 0;
  border-radius: 0;
}

.works-grid.no-gutter .work-container,
.related-products .work-container,
#owl-featured-works .work-container {
  margin: 0;
}

.works-grid.with-title .work-description {
  position: relative;
  bottom: auto;
  padding: 24px;
  text-align: center;
  border: 1px solid #e8ebee;
}

.works-grid.with-title .work-item:hover .work-img img {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.works-grid.with-title .work-item:hover .project-icons {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
}

.portfolio-filter {
  list-style: none;
  margin-bottom: 50px;
  cursor: default;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.portfolio-filter a {
  display: inline-block;
  font-family: "微软雅黑", sans-serif;
  margin: 0 15px;
  color: #979ba3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.portfolio-filter a.active, .portfolio-filter a:hover {
  color: #ec1d23;
}

.work-container {
  margin-bottom: 30px;
  overflow: hidden;
}

.work-item {
  position: relative;
}
.work-item img {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.work-item .work-description h2 {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0;
}
.work-item .work-description h2 a:hover {
  color: #ec1d23;
}
.work-item .work-description > span > a {
  color: #979ba3;
  font-size: 12px;
}
.work-item .work-description > span > a:hover {
  color: #ec1d23;
}
.work-item .work-description i {
  font-size: 40px;
}
.work-item:hover .work-overlay {
  opacity: 1;
  visibility: visible;
}
.work-item:hover .work-img img {
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
}
.work-item:hover .work-description {
  bottom: 0;
}
.work-item:hover .project-icons {
  position: absolute;
  top: 40%;
  margin-top: -20px;
}
.work-item:hover .lightbox-icon:before, .work-item:hover .lightbox-icon:after {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.work-item.hover-2 .work-description {
  top: 50%;
  bottom: auto;
  padding: 0 15px;
  color: #fff;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.work-item.hover-2 .work-description h2 {
  position: relative;
  bottom: -100px;
  color: #fff;
  font-size: 18px;
  -webkit-transition: bottom 0.3s ease-in-out 0.1s;
  -moz-transition: bottom 0.3s ease-in-out 0.1s;
  -ms-transition: bottom 0.3s ease-in-out 0.1s;
  -o-transition: bottom 0.3s ease-in-out 0.1s;
  transition: bottom 0.3s ease-in-out 0.1s;
}
.work-item.hover-2 .work-description span {
  position: relative;
  color: #fff;
  bottom: -100px;
  font-size: 13px;
  font-style: italic;
  -webkit-transition: bottom 0.3s ease-in-out;
  -moz-transition: bottom 0.3s ease-in-out;
  -ms-transition: bottom 0.3s ease-in-out;
  -o-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}
.work-item.hover-2:hover .work-description h2 {
  bottom: 0;
  -webkit-transition: bottom 0.3s ease-in-out 0.1s;
  -moz-transition: bottom 0.3s ease-in-out 0.1s;
  -ms-transition: bottom 0.3s ease-in-out 0.1s;
  -o-transition: bottom 0.3s ease-in-out 0.1s;
  transition: bottom 0.3s ease-in-out 0.1s;
}
.work-item.hover-2:hover .work-description span {
  bottom: 0;
  -webkit-transition: bottom 0.3s ease-in-out 0.2s;
  -moz-transition: bottom 0.3s ease-in-out 0.2s;
  -ms-transition: bottom 0.3s ease-in-out 0.2s;
  -o-transition: bottom 0.3s ease-in-out 0.2s;
  transition: bottom 0.3s ease-in-out 0.2s;
}
.work-item.hover-2:hover .work-img img, .work-item.hover-3:hover .work-img img {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.work-item.hover-3 .work-description {
  bottom: 0;
  background-color: transparent;
  padding: 30px;
}
.work-item.hover-3 .work-description h3 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.work-item.hover-3 .work-description span {
  color: #fff;
  font-size: 13px;
  font-style: italic;
}

.work-description {
  padding: 12px 20px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  display: block;
  left: 0;
  top: auto;
  bottom: -65px;
  z-index: 3;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.work-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.work-img.rounded {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.work-img > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.work-overlay {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-icons {
  position: absolute;
  top: 20%;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.project-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 14px;
  margin: 0 3px;
  line-height: 40px;
  text-align: center;
  color: #5a5b5f;
  background-color: #fff;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-icons a:hover {
  color: #fff;
  background-color: #ec1d23;
}

.works-grid.with-title .work-item:hover .project-icons {
  top: calc(50% - 44px);
}

.lightbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lightbox-icon:before {
  content: "";
  height: 1px;
  display: block;
  width: 30px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.lightbox-icon:after {
  content: "";
  width: 1px;
  display: inline-block;
  height: 30px;
  background-color: #fff;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

/*-------------------------------------------------------*/
/* Masonry
/*-------------------------------------------------------*/
.masonry-grid {
  width: 100%;
}
.masonry-grid .work-item {
  width: 50%;
  float: left;
}
.masonry-grid .work-item.quarter {
  width: 25%;
}

.dark-gradient:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000', GradientType=0 );
}

.frame-holder {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  z-index: 2;
  overflow: hidden;
}
.frame-holder div {
  background-color: #fff;
}
.frame-holder .top-border, .frame-holder .bottom-border, .frame-holder .left-border, .frame-holder .right-border {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.frame-holder .top-border, .frame-holder .bottom-border {
  height: 2px;
  width: 100%;
}
.frame-holder .left-border, .frame-holder .right-border {
  height: 100%;
  width: 2px;
}
.frame-holder .top-border, .frame-holder .left-border {
  top: 0;
  left: 0;
}
.frame-holder .left-border {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.frame-holder .right-border {
  right: 0;
  top: 0;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.frame-holder .bottom-border {
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.frame-holder .top-border {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.work-item.hover-3:hover .top-border,
.work-item.hover-3:hover .left-border,
.work-item.hover-3:hover .bottom-border,
.work-item.hover-3:hover .right-border {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*-------------------------------------------------------*/
/* Single Project
/*-------------------------------------------------------*/
.project-description {
  padding-left: 5%;
}

/*-------------------------------------------------------*/
/* Style-2
/*-------------------------------------------------------*/
.project-info.style-2 .product_meta span {
  display: inline-block;
  padding: 0 10px;
}

.items-grid .first-in-row {
  clear: left;
}

.items-grid .col-xs-6:nth-child(2n + 3) {
  clear: left;
}

.items-grid .col-xs-4:nth-child(3n + 4) {
  clear: left;
}

.items-grid .col-xs-3:nth-child(4n + 5) {
  clear: left;
}

.items-grid .col-xs-2:nth-child(6n + 7) {
  clear: left;
}

.items-grid .col-xs-1:nth-child(12n + 13) {
  clear: left;
}

@media (min-width: 768px) {
  .items-grid .col-xs-6:nth-child(2n + 3) {
    clear: none;
  }

  .items-grid .col-xs-4:nth-child(3n + 4) {
    clear: none;
  }

  .items-grid .col-xs-3:nth-child(4n + 5) {
    clear: none;
  }

  .items-grid .col-xs-2:nth-child(6n + 7) {
    clear: none;
  }

  .items-grid .col-xs-1:nth-child(12n + 13) {
    clear: none;
  }

  .items-grid .col-sm-6:nth-child(2n + 3) {
    clear: left;
  }

  .items-grid .col-sm-4:nth-child(3n + 4) {
    clear: left;
  }

  .items-grid .col-sm-3:nth-child(4n + 5) {
    clear: left;
  }

  .items-grid .col-sm-2:nth-child(6n + 7) {
    clear: left;
  }

  .items-grid .col-sm-1:nth-child(12n + 13) {
    clear: left;
  }
}
@media (min-width: 992px) {
  .items-grid .col-sm-6:nth-child(2n + 3) {
    clear: none;
  }

  .items-grid .col-sm-4:nth-child(3n + 4) {
    clear: none;
  }

  .items-grid .col-sm-3:nth-child(4n + 5) {
    clear: none;
  }

  .items-grid .col-sm-2:nth-child(6n + 7) {
    clear: none;
  }

  .items-grid .col-sm-1:nth-child(12n + 13) {
    clear: none;
  }

  .items-grid .col-md-6:nth-child(2n + 3) {
    clear: left;
  }

  .items-grid .col-md-4:nth-child(3n + 4) {
    clear: left;
  }

  .items-grid .col-md-3:nth-child(4n + 5) {
    clear: left;
  }

  .items-grid .col-md-2:nth-child(6n + 7) {
    clear: left;
  }

  .items-grid .col-md-1:nth-child(12n + 13) {
    clear: left;
  }
}
@media (min-width: 1200px) {
  .items-grid .col-md-6:nth-child(2n + 3) {
    clear: none;
  }

  .items-grid .col-md-4:nth-child(3n + 4) {
    clear: none;
  }

  .items-grid .col-md-3:nth-child(4n + 5) {
    clear: none;
  }

  .items-grid .col-md-2:nth-child(6n + 7) {
    clear: none;
  }

  .items-grid .col-md-1:nth-child(12n + 13) {
    clear: none;
  }

  .items-grid .col-lg-6:nth-child(2n + 3) {
    clear: left;
  }

  .items-grid .col-lg-4:nth-child(3n + 4) {
    clear: left;
  }

  .items-grid .col-lg-3:nth-child(4n + 5) {
    clear: left;
  }

  .items-grid .col-lg-2:nth-child(6n + 7) {
    clear: left;
  }

  .items-grid .col-lg-1:nth-child(12n + 13) {
    clear: left;
  }
}
/*-------------------------------------------------------*/
/* Promo Banners
/*-------------------------------------------------------*/
.promo-banner a {
  display: block;
  background: #191b1f;
}
.promo-banner img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  backface-visibility: hidded;
  -webkit-backface-visibility: hidden;
}
.promo-banner .work-overlay {
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}
.promo-banner a:hover img {
  opacity: 0.6;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.promo-inner {
  position: absolute;
  width: 100%;
  text-align: center;
}

.promo-inner h2 {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}

/*-------------------------------------------------------*/
/* New Arrivals
/*-------------------------------------------------------*/
.product-item {
  margin-bottom: 50px;
}

.product-img img {
  overflow: hidden;
  min-width: 99.9%;
}

.product-img > a {
  display: block;
  position: relative;
}

.product-label {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-label > span {
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 7px;
  letter-spacing: 0.05em;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.product-label .sale {
  border: 2px solid #ec1d23;
  color: #ec1d23;
}

.sold-out {
  background-color: rgba(255, 255, 255, 0.9);
  color: #5a5b5f;
  padding: 15px 0;
  display: block;
  text-align: center;
  width: 100%;
  z-index: 5;
  text-transform: uppercase;
  font-weight: bold;
  cursor: default;
  font-size: 11px;
  font-family: "微软雅黑", sans-serif;
  letter-spacing: 0.05em;
}

.product-details {
  position: relative;
  text-align: center;
}

.product-details > h3,
.product-list-widget a > span,
.table.shop_table tr td.product-name a {
  line-height: 14px;
  margin-bottom: 3px;
  font-family: "微软雅黑", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.product-details .product-title,
.product-list-widget a {
  line-height: 1.5;
  color: #5a5b5f;
}
.product-details .product-title:hover,
.product-list-widget a:hover {
  color: #ec1d23;
}

.price,
.amount {
  font-family: "微软雅黑", sans-serif;
  text-transform: uppercase;
}

.price del {
  color: #979ba3;
  margin-right: 10px;
}

.price ins {
  text-decoration: none;
  color: #ec1d23;
  font-weight: bold;
}

.product-img .back-img {
  position: absolute;
  top: 0;
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-img.hover-1 {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.product-img.hover-1:hover .back-img, .product-img.hover-1:hover .product-actions {
  opacity: 1;
  visibility: visible;
}
.product-img.hover-1:hover .product-quickview {
  bottom: 0;
}
.product-img.hover-1 .product-quickview {
  position: absolute;
  bottom: -26px;
  width: 100%;
  background-color: #191b1f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  line-height: 26px;
  color: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-img.hover-1 .product-quickview:hover {
  background-color: #ec1d23;
}

.rating:before {
  font-family: 'FontAwesome';
  content: '\f005 \f005 \f005 \f005 \f006';
  letter-spacing: 0.25em;
  font-size: 12px;
  color: #ffc63e;
  font-style: normal;
}

/*-------------------------------------------------------*/
/* Benefits List
/*-------------------------------------------------------*/
.benefits-list li {
  padding: 8px 0;
}
.benefits-list li:first-child {
  padding-top: 0;
}
.benefits-list li:last-child {
  padding-bottom: 0;
}
.benefits-list i {
  color: #ec1d23;
  display: inline-block;
  margin-right: 10px;
}

.product-img.hover-1 .product-actions {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-img.hover-1 .product-actions a {
  color: #5a5b5f;
  display: inline-block;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 2px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.product-img.hover-1 .product-actions a:hover {
  background-color: #ec1d23;
  color: #fff;
}
.product-img.hover-1 .product-actions i {
  font-size: 14px;
}

/*-------------------------------------------------------*/
/* Promo Slider
/*-------------------------------------------------------*/
.shop-promo-slider img {
  width: auto !important;
}

.shop-promo-slider .row > div:last-child {
  padding-top: 14%;
}

.shop-promo-slider p {
  font-size: 18px;
  line-height: 30px;
}

/*-------------------------------------------------------*/
/* Shop Items Slider
/*-------------------------------------------------------*/
.shop-items-slider .product-item {
  padding: 0 15px;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Catalogue
/*-------------------------------------------------------*/
/* Filter
-------------------------------------------------------*/
.shop-filter,
.view-mode {
  float: left;
}

.shop-filter {
  margin-bottom: 30px;
  width: 100%;
}
.shop-filter .view-mode, .shop-filter .filter-show {
  margin-top: 5px;
}

.view-mode .grid,
.view-mode .list {
  background: url(../img/shop/shop_icons.png) 0 0 no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  cursor: pointer;
  margin-left: 10px;
  margin-bottom: 2px;
  vertical-align: middle;
}

.view-mode .grid.grid-active {
  background-position: 0 -78px;
}

.view-mode .grid {
  background-position: 0 -104px;
}

.view-mode .list.list-active {
  background-position: 0 -130px;
}

.view-mode .list {
  background-position: 0 -156px;
}

.filter-show {
  margin-left: 40px;
  float: left;
}
.filter-show a {
  color: #979ba3;
}
.filter-show a:hover {
  color: #ec1d23;
}
.filter-show a.active {
  color: #5a5b5f;
}
.filter-show a:nth-child(2):before {
  content: '';
}
.filter-show a:before {
  content: '/';
  margin: 0 3px 0 1px;
  color: #979ba3;
}

.ecommerce-ordering {
  float: right;
  width: 31%;
}
.ecommerce-ordering select {
  margin-bottom: 0;
}

/* Grid / List View
-------------------------------------------------------*/
.product-grid .product-list-details,
.product-grid .product-details .rating,
.product-list .product-img.hover-1 .product-actions {
  display: none;
}

.list-view .product-list {
  width: 100%;
}

.product-list .product-img {
  width: 32%;
  float: left;
  margin-bottom: 0;
  margin-right: 3%;
}
.product-list .product-item {
  float: left;
  width: 100%;
}
.product-list .product-details, .product-list .product-list-details {
  float: left;
  width: 65%;
  text-align: left;
}
.product-list .product-details > h3 {
  font-size: 18px;
}
.product-list .price {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid #e8ebee;
  border-bottom: 1px solid #e8ebee;
  font-size: 18px;
  float: left;
  width: 100%;
}
.product-list .rating {
  float: left;
}

.product-list .price del,
.single-product .price del {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  float: left;
}

.product-list .price ins,
.single-product .price ins {
  display: inline-block;
  float: left;
}

.product-list .product-description,
.single-product .product-description {
  margin: 25px 0;
}

.rating a {
  color: #979ba3;
  margin-left: 7px;
}

.icon-add-to-wishlist {
  display: inline-block;
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
}
.icon-add-to-wishlist a {
  color: #5a5b5f;
  background-color: #f0f5f5;
  display: block;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.icon-add-to-wishlist a:hover {
  background-color: #ec1d23;
  color: #fff;
}

/* Product List Widget
-------------------------------------------------------*/
.product-list-widget img {
  width: 84px;
  float: left;
  margin-right: 17px;
  display: inline-block;
}
.product-list-widget li {
  position: relative;
  overflow: hidden;
  padding: 20px 0 !important;
  border-bottom: 1px solid #e8ebee;
}
.product-list-widget li:first-child {
  padding-top: 0 !important;
}
.product-list-widget li:last-child {
  padding-bottom: 0 !important;
  border: 0 !important;
}
.product-list-widget .product-title {
  display: block;
  margin-bottom: 5px;
}

/* Price Slider
-------------------------------------------------------*/
.ui-slider-horizontal {
  cursor: pointer;
  position: relative;
  height: 3px;
  background: #ccd0d8;
  margin-bottom: 20px;
}

.filter-by-price .ui-slider .ui-slider-handle {
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: 13px;
  height: 13px;
  background: #5a5b5f;
  top: -5px;
  margin-left: -13px;
}

.filter-by-price .ui-slider span:first-of-type {
  margin-left: 0;
}

.ui-slider .ui-slider-range {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  background-color: #ec1d23;
  height: 3px;
}

.filter-by-price p {
  margin-bottom: 0;
}
.filter-by-price input#amount {
  width: 40%;
  padding: 0;
  font-size: 13px;
  color: #5a5b5f;
  border: none;
  background-color: transparent;
  height: auto;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  line-height: 1;
  font-family: "微软雅黑", sans-serif;
  vertical-align: middle;
}
.filter-by-price label {
  font-weight: normal;
  line-height: 33px;
  margin-bottom: 0;
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  color: #979ba3;
}
.filter-by-price p > a {
  float: right;
  padding: 7px 15px;
}

.price-filter {
  margin-top: 7px;
  float: left;
}

/* Color Swatches
-------------------------------------------------------*/
.color-swatches a,
.size-options a {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 9px;
  float: left;
}

.color-swatches li:last-child a {
  margin-right: 0;
}

.color-swatches a.selected {
  border: 2px solid #5a5b5f;
}

.swatch-red {
  background-color: #ec1d23;
}

.swatch-green {
  background-color: #1abc9c;
}

.swatch-grey {
  background-color: #f5f5f5;
}

.swatch-black {
  background-color: #000;
}

.swatch-white {
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.swatch-brown {
  background-color: #c2a191;
}

/*-------------------------------------------------------*/
/* Single Product
/*-------------------------------------------------------*/
#gallery-main .gallery-cell {
  margin-bottom: 10px;
}

.gallery-cell,
#gallery-main img {
  width: 100%;
}

.gallery-cell a i {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 24px;
  color: #979ba3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery-thumbs {
  margin: 0 -5px;
}

.gallery-thumbs .gallery-cell {
  width: 25%;
  float: left;
  padding: 0 5px;
}

.gallery-thumbs img {
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-thumbs .is-nav-selected img,
.gallery-thumbs img:hover {
  opacity: 1;
}

.single-product .product-description-wrap {
  padding-left: 30px;
}

.product-description-wrap h1 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.single-product .rating a:before {
  margin-right: 15px;
}

.single-product .price {
  margin-top: 25px;
  display: block;
}

.single-product .price del,
.single-product .price ins {
  font-size: 18px;
  float: none;
}

.select-options {
  padding: 30px 0 14px;
  border-top: 1px solid #e8ebee;
  border-bottom: 1px solid #e8ebee;
}

.single-product .quantity.buttons_added {
  float: left;
}

.quantity.buttons_added {
  white-space: nowrap;
  position: relative;
  display: inline-block;
}
.quantity.buttons_added .minus, .quantity.buttons_added .plus {
  width: 32px;
  height: 47px;
  background-color: #fff;
  border: 2px solid #e8ebee;
  font-size: 22px;
  float: left;
}
.quantity.buttons_added .minus {
  border-right: 0;
}
.quantity.buttons_added .plus {
  border-left: 0;
}

.quantity .input-text.qty {
  width: 47px;
  height: 47px;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
  float: left;
  line-height: 1;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.product-actions li {
  margin-right: 10px;
  display: inline-block;
  float: left;
}

.single-product .product-actions {
  padding: 30px 0;
  border-bottom: 1px solid #e8ebee;
}

.single-product .icon-add-to-wishlist {
  height: 47px;
  line-height: 47px;
  width: 47px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.single-product .product_meta {
  padding: 30px 0;
}

.product_meta span {
  display: block;
  line-height: 28px;
  color: #979ba3;
}

.product_meta span a {
  color: #5a5b5f;
}
.product_meta span a:hover {
  color: #ec1d23;
}

.single-product .socials-share {
  padding: 12px 0;
  border-top: 1px solid #e8ebee;
  border-bottom: 1px solid #e8ebee;
  margin-bottom: 30px;
}

.single-product .socials-share .social-icons {
  float: right;
  margin-top: 0;
}

.single-product .socials-share span,
.project-info .socials-share span {
  display: inline-block;
  margin-top: 6px;
  margin-right: 10px;
}

.socials-share .social-icons {
  display: inline-block;
}

.single-product .socials-share .social-icons a,
.project-info .socials-share .social-icons a {
  background-color: transparent;
  margin-bottom: 0;
}

.single-product .tab-content #tab-info .table > thead > tr {
  border-bottom: 1px solid #e8ebee;
}

.single-product .tab-content #tab-info tr th {
  width: 25%;
  background-color: #fafcfc;
  padding-left: 15px;
}

.single-product .tab-content #tab-info tr td {
  padding-left: 15px;
}

.single-product .reviews-lists li {
  margin-top: 20px;
}
.single-product .reviews-lists li:first-child {
  margin-top: 0;
}

.single-product .review-content p:first-child {
  color: #5a5b5f;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Cart Page
/*-------------------------------------------------------*/
.shopping-cart h2,
.checkout h2 {
  font-size: 18px;
  font-weight: normal;
}

.cart_totals h2,
.order-review-wrap h2 {
  margin-bottom: 15px;
}

.table.shop_table.cart {
  margin-bottom: 0;
}

.table.shop_table.cart thead tr th,
.table.shop_table.cart tr {
  border-bottom: 1px solid #e8ebee;
}

.table.shop_table img {
  width: 100px;
  height: auto;
  min-width: 50px;
}

.table.shop_table .product-thumbnail {
  width: 95px;
  padding: 20px 8px 20px 0;
}

.table.shop_table td.product-name {
  width: 30%;
}

.table.shop_table td.product-quantity {
  min-width: 132px;
}

.table.shop_table .product-name > a,
.table.shop_table .product-price > span,
.table.shop_table .product-subtotal > span {
  color: #5a5b5f;
}

.table.shop_table .product-name > a:hover {
  color: #ec1d23;
}

.table.shop_table .product-remove {
  text-align: right;
  padding-right: 0;
  min-width: 30px;
}

.product-remove .remove {
  display: inline-block;
  background: url(../img/shop/shop_icons.png) 0 -26px no-repeat;
  width: 20px;
  height: 20px;
  background-color: #fafcfc;
}

.product-remove .remove:hover {
  background-position: 0 -52px;
  background-color: #ec1d23;
}

.table.shop_table tr td {
  vertical-align: middle;
}

.cart_totals table {
  margin-bottom: 20px;
  min-width: 100%;
}

.cart_totals .table > tbody > tr > td,
.cart_totals .table > tbody > tr > th,
.table.ecommerce-checkout-review-order-table > tbody > tr > td,
.table.ecommerce-checkout-review-order-table > tbody > tr > th {
  color: #5a5b5f;
  padding: 10px 0;
}

.cart_totals tr:first-child th,
.cart_totals tr:first-child td,
.ecommerce-checkout-review-order-table tr:first-child th,
.ecommerce-checkout-review-order-table tr:first-child td {
  border-top: 0;
}

.cart_totals tr td,
.ecommerce-checkout-review-order tr td {
  text-align: right;
}

.actions > input,
.actions > div {
  display: inline-block;
  margin-left: 5px;
}

.coupon .input-text {
  width: 58%;
  display: inline-block;
  float: left;
  margin-right: 8px;
}

.coupon .btn {
  padding: 12px 25px;
}

.form-row {
  float: left;
}
.form-row.form-row-wide {
  width: 100%;
}

.shipping-calculator-form p:last-child,
select.country_to_state {
  margin-bottom: 0;
}

#calc_shipping_postcode,
#calc_shipping_state {
  margin-bottom: 10px;
}

.table.shop_table tr td.product-name {
  line-height: 24px;
}

/*-------------------------------------------------------*/
/* Checkout
/*-------------------------------------------------------*/
#customer_details h2 {
  width: 98%;
}

.ecommerce form #customer_details p {
  display: block;
  width: 98%;
  margin-bottom: 20px;
}

.ecommerce form .form-row:after {
  clear: both;
}

abbr.required {
  color: #ec1d23;
}

.ecommerce form #customer_details .form-row input,
.ecommerce form #customer_details .form-row select,
.ecommerce form #customer_details .form-row textarea {
  margin-bottom: 0;
}

.ecommerce form #customer_details .form-row textarea {
  min-height: 80px;
  line-height: 20px;
}

.order-review-wrap {
  border: 2px solid #e8ebee;
  padding: 40px 30px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

#billing_address_1_field {
  margin-bottom: 10px !important;
}

.ecommerce .checkout #createaccount,
.ecommerce .checkout #ship-to-different-address-checkbox {
  float: none !important;
  width: auto !important;
}

.ecommerce-shipping-fields {
  margin-bottom: 50px;
}

.ecommerce .checkout label.checkbox {
  float: none !important;
  width: auto !important;
  line-height: 1.5 !important;
}

.ecommerce .create-account {
  margin-top: 30px;
}

.order-review-wrap table {
  margin-bottom: 40px;
}

.ecommerce-checkout-review-order-table .order-total {
  font-size: 15px;
}

.order-review .payment_methods.methods li {
  padding-bottom: 10px;
}

.ecommerce .form-row.place-order {
  float: none;
  margin-top: 30px;
}

.form-row.place-order input {
  width: 100%;
}

.payment_methods li {
  padding: 15px 0;
  border-bottom: 1px solid #e8ebee;
}

.payment_method_paypal img {
  margin-left: 15px;
}

.payment_box p {
  margin-top: 10px;
  margin-bottom: 0;
}

.payment_methods label {
  color: #5a5b5f;
  vertical-align: middle;
  margin-bottom: 0;
}

/*-------------------------------------------------------*/
/* Sliders
/*-------------------------------------------------------*/
.owl-carousel,
.flickity {
  overflow: hidden;
}

.owl-carousel img {
  width: 100%;
}

.owl-pagination {
  bottom: 30px;
  position: absolute;
  left: 0;
  display: block;
  text-align: center;
  width: 100%;
}

.owl-page {
  display: inline-block;
  padding: 5px;
  position: relative;
}
.owl-page.active span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  opacity: 1;
  background: #ec1d23;
}
.owl-page span {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  opacity: 0.5;
  background: #fff;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.owl-page span:hover {
  opacity: 1;
}

.owl-buttons {
  position: static;
}

.owl-prev,
.flex-direction-nav .flex-prev,
.flickity-prev-next-button.previous {
  left: -40px;
}

.owl-next,
.flex-direction-nav .flex-next,
.flickity-prev-next-button.next {
  right: -40px;
}

.owl-prev,
.owl-next,
.flex-direction-nav a,
.flickity-prev-next-button {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  text-align: center;
  line-height: 40px;
  z-index: 10;
  width: 40px;
  height: 40px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.owl-next:before,
#flexslider .flex-direction-nav .flex-next:before,
.flickity-prev-next-button:before {
  left: auto;
  right: 0;
}

.owl-prev i,
.owl-next i,
#flexslider a i,
#thumbs a i {
  position: relative;
  font-size: 40px;
  color: #5a5b5f;
}

.light-arrows .owl-prev i,
.light-arrows .owl-next i,
#flexslider.light-arrows a i {
  color: #fff;
}

.light-arrows .flickity-prev-next-button .arrow {
  fill: #fff;
}

.owl-carousel:hover .owl-next,
.flexslider:hover .flex-direction-nav .flex-next,
.flickity:hover .flickity-prev-next-button.next {
  opacity: 1;
  right: 10px;
}

.owl-carousel:hover .owl-prev,
.flexslider:hover .flex-direction-nav .flex-prev,
.flickity:hover .flickity-prev-next-button.previous {
  opacity: 1;
  left: 10px;
}

.flickity-prev-next-button,
.flickity-prev-next-button:hover {
  background-color: transparent;
}

.flickity-prev-next-button:focus {
  box-shadow: none;
}

.flickity-prev-next-button {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.flickity-prev-next-button .arrow {
  fill: #5a5b5f;
}

.flickity-page-dots {
  position: relative;
  bottom: auto;
  margin-top: 50px;
}

.flickity-page-dots .dot,
.flex-control-paging li a {
  height: 2px;
  width: 24px;
  opacity: 0.5;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  background: #979ba3;
}

.flex-control-nav {
  bottom: 10px;
}
.flex-control-nav li {
  margin: 0;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
  background: #ec1d23;
}

/*-------------------------------------------------------*/
/* Service Icons
/*-------------------------------------------------------*/
.service-item-box h3 {
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 16px;
  font-weight: normal;
  color:#EC1D23;
}
.service-item-box i {
  margin: 0 auto;
  font-size: 40px;
}
.service-item-box.style-1 {
	height:280px;
  background-color: #fff;
  position: relative;
  top: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  -moz-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  -ms-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  padding: 60px 50px;	
  border-top: 3px solid #ec1d23;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-item-box.style-1:hover h3,.service-item-box.style-1:hover p{
	color:#fff;
}
.service-item-box.style-1:hover {
  -webkit-box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  -moz-box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  -ms-box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  top: -5px;
  background-color:#EC1D23;
}
.service-item-box.style-1 i {
  color: #ec1d23;
}
.service-item-box.style-1.red {
  border-color: #ec1d23;
}
.service-item-box.style-1.red i {
  color: #ec1d23;
}
.service-item-box.style-1.red .read-more {
  color: #ec1d23;
}
.service-item-box.style-1.turquoise {
  border-color: #1abc9c;
}
.service-item-box.style-1.turquoise i {
  color: #1abc9c;
}
.service-item-box.style-1.turquoise .read-more {
  color: #1abc9c;
}
.service-item-box.style-1.violet {
  border-color: #7b33d4;
}
.service-item-box.style-1.violet i {
  color: #7b33d4;
}
.service-item-box.style-1.violet .read-more {
  color: #7b33d4;
}
.service-item-box.style-2 i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 24px;
}
.service-item-box.style-2 a {
  width: 70px;
  height: 70px;
  position: absolute;
}
.service-item-box.style-2 .hi-icon:hover {
  background-color: transparent;
}
.service-item-box.style-2.icon-effect-1 .hi-icon:after {
  -webkit-box-shadow: 0 0 0 2px #ec1d23;
  -moz-box-shadow: 0 0 0 2px #ec1d23;
  -ms-box-shadow: 0 0 0 2px #ec1d23;
  box-shadow: 0 0 0 2px #ec1d23;
}
.service-item-box.gradient i {
  background: #ec1d23;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ec1d23), color-stop(100%, #e79c4b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ec1d23 0%, #e79c4b 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */
}
.service-item-box.style-2 h5 {
  font-size: 20px;
}
.service-item-box .read-more {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 14px;
}
.service-item-box .read-more:hover {
  color: #191b1f !important;
}

/*-------------------------------------------------------*/
/* Style-3
/*-------------------------------------------------------*/
.service-item-box.style-3 a {
  position: absolute;
  width: 60px;
  height: 60px;
}
.service-item-box.style-3 i {
  font-size: 60px;
  width: auto;
  height: auto;
  line-height: 1;
  background: #ec1d23;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ec1d23), color-stop(100%, #e79c4b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #ec1d23 0%, #e79c4b 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ec1d23 0%, #e79c4b 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.service-item-box.style-3.small-icon i {
  font-size: 40px;
}
.service-item-box.style-3 h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: normal;
}
.service-item-box.style-3 .service-text {
  padding-left: 95px;
  padding-right: 30px;
}
.service-item-box.style-3.small-icon .service-text {
  padding-left: 65px;
  padding-right: 10px;
}

/*-------------------------------------------------------*/
/* Style-4
/*-------------------------------------------------------*/
.service-item-box.style-4 a {
  float: left;
  width: 46px;
  height: 46px;
  line-height: 46px;
  margin-right: 20px;
  text-align: center;
  background-color: #ec1d23;
  color: #fff;
  -webkit-border-radius: 46px;
  border-radius: 46px;
}
.service-item-box.style-4 i {
  width: auto;
  height: auto;
  line-height: 46px;
  font-size: 20px;
}
.service-item-box.style-4 h3 {
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: normal;
}

/*-------------------------------------------------------*/
/* Style-5
/*-------------------------------------------------------*/
.service-item-box.style-5 {
  text-align: center;
}
.service-item-box.style-5 .svg-icon {
  color: #fff;
}
.service-item-box.style-5 h3 {
  font-size: 24px;
}
.service-item-box.style-5 p {
  font-size: 18px;
  line-height: 32px;
  padding: 0 50px;
}

/*-------------------------------------------------------*/
/* Style-6
/*-------------------------------------------------------*/
.service-item-box.style-6 h3 {
  font-size: 20px;
  margin-top: 34px;
  margin-bottom: 16px;
  font-weight: normal;
}
.service-item-box.style-6 a {
  position: relative;
  height: 100%;
  display: inline-block;
}
.service-item-box.style-6 i {
  line-height: 120px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  font-size: 40px;
}

/*Hi Icons*/
.hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 15px 30px;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
.hi-icon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Effect 1 */
.icon-effect-1 .hi-icon {
  background: #ec1d23;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icon-effect-1 .hi-icon.violet {
  background-color: #7b33d4;
}

.icon-effect-1 .hi-icon.green {
  background-color: #1abc9c;
}

.icon-effect-1 .hi-icon.blue {
  background-color: #29c7c8;
}

.icon-effect-1 .hi-icon:after {
  top: -5px;
  left: -5px;
  padding: 5px;
  box-shadow: 0 0 0 2px #191b1f;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  -moz-transition: -moz-transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  opacity: 0;
}

.icon-effect-1a .hi-icon:hover {
  background-color: #191b1f;
  color: #fff;
}
.icon-effect-1a .hi-icon:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/*-------------------------------------------------------*/
/* Progress Bars
/*-------------------------------------------------------*/
.progress-bar {
  -webkit-transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
  -ms-transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
  transition: width 2s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: block;
  height: 12px;
  position: relative;
  overflow: hidden;
  background-color: #ec1d23;
}

.progress-bars {
  margin-bottom: 30px;
}
.progress-bars h6 {
  color: #5a5b5f;
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: normal;
}
.progress-bars h6 span {
  color: #5a5b5f;
  font-family: "微软雅黑", sans-serif;
  font-size: 14px;
  float: right;
  font-weight: normal;
}
.progress-bars.dark .progress.meter {
  background-color: #313235;
}
.progress-bars.dark h6, .progress-bars.dark h6 span {
  color: #fff;
}

.progress.meter {
  height: 12px;
  border-radius: 0;
  position: relative;
  background: #e5e7ec;
  margin-bottom: 25px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.progress.meter:last-child {
  margin-bottom: 0;
}

.meter.blue .progress-bar {
  background-color: #29c7c8;
}

.meter.turquoise .progress-bar {
  background-color: #1abc9c;
}

.meter.orange .progress-bar {
  background-color: #e79c4b;
}

.meter.violet .progress-bar {
  background-color: #7b33d4;
}

/*-------------------------------------------------------*/
/* Accordions and Toggles
/*-------------------------------------------------------*/
.accordion .panel-default > .panel-heading {
  position: relative;
  background-color: #fafcfc;
  padding: 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e8ebee;
}
.accordion.panel-group .panel {
  border: none;
  box-shadow: none;
  margin-top: 7px;
}
.accordion.panel-group .panel::first-child {
  margin-top: 0;
}
.accordion .panel-default > .panel-heading > a.minus {
  color: #5a5b5f;
}
.accordion .panel-heading > a > span {
  display: block;
  width: 13px;
  height: 1px;
  background-color: #5a5b5f;
  right: 18px;
  top: 22px;
  position: absolute;
}
.accordion .panel-heading > a.plus > span {
  background-color: #979ba3;
}
.accordion .panel-heading > a.plus > span:after {
  content: "";
  display: block;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 0;
  background-color: #979ba3;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.panel-content p {
  margin-bottom: 0;
}

.accordion .panel-default > .panel-heading + .panel-collapse > .panel-body,
.panel-content {
  border: 1px solid #e8ebee;
  border-top-color: transparent;
  padding: 20px 30px;
  line-height: 26px;
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.accordion .panel-default > .panel-heading > a,
.toggle > .acc-panel > a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 12px 20px;
  color: #979ba3;
  font-family: "微软雅黑", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion .panel-default > .panel-heading > a:hover,
.toggle > .acc-panel > a:hover {
  color: #ec1d23;
}

.accordion .panel-default > .panel-heading:hover a,
.toggle > .acc-panel > a.active {
  color: #ec1d23;
}

.toggle > .acc-panel > a {
  border-bottom: 1px solid #e8ebee;
  padding: 13px 0;
}
.toggle > .acc-panel > a:after {
  font-family: "themify";
  position: absolute;
  content: "\e64b";
  right: 0;
  color: #979ba3;
  font-size: 14px;
}
.toggle > .acc-panel > a.active:after {
  content: "\e648";
  color: #5a5b5f;
}

.toggle .panel-content {
  padding: 20px 0 10px;
  border: none;
}

/*-------------------------------------------------------*/
/* Tabs
/*-------------------------------------------------------*/
.nav-tabs {
  border-bottom: 1px solid #e8ebee;
  margin-bottom: -1px;
}

.nav.nav-tabs > li.active > a {
  border: 1px solid #e8ebee;
  background-color: #fff;
  border-bottom: 2px solid transparent;
}

.nav.nav-tabs > li.active > a,
.nav.nav-tabs > li.active > a:hover,
.nav.nav-tabs > li.active > a:focus,
.nav.nav-tabs > li > a,
.nav.nav-tabs > li > a:hover,
.nav.nav-tabs > li > a:focus {
  color: #ec1d23;
}

.nav-tabs > li {
  margin-bottom: -2px;
}

.nav.nav-tabs > li > a {
  padding: 13px 20px 12px;
  background-color: transparent;
  border: 1px solid #e8ebee;
  border-radius: 0;
  font-family: "微软雅黑", sans-serif;
  color: #979ba3;
  font-size: 16px;
}

.tab-content {
  padding: 30px;
  border: 1px solid #e8ebee;
  overflow: hidden;
}
.tab-content > .tab-pane > p {
  margin-bottom: 0;
}

/* Border Bottom */
.tabs-bb .nav.nav-tabs > li > a {
  border: none;
}
.tabs-bb .nav.nav-tabs > li.active > a {
  border: none;
  border-bottom: 2px solid #ec1d23;
}
.tabs-bb .tab-content {
  padding: 24px 0;
  border: none;
}

/* Vertical */
.vertical .nav-tabs {
  float: left;
  width: 200px;
  position: relative;
  margin-right: -1px;
  border-right: 1px solid #e8ebee;
  border-bottom: none;
  z-index: 2;
}
.vertical .nav-tabs > li {
  float: none;
  border: 1px solid #e8ebee;
  border-right: 0;
  border-top: 0;
  margin-bottom: 0;
}
.vertical .nav-tabs > li:first-child {
  border-top: 1px solid #e8ebee;
}

.vertical .nav.nav-tabs > li > a {
  padding: 13px 20px 12px;
  margin-right: 0;
  border: none;
}

.vertical .nav.nav-tabs > li.active > a {
  border-right: 1px solid #fff;
  right: -1px;
  padding-left: 19px;
}

/*-------------------------------------------------------*/
/* Pie Charts
/*-------------------------------------------------------*/
.chart {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  text-align: center;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.chart i {
  line-height: 160px;
  font-size: 42px;
}

.percent {
  display: inline-block;
  line-height: 160px;
  z-index: 2;
  font-size: 24px;
  font-family: "微软雅黑", sans-serif;
  color: #121212;
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .9em;
}

/*-------------------------------------------------------*/
/* Buttons
/*-------------------------------------------------------*/
.section-buttons .btn {
  margin-bottom: 20px;
}

.btn {
  font-family: "微软雅黑", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.14em;
  border: 2px solid transparent;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  background-color: #191b1f;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn.btn-white {
  box-shadow: 1px 1.732px 3px 0px rgba(0, 0, 0, 0.05);
}
.btn:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  opacity: .9;
}
.btn:focus {
  color: #fff;
  outline: none !important;
}
.btn.btn-icon span {
  position: relative;
  display: inline-block;
  left: 0;
  -webkit-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
}
.btn.btn-icon > i {
  position: absolute;
  left: auto;
  font-size: 18px;
  width: 10px;
  margin-right: 20px;
  line-height: 46px;
  right: -30px;
  top: -2px;
  text-align: center;
  display: block;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -webkit-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -moz-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -ms-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  -o-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
  transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
}
.btn.btn-md.btn-icon > i {
  line-height: 38px;
  margin-right: 14px;
}
.btn.btn-sm.btn-icon > i {
  line-height: 33px;
  margin-right: 10px;
  font-size: 14px;
}
.btn.btn-icon:hover span {
  left: -14px;
}
.btn.btn-md.btn-icon:hover span {
  left: -10px;
}
.btn.btn-sm.btn-icon:hover span {
  left: -7px;
}
.btn.btn-icon:hover i {
  right: 0;
}

.btn.btn-transparent:hover,
.btn.btn-stroke:hover,
.btn.btn-light:hover,
.btn.btn-white:hover {
  background-color: #ec1d23;
  border-color: transparent;
  color: #fff;
}

.btn.btn-dark {
  background-color: #191b1f;
}

.btn.btn-light {
  background-color: #fafcfc;
  color: #191b1f;
}

.btn-lg {
  font-size: 13px;
  padding: 13px 34px;
}

.btn-md {
  font-size: 11px;
  padding: 10px 25px;
}

.btn-sm {
  font-size: 10px;
  padding: 7px 23px;
}

.btn.btn-color {
  background-color: #ec1d23;
}

.btn.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn.btn-white {
  color: #191b1f;
  background-color: #fff;
}

.btn.btn-stroke {
  border-color: #e8ebee;
  background-color: transparent;
  color: #191b1f;
}

.rounded {
  -webkit-border-radius: 70px;
  border-radius: 70px;
}

.btn.btn-orange {
  background-color: #ec7331;
}

.btn.btn-blue {
  background-color: #29c7c8;
}

.btn.btn-turquoise {
  background-color: #1abc9c;
}

.btn.btn-darkblue {
  background-color: #4693cc;
}

.btn.btn-violet {
  background-color: #7b33d4;
}

.btn.btn-yellow {
  background-color: #f2c52f;
}

.btn.btn-pink {
  background-color: #e63369;
}

.btn.btn-lavender {
  background-color: #716fd9;
}

/*-------------------------------------------------------*/
/* Social Icons
/*-------------------------------------------------------*/
.social-icons a {
  margin: 0 3px 6px 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #979ba3;
  background-color: #fafcfc;
  line-height: 32px;
  text-align: center;
  font-size: 13px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.social-icons a:last-child {
  margin-right: 0;
}
.social-icons:not(.colored) a:hover {
  background-color: #ec1d23 !important;
  color: #fff !important;
}
.social-icons.dark a {
  background-color: #23252a;
  color: #979ba3;
}
.social-icons.large a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}
.social-icons.transparent a {
  background-color: transparent;
  color: #979ba3;
}

.rounded a {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.social-icons.colored a {
  color: #fff;
}

.social-icons.colored a:hover {
  opacity: 0.9;
}

.colored .social-twitter {
  background-color: #00acee;
}

.colored .social-facebook {
  background-color: #3b5998;
}

.colored .social-google-plus {
  background-color: #dd4b39;
}

.colored .social-linkedin {
  background-color: #0e76a8;
}

.colored .social-vimeo {
  background-color: #1ab7ea;
}

.colored .social-youtube {
  background-color: #c4302b;
}

.colored .social-instagram {
  background-color: #3f729b;
}

.colored .social-pinterest {
  background-color: #c8232c;
}

.colored .social-rss {
  background-color: #f26522;
}

.colored .social-dribbble {
  background-color: #ea4c89;
}

.colored .social-skype {
  background-color: #00aff0;
}

.colored .social-soundcloud {
  background-color: #ff3300;
}

.colored .social-vk {
  background-color: #45668e;
}

.colored .social-delicious {
  background-color: #3399ff;
}

.colored .social-android {
  background-color: #a4c639;
}

.colored .social-digg {
  background-color: #000000;
}

.colored .social-reddit {
  background-color: #ff4500;
}

.colored .social-dropbox {
  background-color: #007ee5;
}

.colored .social-odnoklassniki {
  background-color: #ed812b;
}

.colored .social-github {
  background-color: #4183c4;
}

.colored .social-flickr {
  background-color: #ff0084;
}

.colored .social-lastfm {
  background-color: #d51007;
}

.colored .social-email {
  background-color: #242424;
}

/*-------------------------------------------------------*/
/* Form Elements
/*-------------------------------------------------------*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
  height: 44px;
  border: 2px solid #e8ebee;
  background-color: transparent;
  width: 100%;
  margin-bottom: 16px;
  padding: 0 16px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

textarea {
  height: auto;
  padding: 8px 16px;
  margin-bottom: 25px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: #ec1d23;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

/* Change Color of Placeholders */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #979ba3;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #979ba3;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #979ba3;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #979ba3;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-left: 12px;
  background: url(../img/shop/shop_icons.png) no-repeat;
  background-position: 100% -176px;
}

select::-ms-expand {
  display: none;
}

/* Checkboxes & Radio Buttons
-------------------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label:before {
  width: 17px;
  height: 17px;
  background-color: #f0f5f5;
  content: "";
  display: inline-block;
  font-size: 13px;
  margin: -4px 12px 0 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #e8ebee;
}

input[type="checkbox"]:checked + label:before {
  content: "\f0c8";
  font-family: "FontAwesome";
  color: #191b1f;
  font-size: 9px;
  line-height: 16px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  cursor: pointer;
  margin-bottom: 0;
  font-family: "微软雅黑", sans-serif;
  text-transform: none;
  letter-spacing: normal;
  color: #5a5b5f;
  font-size: 14px;
}

.radio-buttons > li,
.checkboxes > li {
  padding: 7px 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  display: inline-block;
  content: "";
  width: 17px;
  height: 17px;
  background-color: #f0f5f5;
  border-radius: 40px;
  margin: -3px 10px 0 0;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  margin-bottom: 0;
}

input[type="radio"]:checked + label:before {
  background-color: #191b1f;
  border: 5px solid #f0f5f5;
  padding: 1px;
}

input[type="radio"]:focus {
  outline: none;
}

label {
  font-weight: bold;
  color: #5a5b5f;
  font-size: 14px;
  font-family: "微软雅黑", sans-serif;
  vertical-align: middle;
}

/*-------------------------------------------------------*/
/* Lightboxes
/*-------------------------------------------------------*/
.mfp-iframe-holder .mfp-content {
  max-width: 1400px;
}

/*-------------------------------------------------------*/
/* Tables
/*-------------------------------------------------------*/
table th {
  font-weight: normal;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top: 1px solid #e8ebee;
  padding: 10px;
}

.shop_table thead {
  border-bottom: 2px solid #e8ebee;
}

.table > thead > tr > th {
  border-bottom: none;
}

.table thead tr th {
  font-size: 12px;
  color: #5a5b5f;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #e8ebee;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #fafcfc;
}

/*-------------------------------------------------------*/
/* Alert Boxes
/*-------------------------------------------------------*/
.alert {
  padding: 12px 18px;
  margin-bottom: 20px;
  border: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.alert-dismissible .close {
  right: 0;
  top: 0;
  color: inherit;
  position: relative;
}

.close {
  opacity: 1;
  text-shadow: none;
  font-weight: normal;
  font-size: 21px;
}

.alert-success {
  background-color: #e8faf8;
  color: #1abc9c;
}

.alert-info {
  background-color: #f0fafa;
  color: #4693cc;
}

.alert-warning {
  background-color: #faf8f0;
  color: #cc9c69;
}

.alert-danger {
  background-color: #faefee;
  color: #ec1d23;
}

/*-------------------------------------------------------*/
/* Counters
/*-------------------------------------------------------*/
.parallax-counters {
  padding: 150px 0;
}
.parallax-counters .statistic .timer, .parallax-counters .counter-text {
  color: #fff;
}
.parallax-counters .parallax {
  background-image: url(../img/results_bg.jpg);
}

.statistic .timer {
  display: block;
  font-size: 50px;
  color: #5a5b5f;
  margin: 0 0 5px;
  font-family: "微软雅黑", sans-serif;
  font-weight: 300;
}

.counter-text {
  font-size: 16px;
  color: #5a5b5f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "微软雅黑", sans-serif;
}

.statistic.style-2 {
  padding: 122px 10px;
  color: #fff;
}
.statistic.style-2 .timer, .statistic.style-2 .counter-text {
  color: #fff;
}
.statistic.style-2 i {
  font-size: 64px;
  margin-bottom: 15px;
  display: inline-block;
}
.statistic.style-2.dark {
  background-color: #191b1f;
}
.statistic.style-2.blue {
  background-color: #29c7c8;
}
.statistic.style-2.violet {
  background-color: #7b33d4;
}
.statistic.style-2.red {
  background-color: #ec1d23;
}

.statistic.with-icon i {
  font-size: 46px;
  color: #ec1d23;
  display: inline-block;
  margin-bottom: 15px;
}

/*-------------------------------------------------------*/
/* Footer Type-1
/*-------------------------------------------------------*/
.footer-widgets {
  padding: 80px 0 50px;
}
.footer-widgets h5 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #fff;
  position: relative;
}
.footer-widgets a {
  color: #c2c9cc;
}

.container-fluid .footer-widgets > .row > div[class^="col"] {
  padding: 0 40px;
}

.footer-widgets a:hover,
.copyright a:hover,
.footer-entry .entry-meta li a:hover,
.bottom-footer-links li a:hover {
  color: #ec1d23;
}

.footer-get-in-touch p {
  margin-bottom: 7px;
  font-size: 14px;
   color:#c2c9cc;
}
.footer-get-in-touch i {
  font-size: 15px;
  color: #c2c9cc;
  margin-right: 5px;
}

.footer-address {
  margin-bottom: 24px;
  line-height: 26px;
  color:#c2c9cc;
}


.footer.bg-dark .entry-list ul > li {
  border-bottom: 1px solid #40434a;
}
.footer.bg-dark .entry-list ul > li .entry-meta li, .footer.bg-dark .entry-list ul > li .entry-meta li a {
  color: #848890;
  font-size: 12px;
}

.recent-works {
  margin-top: 29px;
}
.recent-works li {
  position: relative;
  float: left;
  margin: 0 10% 12px 0;
  background-color: #191b1f;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
    width: 35%;
}
.recent-works li img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 4px;
  border-radius: 4px;

  

}
.recent-works li:hover img {
  opacity: 0.4;
}

.bottom-footer {
  background-color: #2c2e30;
  padding: 19px 0;
}
.bottom-footer .social-icons a {
  margin-bottom: 0;
}

.copyright span {
  display: inline-block;
  font-size: 15px;
  line-height: 32px;
  color:#fff;
}
.copyright a {
  color: #fff;
}
.copyright img{
	width:16%;
	    vertical-align: unset;
}
/*-------------------------------------------------------*/
/* Footer Type-2
/*-------------------------------------------------------*/
.footer-type-2 {
  padding: 100px 0;
}

.footer-extra-links {
  margin-top: 50px;
}
.footer-extra-links li {
  display: inline-block;
  padding: 0 10px;
}

/*-------------------------------------------------------*/
/* Footer Type-3
/*-------------------------------------------------------*/
.footer-map {
  background: url(../img/footer_map.png) no-repeat;
}

.entry-li:first-child,
.footer-links li:first-child {
  padding-top: 0 !important;
}

.entry-li:last-child,
.footer-links li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.footer-links ul > li {
  padding: 8px 0;
  border-bottom: 1px solid #40434a;
}

.post-small img {
  width: auto;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.entry-list .entry-img {
  float: left;
  margin-right: 20px;
  margin-bottom: 0;
}

input[type="email"].newsletter-input {
  border-color: #40434a;
}
input[type="email"].newsletter-input:focus {
  border-color: #ec1d23;
}

.newsletter-submit {
  width: 100%;
}

.footer-payment-systems i {
  font-size: 26px;
  vertical-align: middle;
  line-height: 32px;
}

/*-------------------------------------------------------*/
/* Footer Type-4
/*-------------------------------------------------------*/
.footer-type-4 .footer-widgets {
  padding: 100px 0;
}
.footer-type-4 .footer-get-in-touch p {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */


/*-------------------------------------------------------*/
/* Style Switcher
/*-------------------------------------------------------*/

#customizer {
  position: fixed;
  top: 0;
  z-index: 10000;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,.10);
  width: 260px;
}

.corner {
  display: block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 100px;
  left: -40px;
  box-shadow: -3px 0px 8px -1px rgba(0,0,0,.10);
  line-height: 40px;
  text-align: center;
  border-radius: 3px 0 0 3px;
  font-size: 20px;
  color: #1e2023;
  font-family: Helvetica, sans-serif;
}

.s-close {
  right: -260px !important;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.s-open {
  right: 0 !important;
}

#options {
  padding: 15px;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
}

.demo-list li {
  float: left;
  padding: 5px 2px;
}

.demo-list img {
  border: 5px solid #fafcfc;
}

.color-scheme a {
  display: block;
  height: 30px;
  width: 30px;
  margin: 0 4.25px 10px;
}

@media (max-width: 767px) {
  #customizer {
    display: none;
  }
}








/*******首页css****************/
.rev_slider_wrapper{
	min-height:80vh;
}



.section-header {
  position: relative;
  margin: 0 0 45px; }

@media (min-width: 992px) {
  .section-header {
    margin-bottom: 70px; 
	 } }

.section-header p:first-of-type {
  font-family: '微软雅黑 Slab', serif;
  font-size: 16px;
  margin-top: 14px;
  line-height: 2;
  color: #999; }

@media (min-width: 992px) {
  .section-header p:first-of-type {
    padding-left: 25%;
    padding-right: 25%; }
  .section-header p:not(:first-of-type) {
    padding-left: 13%;
    padding-right: 13%; } }

.section-title {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height:1.2em
  }

.section-sub-title {
  font-size: 20px;
  margin-bottom: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ec1d23;
  font-weight:600;
  }

.section-header .line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #ec1d23; }
  
  .section-header1 .line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #ec1d23; }
  
  
  
  
  
 .info-area{
	 padding:100px 0;
	 background:#F0F0F0;
 }
.info-area .info-thumb {
  overflow: hidden;
  display: inline-block;
}

@media (max-width: 800px) {
  .info-area .info-content {
    text-align: center;
    padding: 60px 30px 60px 0;
  }
}

.info-area .info-content {
  box-shadow: 0px 0px 50px 0px rgba(157, 157, 157, 0.3);
  position: relative;
  background: #fff;
  padding: 60px 100px 60px 40px;
}

@media (max-width: 575px) {
  .info-area .info-content {
    margin-top: 30px;
  }
}

.info-area .info-content:after {
  content: "";
  box-shadow: -35.355px 35.355px 50px 0px rgba(157, 157, 157, 0.3);
  position: absolute;
  right: 100%;
  top: 0;
  background: #fff;
  width: 70px;
  height: 100%;
}

@media (max-width: 991px) {
  .info-area .info-content:after {
    width: 50px;
  }
}

@media (max-width: 575px) {
  .info-area .info-content:after {
    display: none;
  }
}

@media (max-width: 991px) {
  .info-area .info-content {
    padding: 30px 30px 30px 0;
  }
}

@media (max-width: 575px) {
  .info-area .info-content {
    padding: 30px;
  }
}

.info-area .info-content h1 {
  line-height: 1.15em;
  margin-bottom: 30px;
}

.info-area .info-content .meta {
  color: #222;
  font-weight: 400;
  font-size: 14px;
  margin-top: 20px;
}

.info-area .info-left {
  z-index: 2;
}

@media (max-width: 800px) {
  .info-area .info-left {
    margin-top: 0px;
    margin-bottom: 40px;
  }
}
.mt-12{
	margin-top:-3em;
}
.single-info p{
	text-indent:2em;
	margin:2em 0;
}

.btn1 {
  font-family: "微软雅黑", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.14em;
  border: 2px solid transparent;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  background-color: #191b1f;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn1.btn-transparent {
  color: #ec1d23;
  background-color: transparent;
  border-color: #ec1d23;
}

.btn1.btn-transparent:hover{
  background-color: #ec1d23;
  border-color: transparent;
  color: #fff;
}






/*************首页产品***********/

/* OWL Carousel */
#section-2 .btn1.btn-transparent {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
#section-2 .btn1.btn-transparent:hover{
  background-color: #fff;
  border-color: transparent;
  color: #ec1d23;
}
.sycp .section-sub-title,.sycp .section-title{
	color:#fff;
}
.sycp .line{
	
	    background-color: #fff;
}
		#section-2{ 
		position: relative; 
		text-align: center;  
	}
	#section-2:before {
		position: absolute;
		width: 60%;
		bottom: 0;
		left: 0;
		top: 0;
		border: 5px solid #fff;
		
		content: "";
		-webkit-transition: all .5s linear;
		transition: all 0.5s linear 0s;
	}
	
	#section-2:hover:before {
		box-shadow: 0 50px 40px 0 rgba(0, 0, 0, 0.2);
		-webkit-transform: translateX(5%);
			-moz-transform: translateX(5%);
				transform: translateX(5%);
				
	}
	.slider-left-side p{
		color:#fff;
	}

	#section-2:after{
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
		@media (min-width: 1200px) {
	
		#section-2:before {
			left: 100px;
			top: 60px;
			bottom: 60px;
			width: 45%;
		}
	
	
	}
		@media (min-width: 768px) and (max-width: 991px) {
	

		#section-2:before{ display: none; }
	
	
	
	}
		@media (max-width: 767px) {
		
		

		
		#section-2:before{
			display: none;
		}
	
		
	}
	
	
	.owl-carousel { margin-bottom: 40px; }
	
	.owl-carousel.images { margin-top: 110px; }
	
	.owl-carousel.clients { text-align: center;}
	
	.owl-pagination {
		position: absolute;
		bottom: 30px;
		left: 0;
		width: 100%; 
		text-align: center;
	}
	

	
	.owl-page:hover,
	.owl-page.active { }
	
	.owl-page:last-child { margin-right: 0; }
	
	.owl-prev,
	.owl-next {
		position: absolute;
		top: 50%;
		width: 32px;
		height: 32px;
		background: #fff no-repeat center center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.owl-prev {
		left: 0;
		background-image: url(../images/prev.png);
	}
	
	.owl-next {
		right: 0;
		background-image: url(../images/next.png);
	}
	
	.owl-carousel.custom-content  .owl-prev,
	.owl-carousel.images  .owl-prev { display: none; }
	
	.owl-carousel.images .owl-next { right: 0; }
	
	.owl-carousel.custom-content .owl-next,
	.owl-carousel.images .owl-next {
		width: 0;
		height: 245px;
		background: #EC1D23 no-repeat center center;
		background-image: url(../images/next-white.png);
		-webkit-transition: all .6s ease-in;
				transition: all .6s ease-in;
	}
	
	.owl-carousel.custom-content .owl-next:after,
	.owl-carousel.images .owl-next:after {
		position: absolute;
		top: 50%;
		left: 50%;
		content: "next";
		margin-top: 20px;
		font-family: 'Montserrat', sans-serif;
		font-size: 12px;
		font-weight: 700;
		color: #fff;
		opacity: 0;
		text-transform: uppercase;
		-webkit-transition: all .6s ease-in;
				transition: all .6s ease-in;
		-webkit-transform: translateX(-50%) translateY(-50%);
			-ms-transform: translateX(-50%) translateY(-50%);
				transform: translateX(-50%) translateY(-50%);
	}
	
	.owl-carousel.custom-content:hover .owl-next,
	.owl-carousel.images:hover .owl-next { width: 245px; }
	
	.owl-carousel.custom-content:hover .owl-next:after,
	.owl-carousel.images:hover .owl-next:after { opacity: 1; }
	
	
	
	.owl-carousel.custom-content .slider-left-side,
	.owl-carousel.custom-content .slider-right-side {
		width: 50%;
		float: left;
	}
	
	.owl-carousel.custom-content .slider-left-side { padding: 0 40px; }
	
	@media (min-width: 1200px) {
	
		.owl-carousel.custom-content .slider-left-side { padding: 180px 180px 0 180px; }
	
	}
	
	@media (min-width: 768px) and (max-width: 1199px) {
		
		.owl-carousel.images:hover .owl-next,
		.owl-carousel.custom-content:hover .owl-next { width: 50px; }
	
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.owl-carousel.custom-content .slider-left-side,
		.owl-carousel.custom-content .slider-right-side {
			width: 100%;
			float: none;
		}
		
		.owl-carousel.custom-content .owl-next { top: 70%;}
		
	}
	
	@media (max-width: 767px) {
	
		.owl-carousel.custom-content .slider-left-side,
		.owl-carousel.custom-content .slider-right-side {
			width: 100%;
			float: none;
		}
		
		.owl-carousel.images .owl-next { right: 0; }
		
		.owl-carousel.images:hover .owl-next { width: 50px; }
		
		.owl-carousel.custom-content .owl-next { display: none; }
		
		.owl-carousel.custom-content .slider-left-side {
			padding-right: 20px;
			padding-left: 20px;
			margin-bottom: 75px;
		}
		
	}
.slider-left-side h1{
	color:#fff;
	font-weight:600;
}

.sycp{
	padding:100px 0;
	background:#EC1D23;
}
	
	
	
	
	
	
/***********首页新闻**************/

#w_grid-1562032777937{
	padding:100px 0;
}
#c_portalResNews_list-15620560133540621 .newListBox {
	width: 100%;
	height: auto;
	overflow: hidden;
}

#c_portalResNews_list-15620560133540621 .p_news {
	width: 100%;
	overflow: hidden;
}

#c_portalResNews_list-15620560133540621 .newList {
	position: relative;
	overflow: hidden;
}

#c_portalResNews_list-15620560133540621 .newListCon {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	padding: 40px;
	background: #f3f3f3;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#c_portalResNews_list-15620560133540621 .newTimeBox {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-start;
}

#c_portalResNews_list-15620560133540621 .year {
	color: #222;
	font-size: 1rem;
	text-align: right;
	display: block;
	margin-top: 5px;
	font-family: "Arial";
}

#c_portalResNews_list-15620560133540621 .mon {
	color: #EC1D23;
	font-size: 1.75rem;
	display: block;
	font-style: normal;
	text-align: right;
	font-family: "Arial";
	font-weight: bold;
}

#c_portalResNews_list-15620560133540621 .dotBlack {
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

#c_portalResNews_list-15620560133540621 .dott {
	width: 100%;
	height: 100%;
}

#c_portalResNews_list-15620560133540621 .newTitleLink {
	display: block;
	width: 100%;
	overflow: hidden;
	font-weight: bold;
	font-size: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgb(89, 89, 89);
}

#c_portalResNews_list-15620560133540621 .newMs {
	color: #999;
	font-size: 14px;
	line-height: 20px;
	margin-top: 20px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: normal !important;
	-webkit-line-clamp: 3px;
	-webkit-box-orient: vertical;
	height: 64px;
}

#c_portalResNews_list-15620560133540621 .newDetailLink {
	width: 45px;
	height: 12px;
	display: block;
	margin-top: 2rem;
}

#c_portalResNews_list-15620560133540621 .jtj {
	width: 100%;
	height: 100%;
}

#c_portalResNews_list-15620560133540621 .content {
	z-index: 2;
}

#c_portalResNews_list-15620560133540621 .newListCon::before {
	content: '';
	width: 0px;
	height: 100%;
	background:#EC1D23;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: all 0.36s;
}

#c_portalResNews_list-15620560133540621 .newList:hover .newListCon::before {
	width: 100%;
}

#c_portalResNews_list-15620560133540621 .newList:hover .year {
	color: #fff;
}

#c_portalResNews_list-15620560133540621 .newList:hover .mon {
	color: #fff;
}

#c_portalResNews_list-15620560133540621 .newList:hover .newTitle {
	color: #fff;
}

#c_portalResNews_list-15620560133540621 .newList:hover .newTitleLink {
	color: #fff;
}

#c_portalResNews_list-15620560133540621 .newList:hover .newMs {
	color: #fff;
}

@media only screen and (min-width: 769px) {
	#c_portalResNews_list-15620560133540621 .p_news {
		margin: 1rem auto 1rem;
		padding: 0rem;
	}

	#c_portalResNews_list-15620560133540621 .newList {
		padding: 5px;
		float: left;
		width: calc(100% / 3);
		height: 240px;
	}

	#c_portalResNews_list-15620560133540621 .newTimeBox {
		width: 110px;
		padding-right: 50px;
	}

	#c_portalResNews_list-15620560133540621 .content {
		width: calc((100% - 110px)/1);
	}
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
	#c_portalResNews_list-15620560133540621 .p_news {
		max-width: 900px;
	}

	#c_portalResNews_list-15620560133540621 .newList {
		width: 50%;
		height: 280px;
	}
}

@media only screen and (max-width: 768px) {
	#c_portalResNews_list-15620560133540621 .newMs {
		font-size: 13px;
	}

	#c_portalResNews_list-15620560133540621 .newTitleLink {
		font-size: 15px;
	}

	#c_portalResNews_list-15620560133540621 .p_news {
		padding: 1rem 0rem;
	}

	#c_portalResNews_list-15620560133540621 .newListCon {
		position: relative;
		padding: 20px;
	}

	#c_portalResNews_list-15620560133540621 .newList {
		width: 100%;
		height: 170px;
		margin: 1rem 0;
	}

	#c_portalResNews_list-15620560133540621 .newList:nth-child(4) {
		display: none;
	}

	#c_portalResNews_list-15620560133540621 .newList:nth-child(5) {
		display: none;
	}

	#c_portalResNews_list-15620560133540621 .newList:nth-child(6) {
		display: none;
	}

	#c_portalResNews_list-15620560133540621 .newTimeBox {
		width: 70px;
	}

	#c_portalResNews_list-15620560133540621 .mon {
		font-size: 22px;
	}

	#c_portalResNews_list-15620560133540621 .content {
		width: calc((100% - 70px)/1)
	}

	#c_portalResNews_list-15620560133540621 .dotBlack {
		left: auto;
		right: 0;
	}

	#c_portalResNews_list-15620560133540621 .content {
		padding-left: 2rem;
	}

	#c_portalResNews_list-15620560133540621 .newMs {
		line-height: 22px;
		height: 44px;
		margin-top: 10px;
	}

	#c_portalResNews_list-15620560133540621 .newDetailLink {
		margin-top: 1.5rem;
	}
}

#c_portalResNews_list-15620560133540621 .p_page .pre .iconfont:before {
	shadow-angle: 0px;
	shadow-distance: 0px;
	shadow-angle-ofInset: 0px;
	shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15620560133540621 .p_page .next .iconfont:before {
	shadow-angle: 0px;
	shadow-distance: 0px;
	shadow-angle-ofInset: 0px;
	shadow-distance-ofInset: 0px;
}

#c_portalResNews_list-15620560133540621 .p_more .iconfont:before {
	shadow-angle: 0px;
	shadow-distance: 0px;
	shadow-angle-ofInset: 0px;
	shadow-distance-ofInset: 0px;
}


/*************首页底部***********/


.footer .top {
	background: #fff;
	position: relative;
	height: 160px;
}
.footer .top .left {
	position: absolute;
	top: 0;
	left: 50px;
}
.footer .top .logo {
	height: 160px;
	font-size: 0;
	text-align: center;
	display: inline-block;
	vertical-align: top;
}
.footer .top .logo:before {
	content: '';
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}
.footer .top .logo a {
	display: inline-block;
	vertical-align: middle;
	max-height: 160px;
}
.footer .top .social-icons1 {
	text-align: center;
}
.footer .top .social-icons1 a {
	font-size: 18px;
	line-height: 160px;
	color: #646e7b;
	margin: 0 7px;
}
.footer .top .social-icons1 a:hover {
	color: #00b0ff;
}
.footer .top .right {
	position: absolute;
	top: 0;
	right: 50px;
	line-height: 160px;
	color:#ED1C24;
	font-weight:800;
}
.footer .top .right a {
	margin-left: 20px;
}
.footer .bottom {
	font-size: 14px;
	line-height: 50px;
	color: #646e7b;
	text-align: center;
	letter-spacing: .6px;
	background: #f1f2f6;
}
.footer .bottom img{
	width:6%;
	    vertical-align: unset;
}
.footer .bottom a{
	color:#646e7b;
}
@media all and (max-width: 1200px) {
	.footer .top {
		height: auto;
	}
	.footer .top .left {
		position: relative;
		left: 0;
		display: block;
		text-align: center;
	}
	.footer .top .logo {
		height: 120px;
	}
	.footer .top .logo a {
		max-height: 120px;
	}
	.footer .top .right {
		position: relative;
		right: 0;
		display: block;
		text-align: center;
		line-height: 24px;
		margin-top: 24px;
		margin-bottom: 36px;
	}
	.footer .top .social-icons1 a {
		line-height: 24px;
	}
}
.social-icons1 a {
 
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.social-icons1 a:last-child {
  margin-right: 0;
}
.social-icons1:not(.colored) a:hover {
  background-color: #ec1d23 !important;
  color: #fff !important;
}
.social-icons1.dark a {
  background-color: #23252a;
  color: #979ba3;
}
.social-icons1.large a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}
.social-icons1.transparent a {
  background-color: transparent;
  color: #979ba3;
}

.rounded a {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.social-icons1.colored a {
  color: #fff;
}

.social-icons1.colored a:hover {
  opacity: 0.9;
}




/*---- About Us 关于我们----*/
.section-header1{
	margin-top:70px;
}
.syabout {
  max-width: 100%;
  margin-bottom:70px;
 
}
.syabout .container{
	width:70%;
}
@media(max-width:1366px){
	.syabout .container{
	width:80%;

}
.syabout .syaredbg {

  height: 600px;

}
}
.syabout .syaredbg {
  width: 91.71%;
  height: 650px;
  background: #EC1D23;
  float: right;
  margin-top: 84px;
  position: relative;
}
.syabout .syaredbg .syawhitebg {
  width: 113.328%;
  height: 92.29%;
  background: #f3f3f3;
  position: relative;
  left: -17%;
  top: -20px;
}
.syabout .syaredbg .syawhitebg .syaleft {
  border: 10px solid #fbe6e6;
  width: 44.162%;
  height: 70%;
  margin: 95px 0 0 50px;
}
.syabout .syaredbg .syawhitebg .syaleft .pic {
  width: 90.523%;
  margin: -60px 0 0 24px;
}
.syabout .syaredbg .syawhitebg .syaleft .pic:after {
  padding-bottom: 75%;
}
.syabout .syaredbg .syawhitebg .syaright {
  width: 46.382%;
  margin: 110px 25px 0 0;
}
.syabout .syaredbg .syawhitebg .syaright h3 {
  font-family: "FuturistCondensed";
  font-size: 34px;
  color: #EC1D23;
}
.syabout .syaredbg .syawhitebg .syaright b {
  font-size: 30px;
  
  color: #333;
  display: block;
  padding:10px 0;
}
.syabout .syaredbg .syawhitebg .syaright span {
  width: 51px;
  height: 2px;
  background: #EC1D23;
  display: inline-block;
}
.syabout .syaredbg .syawhitebg .syaright p {
  color: #8c8c8c;
  line-height: 25px;
  margin: 5px 0 0;
  padding-top:1em;
  overflow: hidden;
  text-indent:2em;
}
.syabout .syaredbg .syawhitebg .syaright a {
  display: inline-block;
  width: 134px;
  height: 34px;
  border: 1px solid #EC1D23;
  line-height: 34px;
  text-align: center;
  color: #EC1D23;
  margin: 25px 0 0;
  transition: 0.3s;
}
.syabout .syaredbg .syawhitebg .syaright a:hover {
  background: #EC1D23;
  color: #fff;
}


/**内页底部**/
.dbabout p{
	margin-top:1em;
	color:#c2c9cc;
}
.erweima{
	text-align:center;
	margin-top:10px;
}

/********内页新闻********/
.nynews{
	color:#EC1D23;
}
.fenye2{
	margin:0px auto;
	text-align:center;
}

.nyxw{
	padding:50px;
}




/********分页********/
.pagination1 {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
	font-size:15px;
    padding: 0;
    list-style: none;
}
.pagination1 > li{
	    display: inline;
}
.pagination1 > li:first-child > a, .pagination1 > li:first-child > span{
	    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination1 > li > a, .pagination1 > li > span{
	    color:#EC1D23;

}
.pagination1 > li > a, .pagination1 > li > span{
	position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: 3px;
    line-height: 1.42857143;

    text-decoration: none;
    background-color: #fff;
    border: 1px solid #d9d9d9;
}
.pagination1 > li > a:hover{
	color:#FAB115;
}
.pagination1 .thisclass a{
	color:#FAB115;
}



/*****内页导航****/
.nydaohang{
	margin-top:-20px;
	text-align:center;
	position:relative;
}
.nydaohang li{
		display: inline-block;
	padding: 10px 30px;
	background: #fff;
	cursor: pointer;
	box-shadow: 1px 1px 20px 3px #ccc;
	margin: 0 5px;
	color: #f44b1c;
	font-size: 16px;
	text-align: center
}
.nydaohang .curr{
	background: #EC1D23;
	color: #fff;
	font-weight: 600
}
.nydaohang .curr a{
	
	color: #fff;
	
}
.nydaohang li:hover{
		background: #EC1D23;
	
	font-weight: 600
}.nydaohang li:hover a{
	color: #fff!important;
}



/**************新闻文章页*********/
.newcontainer{
	width:60%;
	padding:80px 0;
}
.newtitle{
	text-align:center;
}
.preNext{
	padding-top:2em;
}
.preNext .fl{
	float:left;
}
.preNext .fr{
	float:right;
}


/*************产品页**********/

.producttb{
	padding:3em 0 1em;
}
.listoritb{
	padding:5em 0 2em;
	margin-top: -20px;
}
.listproduct .container{
	width:70%;
}
.protitle{
	background-color:#fff;
	padding:0 2em;
	  height:110px;
	  line-height:100px;
}
.protitle1 span{
	font-size:30px;
	color:#EC1D23;
	font-weight:bold;
}
.protitle .protitle1{
	float:left;
}
.protitle .protitle2{
	float:right;
}
.listproduct .col-lg-3{
	width:22.5%;
}
.protp{
	margin:25px 15px;
	background:#fff;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.protp:hover{
		
}
.prowz{
	color:#666;
	font-size:16px;
	text-align:center;
	margin-bottom:15px;
}
.protp:hover .prowz{
	color:#fff;
}
.protp1{
	margin:15px;
	overflow: hidden;
	transition: all 0.5s ease;
	border: 1px solid #d3d6d3;
}
.proTitle {
	position: relative;
	text-align: center;
	padding: 0 20%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #373c41;
	font-size: 20px;
	font-weight: bold;
	height: 70px;
	line-height: 70px;
	transition: all .5s ease;
}

.protp1 .search {
	position: absolute;
	left: 10px;
	top: 10px;
	display: block;
	width: 20px;
	height: 20px;
	color: #fff;
}
.protp1:hover{
	
}








.proLi {
	position: relative;
	overflow: hidden;
	padding: 1rem;
	height: auto;
}

.proLink {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 0.5s ease;
	border: 1px solid #d3d6d3;
}

.proLink::after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 0px;
	height: 2px;
	background-color: #dc000c;
	transition: all .5s ease;
}

.proTitle {
	position: relative;
	text-align: center;
	padding: 0 20%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #373c41;
	font-size: 20px;
	font-weight: bold;
	height: 70px;
	line-height: 70px;
	transition: all .5s ease;
}

.proLink .search {
	position: absolute;
	left: 10px;
	top: 10px;
	display: none;
	width: 20px;
	height: 20px;
	color: #fff;
}

.proImgBox {
	position: relative;
	width: 60%;
	height: auto;
	margin:0px auto;
	overflow: hidden;
}

.proImg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.0);
	width: 100%;
	transition: all 2s ease;
}

.proSummry {
	padding: 20px 30px 0;
}

.iconfont {
	transition: .5s;
}

.sum {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2px;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	line-height: 1.5;
	color: #666;
	font-size: 16px;
}

.lookMore {
	width: 100%;
	padding: 1rem 0 2rem;
	text-align: center;
	font-size: 1rem;
	color: #dc000c;
	font-family: Oswald;
}

.proTitle::before {
	content: '';
	position: absolute;
	left: -170px;
	top: -70px;
	width: 140px;
	height: 140px;
	background-color: #dc000c;
	transform: rotate(45deg);
	transition: all .5s ease;
}

.proLi:hover .proTitle::before {
	left: -100px;
}

.proLi:hover .proImg {
	transform: translate(-50%, -50%) scale(1.1);
}

 .proLi:hover .lookMore .iconfont {
	margin-left: 5px;
}
 .proLi:hover  .search{
	 display:block;
 }
.proLi:hover .proLink {
	box-shadow: 0 0 20px #ddd;
}

 .proLi:hover .proLink::after {
	width: 100%;
}















/********招商加盟********/
.bg-gradient1 {
	background-image: url(../images/zs_bg.jpg);


}
.bg-gradient1 .col-sm-2{
	width:20%;
}

.jiameng{
	margin:0px auto;
	padding:2em 0;
background:#f7f7f7;
}
.jiamengnr{
	padding:2em;

}
.jiameng .col-lg-66{
	width:50%;
	margin:0px auto;
}


/*********人才理念********/
.liniannr{
	background:#f7f7f7;
	padding:4em 0;
	margin:5em;
	border-radius:10px;
}
.liniannrtp img{
	text-align:center;
	margin:0px auto;
}
.liniannrwz{
	width:72%;
	margin:0px auto;
	padding-top:2em;
}
.zpgw{
	padding:10em 0;
}


/**********联系我们*******/
.contact .container{
	width:70%;
	
}
.contact1{
	background:#f7f7f7;
	padding:2em;
	
}



.newcontent  {
	padding-top:2em;
}
.newcontent  div{
	text-indent:2em;
	line-height: 2em;
    margin-bottom: 1em;
}
.newcontent  div img{
	    display: block;
    margin: 5px auto;
}

















/*********关于我们下面的公司环境图片*********/

.profile-environment {
	width: 100%;
	position: relative;
	height: auto;
	margin: 0 auto;
	margin-top: 50px
}

.environment-con {
	width: 100%;
	height: auto
}

.swiper-container06 .swiper-slide {
	width: 48%;
	height: auto;
	background-position: center;
	background-size: cover
}

.environment-name {
	height: 60px;
	width: 100%;
	line-height: 60px;
	font-size: 18px;
	color: #191919;
	text-align: center;
	display: none
}

.swiper-container06 .swiper-slide-active .environment-name {
	display: block
}

.environment-img {
	width: 80%;
    height: auto;
	border: 6px solid #eee;
	background-color: #fff;
	margin:0px auto;
	text-align:center;
}

.profile-environment .swiper-button-prev {
	left: -50px;
	margin-top: 0;
	width: 25px;
	height: 41px;
	margin-top: -21px;
	background: url("../images/environment-icon.png") no-repeat center;
	background-position: 0 0
}

.profile-environment .swiper-button-next {
	right: -50px;
	margin-top: 0;
	width: 25px;
	height: 41px;
	margin-top: -21px;
	background: url("../images/environment-icon.png") no-repeat center;
	background-position: -35px 0
}
.style-22{
	margin-bottom:10px;
}
@media(max-width:991px) {

	.profile-environment {
		width: 70%
	}
}



.sycpzs{
background:#F0F0F0;padding-top:4em;	
}

.tp-resizeme1{
	text-align:center;margin-top:5em;
}






/**********手机端首页调试***********/
@media(max-width:768px){
.navbar{
	    min-height: 65px!Important;
		background:#fff;
}
.navbar-header{
	    height: 65px!Important;
}
.forcefullwidth_wrapper_tp_banner{
	height:200px!important;
}
.rev_slider_wrapper{
	min-height: 200px!important;
	height: 200px!important;
}
.rev_slider{

	height: 200px!important;
}
.tp-fullwidth-forcer{
	height: 200px!important;
}
.section-header1{
	margin-top:20px;
}
.section-sub-title{
	    font-size: 16px;
}
.section-title{
	      font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 0.8em;
}
.syabout .syaredbg{
	width: 100%;
    height: auto;
    background: none;
 
    margin-top: 15px;
 
}
.syabout .syaredbg .syawhitebg{
	width: 100%;
    height:auto;
    background: #f3f3f3;
  position: relative; 
     left:0; 
     top: 0;
}
.syabout .syaredbg .syawhitebg .syaleft{
	border:none;
    width: 100%;
    height: auto;
    margin:0px auto;
}
.syabout .syaredbg .syawhitebg .syaleft .pic{
	width:100%;
	margin:0px auto;
}
.syabout .syaredbg .syawhitebg .syaright{
	width: 100%;
	margin:0px auto;
}
.syabout .container{
	width:100%;
}
.syabout{
	margin-bottom:20px;
}
.sycpzs{
	background:#F0F0F0;padding-top:2em;	
}
#c_portalResGroupNewsNew_list-15664609622443615 .pro_class_main{
	    margin: 20px 0 20px!important;
}
#c_portalResGroupNewsNew_list-15664609622443615 .pro_zy1{
	width:100%!important;
}
#c_portalResGroupNewsNew_list-15664609622443615 .pro_zy2{
	width:100%!important;
}#c_portalResGroupNewsNew_list-15664609622443615 .pro_content{
	max-width: 90%!important;
}
#w_grid-1562032777937{
	    padding: 30px 0;
}
.section-header{
	    margin: 0 0 5px;
}
.tp-resizeme1{
	text-align:center;margin-top:1em;
}
.call-to-action.style-4{
	background-image: url(../images/1.jpg);
    padding: 30px 0;
}
.call-to-action.style-4 h2{
	    font-size: 25px!important;
		margin-bottom:0px;
}
.footer .bottom{
	    line-height: 29px;
}
.footer .bottom img{
	    width: 28%;
}
}





/*********手机端内页调试*******/
@media(max-width:768px){
	.page-title .container{
		    height: 200px!important;
	}
	.title-text h1{
		font-size: 24px!important;
	}
	.section-wrap{
		    padding: 20px 0!important;
	}
	.intro.style-4 .row > div:first-child{
		    padding-right: 15px!important;
	}
	.intro.style-4 h3{
		    font-size: 20px;
    text-align: center;
	}
	.intro.style-4 h3:after{
		margin: 12px auto;
	}
	.quote-mission blockquote{
		    font-size: 20px!important;
	}
	.heading{
		  font-size: 20px;
	}
	.profile-environment{
		   
	}
	.environment-img{
		    width: 100%;
	}
	.swiper-container06 .swiper-slide{
		  width: 100%;
	}
	.profile-environment{
		margin-top:0px;
	}
	.copyright img{
		    width: 32%;
	}
	.nyxw{
		    padding: 10px;
	}
	.newcontainer{
		    width: 100%;
    padding: 25px 15px;
	}
	h3{
		    font-size: 20px;
	}
	.newcontent img{
		width:100%!important;
		height:auto!important;
	}
	.nydaohang li{
		display: inline-block;
    padding: 5px 10px;
    background: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 20px 3px #ccc;
    margin: 5px 5px;
    color: #f44b1c;
    font-size: 16px;
    text-align: center; 
	}
	.intro-heading{
		    font-size: 22px;
    line-height: 40px;
    margin-bottom: 10px;
	}
	.heading.large{
		    font-size: 22px;
	}
	.bg-gradient1 .col-sm-2{
		width:100%;
	}
	.heading-row.style-2{
		    margin-bottom: 0px;
}
	.service-item-box.style-1{
	height: 160px;
    margin-bottom: 10px;
    background-color: #fff;
    position: relative;
    top: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    -ms-box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    padding: 15px 50px;
    border-top: 3px solid #ec1d23;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	}
.service-item-box h3{
	    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 16px;
    font-weight: normal;
}
#w_grid-1564396096855{
	    min-height: 20px!important;
}
#content_box-1564396096865-0{
	    padding: 0rem 3rem!important;
}
#w_common_text-1564396618040{
	    margin-top: 10px!important;
}
#w_common_text-1564396837261{
	margin-top: 0px!important;
}
.jiameng{
	    padding: 0em 0; 
}
.jiameng .col-lg-66{
	    width: 100%;
}
.heading-row{
	    margin-bottom:0px;
}
#w_grid-1564396096865{
	    margin-top: 10px!important;
		    margin-bottom: 10px!important;
}
#w_common_text-1564396096925{
	 margin-top: 20px!important;
}
.liniannr{
	margin:0px;
	padding:15px;
}
.liniannrwz{
	    width: 100%;
}
.zpgw{
	    padding: 2em 0;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 18px;
}
.contact .container{
	width:100%;
}
.contact1{
	    background: #f7f7f7;
    padding: 2em;
    margin-bottom: 2em;
}
}

.aboutsp{
	margin-top:10%;
}
@media(max-width:768px){
	.aboutsp{
	margin-top:0;
}
}