@charset "utf-8";
/***
 *  .--,       .--,
 * ( (  \.---./  ) )
 *  '.__/o   o\__.'
 *     {=  ^  =}
 *      >  -  <
 *     /       \
 *    //       \\
 *   //|   .   |\\
 *   "'\       /'"_.-~^`'-.
 *      \  _  /--'         `
 *    ___)( )(___
 *   (((__) (__)))    忽忘初心。
 */
body {
  font-family: "Microsoft Yahei", Arial;
}
.maxwidth {
  max-width: 100%;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  margin: 0;
  padding: 0;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
.relative {
  position: relative;
}
@media (min-width: 768px) {
  body {
    min-width: 1200px;
  }
  .container {
    padding: 0;
    width: 1200px;
  }
}
@media (min-width: 1200px) {
  body {
    overflow-x: hidden;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1400px;
  }
}
/*导航*/
.navbar-default {
  margin-bottom: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
}
.top-nav {
  background-color: #008334;
}
.top-nav span {
  color: #fff;
  font-size: 12px;
  line-height: 28px;
}
.top-nav span a {
  color: #fff;
}
@media (min-width: 768px) {
  .navbar-default {
    height: 120px;
    z-index: 2;
    -webkit-box-shadow: 0px 11px 13px 0px rgba(4, 0, 0, 0.12);
    box-shadow: 0px 11px 13px 0px rgba(4, 0, 0, 0.12);
  }
  .navbar-default .phone {
    position: absolute;
    right: 0;
    top: 44px;
  }
  .navbar-brand{
    padding: 8px 15px;
  }


  .navbar-default .navbar-nav {
    margin-top: 40px;
    display: inline-block;
    float: none;
    padding-left: 6%;
  }
  .navbar-default .navbar-nav > li > a {
    color: #454545;
    font-size: 16px;
    position: relative;
    padding-bottom: 25px;
  }
  .navbar-default .navbar-nav > li > a:before {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 0;
    -webkit-transition: width 0s ease,background .4s ease;
    -o-transition: width 0s ease,background .4s ease;
    transition: width 0s ease,background .4s ease;
    left: 0;
    right: 0;
    bottom: 6px;
  }
  .navbar-default .navbar-nav > li > a:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 0;
    right: 2.2%;
    bottom: 6px;
    background: #17935d;
    -webkit-transition: width .4s ease;
    -o-transition: width .4s ease;
    transition: width .4s ease;
  }
  .navbar-default .navbar-nav > li > a:hover {
    color: #17935d;
  }
  .navbar-default .navbar-nav > li > a:hover:before {
    width: 97.8%;
    background: #17935d;
    -webkit-transition: width .4s ease;
    -o-transition: width .4s ease;
    transition: width .4s ease;
  }
  .navbar-default .navbar-nav > li > a:hover:after {
    width: 97.8%;
    background: 0 0;
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
  }
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:focus,
  .navbar-default .navbar-nav > .active > a:hover {
    color: #17935d;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .navbar-default .navbar-header {
    position: relative;
  }
}
/*底部*/
footer {
  padding-top: 2%;
  background-color: #1d1d1d;
}
footer .foot-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3% 15px 1%;
}
footer .p1 {
  font-size: 12px;
  color: #949494;
  line-height: 2;
}
footer .p1:hover {
  color: #fff;
}
footer .ptitle {
  font-size: 14px;
  margin-bottom: 10px;
}
footer .text {
  padding-bottom: 1%;
}
/*回到顶部*/
#totop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  opacity: 1;
  z-index: 100;
  display: none;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.76);
  padding: 10px;
  cursor: pointer;
  /* border-radius: 4px; */
}
#totop:hover,
#totop:focus {
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  #totop {
    bottom: 45px;
    width: 45px;
    height: 43px;
    padding: 8px;
  }
}
