.vertical-center {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.t-hide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.block-full {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.center-block {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
/*
==============================================
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);
  }
}
/*
    --------------------------
           公共样式
    --------------------------
*/
* {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
}
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}
body {
  font-family: Arial, Microsoft YaHei, SimSun;
  color: #959595;
}

/*
	--------------------------
	首页样式
	--------------------------
*/
.container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.header {
  background: #1b0e08;
  border-bottom: 1px solid #331608;
  text-align: center;
  position: fixed;
  top: 0px;
  max-width: 640px;
  width: 100%;
  left: 50%;
  padding: 0.5% 0px;
  z-index: 99;
}
.header .logo {
  display: inline-block;
  max-width: 40%;
  max-height: 90%;
}
.header .logo img {
  max-width: 100%;
}
.header h2 {
  padding: 2% 0px;
  color: #fff;
  width: 60%;
  font-size: 24px;
  font-weight: normal;
  height: auto;
  line-height: auto;
  margin: 0px auto;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.header .am-icon-search {
  font-size: 36px;
  height: 36px;
  line-height: 36px;
  width: 36px;
  position: absolute;
  right: 4%;
  top: 50%;
  color: #fff;
  margin-top: -20px;
}
.header .am-icon-reorder {
  font-size: 36px;
  height: 36px;
  line-height: 36px;
  width: 36px;
  position: absolute;
  color: #fff;
  left: 4%;
  top: 50%;
  margin-top: -20px;
}
.banner ul li {
  position: relative;
}
.banner ul li div {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  bottom: 0px;
  font-size: 24px;
  color: #c7c7c7;
}
.banner ul li div p {
  margin: 10px 4% 38px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .banner ul li div {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .banner ul li div {
    font-size: 16px;
  }
  .banner ul li div p {
    margin: 8px 4% 25px;
  }
}
@media (max-width: 360px) {
  .banner ul li div {
    font-size: 14px;
  }
  .banner ul li div p {
    margin: 5px 4% 22px;
  }
}
.banner .am-direction-nav {
  display: none;
}
.banner .am-control-nav {
  height: 28px;
  bottom: 15px;
  line-height: 28px;
}
.banner .am-control-nav li a {
  height: 10px;
  width: 10px;
  background: #4c4c4c;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -mz-border-radius: 0;
  box-shadow: none;
}
.banner .am-control-nav li a.am-active {
  background: #8a8a8a;
}
@media (max-width: 450px) {
  .banner .am-control-nav {
    bottom: 12px;
  }
}
@media (max-width: 360px) {
  .banner .am-control-nav {
    bottom: 8px;
  }
}
.footer {
  padding: 1% 0px;
  background: #f2f2f2;
  max-width: 640px;
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 50%;
  margin-left: -320px;
}
.footer a {
  display: block;
  text-align: center;
  color: #292929;
  font-size: 18px;
}
.footer a span {
  display: block;
  height: 62px;
  width: 62px;
  margin: 0px auto;
}
.footer a span img {
  width: 100%;
  height: 100%;
}
@media (max-width: 540px) {
  .footer a {
    font-size: 17px;
  }
  .footer a span {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 450px) {
  .footer a {
    font-size: 16px;
  }
  .footer a span {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 360px) {
  .footer a {
    font-size: 14px;
  }
  .footer a span {
    height: 38px;
    width: 36px;
  }
}
.main {
  background: url(../mimg/main_ulbg.png) no-repeat #1b0e08;
  background-size: cover;
}
.main .am-g {
  padding: 0px 12px;
}
.main .am-g li {
  padding: 0px;
  margin: 20px 0px 0px;
  position: relative;
  display: block;
  font-style: normal;
}
.main .am-g li a {
  display: block;
  width: 100%;
  background: rgba(61, 43, 20, 0.62);
}
.main .am-g li a span {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main .am-g li a span {
  color: #eb9c3f;
  font-size: 24px;
  height: 96px;
  line-height: 48px;
  overflow: hidden;
  text-align: center;
  padding: 0px 10px;
}
.main .am-g li a span em {
  font-style: normal;
  color: #fff;
}
.main .am-g li a i {
  display: block;
  padding-bottom: 70.779221%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 450px) {
  .main .am-g li a span {
    font-size: 20px;
    height: 68px;
    line-height: 34px;
  }
}
@media (max-width: 360px) {
  .main .am-g li {
    margin: 15px 0px 0px;
  }
  .main .am-g li a span {
    color: #eb9c3f;
    font-size: 18px;
    height: 56px;
    line-height: 28px;
  }
}
/*
	--------------------------
	公共组件
	--------------------------
*/
.copyright {
  border-top: 1px solid #161616;
  padding: 52px 12px 30px;
  color: #b58c3a;
  background: #1b0e08;
}
.copyright p {
  padding: 10px 0px 10px 54px;
  line-height: 20px;
  margin: 0px;
  background: url(../images/copyright_img.png) no-repeat left;
}
.copyright p a {
  color: #b58c3a;
}
@media (max-width: 540px) {
  .copyright {
    padding: 35px 0px 23px;
  }
}
@media (max-width: 360px) {
  .copyright {
    padding: 20px 0px 15px;
  }
}
.ny {
  background: #000;
}
.bread {
  color: #dbdbdb;
  padding: 3% 3.725%;
  font-size: 24px;
  font-weight: normal;
  background: #1a1a1a;
}
@media (max-width: 360px) {
  .bread {
    font-size: 20px;
  }
}
.more-bt {
  font-size: 24px;
  color: #aeaeae;
  width: 60%;
  text-align: center;
  padding: 1.4% 0px;
  display: block;
  margin: 0 auto;
  background: #564419;
}
@media (max-width: 450px) {
  .more-bt {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .more-bt {
    font-size: 18px;
  }
}
.page {
  text-align: center;
}
.page a {
  font-size: 18px;
  color: #aeaeae;
  background: #564419;
  display: inline-block;
  width: 25%;
  margin: 0px 12px;
  padding: 1% 0px;
}
/*
	--------------------------
	栏目样式
	--------------------------
*/
.about {
  background: #000;
  padding: 0px 0px 15px;
  line-height: 30px;
}
.about .about_c {
  padding: 0px 3.725%;
}
.about .pint span {
  padding: 5px 0px;
  width: 28%;
  text-align: center;
  display: inline-block;
  color: #b58c3a;
  font-size: 18px;
  background: #1b0e08;
}
@media (max-width: 450px) {
  .about {
    line-height: 26px;
  }
}
/*case*/
.case {
  padding: 20px 2.8% 0px;
  background: #000;
}
.case-tit {
  padding: 0px 4px;
}
.case-tit p {
  background: #1a1a1a;
  border-left: 6px solid #e99a3e;
  padding: 2% 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 24px;
  color: #b89236;
}
.case-tit p span {
  font-size: 18px;
}
@media (max-width: 540px) {
  .case-tit p {
    font-size: 22px;
  }
  .case-tit p span {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .case-tit p {
    font-size: 20px;
  }
  .case-tit p span {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .case-tit p {
    font-size: 17px;
  }
}
.case_ul {
  padding: 20px 0px 30px;
}
.case_ul li {
  padding: 0px 4px;
}
.case_ul li a span {
  position: relative;
  display: block;
}
.case_ul li a span i {
  display: block;
  padding-bottom: 64.625%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.case_ul li a p {
  font-size: 20px;
  background: #261e0b;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 12px;
  padding: 2.5% 10px;
  text-align: center;
  color: #fff;
}
@media (max-width: 540px) {
  .case_ul {
    padding: 15px 0px 25px;
  }
  .case_ul li a p {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .case_ul {
    padding: 12px 0px 18px;
  }
  .case_ul li a p {
    font-size: 14px;
  }
}
/*caseshow*/
.caseshow {
  padding: 20px 3.725% 30px;
  background: #000;
}
.caseshow h1.title {
  color: #959595;
  font-size: 24px;
  line-height: 28px;
  font-weight: normal;
}
.caseshow .caseshow_c {
  padding-top: 20px;
  color: #959595;
  line-height: 24px;
  font-size: 16px;
}
@media (max-width: 450px) {
  .caseshow h1.title {
    font-size: 20px;
    line-height: 26px;
  }
  .caseshow .caseshow_c {
    font-size: 14px;
  }
}
.news {
  padding: 0px 3.725% 50px;
  background: #000;
}
.news_ul {
  padding-bottom: 30px;
}
.news_ul li {
  border-bottom: 1px solid #574519;
  padding-bottom: 15px;
}
.news_ul li a em {
  padding: 3% 0px;
  font-size: 24px;
  color: #959595;
  font-style: normal;
  display: block;
}
.news_ul li a div {
  position: relative;
}
.news_ul li a div span {
  display: block;
  width: 57.5%;
  position: relative;
}
.news_ul li a div span i {
  display: block;
  padding-bottom: 67.0588%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news_ul li a div p {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 39%;
  height: 100%;
}
.news_ul li a div p b {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 18px;
  color: #e99a3e;
  line-height: 36px;
  height: 72px;
  font-weight: normal;
  overflow: hidden;
}
@media (max-width: 540px) {
  .news_ul li a em {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .news_ul li a em {
    font-size: 20px;
  }
  .news_ul li a div p b {
    font-size: 16px;
    line-height: 32px;
    height: 64px;
  }
}
@media (max-width: 360px) {
  .news_ul li a em {
    font-size: 18px;
  }
  .news_ul li a div p b {
    font-size: 14px;
    line-height: 28px;
    height: 56px;
  }
}
.newsshow {
  padding: 20px 3.725% 10px;
  background: #000;
}
.newsshow h1.title {
  font-size: 24px;
  color: #e99a3e;
  font-weight: normal;
  text-align: center;
  line-height: 40px;
}
.newsshow .source {
  color: #606060;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 10px 0px;
}
.newsshow .newsshow_c {
  border-top: 1px solid #574519;
  line-height: 30px;
  color: #959595;
  font-size: 16px;
  padding: 15px 0px;
}
@media (max-width: 360px) {
  .newsshow h1.title {
    font-size: 20px;
    line-height: 34px;
  }
}
.job {
  background: #000;
  padding: 25px 3.725%;
}
.job_ul {
  padding-bottom: 28px;
  color: #959595;
}
.job_ul .lit {
  font-size: 22px;
}
.job_ul .lit .s1 {
  text-align: left;
  padding: 0px;
}
.job_ul li {
  border-bottom: 1px solid #1c1505;
  padding: 3.5% 0px;
  text-align: center;
}
.job_ul li a {
  color: #959595;
  font-size: 16px;
}
.job_ul li a span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0px;
}
.job_ul li a .s1 {
  text-align: left;
}
.job_ul li a .s3 {
  color: #884e0b;
  text-decoration: underline;
}
@media (max-width: 540px) {
  .job_ul .lit {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .job_ul .lit {
    font-size: 18px;
  }
  .job_ul li a {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .job_ul .lit {
    font-size: 16px;
  }
}
.jobshow {
  background: #000;
  padding: 25px 3.725%;
}
.jobshow h1.title {
  font-size: 24px;
  color: #b58c3a;
  font-weight: normal;
}
.jobshow .jobshow_c {
  padding-top: 20px;
  line-height: 26px;
  color: #959595;
  font-size: 14px;
}
@media (max-width: 360px) {
  .jobshow h1.title {
    font-size: 20px;
  }
}
.bdmap {
  position: relative;
  width: 100%;
  height: 350px;
}

.bdmap .anchorBL {
  display: none;/*隐藏百度LOGO*/
}
.input_box {
  padding: 20px 0px;
}
.input_box li {
  width: 100%;
  margin-bottom: 12px;
  min-height: 42px;
  padding: 0px 5%;
  list-style: none;
  color: #fff;
}
.input_box li input,
.input_box li textarea {
  display: block;
  width: 100%;
  border: 1px solid #55250e;
  background-color: #29150b;
  margin: 0px;
  padding: 2% 5%;
  font-size: 16px;
  overflow: hidden;
  color: #fff;
}
.input_box li input {
  height: 42px;
  line-height: 20px;
}
.input_box li textarea {
  height: 84px;
  line-height: 24px;
}
.input_box li label {
  display: block;
  width: 100%;
  line-height: 42px;
  padding-left: 5px;
  margin: 0px;
  height: 40px;
  font-weight: normal;
  font-size: 16px;
  overflow: hidden;
}
.li-code a {
  float: left;
  width: 70px;
  height: 37px;
  display: inline-block;
  margin: 2px 5px 0px 0px;
}
.li-code input {
  float: left;
}
.li-code button {
  width: 25%;
  float: right;
  height: 42px;
  color: #b58c3a;
  background: #3e1806;
  border: none;
}
/*contact*/
.contact {
  padding: 20px 0px 0px;
  background: #000;
}
.contact .contact_div {
  padding: 0px 3.725%;
}
.contact .contact_div p {
  margin-bottom: 10px;
  line-height: 26px;
}
.contact .contact_div p span {
  text-align: right;
}
.contact .contact_div p i {
  padding-top: 3px;
  font-style: normal;
}
.contact_map {
  width: 100%;
  padding-bottom: 100%;
  margin-top: 40px;
  border: 1px solid #DDDDDD;
  position: relative;
}
.contact_map #allmap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
} /*地图容器*/
.contact_map .anchorBL {
  display: none;
} /*隐藏百度LOGO*/
/*share*/
.fenxiang_list {
  width: 100%;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  padding: 20px 3.725% 0px;
}
.fenxiang_list li {
  transition: All .4s ease;
  -webkit-transition: All .4s ease;
  -moz-transition: All .4s ease;
  -o-transition: All .4s ease;
  list-style-type: none;
  border: 1px solid #55250e;
  padding: 7px;
  background-color: #29150b;
  line-height: 30px;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.fenxiang_list li img {
  display: block;
  width: 30px;
  float: left;
  margin-right: 15px;
  border-radius: 2px;
}
.fenxiang_list li a {
  display: block;
  background: url(../images/go.png) no-repeat right 7px;
  text-decoration: none;
  font-size: 14px;
}
.fenxiang_list li a:hover,
.fenxiang_list li a:active {
  color: #f9b798;
}
.fenxiang_list li:hover,
.fenxiang_list li:focus,
.fenxiang_list li:active {
  transform: rotateX(30deg);
}
/* 31.弹跳进入 ∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷∷ */
.bounceIn {
  -webkit-animation: bounceIn 1s .2s ease both;
  -moz-animation: bounceIn 1s .2s ease both;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
/*# sourceMappingURL=public.css.map */
