/**
* Template Name: NewBiz - v2.0.0
* Template URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #212121;
  color: #444;
  font-family: SourceHanSans-Regular;
  margin: 0;
  padding: 0;
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: SourceHansCans-Bold;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

@font-face {
  font-family: 'SourceHanSans-Bold';
  src: url('https://download.katvr.com/katwebsite/font/SourceHanSans-Bold.otf');
  font-display: swap;
}

@font-face {
  font-family: 'SourceHanSans-Light';
  src: url('https://download.katvr.com/katwebsite/font/SourceHanSans-Light.otf');
  font-display: swap;
}

@font-face {
  font-family: 'SourceHanSans-Normal';
  src: url('https://download.katvr.com/katwebsite/font/SourceHanSans-Normal.otf');
  font-display: swap;
}

@font-face {
  font-family: 'SourceHanSans-Regular';
  src: url('https://download.katvr.com/katwebsite/font/SourceHanSans-Regular.otf');
  font-display: swap;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #01daf9;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: #212121;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 26px;
}

#header .phone {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  color: #05c3de;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 10px;
  transition: 0.3s;
  font-size: 16px;
  font-family: SourceHansCans-Regular;
  font-weight: normal;
  font-stretch: normal;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
  color: #ffffff;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #333;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
  color: #007bff;
}

.main-nav .drop-down>a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down>a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\f077";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #ffffff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  padding-top: 60px;
  margin: 0;
}

#intro .container-fluid {
  padding: 0;
  margin: 0;
}

#intro .developer {
  position: absolute;
  width: 360px;
  height: 75px;
  top: 14.2%;
  z-index: 100;
  right: 200px;
  cursor: pointer;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

@media (max-width: 991px) {
  #intro {
    padding: 60px 0 0 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 60px 0 0 0;
  }
}

#intro .intro-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#intro .intro-info {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: SourceHansCans-Regular;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 26px;
  color: #282828;
  text-align: center;
  font-weight: normal;
  font-family: SourceHanSans-Bold;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ffffff;
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#features {
  margin: 0;
  padding-top: 45px;
  padding-bottom: 40px;
  background: #2a2a2a;
}

#features .container .row h5 {
  position: relative;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
}

#features .container .row {
  justify-content: center;
}

#features .container .row p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
}

#advantage {
  padding-top: 30px;
  background: #212121;
}

#advantage .section-header {
  padding-bottom: 25px;
}

#advantage .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#advantage .section-header h3 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#advantage .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#advantage .row p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 57px;
}

#advantage .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#advantage .container .row .line {
  display: flex;
}

#advantage .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 23px;
}


#advantage .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 23px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#advantage .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 20px;
}

#practice {
  padding-top: 112px;
  padding-bottom: 10px;
  background: #212121;
}

#practice .section-header {
  padding-bottom: 25px;
}

#practice .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#practice .section-header h3 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#practice .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#practice .row p {
  font-family: SourceHanSansCN-Regular;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#practice .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: left;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#practice .container .row .line {
  display: flex;
}

#practice .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 23px;
}


#practice .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 23px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#practice .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 20px;
}

#production {
  background: #212121;
}

#production .container .row .line {
  display: flex;
}

#production .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#production .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#production .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#production .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#production .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#production .row p {
  font-family: SourceHanSans-Normal;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#production .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#production .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #00dfff;
}

#production .card .card-body {
  padding: 0;
  margin-top: 35px;
}

#production .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #00dfff;
  /*Opera*/
}

#production .container .row .col {
  padding: 15px;
}

#production .container .no-gutters img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#trend {
  background: #2d2d2d;
  height: 451px;
  padding-top: 87px;
}

#trend .container .row .line {
  display: flex;
}

#trend .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#trend .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#trend .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#trend .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#trend .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#trend .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#trend .card {
  background: #2d2d2d;
  border-color: #2d2d2d;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#trend .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #00dfff;
}

#trend .card .card-body {
  padding: 0;
  margin-top: 24px;
}

#trend .card .card-body p {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
}

#trend .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #00dfff;
  /*Opera*/
}

#trend .container .row .col {
  padding: 15px;
}

#trend .container .no-gutters img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#training {
  padding-top: 60px;
  background: #212121;
}

#training .container .row .line {
  display: flex;
}

#training .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#training .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#training .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#training .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#training .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#training .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#training .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#training .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #00dfff;
}

#training .card .card-body {
  padding: 0;
  margin-top: 35px;
}

#training .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #00dfff;
  /*Opera*/
}

#channel {
  background: #212121;
}

#channel .container .row .line {
  display: flex;
}

#channel .container .section-header .title {
  margin-bottom: 60px;
}

#channel .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
}


#channel .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#channel .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 22px;
}

#channel .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#channel .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
  line-height: 30px;
}

#channel .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#channel .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#channel .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 18;
  font-weight: normal;
  font-stretch: normal;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
}

#channel .card .card-body .card-title ul li {
  list-style: square;
  color: #00dfff;
}

#channel .card .card-body .card-title ul li span {
  color: #ffffff;
}

#scenes {
  background: #212121;
  padding-top: 60px;
  padding-bottom: 30px;
}

#scenes .container .row .line {
  display: flex;
}

#scenes .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 35px;
}


#scenes .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 35px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#scenes .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 32px;
}

#scenes .container .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#scenes .container .section-header {
  margin-bottom: 70px;
}

#scenes .container .row p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
  padding-top: 34px;
  text-align: center;
}

#sports {
  padding: 0;
  margin: 0;
}

#sports video {
  padding: 0;
  margin: 0;
  width: 100%;
}

.showMobile {
  display: none;
}

@media (max-width: 768px) {
  .showMobile {
    display: block !important;
  }
}

.showPc {
  display: block;
}

@media (max-width: 768px) {
  .showPc {
    display: none;
  }
}

#mis {
  margin: 0;
  padding: 0;
}

#mis .section-header h3 {
  padding-top: 109px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #00dfff;
}

#mis .row {
  padding-top: 16px;
}

#mis .row .col {
  padding: 0;
  margin-top: 30px;
}

#coreAdvantages {
  background: #f3f3f3;
}

#coreAdvantages .section-header {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #282828;
}

#coreAdvantages .section-header h3 {
  padding-top: 114px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #282828;
}

#coreAdvantages .container {
  padding-bottom: 70px;
}

#coreAdvantages .row {
  margin-top: 70px;
}

#coreAdvantages .row .col {
  margin-bottom: 39px;
}

#coreAdvantages .container .row .member {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../image/video_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 57px 5px 0px;
}

#coreAdvantages .container .row .member p {
  width: 100%;
  position: absolute;
  top: 15px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
  text-align: center;
}

#sensor {
  padding-bottom: 60px;
  background: #212121;
}

#sensor .section-header h3 {
  padding-top: 113px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01daf9;
}

#sensor .container .row {
  padding-top: 99px;
}

#sensor .container .row p {
  padding-top: 42px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #05c3de;
}

#parameter {
  background: #212121;
}

#parameter .section-header h3 {
  padding-top: 40px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01daf9;
}

#parameter .container .row {
  padding-top: 40px;
  padding-bottom: 107px;
}

#parameter .container .row .col {
  margin-top: 43px;
}

#parameter .container .row .col img {
  box-shadow: 0px 15px 63px 7px rgba(7, 0, 2, 0.8);
}

#devices {
  margin: 0;
  padding: 0;
}

#devices .container .section-header h3 {
  padding-top: 111px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #282828;
}

#devices .container .row {
  margin-top: 63px;
}

