html,
body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}
html a:hover,
body a:hover {
  text-decoration: none;
}
.container {
  text-align: center;
  padding: 25px 0;
}
.container img {
  max-width: 100%;
}
.container .title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.container h1 {
  padding: 5px 0;
}
.container p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}
.container .row {
  padding-top: 20px;
}
.container .btn {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #448e5e;
  border: 2px solid #448e5e;
  border-radius: 25px;
}
.container .btn:hover {
  color: #fff;
  background-color: #448e5e;
}
.no-view {
  opacity: 0;
  -moz-transition: opacity 2s;
  /* Firefox 4 */
  -webkit-transition: opacity 2s;
  /* Safari and Chrome */
  -o-transition: opacity 2s;
  /* Opera */
  transition: opacity 2s;
}
.show-view {
  opacity: 1;
}
.header {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 100;
}
.header .container {
  padding: 0;
}
.header .container .row {
  padding: 0;
}
.header .header-left {
  padding: 15px 15px 15px 5%;
  float: left;
}
.header .header-left a {
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
}
.header .header-left a:hover {
  color: #6bac7c;
}
.header .header-right {
  float: right;
}
.header .header-right img {
  width: 34px;
}
.header .header-right .menu {
  list-style: none;
}
.header .header-right .menu .menu-li {
  position: relative;
  float: left;
  padding: 15px;
}
.header .header-right .menu .menu-li a {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.header .header-right .menu .menu-li .active {
  color: #448e5e;
}
.header .header-right .menu .menu-li ul {
  list-style-type: none;
  position: absolute;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.7);
  width: 90px;
  top: 64px;
}
.header .header-right .menu .menu-li ul li {
  padding: 3px 0;
}
.header .header-right .menu .menu-li ul li a {
  font-size: 17px;
  color: #6bac7c;
}
.header .header-right .menu .menu-li .header-more {
  top: 64px;
  margin-left: -25px;
}
.header .header-right .menu .menu-li .header-more a {
  font-size: 20px;
}
.header .header-right .menu .menu-li span {
  padding: 5px;
}
.header .header-right .menu .menu-li:hover .detail {
  display: block;
}
.header .header-right .menu .menu-li:hover ul {
  height: 90px;
}
.header .header-right .menu .menu-li:hover ul li:hover {
  background: #448e5e;
}
.header .header-right .menu .menu-li:hover ul li:hover a {
  color: #ffffff;
}
.header .header-right .menu .menu-li:hover .header-more {
  height: 136px;
}
.header .header-right .menu .menu-li:hover span {
  border-bottom: 2px solid #448e5e;
  color: #448e5e;
}
.header .header-right .menu .detail {
  display: none;
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px rgba(0, 0, 0, 0.3);
}
.header .header-right .menu .detail ul {
  list-style: none;
  padding: 2px 0;
}
.header .header-right .menu .detail ul li {
  padding: 2px 15px 2px 10px;
  margin: 0;
  text-align: left;
}
.header .header-right .menu .detail ul li a {
  color: #000;
  opacity: 0.7;
  font-weight: 500;
  font-size: 14px;
  font-family: "proxima-nova", "proxima nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.header .header-right .menu .detail ul li a:hover {
  color: #000;
}
.header .header-right .menu .detail ul li:hover {
  background-color: #c8d8e1;
}
.header .header-right .menu .detail .pointer {
  height: 10px;
  width: 10px;
  position: absolute;
  top: -10px;
  left: 15px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid #fff;
}
.header #menu .active a {
  color: #448e5e;
}
.banner {
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}
.banner .banner-image,
.banner .about-banner-image {
  vertical-align: middle;
  min-height: 100%;
  width: 100%;
}
.banner .shade {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  text-align: center;
  overflow: hidden;
}
.banner .shade .shade-center {
  padding-top: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  transform: translate(-50%, -50%);
}
.banner .shade .shade-center h1 {
  font-size: 45px;
}
.banner .shade .shade-center h3 {
  font-size: 30px;
}
.banner .shade .shade-center a {
  font-weight: bold;
  margin: 25px;
  width: 35%;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 2px solid #448e5e;
  border-radius: 20px;
}
.banner .shade .shade-center .btn-left,
.banner .shade .shade-center .btn-right:hover {
  color: #448e5e;
  background-color: inherit;
}
.banner .shade .shade-center .btn-right,
.banner .shade .shade-center .btn-left:hover {
  background-color: #448e5e;
  color: #dadada;
}
.banner .show-view .product-left {
  position: relative;
  animation: product-left 1s;
  animation-fill-mode: forwards;
}
.banner .show-view .product-right {
  position: relative;
  animation: product-right 1s;
  animation-fill-mode: forwards;
}
.banner .show-view .product-bottom {
  position: relative;
  animation: product-bottom 1s;
  animation-fill-mode: forwards;
}
@keyframes product-left {
  from {
    left: -1000px;
  }
  to {
    left: 0px;
  }
}
@keyframes product-right {
  from {
    left: 1000px;
  }
  to {
    left: 0;
  }
}
@keyframes product-bottom {
  from {
    bottom: -500px;
  }
  to {
    bottom: 0px;
  }
}
.banner1,
.service {
  overflow: hidden;
  background-color: #e8e8e8;
}
.banner1 a,
.service a {
  color: #000000;
  text-decoration: none;
}
.banner1 a .title,
.service a .title {
  padding-top: 5px;
}
.banner1 .btn,
.service .btn {
  width: 15%;
}
.banner1 .team,
.service .team {
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
}
.banner1 .team img,
.service .team img {
  z-index: -99;
  width: 80%;
  border-radius: 10px;
}
.banner1 a:hover h1,
.service a:hover h1 {
  top: 25%;
  transition: top 0.3s ease-in-out;
}
.banner1 a:hover h3,
.service a:hover h3 {
  opacity: 1;
  transition: opacity 1s;
}
.banner1 a:hover .shade,
.service a:hover .shade {
  height: 100%;
  bottom: 0;
}
.banner1 h3,
.service h3 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #448e5e;
}
.banner1 .half-circle,
.service .half-circle {
  width: 180px;
  height: 90px;
  background: #fff;
  position: absolute;
  top: -30px;
  z-index: 0;
  border-radius: 100px 100px 0 0;
}
.banner1 .half-circle-box,
.service .half-circle-box {
  background-color: #fff;
  position: relative;
  box-shadow: 1px 3px 0 0 #b9b9b9;
  z-index: 9;
  min-height: 280px;
}
.banner1 .half-circle-box img,
.service .half-circle-box img {
  height: 100px;
  margin-top: 10px;
  position: relative;
}
.banner1 .half-circle-box h3,
.service .half-circle-box h3 {
  color: #7d7d7d;
  font-size: 21px;
}
.banner1 .half-circle-box p,
.service .half-circle-box p {
  color: #7d7d7d;
  font-size: 16px;
  padding: 20px 30px;
}
.banner1 .col-md-6,
.service .col-md-6 {
  margin: 20px 0;
}
.banner1 span,
.service span {
  z-index: 99;
  font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 80%;
  border-radius: 10px;
  background: -webkit-linear-gradient(45deg, #000000, rgba(0, 0, 0, 0));
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(45deg, #000000, rgba(0, 0, 0, 0));
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(45deg, #000000, rgba(0, 0, 0, 0));
  /* Firefox 3.6 - 15 */
  background: linear-gradient(45deg, #000000, rgba(0, 0, 0, 0));
  /* 标准的语法（必须放在最后） */
}
.banner1 span h1,
.service span h1 {
  color: #fff;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.3s ease-in-out;
}
.banner1 span h3,
.service span h3 {
  font-size: 20px;
  width: 100%;
  position: absolute;
  padding: 0 10px;
  top: 40%;
  opacity: 0;
  transition: opacity 0.5s;
  color: #e8e8e8;
}
.banner1 .shade,
.service .shade {
  opacity: 0.1;
  left: 50%;
  width: 80%;
  background: #000;
  height: 0;
  bottom: 0;
  position: absolute;
  transform: translate(-50%);
  border-radius: 10px;
  transition: all 0.3s;
}
.banner1 .banner-why1,
.service .banner-why1 {
  position: relative;
  left: -500px;
  transition: all 1s 0.5s;
}
.banner1 .banner-why2,
.service .banner-why2 {
  position: relative;
  bottom: -500px;
  transition: all 1s 0.5s;
}
.banner1 .banner-why3,
.service .banner-why3 {
  position: relative;
  right: -500px;
  transition: all 1s 0.5s;
}
.banner1 .show-view .banner-why1,
.service .show-view .banner-why1 {
  left: 0px;
}
.banner1 .show-view .banner-why2,
.service .show-view .banner-why2 {
  bottom: 0;
}
.banner1 .show-view .banner-why3,
.service .show-view .banner-why3 {
  right: 0;
}
.about p {
  color: #585858;
  text-align: left;
  min-height: 160px;
}
.dynamic {
  background: url("../images/img5.jpg") 0 0 repeat-y;
  background-size: 100% auto;
  overflow: hidden;
}
.dynamic .container {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  top: 50%;
  width: 100%;
  z-index: 2;
  padding: 25px 0 50px;
}
.dynamic .container h1 {
  color: #ffffff;
}
.dynamic .container h4 {
  margin-top: 25px;
  margin-bottom: 5px;
}
.dynamic .cd-timeline {
  position: relative;
  padding: 2px 0;
}
.dynamic .cd-timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  height: 100%;
  width: 4px;
  background: #ffffff;
  left: 50%;
  margin-left: -2px;
}
.dynamic .cd-timeline-block {
  position: relative;
  margin: -30px 0;
}
.dynamic .cd-timeline-block .right {
  position: relative;
  text-align: left;
  margin-left: 55%;
  transition: all 2s 1s;
  right: -1000px;
}
.dynamic .cd-timeline-block .right p {
  text-align: left;
  padding: 0;
}
.dynamic .cd-timeline-block .left {
  position: relative;
  text-align: right;
  margin-right: 50%;
  transition: all 2s 1s;
  left: -1000px;
}
.dynamic .cd-timeline-block .left p {
  text-align: right;
  padding: 0;
}
.dynamic .cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.dynamic .cd-timeline-img {
  position: absolute;
  background: #448e5e;
  width: 30px;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  margin-top: 50px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.dynamic .cd-timeline-content {
  padding: 10px 0;
  width: 45%;
  color: #ffffff;
}
.dynamic .cd-timeline-content p {
  line-height: 1.6;
  font-size: 20px;
}
.dynamic .show-view .left {
  left: 0;
}
.dynamic .show-view .right {
  right: 0;
}
.gallory .swiper-pagination-bullet-active {
  background: #448e5e;
}
.gallory img {
  margin-bottom: 40px;
}
.gallory p {
  color: #585858;
  text-align: left;
}
.gallory .right {
  text-align: right;
  font-size: 18px;
}
.contact {
  background-color: #5d5d5d;
  color: #fff;
}
.contact .form-group {
  color: #000;
  margin: 10px;
}
.contact .form-group input,
.contact .form-group textarea {
  width: 70%;
  border-radius: 3px;
}
.contact .form-group a {
  width: 20%;
}
.contact p {
  text-align: left;
  font-size: 17px;
  margin: 0;
  padding: 5px;
  font-weight: 100;
}
.contact .address {
  padding-top: 5%;
}
.contact .address a {
  color: #fff;
  border-bottom: dotted 1px #1e2521;
}
.footer {
  text-align: center;
  background-color: #444;
  color: #7d7d7d;
}
.footer p {
  padding: 15px 0;
  margin: 0;
}
.footer p a {
  color: #6bac7c;
  border-bottom: dotted 1px #1e2521;
}
.footer .container {
  text-align: left;
  padding-bottom: 0;
}
.footer .container p {
  padding: 0;
  font-size: 14px;
  text-align: left;
  font-weight: 100;
}
.footer .container h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "SF Pro SC", "HanHei SC", "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Apple Legacy Chevron", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.footer .container .row {
  padding-top: 0;
}
.footer ul {
  font-size: 14px;
  font-family: "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  list-style: none;
  font-weight: 100;
  padding: 0;
}
.footer ul li {
  margin: 2px 0;
}
.footer a {
  color: #7d7d7d;
  border-bottom: dotted 1px #1e2521;
}
.product-bar .section1 {
  background: url(../images/section1.jpg) 50%;
  background-size: cover;
}
.product-bar .section2 {
  background: url(../images/product_web.jpg) 50%;
  background-size: cover;
}
.product-bar .section4 {
  background: url(../images/section3.jpg) 50%;
  background-size: cover;
}
.product-bar .bg1 {
  background: url(../images/bg1.png) 50% 0 no-repeat;
  bottom: 0;
  width: 100%;
  height: 1000px;
  position: absolute;
}
.product-bar .bg2 {
  position: absolute;
  bottom: -392px;
  width: 100%;
  height: 392px;
  background: url(../images/bg2.png) 50% 0 no-repeat;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg3 {
  position: absolute;
  width: 100%;
  color: #607d8b;
  font-size: 30px;
  top: 0;
  text-align: center;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg4 {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg5 {
  background: url(../images/bg5.png) 50% 0 no-repeat;
  bottom: 0;
  width: 100%;
  height: 90%;
  position: absolute;
}
.product-bar .bg6 {
  background: url(../images/bg6.png) 0 0 no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 441px;
  height: 300px;
  margin-left: 50%;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg7 {
  background: url(../images/bg7.png) 0 0 no-repeat;
  position: absolute;
  width: 800px;
  height: 80px;
  left: 10%;
  top: 30%;
  z-index: 10;
  opacity: 0;
  transform: scale(0.5, 0.5);
  transition: all 1s;
}
.product-bar .bg8 {
  position: absolute;
  height: 50px;
  left: 10%;
  top: 15%;
  z-index: 10;
  text-align: center;
  color: #748A9E;
  font-size: 30px;
  transform: scale(0.5, 0.5);
  transition: all 1s;
  opacity: 0;
}
.product-bar .bg9 {
  position: absolute;
  top: 50%;
  width: 100px;
  left: -100px;
  text-align: center;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg10 {
  background: url(../images/bg10.png) 0 0 no-repeat;
  position: absolute;
  width: 800px;
  height: 80px;
  left: 15%;
  top: 25%;
  opacity: 0;
  transition: all 1s;
  transform: scale(0.5, 0.5);
}
.product-bar .bg11 {
  position: absolute;
  color: #607d8b;
  font-size: 30px;
  text-align: center;
  left: 15%;
  top: 15%;
  opacity: 0;
  transition: all 1s;
  transform: scale(0.5, 0.5);
}
.product-bar .bg12 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  opacity: 0;
  transition: all 1s;
}
.product-bar .bg12 img {
  width: 100px;
}
.product-bar .bg13 {
  background: url(../images/bg13.png) 0 0 no-repeat;
  position: absolute;
  width: 415px;
  height: 80px;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5, 0.5);
  opacity: 0;
  transition: all 1s;
}
.product-bar .active .bg2 {
  bottom: 200px;
  opacity: 1;
}
.product-bar .active .bg3 {
  top: 30%;
  opacity: 1;
  transition-delay: 0.7s;
}
.product-bar .active .bg4 {
  bottom: 30%;
  opacity: 1;
}
.product-bar .active .bg6 {
  margin-left: -120px;
  opacity: 1;
  transition-delay: 0.7s;
}
.product-bar .active .bg7,
.product-bar .active .bg8,
.product-bar .active .bg10,
.product-bar .active .bg11 {
  opacity: 1;
  transform: scale(1, 1);
  transition-delay: 0.7s;
}
.product-bar .active .bg9 {
  left: 10%;
  opacity: 1;
  transition-delay: 0.7s;
}
.product-bar .active .bg12 {
  opacity: 1;
  right: 10%;
  transition-delay: 0.7s;
}
.product-bar .active .bg13 {
  opacity: 1;
  transition-delay: 0.7s;
  transform: translate(-50%, -50%) scale(1, 1);
}
.about-bar .section0 {
  background: url(../images/about_header.jpg) no-repeat;
  background-size: 100% 100%;
}
.about-bar .section1 {
  background: url(../images/macbookpro_large.jpg) 50%;
}
.about-bar .section2 {
  background: url(../images/macbookpro_large.jpg) 50%;
}
.about-bar .section3 {
  background: url(../images/switch_large.jpg) 50%;
}
.about-main h3,
.about-main p {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.about-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.about-main .content {
  width: 100%;
  padding-top: 20px;
}
.about-main .content .row {
  padding: 20px 0;
}
.about-main .content img {
  width: 100%;
}
.culture-main h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.culture-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.culture-main .content h4 {
  font-size: 20px;
  color: #333;
  line-height: 28px;
  text-align: center;
  font-weight: 400;
}
.culture-main .content h5 {
  color: #666;
  font-weight: 400;
  font-size: 16px;
}
.culture-main .content p {
  font-size: 14px;
  color: #999;
}
.culture-main .content img {
  width: 140px;
}
.culture-main .values {
  background-color: #e8e8e8;
}
.culture-main .values h3 {
  text-align: center;
}
.culture-main .values .value {
  background-color: #fff;
  margin: 10px 5px;
  padding: 10px 20px;
  height: 300px;
}
.culture-main .values .value h5 {
  font-size: 16px;
  color: #666;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}
.culture-main .values .value p {
  font-size: 14px;
  color: #999;
  line-height: 28px;
  position: relative;
  text-align: left;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Microsoft Yahei", Helvetica, sans-serif, Lato;
}
.culture-main .values .value p:after {
  content: "\00a0";
  display: block;
  height: 0;
  width: 16px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -10px;
  border-bottom: 1px solid #999;
}
.team-main {
  overflow: hidden;
}
.team-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.team-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.team-main .content {
  width: 100%;
  padding-top: 20px;
}
.team-main .content h3 {
  text-align: left;
  font-size: 20px;
}
.team-main .content h4 {
  font-size: 14px;
  line-height: 28px;
  color: #616161;
}
.team-main .content .team1 {
  left: 1500px;
  position: relative;
  animation: team1 1s;
  animation-fill-mode: forwards;
}
.team-main .content .team2 {
  left: -1500px;
  position: relative;
  animation: team2 1s 0.5s;
  animation-fill-mode: forwards;
}
.team-main .content .team3 {
  left: 1500px;
  position: relative;
  animation: team3 1s 1s;
  animation-fill-mode: forwards;
}
@keyframes team1 {
  from {
    left: 1000px;
  }
  to {
    left: 0px;
  }
}
@keyframes team2 {
  from {
    left: -1000px;
  }
  to {
    left: 0px;
  }
}
@keyframes team3 {
  from {
    left: 1000px;
  }
  to {
    left: 0px;
  }
}
.software-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.software-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.software-main .content .row {
  padding-top: 30px;
}
.software-main .content .row img {
  width: 40%;
  float: left;
}
.software-main .content .row .col-md-6 {
  padding: 2% 8%;
}
.software-main .content .row .item {
  width: 60%;
  float: left;
}
.software-main .content .row .item ul {
  list-style: none;
  padding: 0;
}
.software-main .content .row .item ul li {
  border-bottom: solid 1px rgba(0, 0, 0, 0.25);
}
.software-main .content .row .item ul li h3,
.software-main .content .row .item ul li h5,
.software-main .content .row .item ul li p {
  text-align: left;
  padding: 5px;
  margin: 0;
  color: #6f6f6f;
}
.software-main .content .row .item ul li p {
  font-size: 14px;
  margin: 0;
  text-align: left;
}
.hardware-main {
  padding-top: 80px;
}
.hardware-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.hardware-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.hardware-main .content .ih-item {
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hardware-main .content .ih-item a {
  position: relative;
  display: block;
}
.hardware-main .content .ih-item a .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.hardware-main .content .ih-item a .img img {
  width: 100%;
  height: 100%;
}
.hardware-main .content .ih-item a .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.hardware-main .content .ih-item a .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  background: #111111;
  margin-top: 30px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.hardware-main .content .ih-item a .info p {
  font-style: italic;
  font-size: 14px;
  position: relative;
  color: #bbb;
  padding: 5% 20px;
  text-align: center;
  -webkit-transition: all 0.35s 0.1s linear;
  -moz-transition: all 0.35s 0.1s linear;
  transition: all 0.35s 0.1s linear;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.hardware-main .content .ih-item a:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.hardware-main .content .ih-item a:hover .info {
  opacity: 1;
}
.hardware-main .content .ih-item a:hover .info h3,
.hardware-main .content .ih-item a:hover .info p {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.process {
  text-align: center;
}
.process h3 {
  padding-top: 30px;
}
.process img {
  padding: 20px;
  width: 100%;
}
.app-main {
  padding-top: 80px;
}
.app-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.app-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.app-main .content {
  padding: 0 20px;
}
.app-main .content .case1,
.app-main .content .case2 {
  padding-top: 30px;
}
.app-main .content .case2 ul {
  padding-top: 15%;
}
.app-main .content ul {
  list-style: none;
  padding: 0;
}
.app-main .content ul li h3,
.app-main .content ul li h5,
.app-main .content ul li p {
  text-align: left;
  padding: 5px;
  margin: 0;
  color: #6f6f6f;
}
.app-main .content ul li p {
  font-size: 14px;
  margin: 0;
  text-align: left;
}
.web-main {
  padding-top: 80px;
  overflow: hidden;
}
.web-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.web-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.web-main .content .row {
  padding-top: 20px;
}
.web-main .content .col-md-6 {
  padding: 0 50px 30px;
}
.web-main .content .col-md-6 a {
  display: block;
  position: relative;
}
.web-main .content .ih-item {
  position: relative;
  border: 8px solid #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.web-main .content .ih-item a .img {
  opacity: 1;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.web-main .content .ih-item a .img img {
  width: 100%;
  height: 100%;
}
.web-main .content .ih-item a .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #333333;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.35s ease 0.2s;
  -moz-transition: all 0.35s ease 0.2s;
  transition: all 0.35s ease 0.2s;
}
.web-main .content .ih-item a .info h3 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  background: #111111;
  margin: 30px 0 0 0;
}
.web-main .content .ih-item a .info p {
  font-style: italic;
  font-size: 14px;
  position: relative;
  color: #bbb;
  padding: 2% 20px 0;
  margin: 0;
  text-align: left;
}
.web-main .content .ih-item a:hover .img {
  opacity: 0;
  pointer-events: none;
}
.web-main .content .ih-item a:hover .info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.web-main .content .left-to-right a .img {
  -webkit-transform: translateX(0) rotate(0);
  -moz-transform: translateX(0) rotate(0);
  -ms-transform: translateX(0) rotate(0);
  -o-transform: translateX(0) rotate(0);
  transform: translateX(0) rotate(0);
}
.web-main .content .left-to-right a:hover .img {
  -webkit-transform: translateX(100%) rotate(180deg);
  -moz-transform: translateX(100%) rotate(180deg);
  -ms-transform: translateX(100%) rotate(180deg);
  -o-transform: translateX(100%) rotate(180deg);
  transform: translateX(100%) rotate(180deg);
}
.web-main .content .right-to-left a .img {
  -webkit-transform: translateX(0) rotate(0);
  -moz-transform: translateX(0) rotate(0);
  -ms-transform: translateX(0) rotate(0);
  -o-transform: translateX(0) rotate(0);
  transform: translateX(0) rotate(0);
}
.web-main .content .right-to-left a:hover .img {
  -webkit-transform: translateX(-100%) rotate(-180deg);
  -moz-transform: translateX(-100%) rotate(-180deg);
  -ms-transform: translateX(-100%) rotate(-180deg);
  -o-transform: translateX(-100%) rotate(-180deg);
  transform: translateX(-100%) rotate(-180deg);
}
.animation-main {
  padding-top: 80px;
}
.animation-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.animation-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.animation-main .content {
  padding-top: 40px;
}
.animation-main .content .row {
  padding-left: 10%;
  padding-right: 10%;
}
.animation-main .content .row .col-md-6 {
  padding: 15px;
}
.animation-main .content a {
  text-decoration: none;
}
.animation-main .content a .item {
  box-shadow: 0px 0px 10px #bbb;
  border-radius: 10px 10px 0 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  transition: all .5s ease;
}
.animation-main .content a .item .img {
  position: relative;
}
.animation-main .content a .item img {
  border-radius: 10px 10px 0 0;
}
.animation-main .content a .item .info h3 {
  font-size: 18px;
  color: #888888;
  margin: 0;
  padding: 0;
}
.animation-main .content a .item .info p {
  font-style: italic;
  font-size: 14px;
  color: #bbb;
  margin: 0;
  padding: 0;
}
.animation-main .content a .item .back {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/play.png) no-repeat center center rgba(51, 51, 51, 0.5);
  display: none;
}
.animation-main .content a:hover .item {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  transform: scale(1.02);
}
.animation-main .content a:hover .back {
  display: block;
}
.animation-main .content a:hover .info h3,
.animation-main .content a:hover .info p {
  color: #333;
}
.animation-main .video-item {
  border: 1px solid #7d7d7d;
  border-radius: 2px;
  margin-top: 10px;
}
.animation-main .video-item .content {
  margin: 10px 20px;
}
.animation-main .video-item .content .play-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  background: url(../images/playbtn-bg.png) 0 0 no-repeat;
  transform: translate(-50%, -50%);
}
.animation-main .video-item .content .play-btn:hover {
  background: url(../images/playbtn-hover-bg.png) 0 0 no-repeat;
}
.animation-main .video-item .content .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background: url(../images/close.png) 0 0 no-repeat;
}
.animation-main .video-item .content .close-btn:hover {
  background: url(../images/close-hover.png) 0 0 no-repeat;
}
.animation-main .video-item .row {
  margin: 10px;
}
.animation-main .video-item h3 {
  margin: 0;
}
.animation-main .video-item .show-play {
  display: block;
}
.animation-main .video-item .hidden-play {
  display: none;
}
.animation-main .video-item .title {
  text-align: left;
  font-size: 18px;
  color: #666;
}
.design-main .title {
  border-bottom: 1px solid #D0D0D0;
  height: 40px;
  line-height: 40px;
}
.design-main .title h3 {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin: 0;
}
.design-main .content {
  padding: 25px 20%;
}
.design-main .content img {
  width: 33.333%;
  float: left;
}
