.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
}
.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
input,button,select,textarea{outline:none}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
body {
  font-family: "微软雅黑";
  font-size: 10px;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #7fc02c;
}
ul,
li dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
    --------------------------------
            公共样式 (如 header nav footer ...)
    --------------------------------
*/
/*
    --------------------------------
          盒子
    --------------------------------
*/
.content-box {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
@media (max-width: 1280px) {
  .content-box {
    width: 100%;
  }
}
.tel {
  float: right;
  background: #7fc02c;
  color: #dcffb0;
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  font-family: impact;
  padding: 0 2.5rem 0 1.5rem;
  height: 3.5rem;
}
@media (max-width: 640px) {
  .tel {
    height: 2.5rem;
  }
  #pnav{display:block\9;}
  .cateList li{width:100%;position:static!important;}
  .cateList-childs{position:static!important;display:block;}
}
.tel em,
.tel b {
  float: left;
  display: block;
  font-weight: normal;
}
.tel b {
  padding-top: 0.5rem;
}
@media (max-width: 640px) {
  .tel b {
    padding: 0;
  }
}
.tel em {
  font-size: 2.2rem;
  font-style: normal;
}
@media (max-width: 640px) {
  .tel em {
    font-size: 1.8rem;
  }
}
/*
    --------------------------------
      头部
    --------------------------------
*/
.header {
  border-top: solid 1px #ededed;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
}
@media (max-width: 745px) {
  .header {
    padding: 0.5rem 0;
  }
}
.header .logo {
  float: left;
}
@media (max-width: 800px) {
  .header .logo img {
    width: 80%;
    padding-left: 1rem;
  }
}
@media (max-width: 745px) {
  .header .logo img {
    width: 60%;
  }
}
/*
    --------------------------------
      导航
    --------------------------------
*/
.nav {
  float: right;
}
@media (max-width: 800px) {
  .nav {
    margin-top: 1.5rem;
  }
}
@media (max-width: 745px) {
  .nav {
    display: none;
  }
}
.nav > ul > li {
  float: left;
  position: relative;
  z-index: 99;
}
.nav > ul > li > a {
  display: block;
  width: 90px;
  text-align: center;
  border-right: solid 1px #ededed;
  height: 30px;
  line-height: 30px;
  color: #3c3c3c;
  font-size: 16px;
}
@media (max-width: 905px) {
  .nav > ul > li > a {
    font-size: 14px;
    width: 82px;
  }
}
.nav > ul > li > a:hover {
  color: #7fc02c;
}
.nav > ul > li:hover > a {
  color: #7fc02c;
}
.nav > ul > li.active > a {
  color: #7fc02c;
}
.nav > ul > li > ul {
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  padding: 10px 0;
}
@media (max-width: 905px) {
  .nav > ul > li > ul {
    width: 82px;
  }
}
.nav > ul > li > ul > li {
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  height: 30px;white-space: nowrap;
}
.navbtn {
  float: right;
  margin-right: 1rem;
  margin-top: 0.5rem;
  display: none;
}
.navbtn img {
  width: 30px;
}
@media (max-width: 745px) {
  .navbtn {
    display: block;
  }
}
/*
    --------------------------------
      footer
    --------------------------------
*/
.footer {
  background: #f8f8f8;
  line-height: 20px;
  padding: 2em 0 1.5rem 0;
  overflow: hidden;
  font-size: 1.2rem;
  text-align: center;
  font-family: arial;
  color: #8e8e8e;
}
.footer #color {
  color: #8e8e8e;
}
.footer p:first-child {
  color: #666;
}
.footer p:first-child a {
  display: inline-block;
  padding: 0 5px;
}
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/
/*
    ------------------------------
    banner
    ------------------------------
*/
.banner img {
  max-width: 100%;
  margin: 0 auto;
}
.banner .slick-prev,
.banner .slick-next {
  width: 40px;
  height: 70px;
  margin-top: -35px;
}
.banner .slick-prev {
  left: 5%;
  background: url(../images/left_btn.png);
  /*background-color: gray;*/
}
.banner .slick-next {
  right: 5%;
  background: url(../images/right_btn.png);
/*   background-color: gray; */
}
.banner .slick-prev::before,
.banner .slick-next::before {
  font-size: 0;
}
/*
    ------------------------------
    首页栏目以
    ------------------------------
*/
.g-title {
  padding-top: 40px;
  text-align: center;
  font-family: tahoma;
  line-height: 30px;
  border-bottom: solid 1px #e7e7e7;
  color: #ff803c;
  font-size: 20px;
}
.g-title h1 {
  font-size: 24px;
  line-height:30px;
}
.g-title p {
  position: relative;
  margin-bottom: -10px;
}
.g-title span {
  border-left: solid 1px #e7e7e7;
  border-right: solid 1px #e7e7e7;
  display: inline-block;
  padding: 0 10px;
  background: #fff;
}
@media (max-width: 640px) {
  .g-title {
    font-size: 18px;
  }
  .g-title h1 {
    font-size: 22px;
  }
}
.column-1 {
  background: #edcd5f;
  padding: 35px 0;
}
@media (max-width: 640px) {
  .column-1 {
    padding-top: 0;
  }
}
.column-1-list li:first-child {
  text-align: left;
  color: #fff;
}
.column-1-list li:first-child h3 {
  font-size: 16px;
}
.column-1-list li:first-child p {
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .column-1-list li:first-child p {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .column-1-list li:first-child p {
    margin-bottom: 10px;
  }
  .page a.page-num, .page span.page-num{display:none;}
}
.column-1-list li:first-child .amore {
  color: #8b6f0a;
  background: url(../images/icon_3.png) no-repeat left center;
  padding-left: 10px;
}
@media (max-width: 800px) {
  .column-1-list li:first-child .more {
    font-size: 12px;
  }
}
.column-1-list li:first-child .more:hover {
  font-weight: bold;
}
.column-1-list li {
  float: left;
  width: 33%;
  text-align: center;
  color: #8b6f0a;
}
@media (max-width: 640px) {
  .column-1-list li {
    width: 100%;
    text-align: left;
    padding-top: 20px;
  }
  .column-1-list li img {
    float: left;
    margin-right: 10px;
  }
}
.column-1-list li h3 {
  font-weight: normal;
  font-size: 24px;
  padding: 10px 0;
}
@media (max-width: 800px) {
  .column-1-list li h3 {
    font-size: 16px;
  }
}
.column-1-list li h3 a {
  color: #8b6f0a;
}
.column-1-list li h3 a:hover {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .column-1-list #brand,
  .column-1-list #job {
    display: none;
  }
}
.news {
  padding-top: 10px;
  padding-bottom: 50px;
}
@media (max-width: 700px) {
  .news {
    padding-bottom: 30px;
  }
}
.news li {
  padding-top: 40px;
  overflow: hidden;
  width: 50%;
  color: #888;
  float: left;
}
@media (max-width: 700px) {
  .news li {
    width: 100%;
    padding-top: 20px;
  }
}
.news li .nimg {
  position: relative;
  width: 27%;
  float: left;
}
.news li .nimg i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 60%;
}
@media (max-width: 700px) {
  .news li .nimg i {
    padding-bottom: 60%;
  }
}
.news li .content {
  width: 65%;
  float: left;
  padding-left: 3%;
}
@media (max-width: 700px) {
  .news li .content {
    width: 70%;
  }
}
.news li .content h2 {
  font-size: 16px;
  height: 24px;
  line-height: 24px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .news li .content h2 {
    font-size: 14px;
  }
}
.news li .content p {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  margin: 5px 0;
}
@media (max-width: 800px) {
  .news li .content p {
    font-size: 12px;
  }
}
.news li .content .more {
  border: solid 1px #f2f2f2;
  display: inline-block;
  width: 74px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 12px;
  color: #888;
}
@media (max-width: 800px) {
  .news li .content .more {
    display: none;
  }
}
.news li .content .more:hover {
  color: #7fc02c;
}
.product {
  background: #f3f3f3;
  margin-bottom: 50px;
  height:308px;
  overflow:hidden;
}
.product .content-box {
  padding: 0;
}
.product-slick {
  padding-top: 40px;
}
.product-slick .pimg {
  position: relative;
  margin: 0 10px;
}
.product-slick .pimg i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 80%;
  display: block;
}
.product-slick .pimg:hover .ptext {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.product-slick .ptext {
  background: url(../images/bg2.png) repeat;
  width: 100%;
  padding-bottom: 80%;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 14px;
  color: #eee;
  opacity: 0;
  filter: alpha(opacity=0);
}
.product-slick .ptext div {
  height: 100px;
}
.product-slick .ptext p {
  border-bottom: solid 1px #525252;
  border-top: solid 1px #525252;
  height: 32px;
  line-height: 32px;
  overflow: hidden;
  color: #fff;
  font-weight: bold;
  margin: 0 25px;
}
.product-slick .ptext span {
  display: block;
  height: 40px;
  overflow: hidden;
  margin: 0 25px;
  line-height: 20px;
  margin-top: 10px;
}
.product-slick .slick-prev,
.product-slick .slick-next {
  margin-top: 10px;
}
.product-slick .slick-prev {
  left: 10px;
}
.product-slick .slick-next {
  right: 10px;
}
.product-slick .slick-prev::before,
.product-slick .slick-next::before {
  color: #7fc02c;
  font-size: 30px;
  z-index: 999;
}
/*
    ------------------------------
    门店展示
    ------------------------------
*/
.store {
  background: #7fc02c; padding: 30px 0 40px 0; color: #fff; height:460px;overflow:hidden;}
@media (max-width: 640px) {
  .store {
    padding-bottom: 20px;
  }
}
.store .title {
  text-align: center;
  font-family: tahoma;
  line-height: 30px;
  border-bottom: solid 1px #86cb2d;
  font-size: 20px;
}
.store .title h1 {
  font-size: 24px;
}
.store .title p {
  position: relative;
  margin-bottom: -10px;
}
.store .title span {
  border-left: solid 1px #86cb2d;
  border-right: solid 1px #86cb2d;
  display: inline-block;
  padding: 0 10px;
  background: #7fc02c;
}
@media (max-width: 640px) {
  .store .title {
    font-size: 18px;
  }
  .store .title h1 {
    font-size: 22px;
  }
}
.store .content-box {
  width: 1042px;
  padding: 0;
  height:273px;overflow:hidden;
}
@media (max-width: 1280px) {
  .store .content-box {
    width: 100%;
  }
}
@media (max-width: 758px) {
  .store .content-box {
    height: 100%; 
  }
  .store{height: 100%;}
}
.store-list {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .store-list {
    margin-top: 30px;
  }
}
.store-list p {
  position: relative;
}
.store-list i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 65%;
}
.store-list a {
  display: block;
  margin: 0 40px;
}
@media (max-width: 500px) {
  .store-list a {
    margin: 0 10px;
  }
}
.store-list span {
  color: #ecffd3;
  display: block;
  margin-top: 30px;
  background: url(../images/icon_2.png) no-repeat top left;
  text-indent: 2rem;
  height: 20px;
  line-height: 20px;
  /*ruby-overhang: ;*/
}
@media (max-width: 640px) {
  .store-list span {
    margin-top: 20px;
  }
}
.store-list .slick-prev,
.store-list .slick-next {
  margin-top: -37px;
}
.store-list .slick-prev {
  left: 25px;
}
.store-list .slick-next {
  right: 30px;
}
.store-list .slick-prev::before,
.store-list .slick-next::before {
  font-size: 30px;
  z-index: 999;
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.abanner {
  position: relative;
}
.abanner i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 20%;
}
@media (max-width: 640px) {
  .abanner i {
    padding-bottom: 35%;
  }
}
.sider-content {
  line-height: 24px;
  padding-bottom: 50px;
  overflow: hidden;
}
.sider-cur {
  margin-top: 2rem;
  color: #999;
  text-indent: 2.5rem;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  overflow: hidden;text-align:right;line-height: 21px;
}
.sider-cur span{margin:0 5px 0 0;}
.sider-cur span img{margin-top: -2px;}
.sider-cur a {
  color: #999;
}
.sider-cur i{color: #7fc02c;font-style:normal;}

.sider-title {
  text-align: center;
  padding: 3rem 0 1.5rem 0;
  border-bottom: solid 1px #ddd;
  line-height: 36px;
  color: #696969;clear:both;
}
.sider-title h2 {
  font-weight: normal;
  font-size: 36px;
  color: #333;
}
@media (max-width: 640px) {
  .sider-title h2 {
    font-size: 20px;
    line-height: 20px;
  }
}
.sider-title p {
  padding-top: 1rem;
}
.contact {
  line-height: 40px;
}
.contact .font26 {
  font-size: 26px;
  color: #6e6e6e;
  padding: 4rem 0 2rem 0;
}
@media (max-width: 640px) {
  .contact .font26 {
    padding: 2rem 0 1rem 0;
    font-size: 16px;
  }
}
.message {
  padding-top: 30px;
}
.message .gray {
  color: #9c9c9c;
}
.message li {
  margin-top: 15px;
  font-size: 12px;
}
.message li span {
  width: 23%;
  text-align: right;
  display: inline-block;
  vertical-align: top;
  color: #5b5f6b;
}
.message li input {
  border: solid 1px #d9d9d9;
  height: 30px;
  line-height: 30px;
  text-indent: 6px;
  width: 70%;
}
.message li textarea {
  border: solid 1px #d9d9d9;
  width: 70%;
  height: 60px;
  padding-left: 5px;
}
.message li input[type="submit"],.message li input[type="button"],.message li input[type="reset"] {
  background: #a40a00;
  color: #fff;
  width: 90px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  border: 0;
  margin-right: 10px;
  margin-left: -2px;
}
.message li em {
  font-style: normal;
  color: #cd0000;
  padding-left: 5px;
}
.brand {
  padding-top: 40px;
}
.brand .font24 {
  font-size: 24px;
  color: #444;
}
@media (max-width: 640px) {
  .brand .font24 {
    font-size: 18px;
  }
}
.brand img {
  /*width: 100%;*/
}
.job {
  padding-top: 20px;
  border-bottom: solid 1px #efeeee;
  padding-bottom: 20px;
}
.job .container-fluid {
  padding: 0;
}
.job .row,
.job .col-xs-5,
.job .col-xs-7 {
  margin: 0;
  padding: 0;
}
.job .col-xs-5 {
  position: relative;
}
.job .col-xs-5 i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 54%;
  background: #ff803c;
}
.job .col-xs-5 .cot {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 36px;
}
@media (max-width: 640px) {
  .job .col-xs-5 .cot {
    font-size: 15px;
    line-height: 24px;
    height: 60px;
  }
}
.job .col-xs-5 img {
  width: 30px;
}
.job .col-xs-7 img {
  width: 100%;
}
.job-table {
  margin-top: 20px;
}
.job-table .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.job-table .table > tbody > tr > td {
  padding: 10px 35px;
  border-top: 0;
  font-family: arial;
}
.job-table .first {
  background: #ff803c;
  color: #fff;
}
.job-table tr td {
  background: #e8e8e8;
  border-bottom: solid 10px #fff;
}
.page {
  text-align: right;
  margin-top: 40px;
}
.page a,.page span {
  color: #999;
  font-size: 12px;
  font-family: arial;
  display: inline-block;
  padding: 0 10px;
  height: 27px;
  line-height: 27px;
  background: #f0f0f0;
  margin-left: 2px;
}
.page a:hover,
.page #active {
  color: #fff;
  background: #ff803c;
}
.pro-list li {
  float: left;
  width: 23%;
  margin: 0 1%;
  position: relative;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .pro-list li {
    width: 48%;
  }
}
.pro-list li div i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 80%;
}
.pro-list li p {
  background: rgba(0, 0, 0, 0.6);
  height: 26px;
  line-height: 26px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.pro-list li p a {
  color: #fff;
}
.pro-list li p a:hover {
  font-weight: bold;
}
.store-pic li {
  float: left;
  width: 30%;
  margin: 0 1.63% 0 1.7%;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .store-pic li {
    width: 46%;
  }
}
.store-pic li div i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 65%;
}
.store-pic li p {
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-top: 10px;
  overflow: hidden;
}
.store-pic li p a {
  color: #707070;
  background: url(../images/icon_2.png) no-repeat left 5px;
  display: inline-block;
  padding-left: 2.5rem;
}
.store-pic li p a:hover {
  color: #7fc02c;
}
.store-show {
  padding-top: 40px;
}
.store-show h1 {
  text-align: center;
  font-size: 24px;
  color: #444;
  font-weight: normal;
}
.store-show .sinfo {
  border-bottom: solid 1px #ddd;
  padding: 15px 0;
  font-size: 12px;
  text-align: center;
  color: #888;
  margin-bottom:10px;
}
.store-show img {
  max-width: 100%;
}
.store-show .s-rutn {
  background: #ff803c;
  color: #fff;
  padding: 5px 30px;
  border-radius: 5px;
}
.news-list li {
  border: solid 1px #e7e7e7;
  padding: 8px 0 8px 8px;
  overflow: hidden;
  background: #f7f7f7;
  margin-top: 20px;
  position: relative;
}
.news-list li .news-img {
  width: 25%;
  float: left;
}
@media (max-width: 520px) {
  .news-list li .news-img {
    width: 100%;
  }
}
.news-list li .news-img i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 67%;
}
.news-list li .news-text {
  width: 73%;
  float: right;
}
@media (max-width: 520px) {
  .news-list li .news-text {
    width: 100%;
  }
}
.news-list li .news-text span {
  font-family: arial;
  font-size: 14px;
  color: #999;
  float: right;
  padding-right: 20px;
}
.news-list li .news-text h3 {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .news-list li .news-text h3 {
    font-size: 14px;
  }
}
.news-list li .news-text p {
  color: #888;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
  margin-right: 10px;
}
@media (max-width: 800px) {
  .news-list li .news-text p {
    height: 48px;
    overflow: hidden;
    font-size: 12px;
  }
}
.news-list li .news-text .news-more {
  color: #fff;
  display: inline-block;
  width: 70px;
  height: 49px;
  line-height: 49px;
  text-align: center;
  background: #ccc;
  right: 0;
  position: absolute;
  bottom: 0px;
  font-size: 30px;
}
@media (max-width: 800px) {
  .news-list li .news-text .news-more {
    display: none;
  }
}
.news-list li:hover .news-more {
  background: #ff5f2a;
  color: #fff;
}
.news-show {
  padding-top: 40px;
}
.news-show h1 {
  text-align: center;
  font-size: 24px;
  color: #444;
  font-weight: normal;
}
.news-show .sinfo {
  border-bottom: solid 1px #ddd;
  padding: 15px 0;
  font-size: 12px;
  text-align: center;
  color: #888;
}
@media (max-width: 640px) {
  .news-show img {
    width: 100%;
  }
}
.protop {
  padding-top: 50px;
}
.protop h3 {
  color: #532705;
  font-size: 24px;
  padding: 10px 0;
}
@media (max-width: 600px) {
  .protop .col-xs-6 {
    width: 100%;
  }
}
.procot p {
  border-bottom: solid 1px #ccc;
}
.pro-show {
  padding-top: 40px;
  line-height: 36px;
}
.pro-show h1 {
  text-align: center;
  font-size: 24px;
  color: #444;
  font-weight: normal;
}
.pro-show .sinfo {
  border-bottom: solid 1px #ddd;
  padding: 15px 0;
  font-size: 12px;
  text-align: center;
  color: #888;
}
.pro-show img {
  max-width: 100%;
}
.xgnews {
  border-top: solid 1px #ddd;
  padding-top: 30px;
  margin-top: 30px;
  line-height: 36px;
}
.xgnews li {
  height: 36px;
  overflow: hidden;
}
/*# sourceMappingURL=public.css.map */
.panel-body{padding:0!important;}
#fileDialog .middle{height:457px!important;}
.panel-body-noheader{padding:0!important;}
.pub_form_ul li input[type="text"]{line-height:30px!important;height:30px!important;}
.panel{margin-bottom:0!important;}
a.l-btn span.l-btn-left{height:auto!important;}