#devices .container .row .col {
  margin-bottom: 44px;
}

#devices .container .row .col img {
  box-shadow: 3px 4px 25px 0px rgba(0, 0, 0, 0.25);
}

#media {
  margin: 0;
  padding: 0;
  background: #212121;
}

#media .container .section-header h3 {
  padding-top: 20px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01daf9;
  margin-bottom: 74px;
}

#media .container .row .left {
  position: relative;
}

#media .container .row .content .col {
  margin-top: 16px;
}

#media .container .row .left .title {
  position: absolute;
  width: 100%;
  height: 65px;
  bottom: 0;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  line-height: 65px;
  font-weight: bold;
  font-stretch: normal;
  color: #ffffff;
}

#media .container .row .right img {
  height: 294px;
}

#media .container .row .right .title {
  position: absolute;
  width: 100%;
  height: 65px;
  bottom: 0;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  line-height: 65px;
  font-weight: bold;
  font-stretch: normal;
  color: #ffffff;
}

#partners {
  background: #212121;
}

#partners .section-header .section-title {
  padding-top: 10px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 6px;
  color: #00dfff;
}

#partners .container {
  padding-top: 60px;
  padding-bottom: 111px;
}

#partners .container .row .col {
  padding-top: 25px;
}

#partners .container .row img {
  box-shadow: 0px 3px 80px 0px rgba(0, 0, 0, 0.35);
}

#contact {
  background: #00dfff;
}

#contact .container {
  padding-top: 0px;
  padding-bottom: 80px;
}

#contact .section-header .section-title {
  padding-top: 0px;
  padding-bottom: 70px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 6px;
  color: #13191f;
}

#contact .row .col p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 40px;
  color: #282828;
  margin: 0 0 10px 0;
}

#contact .row .col .btn-primary {
  max-width: 97%;
  height: 85%;
  margin-top: 5px;
  margin-left: 5px;
  color: #00dfff;
  background-color: #13191f;
  border-color: #13191f;
}

@media (max-width: 768px) {
  #contact .row .col .btn-primary {
    margin-top: 40px;
    width: 100%;
  }
}

#development {
  background: url('../image/bg.jpg');
  background-repeat: no-repeat;
}

#development .container {
  padding-bottom: 184px;
}

#development .container .section-header h3 {
  padding-top: 109px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ffffff;
}

#development .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  color: #ffffff;
}

#development .container .row p {
  padding-top: 28px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#plan {
  background: url('../image/zcbg.jpg');
  background-repeat: no-repeat;
}

#plan .container {
  padding-bottom: 184px;
}

#plan .container .section-header h3 {
  padding-top: 109px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ffffff;
}

#plan .container .row {
  margin-top: 112px;
}

#plan .container .row p {
  padding-top: 28px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

@media (max-width: 991px) {
  #advantage .card {
    margin: 0;
  }
}

#advantage .card:hover {
  background: #212121;
  border-color: #212121;
}

#advantage .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#advantage .card h5 {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  font-stretch: normal;
}

#advantage .card p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}

#advantage .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#advantage .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#advantage .counters {
  padding-top: 40px;
}

#advantage .counters span {
  font-family: SourceHansCans-Regular;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#advantage .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: SourceHansCans-Regular;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding-top: 70px;
  background: #212121;
}

#portfolio .container .row .line {
  display: flex;
}

#portfolio .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#portfolio .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#portfolio .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#portfolio .section-title {
  margin-bottom: 93px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 4px;
  color: #00dfff;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-border {
  overflow: hidden;
  position: relative;
  padding: 6px;
  background: #2b2b2b;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.8);
}

#portfolio .portfolio-item .portfolio-border .portfolio-content {
  padding: 6px;
  height: 150px;
}

#portfolio .portfolio-item .portfolio-border .portfolio-content a {
  color: #05c3de;
  text-decoration: none;
}

#portfolio .portfolio-item .portfolio-border .portfolio-content a:hover {
  text-decoration: underline;
}

#portfolio .portfolio-item .portfolio-border .portfolio-content span {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #05c3de;
}

#portfolio .portfolio-item .portfolio-border .portfolio-content p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 0px;
  margin: 0;
  padding: 0;
}

#portfolio .portfolio-item .portfolio-wrap img {
  width: 100%;
  height: 100%;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info ul {
  width: 166px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info li {
  width: 80px;
  float: left;
  display: block;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: 600;
  font-stretch: 600;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
}

#portfolio .portfolio-item .portfolio-wrap .unflex {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .unlist {
  display: block;
  width: 100%;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .unlist ul {
  width: 100%;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .unlist li {
  width: 100%;
  padding-left: 20px;
  float: left;
  display: block;
  text-align: left;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: 600;
  font-stretch: 600;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .unlist .child ul {
  width: 100%;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .unlist .child li {
  width: 160px;
  float: left;
  display: block;
  font-family: SourceHanSans-Bold;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #212121;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding-top: 30px;
  background: #212121;
}

#testimonials .vrmode-wrap img {
  width: 100%;
}

#testimonials .vrmode-content {
  margin-top: 0px;
}

#testimonials .vrmode-content p {
  font-family: SourceHanSansCN-Regular;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 2px;
  color: #ffffff;
}

#testimonials .vrmode-content .vrmodecontent-wrap img {
  width: 100%;
  height: 216px;
  overflow: hidden;
}

#testimonials .vrmode-content .vrmodecontent-middle-wrap img {
  width: 100%;
  height: 269px;
  overflow: hidden;
}

#testimonials .vrmode-content .vrmodecontent-big-wrap img {
  width: 100%;
  height: 269px;
  overflow: hidden;
}

#testimonials .vrmode-content .vrmodecontent-wrap p {
  width: 100%;
  height: 52px;
  background-color: #2a2a2a;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 52px;
  letter-spacing: 3px;
  color: #01daf9;
  text-align: center;
}

#testimonials .section-header {
  margin-bottom: 10px;
}

#testimonials .container .row .line {
  display: flex;
}

#testimonials .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}


#testimonials .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#testimonials .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#testimonials .section-header .section-title {
  margin-bottom: 40px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#testimonials .vrmode-content .vrmodecontent-wrap {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.8);
}

#testimonials .vrmode-content .vrmodecontent-middle-wrap {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #007bff;
}

/* Team Section
--------------------------------*/
#team {
  background: #212121;
  padding-top: 30px;
  padding-bottom: 30px;
}

#team .container-fluid {
  padding-right: 100px;
  padding-left: 100px;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.8);
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #007bff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/
#clients {
  margin-top: 20px;
  background: #212121;
}

#clients .container {
  padding-bottom: 54px;
}

#clients .container .row .line {
  display: flex;
}

#clients .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}


#clients .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#clients .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#clients .container .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#clients .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 47px;
  color: #ffffff;
}

#clients .container .row img {
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.8);
}

/* Contact Section
--------------------------------*/
#project {
  padding-top: 40px;
  overflow: hidden;
  background: #212121;
}

#project .section-header {
  padding-bottom: 50px;
}

#project .project-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 5px;
}

#project .container .row {
  padding-bottom: 20px;
}


#project .project-wrap img {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.8);
}

#project .project-wrap .project-info {
  position: absolute;
  width: inherit;
  height: 63px;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}

#project .project-wrap .project-info h5 {
  position: initial;
  margin: 0;
  text-align: center;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 2px;
  color: #01ddfd;
}

#project .project-wrap .project-info p {
  position: initial;
  margin: 0;
  text-align: center;
  font-family: SourceHanSans-Bold;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 2px;
  color: #01ddfd;
}

