.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;
  width: 1280px;
}
.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% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
            transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
            transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            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% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
            transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
            transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
            transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            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% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
            transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
            transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
            transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
            transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
            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% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
            transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
            transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
            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% {
    -webkit-transform: translateY(100%) scaleX(0.5);
            transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
            transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
            transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
            transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
            transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
            transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
            transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
            transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
            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% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
            transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
            transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
            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% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            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% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
            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% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
            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%);
            transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
            transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
            transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
            transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
            transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
            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% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
            transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
            transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
            transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            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% {
    -webkit-transform: translateY(0%) scaleY(0.6);
            transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
            transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
            transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
            transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
            transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
            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% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            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% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
            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% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
            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% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
            transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
            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% {
    -webkit-transform: scaleY(0.1);
            transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
            transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
            transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
            transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
            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% {
    -webkit-transform: scaleX(0.3);
            transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
            transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
            transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
            transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
            transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
            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% {
    -webkit-transform: scaleX(0.3);
            transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
            transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
            transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
            transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
            transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
            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);
  }
}
html {
  overflow-x: hidden;
}
body {
  font-family: "微软雅黑";
  font-size: 14px;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
  overflow-x: hidden;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #000;
}
ul,
li,
dl,
dd,
dt,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1280px) {
  .centerBlock {
    width: 100%;
    padding: 0 15px;
  }
}
.nav_box {
  background: #3674bc;
}
.nav_ab {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.nav_color {
  background: #2684ed;
}
.logo {
  height: 80px;
  position: absolute;
  left: 0;
  top: 50%;
  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;
  margin-top: -40px;
}
.logo img {
  height: 80px;
  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;
}
@media (max-width: 1290px) {
  .logo {
    left: 15px;
  }
}
@media (max-width: 1050px) {
  .logo {
    position: relative;
    top: 0;
    left: 0;
    margin: 10px 0;
    height: 45px;
  }
  .logo img {
    height: 45px;
  }
}
@media (max-width: 640px) {
  .logo {
    height: 30px;
  }
  .logo img {
    height: 30px;
  }
}
.nav > ul > li {
  float: left;
  position: relative;
  margin-left: 15px;
  height: 99px;
}
.nav > ul > li > a {
  font-size: 14px;
  line-height: 119px;
  height: 99px;
  color: #fff;
  display: block;
  padding: 0 20px;
  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;
}
.nav > ul > li:hover > a {
  background: #1d77db;
}
.nav > ul > li > .child_box {
  display: none;
  width: 320px;
  padding: 20px;
  background: rgba(38, 132, 237, 0.6);
  position: absolute;
  top: 99px;
  left: 0;
}
.nav > ul > li > .child_box .left {
  width: 100px;
  float: left;
}
.nav > ul > li > .child_box .left a {
  display: block;
  opacity: 0.5;
  filter: alpha(opacity=50);
  color: #fff;
  border-bottom: 1px solid #68a9f2;
  padding-bottom: 10px;
  margin-bottom: 10px;
  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;
  /*text-overflow: ellipsis;*/
  overflow: hidden;
  /*white-space: nowrap;*/
  height: 25px;
}
.nav > ul > li > .child_box .left a span {
  font-size: 12px;
  margin-right: 5px;
}
.nav > ul > li > .child_box .left a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.nav > ul > li > .child_box .right {
  width: 160px;
  float: right;
}
.nav > ul > li > .child_box .right .pic {
  height: 77px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.nav > ul > li > .child_box .right .txt {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  height: 38px;
  margin-top: 10px;
  overflow: hidden;
}
.nav > ul > li.active > a {
  background: #1d77db;
}
.nav > ul > li.has_child:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: 7px;
  border-style: solid dashed dashed dashed;
  border-color: #fff transparent transparent transparent;
  border-width: 5px;
  width: 0;
  height: 0;
}
.nav > ul > li.has_child > a {
  padding-right: 30px;
}
@media (max-width: 1050px) {
  .nav {
    display: none;
  }
}
.nav_hidden_btn {
  display: none;
  width: 34px;
  height: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  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;
}
.nav_hidden_btn span {
  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;
  display: block;
  height: 2px;
  background: #fff;
  position: absolute;
  width: 100%;
  left: 0;
}
.nav_hidden_btn span:first-child {
  top: 0;
}
.nav_hidden_btn span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.nav_hidden_btn span:last-child {
  bottom: 0;
}
@media (max-width: 1050px) {
  .nav_hidden_btn {
    display: block;
  }
}
@media (max-width: 640px) {
  .nav_hidden_btn {
    width: 30px;
    height: 15px;
    margin-top: -7.5px;
  }
}
.search {
  width: 660px;
  height: 60px;
  padding: 0 38px;
  position: absolute;
  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;
  right: 0;
  bottom: 0;
  background: rgba(62, 135, 215, 0.3);
}
.search .num {
  font-size: 22px;
  color: #fff;
  font-family: arial;
  line-height: 60px;
}
.search .num img {
  margin-right: 5px;
}
@media (max-width: 510px) {
  .search .num {
    display: none;
  }
}
.search .ser {
  width: 205px;
  margin-left: 50px;
  border: 1px solid #e0e8ef;
  height: 28px;
  position: relative;
  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;
  top: 50%;
  margin-top: -14px;
}
.search .ser input[type='text'] {
  border: 0;
  background: none;
  color: #fff;
  display: block;
  width: 80%;
  text-indent: 0.5em;
  padding: 3px 0;
  height: 26px;
}
.search .ser input[type='button'] {
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  background-image: url(../images/iconfont-sousuo.png);
}
.search .ser ::-webkit-input-placeholder {
  color: #fff;
}
@media (max-width: 510px) {
  .search .ser {
    margin-left: 0;
    width: 100%;
  }
}
.search:after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  border-style: dashed solid dashed dashed;
  border-color: transparent #83bcef transparent transparent;
  border-width: 30px;
  width: 0;
  height: 0;
}
.search:hover {
  background: rgba(62, 135, 215, 0.5);
}
@media (max-width: 700px) {
  .search {
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 510px) {
  .search {
    padding: 0 15px;
  }
}
.foot_links {
  color: #c1bfbf;
}
.foot_links .title {
  font-size: 14x;
  color: #c1bfbf;
  display: block;
  margin-bottom: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  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;
  cursor: default;
}
.foot_links .item {
  font-size: 12px;
  color: #868686;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  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;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .foot_links .title {
    border-bottom: 1px solid #4e4e4e;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .foot_links .item {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .foot_links .col-sm-7 .col-sm-4 {
    margin-bottom: 30px;
  }
  .foot_links .col-sm-7,
  .foot_links .col-sm-5 {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .foot_links .foot_erweima {
    display: none;
  }
}
.footer {
  background: #181411;
  line-height: 25px;
  padding: 20px 0;
  font-size: 12px;
  color: #b4b4b4;
}
.footer .pull-right {
  margin-left: 25px;
}
.footer .pull-right a {
  display: inline-block;
  margin-left: 20px;
  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;
}
.footer .pull-right a:hover {
  filter: brightness(2);
  -webkit-filter: brightness(2);
  -moz-filter: brightness(2);
  -o-filter: brightness(2);
  -mz-filter: brightness(2);
}
@media (max-width: 768px) {
  .footer {
    padding: 15px 0;
  }
  .footer .pull-left,
  .footer .pull-right {
    float: none;
    width: 100%;
  }
  .footer .pull-right {
    display: none;
  }
}
.content_box {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .content_box {
    margin-bottom: 30px;
  }
}
.column_name {
  font-size: 16px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: arial;
  margin-bottom: 0px;
}
.column_type {
  margin-bottom: 30px;
  background: #f5f5f5;
  color: #999;
  padding: 9px 0;
  position: relative;
}
.column_type:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 400%;
  height: 100%;
  background: #f5f5f5;
  z-index: -1;
}
.column_type a {
  color: #999;
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #e6e6e6;
  font-size: 14px;
}
.column_type a:last-child {
  border: 0;
}
.column_type a:hover {
  color: #2684ed;
}
.column_type a.active {
  color: #2684ed;
}
@media (max-width: 640px) {
  .column_type {
    margin-top: -20px;
    margin-bottom: 10px;
    background: none;
  }
  .column_type:before {
    background: none;
  }
  .column_type a {
    display: block;
    width: 100%;
    border-right: 0;
    line-height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    background: #f5f5f5;
    margin: 10px 0;
  }
}
.breadcrumb_name {
  font-size: 14px;
  color: #999;
  margin-bottom: 55px;
  margin-top: 5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.breadcrumb_name a {
  color: #999;
}
@media (max-width: 1280px) {
  .breadcrumb_name {
    margin-bottom: 30px;
  }
}
.content img {
  max-width: 100%;
}
/*
    ------------------------------
    首页样式 (如 banner abouts ... )
    ------------------------------
*/
.header_box {
  position: relative;
}
.banner {
  overflow: hidden;
}
.banner .slick-prev,
.banner .slick-next {
  width: 96px;
  height: 96px;
  margin-top: -48px;
  text-indent: 9999px;
  overflow: hidden;
  background-image: url(../images/icons.png);
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: alpha(opacity=50);
  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;
}
.banner .slick-prev:hover,
.banner .slick-next:hover,
.banner .slick-prev:active,
.banner .slick-next:active {
  opacity: 1;
  filter: alpha(opacity=100);
}
@media (max-width: 768px) {
  .banner .slick-prev,
  .banner .slick-next {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
.banner .slick-prev {
  left: 5%;
  background-position: 0 0;
}
.banner .slick-next {
  right: 5%;
  background-position: -96px 0;
}
.round_pic_list {
  width: 980px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.round_pic_list .item {
  display: block;
  width: 205px;
  margin-left: auto;
  margin-right: auto;
}
.round_pic_list .item .pic {
  display: block;
  height: 205px;
  padding: 8px;
  border: 1px solid #ececec;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -mz-border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.round_pic_list .item .pic b {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  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;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -mz-border-radius: 50%;
  background: rgba(17, 140, 255, 0.72);
}
.round_pic_list .item .pic b:after {
  content: "";
  width: 35px;
  height: 35px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  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;
  background-image: url(../images/iconfont-fangda.png);
  -ms-transform: scale(0);
      transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -mz-transform: scale(0);
}
.round_pic_list .item .pic i {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -mz-border-radius: 50%;
}
.round_pic_list .item .name {
  display: block;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 14px;
  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;
  color: #808080;
  margin-top: 15px;
}
.round_pic_list .item:hover .name {
  color: #2477c8;
}
.round_pic_list .item:hover .pic b {
  opacity: 1;
  filter: alpha(opacity=100);
}
.round_pic_list .item:hover .pic b:after {
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -mz-transform: scale(1);
}
@media (max-width: 1050px) {
  .round_pic_list {
    width: 100%;
  }
}
.scenery_show {
  margin-top: 30px;
  margin-bottom: 30px;
}
.scenery_show .item {
  position: relative;
}
.scenery_show .item a {
  display: block;
  padding-bottom: 120%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.scenery_show .item i {
  display: block;
  width: 35px;
  height: 35px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  transition: All 1s ease-in-out;
  -webkit-transition: All 1s ease-in-out;
  -moz-transition: All 1s ease-in-out;
  -o-transition: All 1s ease-in-out;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20%;
  background-image: url(../images/iconfont-jiantou.png);
  -ms-transform: translateY(100px);
      transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -mz-transform: translateY(100px);
}
.scenery_show .item .name {
  width: 200px;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All 1.5s ease-in-out;
  -webkit-transition: All 1.5s ease-in-out;
  -moz-transition: All 1.5s ease-in-out;
  -o-transition: All 1.5s ease-in-out;
  position: absolute;
  font-size: 30px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 25px 10px;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -ms-transform: translateY(-100px);
      transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -mz-transform: translateY(-100px);
}
.scenery_show .slick-center i,
.scenery_show .slick-center .name {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translateY(0px);
      transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -mz-transform: translateY(0px);
}
.scenery_show .slick-prev,
.scenery_show .slick-next {
  width: 54px;
  height: 106px;
  margin-top: -53px;
  text-indent: 999px;
  overflow: hidden;
  background-image: url(../images/icons.png);
  background-repeat: no-repeat;
}
.scenery_show .slick-prev {
  left: 3%;
  background-position: -280px 0;
}
.scenery_show .slick-next {
  right: 3%;
  background-position: -222px 0;
}
.home_introduction {
  display: block;
  line-height: 30px;
  height: 95px;
  overflow: hidden;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .home_introduction {
    margin-bottom: 20px;
  }
}
.border_pic_box {
  padding: 10px;
  border: 1px solid #cee1f4;
  width: 48%;
  margin: 0 1%;
  float: left;
}
.border_pic_box i {
  display: block;
  padding-bottom: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
@media (max-width: 768px) {
  .border_pic_box {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    width: 50%;
  }
}
.the_first_new {
  display: block;
  width: 100%;
}
.the_first_new .pic {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  position: relative;
  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;
  padding: 15px;
}
.the_first_new .pic i {
  display: block;
  padding-bottom: 60%;
  border: 1px solid #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.the_first_new .name {
  display: block;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 10px;
}
.the_first_new .clude {
  display: block;
  height: 42px;
  line-height: 22px;
  color: #808080;
  overflow: hidden;
  margin-top: 10px;
}
.home_news_list .row {
  margin-bottom: 60px;
}
.home_news_list .row:hover .day {
  background: #2477c8;
  color: #fff;
}
.home_news_list .row:hover .year {
  background: #1b6bb8;
  color: #fff;
}
.home_news_list .row:hover .name {
  color: #2477c8;
}
.home_news_list .col-xs-2 {
  padding: 0 0;
}
.home_news_list a,
.home_news_list span {
  display: block;
}
.home_news_list .day {
  font-size: 30px;
  color: #808080;
  background: #efefef;
  padding: 4px 0;
  text-align: center;
  font-family: arial;
  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;
}
.home_news_list .year {
  font-size: 14px;
  color: #999999;
  background: #e6e6e6;
  padding: 4px 0;
  text-align: center;
  font-family: arial;
  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;
}
.home_news_list .name {
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  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;
}
.home_news_list .clude {
  display: block;
  height: 42px;
  line-height: 22px;
  color: #808080;
  overflow: hidden;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .home_news_list .row {
    margin-bottom: 15px;
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .home_news_list .col-xs-2 {
    width: 25%;
  }
  .home_news_list .col-xs-10 {
    width: 75%;
  }
}
/*
    --------------------------
    公共组件 （如 page title ...）
    --------------------------
*/
.seciton_box {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .seciton_box {
    padding: 30px 0;
  }
}
.seciton_title h3 {
  font-size: 26px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}
.seciton_title h4 {
  font-size: 18px;
  font-family: arial;
  color: #999;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.seciton_title b {
  display: block;
  width: 455px;
  height: 1px;
  background: #f3f2f2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  position: relative;
}
.seciton_title b:after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  background: #2477c8;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  margin: auto;
}
.seciton_title span {
  display: block;
  line-height: 24px;
  color: #808080;
  max-width: 805px;
  min-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  height: 48px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .seciton_title span {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .seciton_title b {
    width: 100%;
  }
}
.category {
  text-align: center;
  margin-top: 40px;
}
.category a {
  display: block;
  height: 30px;
  line-height: 30px;
  width: 8%;
  background: #fff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -mz-border-radius: 2px;
  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;
  color: #2477c8;
  float: left;
  margin: 1%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.category a.active,
.category a:hover {
  background: #2477c8;
  color: #fff;
}
@media (max-width: 1050px) {
  .category a {
    width: 12.285714285714286%;
    margin: 1%;
  }
}
@media (max-width: 680px) {
  .category a {
    width: 18%;
    margin: 1%;
  }
}
@media (max-width: 490px) {
  .category a {
    width: 31.333333333333336%;
    margin: 1%;
  }
}
.module_more a {
  display: inline-block;
  background: #2477c8;
  color: #fff;
  font-family: arial;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -mz-border-radius: 2px;
  line-height: 14px;
}
.module_more a img {
  margin-left: 10px;
  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;
}
.module_more a:hover img {
  margin-left: 15px;
}
.paging {
  margin-top: 30px;
}
.switch {
  margin-top: 30px;
  background: #edf1f6;
  padding: 15px 0;
  position: relative;
}
.switch .col-sm-4 {
  line-height: 30px;
}
.switch .col-sm-4:hover {
  color: #2684ed;
}
.switch .text-left {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.switch:before {
  content: "";
  z-index: -1;
  background: #edf1f6;
  position: absolute;
  left: -100%;
  top: 0;
  width: 300%;
  height: 60px;
}
@media (max-width: 1280px) {
  .switch:before {
    display: none;
  }
}
@media (max-width: 1280px) {
  .switch {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.return {
  display: inline-block;
  background: #000000;
  line-height: 30px;
  height: 30px;
  color: #fff;
  padding: 0 25px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -mz-border-radius: 30px;
  font-family: "宋体";
}
.return:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .return {
    margin-top: 30px;
  }
}
.blue_block_title {
  height: 30px;
  line-height: 30px;
  color: #fff;
  background: #2684ed;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}
/*
    ----------------------------------------------
    栏目样式 (如 contact about products news hr ... )
    ----------------------------------------------
*/
.about_article {
  line-height: 30px;
}
.about_article .row1 .col-sm-4 {
  padding-left: 0;
  padding-right: 0;
}
.about_article .row1 .col-sm-8 {
  padding-left: 60px;
  padding-right: 0;
}
@media (max-width: 767px) {
  .about_article .row1 .col-sm-8 {
    padding-left: 0;
    padding-top: 60px;
  }
}
.about_article .about_title_box {
  text-align: left;
  color: #daebfc;
  background: #2477c8;
  display: inline-block;
  padding: 20px;
}
.about_article .about_title_box span {
  display: block;
}
.about_article .about_title_box .ch {
  font-size: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_article .about_title_box .en {
  text-transform: uppercase;
  font-family: arial;
  margin-top: 8px;
  font-size: 20px;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #afd4f8;
}
.about_article .row2 {
  color: #60818e;
  padding: 30px 0;
  position: relative;
}
.about_article .row2 .block_color {
  position: absolute;
  left: -100%;
  top: 0;
  width: 400%;
  height: 100%;
  background: #b8dbe8;
  z-index: -1;
}
.about_article .row2 .col-sm-7 {
  padding-left: 0;
}
@media (max-width: 767px) {
  .about_article .row2 .col-sm-7 {
    padding-bottom: 50px;
  }
}
.about_article .row2 .col-sm-5 {
  padding-right: 0;
}
.about_article .row2 .about_title_box {
  position: absolute;
  left: 0;
  top: -50px;
}
@media (max-width: 767px) {
  .about_article .row3 .col-sm-5 {
    padding-top: 50px;
  }
}
.about_article .row3 .col-sm-7 {
  padding-left: 0;
}
.contact_title_box {
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -mz-border-radius: 30px;
  color: #fff;
  background: #2684ed;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 40px;
}
.contact_title_box img {
  margin-top: -2px;
}
.contact .col-sm-6,
.contact .col-sm-12,
.contact .col-sm-5,
.contact .col-sm-7 {
  padding-left: 0;
  padding-right: 0;
}
.contact .col-sm-5 {
  padding-right: 90px;
}
.contact a {
  font-family: arial;
  color: #333;
}
.contact input[type='email'],
.contact input[type='text'] {
  border: 1px solid #ccc;
  padding: 6px 10px;
  width: 300px;
  max-width: 100%;
}
.contact textarea {
  border: 1px solid #ccc;
  padding: 10px;
  width: 673px;
  max-width: 100%;
}
.contact .contact_form .row {
  padding-bottom: 20px;
}
.contact .contact_form .im {
  color: #d92929;
  font-family: "宋体";
  font-size: 12px;
  margin-left: 10px;
}
.contact .contact_form .btn {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .contact input[type='email'],
  .contact input[type='text'],
  .contact textarea {
    max-width: 90%;
    width: 90%;
    margin-top: 20px;
  }
  .contact .btn {
    margin-top: 20px;
  }
  .contact .contact_form .row {
    padding-bottom: 0;
  }
  .contact .col-sm-5 {
    margin-bottom: 30px;
  }
  .contact textarea {
    width: 95%;
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .contact textarea {
    width: 90%;
    max-width: 90%;
  }
}
.map_box {
  border: 2px solid #e0e0e0;
  height: 400px;
}
.news_list .pic,
.news_list .txt {
  width: 50%;
  height: 318px;
  float: left;
}
@media (max-width: 768px) {
  .news_list .pic,
  .news_list .txt {
    float: none;
    width: 100%;
    height: auto;
  }
}
.news_list .pic {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  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;
}
.news_list .txt {
  padding: 30px;
}
.news_list .txt span {
  display: block;
}
.news_list .txt .name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
}
.news_list .txt .time {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
  font-family: arial;
}
.news_list .txt .clude {
  line-height: 22px;
  color: #808080;
  height: 70px;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .news_list .txt .clude {
    margin-top: 20px;
  }
}
.news_list .txt .more {
  border: 1px solid #2477c8;
  display: inline-block;
  color: #2477c8;
  font-size: 14px;
  text-transform: uppercase;
  font-family: arial;
  padding: 8px 20px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -mz-border-radius: 2px;
  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;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .news_list .txt .more {
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .news_list .txt {
    padding: 15px;
  }
}
.news_list li {
  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;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
}
.news_list li:hover {
  border-color: #2477c8;
}
.news_list li:hover .txt .more {
  background: #2477c8;
  color: #fff;
}
.news_list li:hover .pic {
  filter: sepia(0.2);
  -webkit-filter: sepia(0.2);
  -moz-filter: sepia(0.2);
  -o-filter: sepia(0.2);
  -mz-filter: sepia(0.2);
}
.new_title span {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  padding: 0 40px 10px 40px;
  display: inline-block;
  border-bottom: 1px solid #f0f0f0;
}
.new_time {
  font-size: 12px;
  color: #cccccc;
}
.new_editor {
  line-height: 28px;
  margin-top: 30px;
}
.new_editor .new_pic_clude .name {
  text-align: center;
  padding: 10px;
  background: #edf1f6;
}
.new_editor .new_pic_clude .name span {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  color: #127aea;
}
.new_editor .new_pic_clude .name span:after,
.new_editor .new_pic_clude .name span:before {
  content: "";
  width: 25px;
  height: 1px;
  background: #666666;
  position: absolute;
  top: 50%;
}
.new_editor .new_pic_clude .name span:before {
  left: -40px;
}
.new_editor .new_pic_clude .name span:after {
  right: -40px;
}
.new_editor .new_pic_clude .pic img {
  width: 100%;
}
.new_editor .new_pic_clude .clude {
  padding: 20px 30px;
  background: #edf1f6;
}
@media (max-width: 640px) {
  .new_editor .new_pic_clude .clude {
    padding: 15px;
  }
}
.hr_title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2684ed;
  padding: 5px 30px;
}
.hr .col-sm-6 {
  padding: 0;
}
.hr .text-left {
  padding-right: 60px;
}
@media (max-width: 767px) {
  .hr .text-left {
    padding-right: 0;
    padding-bottom: 30px;
  }
}
.hr .title_name,
.hr .head_title {
  color: #333;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.hr .title_name .col-xs-4,
.hr .head_title .col-xs-4 {
  background: #f0f0f0;
}
.hr .cont.container-fluid,
.hr .title_name.container-fluid,
.hr .head_title.container-fluid {
  padding: 0;
}
.hr .title_name {
  cursor: pointer;
  color: #666;
  font-size: 12px;
  font-weight: 400;
}
.hr .title_name .col-xs-4 {
  border: 1px solid #f0f0f0;
  background: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hr .title_name .col-xs-4 .glyphicon {
  font-size: 12px;
  margin-right: 5px;
}
.hr .cont {
  display: none;
}
.hr .cont .col-xs-12 {
  padding: 20px 25px;
  margin-top: -1px;
  border: 1px solid #f0f0f0;
  line-height: 30px;
}
.hr_list {
  width: 100%;
  min-width: 768px;
}
.hr_list .select {
  display: block;
}
.hr_list_res {
  overflow: auto;
}
.recommon_title {
  height: 38px;
  border-bottom: 2px solid #db4545;
  margin-bottom: 40px;
  line-height: 38px;
}
.recommon_title .name {
  background: #db4545;
  color: #fff;
  display: inline-block;
  line-height: 38px;
  padding: 0 10px;
  border-top-right-radius: 20px;
}
.recommon_title .name img {
  margin-top: -3px;
}
.recommon_title .recommon_f5 {
  color: #999;
}
.recommon_list {
  width: 1292px;
  position: relative;
  left: 50%;
  margin-left: -646px;
}
.recommon_list .item {
  display: block;
  position: relative;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
}
.recommon_list .item i {
  display: block;
  padding-bottom: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.recommon_list .item .name {
  position: absolute;
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.5);
  background: #000000 \9;
  left: 0;
  top: 8%;
  color: #fff;
  padding: 0 32px;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .recommon_list .item .name {
    top: 0;
    height: 25px;
    line-height: 25px;
  }
}
.recommon_list .item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #2477c8;
  opacity: 0;
  filter: alpha(opacity=0);
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  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;
}
.recommon_list .item:after {
  content: "";
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  background-image: url(../images/icon_jia.png);
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  position: absolute;
  z-index: 3;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All 0.2s ease-in-out;
  -webkit-transition: All 0.2s ease-in-out;
  -moz-transition: All 0.2s ease-in-out;
  -o-transition: All 0.2s ease-in-out;
  -ms-transform: scale(0) rotate(-180deg);
      transform: scale(0) rotate(-180deg);
  -webkit-transform: scale(0) rotate(-180deg);
}
.recommon_list .item:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: scale(1) rotate(0deg);
      transform: scale(1) rotate(0deg);
  -webkit-transform: scale(1) rotate(0deg);
}
.recommon_list .item:hover:before {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
@media (max-width: 1290px) {
  .recommon_list {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}
.tourism_list {
  padding: 40px 0;
  background: #f7f7f7;
}
.tourism_list li {
  background: #fff;
  margin-bottom: 20px;
}
.tourism_list li:hover .name {
  color: #2477c8;
}
.tourism_list li:hover .pic {
  filter: sepia(0.2);
  -webkit-filter: sepia(0.2);
  -moz-filter: sepia(0.2);
  -o-filter: sepia(0.2);
  -mz-filter: sepia(0.2);
}
@media (max-width: 768px) {
  .tourism_list li .btnbox,
  .tourism_list li .pic,
  .tourism_list li .txt {
    float: none;
    width: 100%;
  }
  .tourism_list li .txt {
    height: auto;
    padding: 20px;
  }
  .tourism_list li .txt .info {
    margin-top: 20px;
    line-height: 30px;
  }
  .tourism_list li .btnbox {
    height: auto;
  }
  .tourism_list li .btnbox span {
    width: 90%;
  }
  .tourism_list li .btnbox .book {
    margin-top: 0;
  }
}
.tourism_list .pic,
.tourism_list .txt,
.tourism_list .btnbox {
  height: 300px;
  float: left;
}
.tourism_list .btnbox {
  width: 20%;
  background: url(../images/line.jpg) no-repeat left center;
}
.tourism_list .btnbox a {
  display: block;
  width: 60%;
  text-align: center;
  border: 1px solid #74bd2b;
  margin: 10px auto;
  font-size: 16px;
  font-family: "宋体";
  padding: 12px 0;
  color: #74bd2b;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -mz-border-radius: 5px;
}
.tourism_list .btnbox .book {
  background: #74bd2b;
  color: #fff;
  margin-top: 90px;
}
.tourism_list .pic {
  width: 30%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  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;
}
.tourism_list .txt {
  width: 50%;
  padding: 40px;
}
.tourism_list .txt .name {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  line-height: 30px;
  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;
  height: 90px;
  overflow: hidden;
}
.tourism_list .txt .info {
  line-height: 38px;
  margin-top: 40px;
  color: #666;
  height: 78px;
  overflow: hidden;
}
.search_result .btnbox .lookmore {
  position: relative;
  top: 50%;
  margin-top: -24px;
  border-color: #2684ED;
  color: #2684ED;
}
.tourism_title {
  font-size: 16px;
  font-weight: 600;
}
.tourism_d_info {
  margin-bottom: 50px;
  margin-top: 50px;
}
.tourism_d_info .col-sm-4,
.tourism_d_info .col-sm-8 {
  height: 300px;
}
.tourism_d_info .col-sm-4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.tourism_d_info .col-sm-8 {
  background: #ebf4f4 url(../uploads/car.png) no-repeat right bottom;
  padding: 30px 70px;
}
.tourism_d_info .orange_title {
  display: inline-block;
  padding-left: 20px;
  padding-right: 30px;
  color: #fff;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  background: url(../images/orange_bg.jpg) no-repeat right center #ff9900;
}
.tourism_d_info .white_cont {
  background: #fff;
  border: 1px solid #e5ebeb;
  padding: 20px 40px;
  line-height: 28px;
  margin-top: 20px;
  width: 75%;
  height: 185px;
  overflow: auto;
}
@media (max-width: 1280px) {
  .tourism_d_info .white_cont {
    width: 100%;
  }
}
@media (max-width: 1280px) {
  .tourism_d_info .col-sm-8 {
    padding: 30px;
  }
  .tourism_d_info .white_cont {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .tourism_d_info {
    margin-top: 30px;
  }
  .tourism_d_info .col-sm-8 {
    padding: 15px;
  }
  .tourism_d_info .white_cont {
    height: auto;
  }
}
.blue_title {
  border-bottom-color: #2684ed;
}
.blue_title .name {
  background: #2684ed;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -mz-border-radius: 0;
  padding-left: 25px;
  padding-right: 25px;
}
.blue_title .btn-danger {
  background: #f53e3f;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -mz-border-radius: 0;
  border-color: #f53e3f;
  padding-left: 30px;
  padding-right: 30px;
}
.tourism_cont {
  padding: 40px;
  background: #f7f7f7;
}
.tourism_cont .day {
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  color: #fff;
  background: #2684ed;
  display: inline-block;
  padding: 0 30px;
}
.tourism_cont .text {
  padding: 10px 20px;
  background: #fff;
  line-height: 24px;
  margin-top: 30px;
}
.tourism_cont .has {
  padding: 10px 20px;
  margin-top: 10px;
  padding-bottom: 30px;
}
.tourism_cont .has img {
  height: 13px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .tourism_cont {
    padding: 20px;
  }
}
.service {
  line-height: 24px;
}
.service_pic .col-sm-6 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.service_pic .col-sm-6 i {
  display: block;
  padding-bottom: 50%;
}
.service_other {
  margin-top: 50px;
}
.service_other .pull-left,
.service_other .pull-right {
  height: 240px;
  border: 1px solid #e6e6e6;
  padding: 20px 45px;
}
.service_other .pull-left .title,
.service_other .pull-right .title {
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service_other .pull-left,
  .service_other .pull-right {
    padding: 20px;
  }
}
.service_other .pull-left {
  width: 30%;
}
.service_other .pull-left .list {
  margin-top: 15px;
  color: #32ac00;
}
.service_other .pull-left .list img {
  margin-right: 10px;
}
.service_other .pull-right {
  width: 65%;
}
@media (max-width: 768px) {
  .service_other .pull-left,
  .service_other .pull-right {
    float: none;
    width: 100%;
  }
  .service_other .pull-left {
    margin-bottom: 30px;
  }
}
.service_other .qa {
  margin-top: 10px;
}
.service_other .qa .item {
  padding-bottom: 20px;
}
.service_other .qa .q,
.service_other .qa .a {
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 10px 0;
}
.service_other .qa .q img,
.service_other .qa .a img {
  display: inline-block;
  margin-top: -2px;
}
.about_article dl {
  font-size: 14px;
  line-height: 24px;
  padding: 15px 0;
  border-bottom: solid 1px #eee;
}
@media (max-width: 991px) {
  .about_article dl {
    padding: 5px 0;
  }
}
.about_article dl dd {
  font-size: 12px;
  margin-top: 10px;
}
.about_article dl dd a {
  display: inline-block;
  padding-right: 10px;
}
/***********搜索框样式*/
/*.search .ser #keywords{
    height:27px;
    border:none;
   background:rgba(0, 0, 0, 0) none repeat scroll 0 0;
   color:#fff;

   outline:none;
}*/


/********shy-add*************手机屏幕境内列表页摘要文字显示不全**/
.tourism_list .txt .info >p{
    line-height:25px;
}

 


/*产品询价*/
.product-inquiry {
  width: 100%;
  
  max-width: 1000px;
  
}
.pro_mess{
  
}
 
.pro_mess textarea{
    width:98%;
    max-width:100%;
}
.col-md-12{
    width:100%;
}
.pro_mess input[type="email"], .pro_mess input[type="text"]{
width:98%;
}
