@charset "utf-8";
/***
 *  .--,       .--,
 * ( (  \.---./  ) )
 *  '.__/o   o\__.'
 *     {=  ^  =}
 *      >  -  <
 *     /       \
 *    //       \\
 *   //|   .   |\\
 *   "'\       /'"_.-~^`'-.
 *      \  _  /--'         `
 *   ___)( )(___
 *   (((__) (__)))   努力赚钱！！
 */
.relative {
  position: relative;
}
body {
  background: url(../images/body_bg.png) repeat;
}
@media  (max-width: 767px){
  .navbar-default {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
}
@-webkit-keyframes around {
  from {
    -webkit-transform: rotate(0deg);
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(360deg);
    -webkit-transform-origin: center center;
  }
}
@keyframes around {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center center;
  }
}
.banner {
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  z-index: 1;
  position: relative;
}
.banner .container {
  height: 100%;
  position: relative;
  z-index: 2;
}
.banner .bann-title {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .banner {
    background: url(../images/banner_xs.jpg) no-repeat center;
    background-size: cover;
  }
}
.products {
  padding: 8% 0;
}
.products .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.products .fig {
  width: 19%;
}
.products .fig figcaption {
  min-height: 274px;
}
.products .fig figcaption > a {
  position: relative;
  display: block;
}
.products .fig figcaption > a > img {
  position: relative;
  z-index: 2;
}

.products .fig .fig-text {
  margin-top: 30px;
  text-align: center;
}
.products .fig .fig-text h6 {
  font-size: 18px;
}
.products .fig .fig-text h6 a {
  color: #000;
}
.products .fig .fig-text h6::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #c50505;
  display: block;
  margin: 15px auto;
}
.products .fig .fig-text p {
  color: #575757;
}

@media  (min-width: 768px){
  .products .fig:hover .pro-hover {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .products .fig .pro-hover {
    -webkit-animation: around 10s infinite linear both;
    animation: around 10s infinite linear both;
    width: 240px;
    height: 240px;
    background: url(../images/pro_hover.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: -8px;
    left: -4px;
    z-index: 1;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
  }
}
@media (min-width: 1439px) {
  .products .fig .pro-hover {
    width: 274px;
    height: 274px;
    top: -13px;
    left: -2px;
  }
}

@media (max-width: 767px) {
  .products .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .products .fig {
    width:50%;
  }
  .products .fig figcaption{
    min-height: 195px;
  }
  .products .fig:hover .pro-hover {
    opacity: 0;
  }
  .products .fig .fig-text{
    margin-top: 15px;
  }
  .products .fig .fig-text p {
    display: none;
  }
  .products .fig .fig-text h6{
    font-size: 16px;
  }
}

@media  (max-width: 320px){
  .products .fig figcaption{
    min-height: 170px;
  }
}
.about {
  height: 544px ;
  background: url(../images/about_bg3.jpg) no-repeat center;
  background-attachment: fixed;
  overflow: hidden;
}
.about .container {
  display: block;
  height: 100%;
}
.about .about-text {
  color: #ffffff;
  max-width: 860px;
  line-height: 2.2;
  text-indent: 2em;
  top: 60px;
  position: absolute;
  padding: 170px 65px 65px;
  left: 0px;
  height: 377px;
  overflow: hidden;
  background: url(../images/about_title.png) no-repeat center;
  background-size: cover;
}
@media  (min-width: 768px){
  .about .about-text{
    font-size: 16px;
  }
}
@media (min-width: 1439px) {
  .about .about-text {
    max-width: 860px;
    left: 45px;
  }
}
@media (max-width: 767px) {
  .about {
    height: 100vh;
    background-size: cover;
    background-attachment: inherit;
  }
  .about .about-text {
    font-size: 14x;
    background: rgba(38, 42, 62, 0.5);
    padding: 30px;
    height: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}