#project .container .row .line {
  display: flex;
}

#project .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#project .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#project .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#project .section-header h3 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01ddfd;
}

#support {
  padding: 75px 0;
  background: #212121;
}

#support .section-header {
  padding-bottom: 30px;
}

#support .section-header p {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#support .project-wrap {
  position: relative;
  width: 100%;
  padding: 5px 0;
  text-align: center;
}

#support .container .row .project-info {
  padding-top: 25px;
}

#support .container .row .project-info h5 {
  text-align: center;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 2px;
  color: #ffffff;
}

#support .container .row .project-info p {
  font-family: SourceHanSans-Bold;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 2px;
  color: #ffffff;
}

#support .container .row .line {
  display: flex;
}

#support .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#support .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#support .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#support .section-header h3 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01ddfd;
}

#qualification {
  background: #212121;
}

#qualification .container .row .line {
  display: flex;
}

#qualification .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#qualification .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#qualification .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#qualification .section-header h3 {
  margin-bottom: 80px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01ddfd;
}

#qualification .container .row .project-wrap {
  padding: 30px;
  background: #2a2a2a;
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#info {
  width: initial;
  height: 244px;
  padding: 0;
  margin: 0;
  background: #212121;
}

#info .container {
  height: 100%;
  background: url('../image/为你解锁更多可能.png');
  background-repeat: no-repeat;
  background-position: center;
}

#info .container h2 {
  font-family: SourceHanSans-Bold;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 6px;
  line-height: 244px;
  color: #ffffff;
}

#info-item {
  padding-top: 20px;
  padding-bottom: 105px;
  background: #212121;
}

#info-item .info-item-info {
  margin-left: 15px;
  width: 161px;
  height: 72px;
  background: #2a2a2a;
  box-shadow: 0px 0px 10px 1px rgba(7, 0, 2, 0.08);
}

#info-item .info-item-info p {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 72px;
  letter-spacing: 3px;
  color: #00dfff;
  text-align: center;
}

#info-item .container .row .col {
  padding: 20px 0;
}

#service {
  background: #212121;
}

#service .container .row {
  text-align: center;
}

#service .container .row .col {
  padding-top: 20px;
}

#service .container .row .col p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 60px;
  letter-spacing: 0px;
  color: #ffffff;
}

#company {
  background: #212121;
}

#company .section-header {
  padding-top: 75px;
}

#company .container .row .line {
  display: flex;
}

#company .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#company .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#company .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#company .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01d9f8;
}

#company #company-row {
  padding-top: 70px;
}

#company .company-wrap .company-news {
  padding-top: 20px;
}

#company .company-wrap .company-news .title h5 {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: 600;
  font-stretch: 600;
  color: #00dfff;
}

#company .company-wrap .company-news .title h5 a {
  color: #00dfff;
}

#company .company-wrap .company-news .title h5 a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#company .company-wrap .company-news .content p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 28px;
  letter-spacing: 1px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

#company .company-wrap .company-news .content .news-text {
  text-overflow: ellipsis;
  overflow: hidden;
}

#company .company-wrap .company-news .content p a {
  color: #ffffff;
}


#company .company-wrap .company-news-list .col {
  padding: 0;
  margin: 0;
}

#company .company-wrap .company-news-list h5 {
  margin: 0;
  padding: 0;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: 600;
  font-stretch: 600;
  color: #00dfff;
}

#company .company-wrap .company-news-list h5 a {
  color: #00dfff;
}

#company .company-wrap .company-news-list h5 a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#company .company-wrap .company-news-list p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 28px;
  letter-spacing: 1px;
  color: #ffffff;
  overflow: hidden;
  /* 超出的文本隐藏 */
  text-overflow: ellipsis;
  /* 溢出用省略号显示 */
  display: -webkit-box;
  /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical;
  /*  从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式） */
  -webkit-line-clamp: 3;
  /* 这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数 */
}

#company .company-wrap .company-news-list p a {
  color: #ffffff;
}

#partner {
  background: #212121;
}

#partner .container .row .line {
  display: flex;
}

#partner .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#partner .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#partner .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#partner .container .section-header .section-title {
  padding-bottom: 40px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #00dfff;
}

#partner .container {
  padding-top: 60px;
  padding-bottom: 111px;
}

#partner .container .row .col {
  margin-top: 25px;
}

#partner .container .row img {
  box-shadow: 0px 3px 80px 0px rgba(0, 0, 0, 0.8);
}

#search {
  margin-top: 60px;
}

#search .container-fluid .row .banner-support {
  position: relative;
}

#search .container-fluid .row .banner-support .search-bar {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search .container-fluid .row .search-bar input {
  width: 758px;
  height: 60px;
  background-color: #ffffff;
  border: solid 1px #00e0ff;
  text-indent: 1em;
}

#search .container-fluid .row .search-bar .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 62px;
  font-size: 38px;
  border: 0;
  background-color: #05c3de;
  color: #ffffff;
}

#search .container-fluid .row .search-bar .icon {
  width: 38px;
  height: 38px;
  vertical-align: middle;
  fill: currentColor;
  color: #ffffff;
}

#products {
  display: block;
  padding-bottom: 80px;
  background: #f2f2f2;
}

#products .container .product-type h2 {
  padding-top: 75px;
  padding-bottom: 30px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #05c3de;
  border-bottom: 2px solid #05c3de;
}

#products .container .row img {
  width: 100%;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

#products .container .row .col .item {
  width: 100%;
  height: 100%;
  margin-top: 20px;
}

#products .container .row .col .item p {
  width: 100%;
  height: 69px;
  margin: 0;
  padding: 0;
  background: #2e465b;
  font-family: SourceHanSans-Bold;
  font-size: 28px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #05c3de;
  text-align: center;
  line-height: 69px;
}

#contact-detail {
  padding-top: 88px;
  padding-bottom: 90px;
  background: #00dfff;
}

#contact-detail .container .row h2 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 6px;
  color: #13191f;
}

#contact-detail .container .row p {
  font-family: SourceHanSans-Regular;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 3px;
  color: #282828;
}

#product-detail {
  background: #f2f2f2;
  padding-top: 80px;
}

#product-detail .container .go-back .back {
  margin-bottom: 100px;
  width: 349px;
  height: 46px;
  line-height: 46px;
  letter-spacing: 2px;
  background-color: #05c3de;
  border-radius: 5px;
  border: 0;
  color: #ffffff;
  font-size: 21px;
}

#product-detail .container .go-back button {
  cursor: pointer;
}

#product-detail .container .row .product-img-box {
  position: relative;
}

#product-detail .container .row .product-img-box .product-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#product-detail .container .row .product-img-box .product-box img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

#product-detail .container .row .product-img-box .text {
  position: absolute;
  left: 39px;
  top: 34px;
  color: #05c3de;
}

#product-detail .resource {
  margin-top: 80px;
}

#product-detail .resource .product-resource {
  margin-top: 0;
  margin-bottom: 35px;
  padding: 0;
  border-bottom: 2px solid #05c3de;
}

#product-detail .resource .product-resource h2 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  color: #05c3de;
  font-weight: bold;
  font-stretch: normal;
}

#product-detail .resource .row {
  margin: 0px;
}

#product-detail .resource .panels-cnt {
  width: 100%;
}

#product-detail .resource .panels .title::before {
  display: inline-block;
  content: "-";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  text-align: center;
  color: #ffffff;
  background-color: #05c3de;
  box-shadow: 0px 2px 12px 0px rgba(4, 0, 0, 0.12);
}

#product-detail .resource .panels .collapsed::before {
  content: "+";
}