.page .page-cur {background: #ff803c none repeat scroll 0 0; color: #fff;}
.sitemap li{margin:10px auto;}
.sitemap p{margin-top:10px;}
.sitemap p a{margin-right:10px;}
.glyphicon-th-list::before{content:""!important;}

/*map样式修改*/
#map input{margin-top:12px!important;}
#map input[type="button"]{margin-bottom:8px!important;}

.slick-dots li.slick-active button::before{color:yellow!important;}
.slick-dots li button::before{color:yellow!important;}
.slick-dots{bottom:0;}

/*sitemap*/
.sitemap{ width:100%; float:left;}
.sitemap ul{ width:100%; float:left; padding:0px 0 10px 10px; overflow:hidden; line-height:33px;}
.sitemap ul li{  overflow:hidden;}
.sitemap ul li ul li ul li a{ color:#999;}
.sitemap ul li ul{ padding-bottom:0;}
.sitemap > ul > li > ul > li { border-bottom:1px solid #e3e3e3;}
.sitemap ul li ul li ul li{ display:inline-block; min-width:110px;}
.sitemap ul li h2 { margin-top:0;}
.sitemap ul li h2 a{ color:#894c15; display:inline-block; border:1px solid #a9bacc; border-radius:3px; padding:2px 15px; font-weight:bold;  font-size:14px}
.sitemap ul li h2 a:hover{ background:#a9bacc; color:#fff; text-decoration:none}
.sitemap ul li p{ padding:20px 10px 20px 30px; font-family:'Microsoft YaHei'}
.sitemap ul li p a{ padding:0 15px; line-height:20px; font-size:14px; display:inline-block; color:#666}
.sitemap ul li p a:hover{ text-decoration:underline; color:#333}

.navbox{display:none;}

.category{margin-top:10px;}
.cateList li.cur>a,.cateList-childs ul li a.cur {color:#7fc02c;}
.cateList li{display:inline-block;float:left;position:relative;margin-right:10px;}
.cateList-childs{position:absolute;display:block;background:#ffffff;}
.cateList-childs li{display:block;}
.cateList-childs li a{display:block;white-space: nowrap;line-height:30px;}

.cateList-childs{display:none;}
.navbox li a{padding:10px 20px;}

.navbox li{min-width: 90px;}

.identification{clear:both;width:100%;text-align:center;}
.identification img{display:inline;}

#contact-form .validate-on {
    border: 1px solid #ff0000;
    box-shadow: 0 0 1px #ff0000;
}

.BMapLib_nav{display:none;padding:10px!important;}
.BMapLib_bubble_content{padding:10px!important;}
.BMapLib_sendToPhone,.BMapLib_bubble_close{display:none;}
.BMap_cpyCtrl{display:none;}
.BMapLib_trans{margin:0!important;}
.BMap_Marker img{max-width:39px;}

#verify:hover {cursor: pointer;}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

@media (max-width: 758px){
    .category{display: none;}
}