
/* =================================== */
/*	Basic Style 
/* =================================== */

body {
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
  font-size: 18px;
  color: #000000;
}

figure,
p,
address {
  margin: 0;
}

p {
  line-height: 25px;
}

iframe {
  border: 0;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Open Sans", sans-serif;
  color: #252525;
}

main > section {
  padding: 70px 0;
}

.btn {
  border-radius: 0;
  border: 0;
  position: relative;
  text-transform: uppercase;
}

.btn-blue {
  background-color: rgba(0, 158, 227, 0.78);
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
  padding: 15px 55px;
  color: #fff;
}

.btn-border {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 35px;
}

.bg-blue {
  background-color: #009ee3;
}

/* Sweep To Right */
.btn-effect {
  vertical-align: middle;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  display: inline-block;

  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;

  -webkit-transition-property: color;
  -moz-transition-property: color;
  -ms-transition-property: color;
  transition-property: color;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;

  -moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;

  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);

  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;

  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  transition-property: transform;

  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  transition-duration: 0.3s;

  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn-effect:hover,
.btn-effect:focus,
.btn-effect:active {
  color: #009ee3;
}

.btn-effect:hover:before,
.btn-effect:focus:before,
.btn-effect:active:before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.sec-title {
  margin-bottom: 50px;
}

.sec-title.white {
  color: #fff;
}

.sec-title h2 {
  font-size: 50px;
  margin: 0 0 30px;
  padding-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
 /* text-shadow: -2px 3px 5px #666666; */
  color: #a76142;
}

.sec-title h2:after {
  border-bottom: 4px solid #a76142;
  content: "";
  display: block;
  left: 45%;
  bottom: 10px;
  position: absolute;
  width: 115px;
}

.sec-title.white h2:after {
  border-bottom: 1px solid #fff;
}

.parallax {
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
/*	Preloader
/* ==========================================*/

#preloader {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/*Battery*/
.loder-box {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1px;
  height: 100px;
  left: 50%;
  margin-left: -64px;
  margin-top: -50px;
  position: absolute;
  top: 50%;
  width: 128px;
}

.battery {
  width: 60px;
  height: 25px;
  top: 35%;
  border: 1px #2e2e2e solid;
  border-radius: 2px;
  position: relative;
  -webkit-animation: charge 5s linear infinite;
  -moz-animation: charge 5s linear infinite;
  animation: charge 5s linear infinite;
  margin: 0 auto;
}

.battery:after {
  background-color: #2e2e2e;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2e2e2e;
  }
  100% {
    box-shadow: inset 60px 0px 0px #2e2e2e;
  }
}

@-moz-keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2e2e2e;
  }
  100% {
    box-shadow: inset 60px 0px 0px #2e2e2e;
  }
}

@keyframes charge {
  0% {
    box-shadow: inset 0px 0px 0px #2e2e2e;
  }
  100% {
    box-shadow: inset 60px 0px 0px #2e2e2e;
  }
}

/**
/*	Header
/* ==========================================*/

#navigation {
  -webkit-transition: all 0.8s ease 0s;
  -moz-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  background-color: #eee4fe;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  padding: 5px 0;
}

#navigation.animated-header {
  padding: 20px 0;
}

h1.navbar-brand {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  padding: 0;
  margin-top: 10px;
}

.navbar-inverse .navbar-nav > li > a {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
}

/*=================================================================
	Home banner
==================================================================*/
#banner{
	padding: 0;
}


/*=================================================================
	About
==================================================================*/
.about-main{
	width: 100%;
	/* min-height: 668px; */
	background: url(../img/about-bg.png) no-repeat;
	background-position: bottom;
	margin-top: 100px;
	padding-top: 0;
}
.about-main .content{
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	padding-right: 60px;
}
.title-box{
	font-size: 45px;
	color: #ae00ff;
	font-weight: bold;
	margin-bottom: 35px;
}
.ab-tubiao{
	margin-top: 80px;
}
.ab-tubiao img{
max-width: 460px;
}