#product-detail .resource .panels {
  margin-bottom: 15px;
}

#product-detail .resource .panels .title {
  margin-bottom: 10px;
  line-height: 40px;
  color: #05c3de;
  background-color: #fafafa;
  box-shadow: 0px 2px 12px 0px rgba(4, 0, 0, 0.12);
}

#product-detail .resource .panels .cnt {
  padding: 10px 20px;
  color: #202020;
  background-color: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(4, 0, 0, 0.12);
  font-size: 14px;
}

#product-detail .resource .panels .cnt .item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  line-height: 40px;

}

#product-detail .resource .panels .cnt .item span {
  font-weight: bold;
}

#product-detail .resource .panels .cnt .item a {
  width: 100px;
  height: 40px;
  background-color: #05c3de;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  flex-shrink: 0;
}

#products .resource {
  margin-top: 80px;
}

#products .resource .product-resource {
  margin-top: 0;
  margin-bottom: 35px;
  padding: 0;
  border-bottom: 2px solid #05c3de;
}

#products .resource .product-resource h2 {
  color: #05c3de;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #05c3de;
}

#products .resource .download-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #202020;
  height: 90px;
  background-color: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(4, 0, 0, 0.12);
  margin-bottom: 20px;
  padding: 0 40px;
  font-weight: bold;
  font-size: 21px;
}

#products .resource .download-item a {
  width: 137px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #05c3de;
  border-radius: 5px;
  color: #ffffff;
  flex-shrink: 0;
  text-decoration: none;
}

#products .resource .download-item a:hover {
  text-decoration: underline;
}

#experience {
  background: #212121;
}

#experience .container .row .line {
  display: flex;
}

#experience .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}


#experience .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#experience .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#experience .container .section-header .section-title {
  padding-top: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#experience .container .section-header p {
  width: 60%;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  color: #ffffff;
}

#experience .container .row .item img {
  width: 100%;
  height: 100%;
  padding-top: 13px;
}

#experience .container .row .item {
  position: relative;
  width: 100%;
  height: 100%;
}

#experience .container .row .item .item-title {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  height: 60px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.6);
}

#experience .container .row .item .item-title p {
  line-height: 60px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00e0ff;
}

#emergency {
  background: #212121;
}

#emergency .container .row .line {
  display: flex;
}

#emergency .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}


#emergency .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#emergency .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#emergency .container .section-header .section-title {
  padding-top: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#emergency .container .section-header p {
  width: 60%;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 30px;
  color: #ffffff;
}

#emergency .container .row img {
  width: 100%;
  height: 100%;
  padding-top: 13px;
}

#emergency .container .row .item {
  position: relative;
  width: 100%;
  height: 100%;
}

#emergency .container .row .item .item-title {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  height: 60px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.6);
}

#emergency .container .row .item .item-title p {
  line-height: 60px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00e0ff;
}

#emergency {
  background: #212121;
}

#ability .container .row .line {
  display: flex;
}

#ability .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}


#ability .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#ability .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#ability .container .section-header .section-title {
  padding-top: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#ability .container .section-header p {
  width: 80%;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 30px;
  color: #ffffff;
}

#ability .container .row img {
  width: 100%;
  height: 100%;
  padding-top: 13px;
}

#ability .container .row .item {
  position: relative;
  width: 100%;
  height: 100%;
}

#ability .container .row .item .item-title {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  height: 60px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.6);
}

#ability .container .row .item .item-title p {
  line-height: 60px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00e0ff;
}

#typicalcase {
  background: #212121;
}

#typicalcase .container {
  padding-bottom: 45px;
  background: #212121;
}

#typicalcase .container .caseone {
  padding-top: 32px;
  padding-right: 45px;
  padding-bottom: 45px;
  margin-bottom: 45px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.8);
}

#typicalcase .container .casetwo {
  padding-top: 32px;
  padding-right: 45px;
  padding-bottom: 45px;
  box-shadow: 0px 0px 35px 5px rgba(0, 0, 0, 0.8);
}

#typicalcase .container .row .line {
  display: flex;
}

#typicalcase .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}


#typicalcase .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#typicalcase .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#typicalcase .container .section-header .section-title {
  margin-bottom: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #01daf9;
}

#typicalcase .container .imglist {
  margin-top: 26px;
}

#typicalcase .container .imglist img {
  width: 100%;
  margin-top: 12px;
}

#typicalcase .container .imglist .col {
  padding-left: 12px;
}

#typicalcase .container .row .case-title {
  margin-left: 0px;
  width: 256px;
  height: 61px;
  margin-top: 41px;
  font-family: SourceHanSans-Bold;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 4px;
  color: #ffffff;
  line-height: 61px;
  text-align: center;
  background-color: #01daf9;
}

#typicalcase .container .row .content-title p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 35px;
  letter-spacing: 0px;
  color: #00dfff;
}

#typicalcase .container .row .content-text p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#typicalcase .container .row .content-text ul {
  padding-left: 45px;
  list-style: square;
  color: #00dfff;
}

#typicalcase .container .row .content-text ul li {
  margin-left: 30px;
  float: left;
}

#typicalcase .container .row .content-text ul li span {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#trainingsystem {
  margin-top: 100px;
  background: #212121;
}

#trainingsystem .container .row .line {
  display: flex;
}

#trainingsystem .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#trainingsystem .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#trainingsystem .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#trainingsystem .container .section-header .section-title {
  padding-bottom: 86px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: 0px;
  color: #00e4ff;
}

#trainingsystem .container {
  padding-bottom: 86px;
}

#trainingsystem .container .system {
  box-shadow: 0px 0px 35px 8px rgba(0, 0, 0, 0.97);
}

#trainingsystem .container .row .item {
  padding-top: 45px;
  padding-left: 45px;
  padding-right: 45px;
}

#trainingsystem .container .row .item p {
  margin: 0;
}

#trainingsystem .container .row .title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ffffff;
}

#trainingsystem .container .row .content {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ffffff;
}

#operation {
  margin-top: 60px;
  background: #212121;
}

#operation .container .row .line {
  display: flex;
}

#operation .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#operation .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#operation .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#operation .container .section-header .section-title {
  padding-bottom: 48px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: 0px;
  color: #00e4ff;
}

#operation .container .row p {
  padding: 12px;
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
}

#operation .container .row .item {
  position: relative;
}

#operation .container .row .item img {
  width: 100%;
  height: 100%;
}

#operation .container .row .item .item-title {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  height: 40px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.6);
}

#operation .container .row .item .item-title p {
  line-height: 20px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00e0ff;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #13191f;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #13191f;
  padding: 60px 0 30px 0;
}

#footer .footer-top li {
  padding-left: 20px;
  display: inline-block;
}

#footer .row .active {
  color: #05c3de;
}

#footer .row ul li a {
  color: #ffffff;
}

#footer .row ul li a:active {
  color: #05c3de;
  text-decoration: underline;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: SourceHansCans-Bold;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: SourceHansCans-Bold;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .copyright p {
  text-align: center;
  margin: 5px;
}

#footer .copyright a {
  color: #00a4b4;
}

#footer .copyright a:hover {
  color: #ffffff;

}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

#law {
  padding-top: 90px;
  padding-bottom: 90px;
}

#law .container .row .tta {
  width: 100%;
  border-bottom: solid 1px #d0d0d0;
  line-height: 65px;
  height: 65px;
}

#law .container .row .tta dd a {
  font-size: 16px;
  color: #ffffff;
  margin-left: 50px;
}

#law .container .row .tta dd a.active {
  font-size: 16px;
  color: #ffffff;
}

.fybaout .tta dd a:hover {
  font-size: 16px;
  color: #ffffff;
}

#law .container .row .floatL {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  color: #ffffff;
  float: left;
}

#law .container .row .floatR {
  float: right;
}

#law .container .row .title {
  width: 100%;
  color: #ffffff;
  clear: both;
  padding-top: 100px;
  padding-bottom: 92px;
  text-align: center;
  border-bottom: solid 1px #e3e3e3;
}

#law .container .row .content {
  line-height: 30px;
  font-size: 16px;
  color: #999;
  padding-top: 50px;
  min-height: 500px;
}

#banner {
  padding-top: 60px;
}

#katio-info {
  position: relative;
  background: #f2f2f2;
  font-family: SourceHanSans-Regular;
  font-size: 14px;
  color: #212121;
  padding-top: 60px;
  padding-bottom: 30px;
}

#katio-info .container .row .logo {
  line-height: 90px;
}

#katio-info .container .row .katio-content p {
  margin: 0px 0px 10px 0px;
}

#katio-info .container .row button {
  width: 100%;
  height: 50px;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #f2f2f2;
  background: #2BAFC6;
  cursor: pointer;
}

#katio-info .container .row h5 {
  font-family: SourceHanScans-Bold;
  font-size: 23px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 42px;
  letter-spacing: 0px;
  color: #212121;
}

#katio-soft {
  padding-top: 60px;
  background: #ffffff;
}

#katio-soft .container .row .line {
  width: 3px;
  height: 100%;
  opacity: 0.6;
  background: #CCCCCC;
}

#katio-soft .container .row h3 {
  height: 63px;
  font-family: SourceHansCans-Bold;
  font-size: 30px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 42px;
  letter-spacing: 0px;
  color: #212121;
}

#katio-soft .container .row button {
  width: 100%;
  height: 50px;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #f2f2f2;
  background: #2BAFC6;
  cursor: pointer;
}

#katio-soft .container .row p {
  line-height: 30px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0px;
  font-family: SourceHanSans-Regular;
  color: #212121;
}

#katio-soft .container .row .down {
  width: 100%;
  height: 45px;
  font-size: 18px;
  border: 1px solid #f2f2f2;
  background: #F2F2F2;
  cursor: pointer;
}

#katio-soft .container .row .notice {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  line-height: 30px;
  color: #212121;
  width: 100%;
}

#katio-soft .container .row .inSteam {
  width: 100%;
  height: 45px;
  font-family: SourceHanSans-Regular;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 45px;
  letter-spacing: 0px;
  color: #212121;
  text-align: left;
}

#katio-soft .container .row .person {
  width: 100%;
  height: 66px;
  font-family: SourceHanSans-Regular;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 66px;
  letter-spacing: 0px;
  color: #212121;
}

#katio-soft .container .row .desc {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
}

#katio-soft .container .row .desc p {
  text-align: left;
  margin: 0 0 10px 0;
}

#newsinfo {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 100px;
}

#newsinfo .container .row .nav {
  border-bottom: 3px solid #efefef;
}

#newsinfo .container .row .nav a {
  color: #666666;
}

#newsinfo .container .row .nav a:hover {
  color: #454545;
  text-decoration: underline;
}

#newsinfo .container .row .nav .top {
  font-family: SourceHanSans-Regular;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  color: #666666;
}

#newsinfo .container .row .news-title h3 {
  margin: 48px 0 0 0;
  font-family: SourceHanSans-Bold;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 72px;
  letter-spacing: 0px;
  text-align: center;
  color: #454545;
}

#newsinfo .container .row .news-title p {
  font-family: SourceHanSans-Regular;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  color: #454545;
}

#newsinfo .container .row .news-content {
  font-family: SourceHanSans-Regular;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  text-indent: 2em;
  color: #6d6d6d;
}

#newsinfo .container .switch {
  margin-top: 100px;
}

#news-list {
  position: relative;
  padding-top: 85px;
  background: #ffffff;
  padding-bottom: 75px;
}

#news-list .container .item {
  margin-top: 35px;
  padding: 35px 35px 35px 35px;
  box-shadow: 0px 0px 20px 1px #efefef;
}

#news-list .container .row img {
  width: 100%;
  height: 151px;
}

#news-list .container .row h3 {
  font-family: SourceHanSans-Regular;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #181f2f
}

#news-list .container .row h3 a {
  color: #181f2f;
}

#news-list .container .row p {
  margin: 0 0 21px 0;
  font-family: SourceHanSans-Regular;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #999999;
}

#news-list .container .row .news-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

#news-list .container .row p a {
  color: #999999;
}

#news-list .container .item .line {
  width: 100%;
  height: 1px;
  border: 1px dashed #05c3de;
  margin-top: -10px;
}

#news-list .container .row .icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  margin-top: -2px;
}

#news-list .container .row p img {
  width: 100%;
  height: 100%;
}

.pagination {
  padding-left: 20%;
}

.page-link {
  color: #383131;
}

.page-item.active .page-link {
  background-color: #05c3de;
  border-color: #05c3de;
}

#fire-features {
  background: url('../image/feature_bg.jpg') center;
  background-size: cover;
  background-repeat: no-repeat;
}

#fire-features .container {
  padding-top: 30px;
}

#fire-features .container .row h5 {
  position: relative;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
}

#fire-features .container .row p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
}

#fire-drill {
  margin-top: 80px;
  background: #212121;
}

#fire-drill .container .row .line {
  display: flex;
}

#fire-drill .container .section-header {
  margin-bottom: 60px;
}

#fire-drill .container .row .col {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 20px;
}

#fire-drill .container .row .col img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#fire-drill .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#fire-drill .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#fire-drill .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#fire-drill .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#fire-drill .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#fire-drill .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#fire-drill .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#fire-drill .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#fire-drill .card .card-body {
  padding: 0;
  margin-top: 35px;
}

#fire-drill .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #ea1c1d;
  /*Opera*/
}

#simulation-training {
  margin-top: 102px;
  background: #212121;
}

#simulation-training img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#simulation-training .container .section-header {
  margin-bottom: 102px;
}

#simulation-training .container .row .line {
  display: flex;
}

#simulation-training .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#simulation-training .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#simulation-training .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#simulation-training .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#simulation-training .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#simulation-training .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#simulation-training .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#simulation-training .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #00dfff;
}

#simulation-training .card .card-body {
  padding: 0;
  margin-top: 35px;
}

#simulation-training .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #00dfff;
  /*Opera*/
}

#multiplayer-simulation {
  margin-top: 35px;
  background: #212121;
}

#multiplayer-simulation img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#multiplayer-simulation .container .row .line {
  display: flex;
}

#multiplayer-simulation .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}

#multiplayer-simulation .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#multiplayer-simulation .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#multiplayer-simulation .container .section-header .section-title {
  padding-top: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ea1c1d;
}

#multiplayer-simulation .container .section-header p {
  width: 100%;
  padding-bottom: 20px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  color: #ffffff;
}

#multiplayer-simulation .container .terminal .col {
  margin-top: 29px;
}

#walking-simulation {
  margin-top: 35px;
  background: #212121;
}

#walking-simulation p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 47px;
  color: #ffffff;
}

#walking-simulation img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#walking-simulation .container .row .line {
  display: flex;
}

#walking-simulation .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}

#walking-simulation .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#walking-simulation .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#walking-simulation .container .section-header .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ea1c1d;
}

#walking-simulation .container .section-header p {
  width: 100%;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  color: #ffffff;
}

#walking-simulation .container .terminal .col {
  margin-top: 30px;
}