/*=================================================================
	Services
==================================================================*/
.services-main{
	padding: 0;
}
.advantages-main{
	width: 100%;
	background: url(../img/advantages-banner.png) no-repeat;
	background-position: bottom;
	margin-top: 100px;
	padding-top: 0;
}
.advantages-content .at-title{
	font-size: 60px;
	font-weight: 600;
	color: #ae00ff;
	line-height: 1.2;
	margin-bottom: 50px;
}
.advantages-content h3{
	color: #ae00ff;
	font-weight: 600;
}
.advantages-content .content{
	margin-bottom: 40px;
}

/*============================================================
	Footer
==============================================================*/

#footer {
  background-color: #a57afa;
  padding: 70px 0;
  color: #010101;
}
.foo-title{
	font-size: 50px;
	font-weight: 600;
	color: #ae00ff;
}
.foo-flex{
	/* display: flex;
	align-items: center; */
	margin-top: 40px;
}
.foo-flex .list{
	/* display: flex;
	align-items: center; */
	font-size: 18px;
	margin-bottom: 10px;
}

/*============================================================
	For Small Desktop
==============================================================*/

@media (min-width: 980px) and (max-width: 1150px) {
  /*about*/
  #about .welcome-block img {
    margin-bottom: 30px;
  }

  /* portfolio */
  figcaption.mask {
    bottom: -151px;
  }

  .testimonial-item > div:after {
    bottom: -40px;
  }
}

/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {
  /* home slider  */
  .caption-content h2 {
    font-size: 40px;
  }

  .caption-content p {
    font-size: 25px;
  }

  .caption-content strong {
    font-size: 45px;
  }

  /* about */
  .recent-works {
    margin-bottom: 50px;
  }

  .service-item {
    margin-bottom: 50px;
  }

  /* portfolio */
  .portfolio-item {
    width: 48%;
  }

  /* testimonial */
  .testimonial-item {
    width: 100%;
  }

  .testimonial-item {
    width: 80%;
  }

  .testimonial-item > div:after {
    bottom: -35px;
  }

  /* price */
  .price-table {
    margin-bottom: 50px;
  }

  /* contact form */
  .contact-form {
    margin-bottom: 50px;
  }
}

/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .parallax {
    background-position: centet tip !important;
  }

  .sec-title h2 {
    font-size: 25px;
  }

  .sec-title h2:after {
    left: 30%;
  }

  /*navigation*/
  .navbar-inverse .navbar-toggle {
    border-color: #fff;
  }

  .navbar-inverse .navbar-toggle:hover,
  .navbar-inverse .navbar-toggle:focus {
    background-color: transparent;
  }

  /* slider */
  .caption-content h2 {
    font-size: 18px;
  }

  .caption-content > span {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .caption-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .caption-content strong {
    font-size: 22px;
  }

  /* about */
  .recent-works {
    margin-bottom: 85px;
  }

  #about h3 {
    font-size: 18px;
    margin: 0 0 35px !important;
  }

  #about .owl-buttons {
    margin-top: 20px;
  }

  #about .message-body {
    margin-bottom: 45px;
  }

  #about .welcome-block img {
    margin: 0 25px 15px 0;
  }

  /* service */
  .service-item {
    width: 100%;
  }

  /*portfolio*/
  .portfolio-item {
    margin: 0 auto 10px;
    font-size: 14px;
    width: 280px;
  }

  figcaption.mask {
    bottom: -107px;
    color: #fff;
    padding: 15px;
  }

  /* lightbox */
  .fancybox-title h3 {
    font-size: 20px;
  }

  .fancybox-title p {
    font-size: 14px;
  }

  /* testimonial */
  .testimonial-item {
    width: 95%;
  }

  .testimonial-item > div:before,
  .testimonial-item > div:after {
    background-image: none;
  }

  .testimonial-item > div > span {
    margin: 30px 0 20px;
  }

  /* price */
  .price-table {
    margin-bottom: 50px;
  }

  /* follow us */
  .social-button li:nth-child(2) {
    margin: 0 25px;
  }

  .social-button li a {
    height: 65px;
    line-height: 71px;
    width: 65px;
  }

  /* contact form */
  .contact-form {
    margin-bottom: 50px;
  }

  /* footer */
  .footer-content {
    width: 100%;
  }

  .footer-social ul li {
    margin: 0 7px;
  }
}