#vr-clients {
  margin-top: 60px;
  background: #212121;
}

#vr-clients .container {
  padding-bottom: 54px;
}

#vr-clients .container .row .line {
  display: flex;
}

#vr-clients .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}


#vr-clients .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#vr-clients .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#vr-clients .container .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ea1c1d;
}

#vr-clients .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 47px;
  color: #ffffff;
}

#vr-clients .container .row img {
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.8);
}

#diversified-solutions .container .row .line {
  display: flex;
}

#diversified-solutions .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
}


#diversified-solutions .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 80px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#diversified-solutions .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 77px;
}

#diversified-solutions .container .section-header .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ea1c1d;
}

#diversified-solutions .container .section-header p {
  width: 80%;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 1px;
  line-height: 30px;
  color: #ffffff;
}

#diversified-solutions .container .row img {
  width: 100%;
  height: 100%;
  padding-right: 11px;
  padding-top: 13px;
}

#diversified-solutions .container .row .item {
  position: relative;
  width: 100%;
  height: 100%;
}

#diversified-solutions .container .row .item .item-title {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  height: 60px;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.6);
}

#diversified-solutions .container .row .item .item-title p {
  line-height: 60px;
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00e0ff;
}

#team-function {
  background: #212121;
  margin-top: 108px;
  margin-bottom: 60px;
}

#team-function .container-fluid {
  padding-right: 100px;
  padding-left: 100px;
}

#team-function .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.8);
}

#team-function .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team-function .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team-function .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team-function .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team-function .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team-function .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team-function .member .social {
  margin-top: 15px;
}

#team-function .member .social a {
  transition: none;
  color: #fff;
}

#team-function .member .social a:hover {
  color: #007bff;
}

#team-function .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#cooperation-case {
  background: #212121;
}

#cooperation-case .container {
  padding-bottom: 45px;
  background: #212121;
}

#cooperation-case .container .row .line {
  display: flex;
}

#cooperation-case .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}


#cooperation-case .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#cooperation-case .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#cooperation-case .container .section-header .section-title {
  margin-bottom: 70px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #ea1c1d;
}

#cooperation-case .container .imglist {
  margin-top: 26px;
}

#cooperation-case .container .imglist img {
  width: 100%;
  margin-top: 12px;
}

#cooperation-case .container .imglist .col {
  padding-left: 12px;
}

#cooperation-case .container .row .case-title {
  margin-left: 0px;
  width: 256px;
  height: 61px;
  margin-top: 41px;
  font-family: SourceHanSans-Bold;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 4px;
  color: #ffffff;
  line-height: 61px;
  text-align: center;
  background-color: #01daf9;
}

#cooperation-case .container .row .content-title p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 35px;
  letter-spacing: 0px;
  color: #00dfff;
}

#cooperation-case .container .row .content-text p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#cooperation-case .container .row .content-text ul {
  padding-left: 45px;
  list-style: square;
  color: #00dfff;
}

#cooperation-case .container .row .content-text ul li {
  margin-left: 30px;
  float: left;
}

#cooperation-case .container .row .content-text ul li span {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#fighting-channel {
  margin-top: 60px;
  background: #212121;
}

#fighting-channel .container .row .line {
  display: flex;
}

#fighting-channel .container .section-header .title {
  margin-bottom: 60px;
}

#fighting-channel .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
}


#fighting-channel .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#fighting-channel .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 22px;
}

#fighting-channel .section-header .section-title {
  padding-bottom: 18px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#fighting-channel .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
  line-height: 30px;
}

#fighting-channel .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#fighting-channel .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#fighting-channel .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 18;
  font-weight: normal;
  font-stretch: normal;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
}

#fighting-channel .card .card-body .card-title ul li {
  list-style: square;
  color: #00dfff;
}

#fighting-channel .card .card-body .card-title ul li span {
  color: #ffffff;
}

#fighting-qualification {
  margin-top: 40px;
  background: #212121;
}

#fighting-qualification .container .row .line {
  display: flex;
}

#fighting-qualification .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#fighting-qualification .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#fighting-qualification .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#fighting-qualification .section-header h3 {
  margin-bottom: 80px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#fighting-qualification .container .row .project-wrap {
  padding: 30px;
  background: #2a2a2a;
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#fighting-partner {
  margin-top: 55px;
  background: #212121;
}

#fighting-partner .container .row .line {
  display: flex;
}

#fighting-partner .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}

#fighting-partner .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(234, 28, 29, 0.09), rgba(234, 28, 29, 0.59), #ea1c1d);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#fighting-partner .container .row .circle {
  background: #ea1c1d;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#fighting-partner .container .section-header .section-title {
  padding-bottom: 40px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #ea1c1d;
}

#fighting-partner .container {
  padding-top: 60px;
  padding-bottom: 95px;
}

#fighting-partner .container .row .col {
  margin-top: 25px;
}

#fighting-partner .container .row img {
  box-shadow: 0px 3px 80px 0px rgba(0, 0, 0, 0.8);
}

#fighting-contact {
  background: url('../image/contact_bg.jpg') center;
  background-size: cover;
  background-repeat: no-repeat;
}

#fighting-contact .container {
  padding-bottom: 90px;
}

#fighting-contact .section-header .section-title {
  padding-top: 88px;
  padding-bottom: 70px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 6px;
  color: #ffffff;
}

#fighting-contact .row .col p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 40px;
  color: #ffffff;
}

#fighting-contact .row .col .btn-primary {
  width: 175px;
  color: #ff0000;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 4px;
}

#vr-coalmine {
  padding-top: 60px;
  background: #212121;
}

#vr-coalmine .container .row .line {
  display: flex;
}

#vr-coalmine .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
}


#vr-coalmine .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#vr-coalmine .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 17px;
}

#vr-coalmine .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#vr-coalmine .container .section-header p {
  padding-top: 40px;
  font-family: SourceHanSans-Bold;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #01daf9;
  line-height: 30px;
}

#vr-coalmine .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#vr-coalmine .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#vr-coalmine .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  text-align: center;
  line-height: 36px;
  letter-spacing: 0px;
  color: #00dfff;
}

#vr-coalmine .card .card-body {
  padding: 0;
  margin-top: 35px;
}

#vr-coalmine .card .card-body .dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  font: 12px/18px Arial;
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #00dfff;
  /*Opera*/
}

#military-training {
  margin-top: 80px;
}

#military-training .row {
  margin-top: 76px;
}

#military-training .row img {
  margin-top: 30px;
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#special-police {
  margin-top: 80px;
}

#special-police .row {
  margin-top: 76px;
}

#special-police .row img {
  margin-top: 30px;
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#police-cooperation-case {
  background: #212121;
}

#police-cooperation-case .container {
  padding-bottom: 45px;
  background: #212121;
}

#police-cooperation-case .container .row .line {
  display: flex;
}

#police-cooperation-case .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
}

#police-cooperation-case .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 33px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#police-cooperation-case .container .row img {
  box-shadow: 0px 15px 70px 0px rgba(0, 0, 0, 0.8);
}

#police-cooperation-case .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 30px;
}

#police-cooperation-case .container .section-header .section-title {
  margin-bottom: 70px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 63px;
  letter-spacing: 1px;
  color: #00dfff;
}

#police-cooperation-case .container .imglist {
  margin-top: 26px;
}

#police-cooperation-case .container .imglist img {
  width: 100%;
  margin-top: 12px;
}

#police-cooperation-case .container .imglist .col {
  padding-left: 12px;
}

#police-cooperation-case .container .row .case-title {
  margin-left: 0px;
  width: 256px;
  height: 61px;
  margin-top: 41px;
  font-family: SourceHanSans-Bold;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 4px;
  color: #ffffff;
  line-height: 61px;
  text-align: center;
  background-color: #01daf9;
}

#police-cooperation-case .container .row .content-title p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 35px;
  letter-spacing: 0px;
  color: #00dfff;
}

#police-cooperation-case .container .row .content-text p {
  padding-left: 57px;
  margin: 0px;
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#police-cooperation-case .container .row .content-text ul {
  padding-left: 45px;
  list-style: square;
  color: #00dfff;
}

#police-cooperation-case .container .row .content-text ul li {
  margin-left: 30px;
  float: left;
}

#police-cooperation-case .container .row .content-text ul li span {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #ffffff;
}

#police-channel {
  margin-top: 60px;
  background: #212121;
}

#police-channel .container .row .line {
  display: flex;
}

#police-channel .container .section-header .title {
  margin-bottom: 60px;
}

#police-channel .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
}


#police-channel .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 25px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#police-channel .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 22px;
}

#police-channel .section-header .section-title {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
}

#police-channel .container .section-header p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #00dfff;
  line-height: 30px;
}

#police-channel .row p {
  font-family: SourceHanSans-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #ffffff;
  line-height: 30px;
}

#police-channel .card {
  background: #212121;
  border-color: #212121;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  color: #282828;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#police-channel .card .card-title {
  font-family: SourceHanSans-Bold;
  font-size: 18;
  font-weight: normal;
  font-stretch: normal;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
}

#police-channel .card .card-body .card-title ul li {
  list-style: square;
  color: #00dfff;
}

#police-channel .card .card-body .card-title ul li span {
  color: #ffffff;
}

#police-project {
  padding-top: 40px;
  overflow: hidden;
  background: #212121;
}

#police-project .section-header {
  padding-bottom: 50px;
}

#police-project .project-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 5px;
}

#police-project .container .row {
  padding-bottom: 20px;
}


#police-project .project-wrap img {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.8);
}

#police-project .project-wrap .project-info {
  position: absolute;
  width: inherit;
  height: 63px;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}

#police-project .project-wrap .project-info h5 {
  position: initial;
  margin: 0;
  text-align: center;
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 2px;
  color: #01ddfd;
}

#police-project .project-wrap .project-info p {
  position: initial;
  margin: 0;
  text-align: center;
  font-family: SourceHanSans-Bold;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 2px;
  color: #01ddfd;
}

#police-project .container .row .line {
  display: flex;
}

#police-project .container .row .left-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
}


#police-project .container .row .right-line {
  background: -webkit-linear-gradient(left, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, rgba(1, 218, 249, 0.09), rgba(1, 218, 249, 0.59), #00dfff);
  /* 标准的语法（必须放在最后） */
  height: 1px;
  width: 95%;
  margin-top: 15px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
  /* Opera */
}

#police-project .container .row .circle {
  background: #00dfff;
  clip-path: circle(50%);
  height: 0.5em;
  width: 0.5em;
  margin-top: 12px;
}

#police-project .section-header h3 {
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #01ddfd;
}

#police-project .container .no-gutters img {
  padding-top: 11px;
  padding-right: 11px;
}

#about {
  padding-top: 100px;
}

#about .container .row .about {
  padding-top: 66px;
}

#about .container h4 {
  font-family: SourceHanSans-Bold;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #4d4d4d;
}

#about .container p {
  font-family: SourceHanSans-Bold;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #4d4d4d;
}

#about .container .row .about p {
  font-family: SourceHanSansCN-Regular;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #4d4d4d;
}

#about .container .no-gutters img {
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.25);
}

#about .container-fluid {
  padding: 0;
}

#about .bottom {
  padding-top: 85px;
}

#about .titleOne {
  padding-bottom: 71px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #282828;
}

#about .titleTwo {
  padding-top: 85px;
  padding-bottom: 71px;
  font-family: SourceHanSans-Bold;
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 19px;
  letter-spacing: 0px;
  color: #282828;
}

#about .col {
  padding: 12px;
}

#about .item img {
  box-shadow: 0px 15px 70px 0px rgba(33, 34, 34, 0.25);
}

.no-padding {
  padding: 0px !important;
}

#sdk .banner h3 {
  color: #05C3DE;
  font-size: 48px;
  text-align: center;
}

#sdk .banner p {
  color: #05C3DE;
  font-size: 28px;
  text-align: center;
  line-height: 40px;
}

#sdk .banner .des {
  color: #05C3DE;
  font-size: 20px;
  text-align: center;
}

#sdk .banner .top .btn-group .btn-primary {
  width: 120px;
  height: 40px;
  margin-left: 10px;
  font-size: 1rem;
  background-color: #05C3DE;
  border-color: #05C3DE;
  border: none;
  outline: none;
  border-radius: 58px;
}

#sdk .banner .top .btn-group .btn-default {
  width: 120px;
  height: 40px;
  margin-left: 10px;
  font-size: 1rem;
  color: #FFFFFF;
  border: none;
  outline: none;
  border-radius: 58px;
}

#sdk .active {
  background-color: #05C3DE;
  border-color: #05C3DE;
  color: #fff;
}

#sdk .btn-primary {
  width: 30%;
  font-size: 3rem;
  background-color: #05C3DE;
  border-color: #05C3DE;
  border: none;
  outline: none;
}

#sdk .content {
  padding: 20px;
}

#sdk .content h2 {
  width: 90%;
  line-height: 30px;
  margin: 0px 0 15px 30px;
}

#sdk .content p {
  width: 90%;
  line-height: 30px;
  margin: 0px 0 5px 30px;
  font-family: SourceHanSans-Regular !important;
}

#sdk .content p span {
  font-family: SourceHanSans-Regular !important;
}

#sdk .substance .node-selected {
  background-color: #ffffff !important;
  color: #05C3DE !important;
  border: none !important;
}

#sdk .substance .list-group-item {
  border: none !important;
  padding: .25rem !important;
}

#sdk .substance .left {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(187, 187, 187, 1);
}

#sdk .substance .left #searchContent {
  margin: 20px;
}

#sdk .substance .left .btn-primary {
  width: 80%;
  margin-top: 20px;
  font-size: 1rem;
  background-color: #05C3DE;
  border-color: #05C3DE;
  border: none;
  outline: none;
}

#sdk .substance .left .treeview span.icon {
  width: 12px;
  margin-right: 5px;
  display: inline-block;
}

.treeview-small {
  width: 200px;
}

.banner {
  width: 100%;
  height: 600px;
  background: url('../image/banner.png') no-repeat;
  background-size: 100%100%;
  position: sticky;
  z-index: 100;
  top: 0;
}

.substance {
  width: 100%;
  height: 10%;
  position: sticky;
  z-index: 100;
  top: 0;
}

#main-content {
  background: #FFFFFF;
}

#main-content .core-func {
  margin: 60px;
  text-align: center;
}

#main-content .core-function {
  margin: 100px 100px 100px 20px;
  padding-top: 30px;
}

.train {
  text-align: center;
}

.train .train-title {
  font-size: 60px;
  font-weight: bold;
  color: #000000;
  letter-spacing: 0.1em;
}

.middle-content {
  margin-top: 1.6em;
  text-align: center;
  padding-left: 3em;
}

.middle-content img {
  float: right;
}

.action-simulation {
  position: relative;
  display: block;
  margin-top: 60px;
}

.action-simulation .action-simulation-title {
  position: absolute;
  top: 1.6em;
  text-align: center;
  width: 100%;
  font-size: 60px;
  font-weight: bold;
  color: #000000;
}