/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .sec-title h2:after {
    left: 38%;
  }

  /* home slider */
  .caption-content h2 {
    font-size: 35px;
  }

  .caption-content p {
    font-size: 25px;
  }

  .caption-content strong {
    font-size: 35px;
  }

  /*about*/

  #about .welcome-block h3 {
    margin: 0 0 35px;
  }

  /* service */

  .service-item {
    margin: 0 auto 50px;
    width: 55%;
  }

  /* portfolio */
  .portfolio-item {
    width: 48%;
  }

  figcaption.mask {
    bottom: -132px;
  }

  /* testimonial */
  .testimonial-item {
    width: 80%;
  }

  .testimonial-item > div:before {
    bottom: 160px;
  }

  /* social */
  .social-button li:nth-child(2) {
    margin: 0 50px;
  }

  .social-button li a {
    height: 90px;
    line-height: 96px;
    width: 90px;
  }

  /* price */
  .price-table {
    margin-bottom: 50px;
  }

  /* contact form */
  .contact-form {
    margin-bottom: 50px;
  }

  /* footer */
  .footer-content {
    width: 380px;
  }
}

/* case */
.scroll-box {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.case-list-box {
  white-space: nowrap;
  overflow: hidden;
}
.case-list-box li {
  width: 168px;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.case-list-box li img {
  width: 168px;
}
.counter-box {
  text-align: center;
}
.counter-box .counter-number {
  font-size: 38px;
  font-weight: bold;
  color: #000;
}
.counter-box .counter-name {
  font-size: 26px;
  font-weight: bold;
  color: #9c0303;
  margin-top: 20px;
}
.performance-row .col-md-2 {
  width: 20%;
}
.features-main {
  width: 80%;
  float: right;
  margin-top: 100px;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.6;
}
.features-main p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.features-main p .icon-yuan{
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-size: 18px;
}
.features-main h3 {
  color: #fff;
  font-size: 36px;
}
/* 背景特效 */
#canvas {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* position:absolute;
    top:0;
    left:0; */
  background-color: #03164c;
  padding-top: 0;
}
.canvas-wrap {
  position: relative;
}
div.canvas-content {
  position: relative;
  z-index: 2000;
  color: #fff;
  text-align: center;
  padding-top: 30px;
}
.container-service{
    font-size: 18px;
    
}

/*  */
#master-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
}
#master-container .content {
  position: absolute;
  width: 100%;
  /* height: 66px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#master-container-scroller {
  /* height: 66px; */
  /* margin-bottom: -6px; */
  position: relative;
  font-size: 48px;
  text-align: center;
}

#master-container-scroller .master-container-scroller_item {
  display: block;
  padding-bottom: 6px;
  /* -webkit-animation: scroll 15s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    animation: scroll 15s cubic-bezier(0.645, 0.045, 0.355, 1) infinite */
}
.master-container-scroller_item a {
  color: #fff;
}
@keyframes scroll {
  0.0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  11.1111% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  22.2222% {
    -webkit-transform: translateY(-66px);
    transform: translateY(-66px);
  }
  33.3333% {
    -webkit-transform: translateY(-66px);
    transform: translateY(-66px);
  }
  44.4444% {
    -webkit-transform: translateY(-132px);
    transform: translateY(-132px);
  }
  55.55555% {
    -webkit-transform: translateY(-132px);
    transform: translateY(-132px);
  }
  66.6666% {
    -webkit-transform: translateY(-198px);
    transform: translateY(-198px);
  }
  77.7777% {
    -webkit-transform: translateY(-198px);
    transform: translateY(-198px);
  }
  88.8888% {
    -webkit-transform: translateY(-264px);
    transform: translateY(-264px);
  }
  100% {
    -webkit-transform: translateY(-264px);
    transform: translateY(-264px);
  }
}
.scroll-container {
  overflow: hidden; /* 隐藏溢出部分的文本 */
}

.scroll-container p {
  animation: scroll2 3s linear infinite;
}

@keyframes scroll2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.contact-details p{
  text-align: left;
  padding-left: 120px;
}