.action-simulation .action-simulation-text {
  position: absolute;
  top: 7em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
}

.simulated-driving {
  position: relative;
  display: block;
  margin-top: 0px;
}

.simulated-driving .simulated-driving-title {
  position: absolute;
  top: 6em;
  text-align: center;
  width: 100%;
  font-size: 60px;
  font-weight: bold;
  color: #000000;
}

.simulated-driving .simulated-driving-text {
  position: absolute;
  top: 15em;
  text-align: left;
  width: 100%;
  font-size: 32px;
  color: #000000;
  left: 24.1em;
  max-width: 28em;
  line-height: 2em;
}

.event {
  position: relative;
  display: block;
  margin-top: 0px;
}

.event .event-title {
  position: absolute;
  top: 4.5em;
  font-size: 60px;
  font-weight: bold;
  color: #000000;
  left: 2.5em;
}

.event .event-text {
  position: absolute;
  top: 12em;
  font-size: 32px;
  color: #000000;
  left: 4.6em;
  max-width: 25em;
  line-height: 2em;
}

.smart-protection {
  position: relative;
  display: block;
  margin-top: 0px;
}

.smart-protection .smart-protection-title {
  position: absolute;
  top: 5em;
  font-size: 60px;
  font-weight: bold;
  color: #000000;
  left: 16.7em;
}

.smart-protection .smart-protection-text {
  position: absolute;
  top: 13em;
  font-size: 32px;
  color: #000000;
  left: 31.5em;
  max-width: 19em;
  line-height: 2em;
}

.lightweight {
  position: relative;
  display: block;
  margin-top: 0px;
}

.lightweight .lightweight-title {
  position: absolute;
  top: 2em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.space {
  position: relative;
  display: block;
  margin-top: 0px;
}

.space .space-title {
  position: absolute;
  top: 1.2em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.space .space-text {
  position: absolute;
  top: 5.2em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
  padding-left: 15em;
  padding-right: 15em;
  line-height: 2em;
}

.body-shape {
  position: relative;
  display: block;
  margin-top: 0px;
}

.body-shape .body-shape-title {
  position: absolute;
  top: 1.2em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.body-shape .body-shape-text {
  position: absolute;
  top: 6em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
}

.software {
  position: relative;
  display: block;
  margin-top: 0px;
}

.software .software-title {
  position: absolute;
  top: 1em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.software .software-text {
  position: absolute;
  top: 5.2em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
}

.developer {
  position: relative;
  display: block;
  margin-top: 0px;
}

.developer .developer-title {
  position: absolute;
  top: 1.6em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.developer .developer-text {
  position: absolute;
  top: 6.2em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
  padding-left: 12em;
  padding-right: 12em;
  line-height: 2em;
}

.industry {
  position: relative;
  display: block;
  margin-top: 0px;
}

.industry .industry-title {
  position: absolute;
  top: 1em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.industry .industry-text {
  position: absolute;
  top: 5em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
  padding-left: 14.5em;
  padding-right: 14.5em;
  line-height: 2em;
}

.safe {
  position: relative;
  display: block;
  margin-top: 0px;
}

.safe .safe-title {
  position: absolute;
  top: 6em;
  font-size: 60px;
  font-weight: bold;
  color: #000000;
  left: 3.2em;
}

.safe .safe-text {
  position: absolute;
  top: 14em;
  font-size: 32px;
  color: #000000;
  line-height: 2em;
  left: 6em;
}

.product {
  position: relative;
  display: block;
  margin-top: 0px;
}

.product .product-title {
  position: absolute;
  top: 1.2em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.odt {
  position: relative;
  display: block;
  margin-top: 0px;
}

.odt .odt-title {
  position: absolute;
  top: 1.6em;
  font-size: 60px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #000000;
}

.odt .odt-text {
  position: absolute;
  top: 6em;
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #000000;
  padding-left: 14em;
  padding-right: 14em;
  line-height: 2em;
}

.mecha-mobile-banner {
  padding-top: 60px;
}

.m-function {
  padding: 30px;
}

.m-product-feature {
  padding: 30px;
}

.m-train {
  padding: 20px;
  text-align: center;
}

.m-train h2 {
  font-weight: bold;
  color: #000000;
}

#floatingButton {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #05C2DF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999;
}

#popup {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  background-color: #05C2DF;
  border: 1px solid #05C2DF;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

#popup label {
  margin-top: 10px;
}

/* 模拟将label显示在输入框内 */
#popup label input {
  width: 100%;
}

/* 添加红色字体颜色和星号标记样式 */
#popup label.required span {
  color: red;
}

#popup p {
  text-align: center;
  font-size: 14px;
  color: #000000;
  margin: 0px 0px 0px 0px;
}

#popup h2 {
  text-align: center;
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  margin: 0px 0px 10px 0px;
}

/* 设置input和textarea的样式 */
#popup input,
textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  /* 添加边框弧度 */
  padding: 5px;
  box-sizing: border-box;
  /* 让边框和内边距不增加元素宽度 */
}

/* 设置closeButton样式 */
#popup #closeButton {
  background: none;
  /* 移除背景色 */
  border: none;
  float: right;
  /* 使其位于右侧 */
}

/* 设置提交按钮样式 */
#popup button[type="submit"] {
  width: 100%;
  /* 显示为100%宽度 */
  background-color: black;
  /* 黑色背景 */
  color: white;
  /* 白色字体 */
  border: none;
  padding: 10px;
  border-radius: 5px;
}

.form-item {
  background: #FFFFFF;
  display: flex;
  margin: 5px;
  border-radius: 5px;
  padding-left: 16px;
  padding-top: 10px;
}

.form-item .form-item-content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-flex;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-item .form-item-content input[type=text] {
  font-size: 14px;
  border: none;
  background: #FFFFFF;
  padding: 1px 10px 1px 10px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -moz-flex-grow: 1;
  height: 99%;
  width: 40%;
}

.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}

.m-form-item {
  background: #FFFFFF;
  display: flex;
  margin: 5px;
  border-radius: 5px;
  padding-left: 16px;
  padding-top: 10px;
}

.m-form-item .m-form-item-content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-flex;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin: 0 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-form-item .m-form-item-content input[type=text] {
  font-size: 14px;
  border: none;
  background: #FFFFFF;
  padding: 1px 10px 1px 10px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -moz-flex-grow: 1;
  height: 99%;
  width: 40%;
}

#m-submit {
  width: 97%;
  height: 50px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin: 5px;
}

#popup .form-item {
  background: #FFFFFF;
  display: flex;
  margin: 5px;
  border-radius: 5px;
  padding-left: 16px;
  padding-top: 10px;
}

#popup .form-item .form-item-content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-flex;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#popup .form-item .form-item-content input[type=text] {
  font-size: 14px;
  border: none;
  background: #FFFFFF;
  padding: 1px 10px 1px 10px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -moz-flex-grow: 1;
  height: 50px;
  width: 40%;
}

#popup .form-item .form-item-content textarea {
  font-size: 14px;
  border: none;
  background: #FFFFFF;
  padding: 1px 10px 1px 10px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -moz-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  -moz-flex-grow: 1;
  height: 99%;
  width: 40%;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  background-color: transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 0s;
}

#videoContainer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 视频宽高比，可根据需要调整 */
}

#videoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
}

#mobileVideoContainer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 视频宽高比，可根据需要调整 */
}

#mobileVideoPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

#mobileVideoPlayer::poster {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#mobilePlayButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: white;
  cursor: pointer;
}