.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
}



.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
body {
  font-family: "微软雅黑";
  font-size: 14px;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #000;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
}
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}
/* 按钮样式 */
input,
button,
textarea,
select {
  font-size: 100%;
  outline: none;
  resize: none;
}
input[type="button"] {
  cursor: pointer;
  border: 0;
}
input[type="submit"] {
  cursor: pointer;
  border: 0;
}
input[type="reset"] {
  cursor: pointer;
  border: 0;
}
.clear {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: '\20';
}
.t2 {
  text-indent: 2em;
}
.f12 {
  font-size: 12px;
}
.f13 {
  font-size: 13px;
}
.f14 {
  font-size: 14px;
}
/*上下间距*/
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.fl {
  display: inline;
  float: left;
}
.fr {
  display: inline;
  float: right;
}
img {
  max-width: 100%;
}
.fontA {
  font-family: arial;
}
.fontB {
  font-weight: bold;
}
.font18 {
  font-size: 18px;
}
@media (max-width: 560px) {
  .font18 {
    font-size: 16px;
  }
}
/*
    --------------------------------
            公共样式 (如 header nav footer ...)
    --------------------------------
*/
.w1280 {
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .w1280 {
    width: 100%;
    padding: 0 15px;
  }
}
.overf {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top {
  line-height: 30px;
  background: #606060;
  color: #fff;
  font-size: 12px;
  text-align: right;
}
.top img {
  max-height: 20px;
  margin-right: 5px;
}
@media (max-width: 640px) {
  .top img {
    max-height: 15px;
  }
}
.top img,
.top span {
  vertical-align: middle;
}
.top span {
  padding: 0 120px 0 0;
}
@media (max-width: 852px) {
  .top span {
    padding: 0;
  }
}
.header {
  position: relative;
  border-bottom: 5px solid #dcdcdc;
}
.header .logo {
  float: left;
  display: block;
  max-width: 156px;
}
.header .logo img {
  max-width: 100%;
  max-height: 100%;
}
.header a.menu_bt {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -13px;
  right: 15px;
  height: 26px;
  line-height: 26px;
  font-size: 26px;
  color: #ccc;
}
@media (max-width: 852px) {
  .header {
    padding: 5px 0;
    border-bottom: 2px solid #dcdcdc;
  }
  .header a.menu_bt {
    display: block;
  }
  .header .logo {
    float: none;
    max-width: 30%;
  }
}
.nav {
  position: relative;
  z-index: 100;
  float: right;
  padding-top: 25px;
  width: 60%;
}
@media (max-width: 915px) {
  .nav {
    width: 660px;
  }
}
@media (max-width: 852px) {
  .nav {
    display: none;
  }
}
.nav li {
  position: relative;
  float: left;
  z-index: 100;
}
.nav li > a {
  display: inline-block;
  background: url(../images/nav_bg.jpg) no-repeat left center;
  width: 94px;
  height: 31px;
  line-height: 31px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  color: #000;
}
@media (max-width: 915px) {
  .nav li > a {
    width: 82px;
  }
}
.nav li:hover > a,
.nav li.now > a {
  color: #0189e3;
}
.nav li:hover div {
  display: block;
}
.nav li div {
  display: none;
  position: absolute;
  left: 0;
  top: 27px;
  width: 100%;
  padding-top: 18px;
  padding-top: 13px\9;
  z-index: 100;
}
.nav li div a {
  overflow: hidden;
  display: block;
  background: url(../images/nav_bg05.png) repeat;
  border-bottom: 1px solid #fff;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.nav li div a:hover {
  color: #0189e3;
}
.footer {
  padding: 25px 0 75px;
  background: #686868;
  font-size: 12px;
}
@media (max-width: 850px) {
  .footer {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .footer {
    display: none;
  }
}
.footer .ewm {
  float: right;
  position: relative;
  background: #f3f3f3;
  padding: 10px;
  width: 10%;
}
@media (max-width: 640px) {
  .footer .ewm {
    display: none;
  }
}
.footer .ewm img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.footer .ewm i {
  display: block;
  padding-bottom: 100%;
}
.footer .f-nav {
  float: left;
  width: 920px;
}
.footer .f-nav li {
  float: left;
  width: 160px;
  margin-right: 30px;
}
.footer .f-nav li .footera{
  display: block;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
  color: #fff;
}
.footer .f-nav li div a {
  display: block;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
  color: #b5b5b7;
}
@media (max-width: 1185px) {
  .footer .f-nav {
    width: 710px;
  }
  .footer .f-nav li {
    margin-right: 15px;
    width: 130px;
  }
}
@media (max-width: 885px) {
  .footer .f-nav {
    width: 590px;
  }
  .footer .f-nav li {
    margin-right: 10px;
    width: 110px;
  }
  .footer .f-nav li > a {
    font-size: 14px;
  }
}
@media (max-width: 775px) {
  .footer .f-nav {
    width: 590px;
    padding-left: 20px;
  }
  .footer .f-nav li {
    margin-right: 10px;
    width: 110px;
  }
  .footer .f-nav li > a {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .footer .f-nav {
    width: 550px;
    padding-left: 10px;
  }
  .footer .f-nav li {
    margin-right: 10px;
    width: 100px;
  }
}
@media (max-width: 640px) {
  .footer .f-nav {
    float: none;
    width: 100%;
  }
  .footer .f-nav li {
    /*width: 20%;*/
    margin: 0;
  }
}
.copy {
  background: url(../images/foot_bg.jpg) repeat;
  padding: 10px 0;
  line-height: 20px;
  font-size: 12px;
  color: #b8b8b8;
}
@media (max-width: 640px) {
  .copy {
    text-align: center;
  }
}
.copy a {
  color: #b8b8b8;
}
.copy span {
  /*float: right;*/
}
@media (max-width: 640px) {
  .copy span {
    float: none;
   /* display: block;*/
    text-align: center;
  }
}
.mm-menu {
  background: #21a5e3;
}
.mm-listview > li > a,
.mm-listview > li > span {
  color: #fff;
}
.mm-menu .mm-listview > li::after {
  border-color: rgba(225, 225, 225, 0.5);
}
.mm-listview > li:not(.mm-divider)::after {
  left: 0;
}
.mm-menu .mm-listview > li > a.mm-prev::after,
.mm-menu .mm-listview > li > a.mm-next::before {
  border-color: rgba(225, 225, 225, 0.5);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span,
.mm-menu .mm-listview > li:hover > a:not(.mm-next),
.mm-menu .mm-listview > li:hover > span {
  background: #31afea;
}
.mm-menu .mm-listview > li > a.mm-prev::before,
.mm-menu .mm-listview > li > a.mm-next::after {
  border-color: rgba(225, 225, 225, 0.5);
}
.mm-footer {
  display: none;
}
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/

.banner img {
  width: 100%;
}
.banner button {
  width: 57px;
  height: 57px;
  z-index: 500;
  top: 50%;
  margin-top: -29px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../css/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  text-indent: -10000px;
  opacity: 0.6;
  filter: Alpha(opacity=60);
}
.banner button:hover {
  opacity: 1;
  filter: Alpha(opacity=100);
}
.banner .slick-prev {
  left: 10%;
  background-image: url(../images/ico02.png);
}
.banner .slick-next {
  right: 10%;
  background-image: url(../images/ico03.png);
}
@media (max-width: 1000px) {
  .banner button {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}
@media (max-width: 780px) {
  .banner {
    height: auto;
  }
}
@media (max-width: 580px) {
  .banner button {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}

.quick-link {
  width: 1156px;
  margin: 0 auto;
  padding: 40px 0 30px;
}
@media (max-width: 1300px) {
  .quick-link {
    width: 100%;
    padding: 40px 15px 30px;
  }
}
@media (max-width: 640px) {
  .quick-link {
    padding: 30px 15px 25px;
  }
}
@media (max-width: 400px) {
  .quick-link {
    padding: 25px 15px 20px;
  }
}
.quick-link .link-list li {
  float: left;
  width: 25%;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 600px) {
  .quick-link .link-list li {
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  .quick-link .link-list li {
    font-size: 12px;
  }
}
.quick-link .link-list li > a {
  position: relative;
  display: block;
  color: #3a3a3a;
}
.quick-link .link-list li > a:hover {
  color: #21a5e3;
}
.quick-link .link-list li > a:hover .img-out {
  opacity: 1;
  filter: Alpha(opacity=100);
}
.quick-link .link-list li > a .img-out {
  opacity: 0;
  filter: Alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.quick-link .link-list li > a .aimg {
  position: relative;
  display: block;
  margin: 0 auto 10px;
  width: 65%;
  background: #fff;
}
@media (max-width: 1000px) {
  .quick-link .link-list li > a .aimg {
    width: 85%;
  }
}
@media (max-width: 700px) {
  .quick-link .link-list li > a .aimg {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .quick-link .link-list li > a .aimg {
    margin: 0 auto 5px;
  }
}
.quick-link .link-list li > a .aimg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.quick-link .link-list li > a .aimg i {
  display: block;
  padding-bottom: 100%;
}
.quick-link .link-list li > a p {
  overflow: hidden;
  height: 24px;
  line-height: 24px;
}
.title {
  font-size: 32px;
  color: #606060;
  text-align: center;
}
.title p {
  background: url(../images/index_bg.jpg) repeat-x left center;
}
.title p span {
  display: inline-block;
  background: #fff;
  width: 42.5%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .title p span {
    width: 60%;
  }
}
@media (max-width: 700px) {
  .title {
    font-size: 25px;
  }
}
@media (max-width: 640px) {
  .title {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .title {
    font-size: 18px;
  }
}
.Block {
  padding: 40px 0 50px;
  overflow-x: hidden;
}
@media (max-width: 640px) {
  .Block {
    padding: 30px 0;
  }
}
@media (max-width: 400px) {
  .Block {
    padding: 25px 0;
  }
}
.spro-titile {
  margin-bottom: 20px;
  text-align: center;
}
.spro-titile p span {
  background: #eee;
}
.spro-tab {
  text-align: center;
  font-size: 18px;
  /*margin-bottom: 70px;*/
}
@media (max-width: 1200px) {
  .spro-tab {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .spro-tab {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .spro-tab {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .spro-tab {
    margin-bottom: 20px;
  }
}
.spro-tab a {
  display: inline-block;
  width: 20%;
  padding: 5px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-left: 1px solid #909090;
}
@media (max-width: 1060px) {
  .spro-tab a {
    display: block;
    float: left;
    width: 24%;
  }
}
@media (max-width: 560px) {
  .spro-tab a {
    border: 0;
  }
}
@media (max-width: 640px) {
  .spro-tab a em {
    display: block;
    font-size: 12px;
  }
}
.spro-tab a:first-child {
  border: 0;
}
.spro-tab em {
  font-style: normal;
  font-family: arial;
  text-transform: uppercase;
}
.spro-tab a:hover,
.spro-tab a.cur {
  color: #32beff;
}
.spro {
  position: relative;
  width: 1290px;
  margin: 0 auto;
}
@media (max-width: 1310px) {
  .spro {
    width: 100%;
    padding: 0 10px;
  }
}
.spro-list li {
  float: left;
  width: 33.333333333333336%;
  padding: 5px;
  overflow: hidden;
}
@media (max-width: 540px) {
  .spro-list li {
    width: 50%;
  }
}
.spro-list li > div {
  position: relative;
}
.spro-list li:hover .bg {
  transform: translate(0, 0);
  opacity: 1;
}
.spro-list li .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: url(../images/index_bg.png) repeat;
  padding: 5% 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  width: 100%;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
  transform: translate(0, 20px);
  opacity: 0;
}
@media (max-width: 460px) {
  .spro-list li .bg {
    font-size: 12px;
  }
}
.spro-list li .aimg {
  display: block;
  position: relative;
  width: 100%;
  background: #fff;
}
.spro-list li .aimg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.spro-list li .aimg i {
  display: block;
  padding-bottom: 66.66%;
}
.snews {
  width: 1310px;
  margin: 0 auto;
  padding-top: 50px;
}
@media (max-width: 1300px) {
  .snews {
    width: 100%;
    padding: 30px 0 0;
  }
}
@media (max-width: 640px) {
  .snews {
    padding-top: 20px;
  }
}
.snews-list li {
  float: left;
  width: 33.333333333333336%;
  padding: 0 15px;
  font-size: 12px;
}
@media (max-width: 540px) {
  .snews-list li {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}
.snews-list li > div {
  background: #f7f7f7;
  padding: 15px 5%;
}
.snews-list li .name {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 18px;
  color: #171616;
  font-family: "黑体";
}
@media (max-width: 640px) {
  .snews-list li .name {
    font-size: 15px;
  }
}
.snews-list li em {
  font-style: normal;
  font-family: arial;
  color: #676767;
}
.snews-list li .aimg {
  position: relative;
  display: block;
  width: 100%;
  margin: 5px 0 10px;
  background: #000;
}
.snews-list li .aimg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.snews-list li .aimg i {
  display: block;
  padding-bottom: 46.84%;
}
.snews-list li p {
  overflow: hidden;
  max-height: 36px;
  margin-bottom: 5px;
  line-height: 18px;
    height: 36px;
}
.snews-list li .more {
  display: block;
  text-align: right;
  background: url(../images/ico04.jpg) no-repeat right center;
  padding-right: 20px;
  color: #1f1f1f;
}
/*
	--------------------------
	公共组件 （如 page title ...）
	--------------------------
*/
.w960 {
  margin: 0 auto;
  width: 960px;
}
@media (max-width: 980px) {
  .w960 {
    width: 100%;
  }
}
.inner-bg {
  background: #caeaff;
  height: 60px;
}
.head-tit {
  padding: 35px 0 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 30px;
  color: #5c5c5c;
  font-weight: 100;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .head-tit {
    font-size: 25px;
    padding: 30px 0 20px;
  }
}
@media (max-width: 640px) {
  .head-tit {
    font-size: 20px;
    padding: 20px 0 10px;
  }
}
@media (max-width: 560px) {
  .head-tit {
    font-size: 18px;
  }
}
.head-tit span {
  margin-left: 10px;
  font-family: arial;
  font-size: 18px;
}
@media (max-width: 640px) {
  .head-tit span {
    font-size: 14px;
  }
}
.head-bread {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  line-height: 20px;
  padding: 10px 0;
  font-size: 14px;
}
.head-bread .menu {
  float: left!important;
  padding: 0px!important;
    border:0px!important;
    background-color:#FFF;
    position:static;
	/* clear:both; */
	width: 50%; 
}

.head-bread .menu a {
  display: inline-block;
  padding: 0 10px 0 7px;
  background: url(../images/ico05.jpg) no-repeat left center;
  /*width: 90px;*/
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #323232;
   margin-left: 5px;

}
.head-bread .menu a:hover,
.head-bread .menu a.cur {
  background: url(../images/ico06.jpg) no-repeat left center;
  color: #0189e3;
}
.head-bread .bread {
  float: right;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #848484;
  text-align: right;
}

.head-bread .bread a {
	color: #848484;
    margin: 0 0px;
}

.head-bread .bread span {
  margin-left: 5px;
}
@media (max-width: 910px) {
  .head-bread {
    border: 0;
    padding: 0;
  }
  .head-bread .menu {
    float: none;
    padding: 30px 0 0;
    /* width: 100%; */
    text-align: center;
  }
  .head-bread .menu a {
    display: inline-block;
    padding: 0 15px;
    width: auto;
    height: 30px;
    line-height: 30px;
    background: #57585a;
    color: #fff;
    margin: 0 5px 5px;
  }
  .head-bread .menu a:hover,
  .head-bread .menu a.cur {
    background: #21a5e3;
    color: #fff;
  }
  .head-bread .bread {
    float: none;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 415px) {
  .head-bread .menu a {
    padding: 0 5px;
  }
}
.page {
  text-align: right;
}
@media (max-width: 600px) {
  .page {
    text-align: center;
  }
}
.page a {
  display: inline-block;
  background: #f0f0f0;
  margin: 0 2px 10px;
  height: 27px;
  line-height: 27px;
  padding: 0 10px;
  color: #949494;
  font-family: "宋体";
}
@media (max-width: 356px) {
  .page a {
    font-size: 12px;
    padding: 0 9px;
  }
}
.page a:hover,
.page a.cur {
  background: #21afff;
  color: #fff;
  font-weight: 600;
  font-weight: bold;
}
.page a.un:hover {
  background: #f0f0f0;
  color: #949494;
  font-weight: 100;
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.about {
  padding: 30px 0 80px;
  line-height: 24px;
  color: #585858;
}
@media (max-width: 910px) {
  .about {
    padding: 20px 0 50px;
  }
}
.about .l-img {
  float: left;
  display: inline-block;
  margin: 80px 66px 0 0;
}
.about .r-img {
  float: right;
  display: inline-block;
  margin: 155px 0 0 30px;
}
@media (max-width: 956px) {
  .about p {
    clear: both;
  }
  .about p.font18 {
    padding-top: 10px;
  }
  .about .l-img {
    width: 50%;
    margin: 0 1% 0 0;
  }
  .about .c-img {
    float: left;
    display: block;
    width: 24%;
    margin-top: 80px;
    text-align: center;
  }
  .about .r-img {
    margin: 166px 0 0;
    width: 24%;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .about .r-img {
    margin: 150px 0 0;
  }
}
@media (max-width: 480px) {
  .about .c-img {
    margin: 50px 0 20px;
  }
  .about .r-img {
    margin: 80px 0 20px;
  }
}
/*idea*/
.idea {
  padding: 25px 0 30px;
  line-height: 24px;
  color: #727272;
}
@media (max-width: 910px) {
  .idea {
    padding: 20px 0 30px;
  }
}
.idea .idea-img span {
  float: left;
  display: inline-block;
  width: 16.666666666666668%;
}
/*job*/
.job {
  padding: 35px 0 95px;
  line-height: 30px;
  color: #676767;
  font-size: 15px;
}
@media (max-width: 910px) {
  .job {
    padding: 20px 0 40px;
  }
}
.job .job-t {
  text-align: center;
  margin-bottom: 20px;
}
.job .job-t .font01 {
  color: #009eec;
}
.job .job-group {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 910px) {
  .job .job-group {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .job .job-group {
    width: 100%;
  }
}
.job .job-group li span {
  float: left;
  display: block;
  border: 1px solid #dce6f2;
  margin: -1px 0 0 -1px;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
}
.job .job-group li .name {
  width: 50%;
}
.job .job-group li .num,
.job .job-group li .date {
  width: 25%;
  text-align: center;
  font-family: arial;
}
.job .job-tit {
  color: #fff;
}
.job .job-tit li span {
  background: #21afff;
  font-weight: 600;
  font-weight: bold;
}
.job .job-tit li .name {
  padding-left: 25px;
}
.job .job-list {
  margin-bottom: 30px;
}
.job .job-list span a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/ico15.jpg) no-repeat 18px center;
  padding-left: 25px;
}
.job .job-list span a:hover {
  color: #0189e3;
}
.job .page {
  text-align: center;
}
/*job show*/
.jshow {
  padding: 45px 0 65px;
  width: 630px;
  margin: 0 auto;
  line-height: 26px;
  color: #787878;
  font-size: 12px;
    word-wrap: break-word;
}
@media (max-width: 910px) {
  .jshow {
    padding: 20px 0 65px;
  }
}
@media (max-width: 650px) {
  .jshow {
    width: 100%;
  }
}
.jshow .font01 {
  color: #0099f0;
}
.jshow .job-info {
  margin-bottom: 25px;
  width: 100%;
}
.jshow .job-info td {
  padding: 7px 10px 7px 20px;
  width: 33.333333333333336%;
  line-height: 20px;
  border: 1px solid #dedede;
  color: #404040;
}
@media (max-width: 500px) {
  .jshow .job-info td {
    vertical-align: top;
  }
}
/*contact*/
.contact {
  background: url(../images/contact_bg.jpg) repeat;
  padding: 30px 0;
  margin: 15px auto 25px;
  line-height: 24px;
  /*color: #747474;*/
}
@media (max-width: 980px) {
  .contact {
    padding: 30px 15px;
  }
}
.contact .map-box {
  position: relative;
  height: 280px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}
.contact .map-box #allmap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact .cont-info {
  float: right;
  padding-top: 30px;
}
@media (max-width: 690px) {
  .contact .cont-info {
    float: none;
    padding: 10px 0 30px;
  }
}
.contact .cont-info .tit {
  font-size: 24px;
  color: #464646;
}
.contact .message{
     width:50%;float:left!important;
 }
.contact .message > p {
  margin-bottom: 15px;
  font-size: 18px;
  color: #323232;
}
.contact .message .mess-list li {
  line-height: 28px;
  padding-bottom: 10px;
}

.miptxt {
  display: inline-block;
  border: 1px solid #b1b1b1;
  background: #fff;
}
.miptxt input {
  border: 0;
  background: none;
  margin: 0 10px;
  padding: 5px 0;
  height: 30px;
  line-height: 20px;
  /*color: #ccc;*/
  font-family: "微软雅黑";
}
.miptxt01 input {
  width: 180px;
  height:24px\9;
  line-height:24px\9;
}
.miptxt02 input {
  width: 240px;
}
.miptxt01 textarea{
	width: 300px;height: 100px;
  padding-left: 10px;
}


.select01 {
  width: 110px;
  height: 28px;
  border: 1px solid #b1b1b1;
  background: #fff;
  color: #ccc;
  font-family: "微软雅黑";
}
.mipbtn {
  background: #47c1fd;
  width: 155px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
}
/*video*/
.video {
  padding: 50px 0 85px;
  width: 975px;
  margin: 0 auto;
}
@media (max-width: 910px) {
  .video {
    width: 100%;
    padding: 20px 0 50px;
  }
}
.video .video-list {
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .video .video-list {
    padding-bottom: 10px;
  }
}
.video .video-list li {
  float: left;
  width: 33.333333333333336%;
  padding: 0 7px 40px;
}
@media (max-width: 600px) {
  .video .video-list li {
    width: 50%;
  }
}
.video .video-list li a {
  display: block;
  color: #585858;
}
.video .video-list li a:hover {
  color: #0189e3;
}
.video .video-list li a .img {
  position: relative;
  margin-bottom: 10px;
}
.video .video-list li a .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video .video-list li a .img i {
  display: block;
  padding-bottom: 64.51%;
}
/*video show*/
.vshow {
  padding: 45px 0 45px;
}
@media (max-width: 910px) {
  .vshow {
    padding: 20px 0 45px;
  }
}
.vshow .bg {
  margin-top: 25px;
  background: #f2f2f2;
}
.vshow .bg .video-box {
  position: relative;
  margin: 0 auto;
  width: 58.33%;
}
@media (max-width: 500px) {
  .vshow .bg .video-box {
    width: 100%;
  }
}
.vshow .bg .video-box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vshow .bg .video-box i {
  display: block;
  padding-bottom: 64.28%;
}
.video-tit {
  text-align: center;
  color: #202020;
}
.video-tit h1 {
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 24px;
}
@media (max-width: 500px) {
  .video-tit h1 {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .video-tit h1 {
    font-size: 18px;
  }
}
.video-tit p {
  font-size: 12px;
  line-height: 20px;
  color: #676767;
  font-family: arial;
}
/*news*/
.news {
  margin: 75px 0 35px -40px;
  width: 1360px;
}
@media (max-width: 1380px) {
  .news {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 910px) {
  .news {
    margin: 20px 0 35px;
  }
}
@media (max-width: 600px) {
  .news .news-list {
    padding-bottom: 20px;
  }
}
.news .news-list li {
  float: left;
  width: 50%;
  padding: 0 40px 50px;
}
@media (max-width: 800px) {
  .news .news-list li {
    padding: 0 20px 40px;
  }
}
@media (max-width: 600px) {
  .news .news-list li {
    width: 100%;
    padding: 0 0 25px 0;
  }
}
.news .news-list li a {
  display: block;
  padding: 20px;
  background: #f7f7f7;
  color: #555;
  font-size: 12px;
  line-height: 18px;
}
.news .news-list li a:hover .name {
  color: #0189e3;
}
.news .news-list li a .name {
  display: block;
  margin-bottom: 10px;
  line-height: 25px;
  color: #202020;
  font-size: 18px;
}
.news .news-list li a .date {
  display: block;
  margin-bottom: 10px;
  color: #676767;
  font-family: arial;
}
.news .news-list li a .img {
  position: relative;
  margin-bottom: 25px;
}
.news .news-list li a .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.news .news-list li a .img i {
  display: block;
  padding-bottom: 46.428%;
}
.news .news-list li a p {
  overflow: hidden;
  margin-bottom: 25px;
  height: 36px;
}
.news .news-list li a .more {
  float: right;
  background: url(../images/ico07.jpg) no-repeat right center;
  padding-right: 20px;
  color: #1f1f1f;
  font-size: 12px;
}
.load-more {
  padding: 5px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  line-height: 30px;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 500px) {
  .load-more {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .load-more {
    font-size: 16px;
  }
}
.load-more a {
  color: #313131;
}
/*news show*/
.nshow {
  padding: 20px 0 60px;
  line-height: 32px;
  color: #727272;
}
@media (max-width: 910px) {
  .nshow {
    padding: 0 0 45px;
  }
}
.nshow .news-img {
  position: relative;
  margin: 20px auto;
}
.nshow .news-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.nshow .news-img i {
  display: block;
  padding-bottom: 46.875%;
}
.inner-page {
  text-align: right;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .inner-page {
    text-align: center;
  }
}

.inner-page .ph1, .inner-page .ph2  {
  display: inline-block;
  /*margin-left: 5px;*/
  color: #555;
  font-size: 12px;
  max-width: 192px;
  max-height: 30px;
  width: 150px;
  overflow: hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  -o-text-overflow:ellipsis;
  position: relative;
  top: 9px;
}
.inner-page .ph1 {
	text-align: left;
}
.inner-page .ph2 {
	text-align: right;
}


@media (max-width: 640px) {
  .inner-page a {
    margin: 0 20px;
  }
}
.inner-page a.before {
  background: url(../images/ico08.jpg) no-repeat left center;
  padding-left: 18px;
}
.inner-page a.after {
  background: url(../images/ico09.jpg) no-repeat right center;
  padding-right: 18px;
}
/*pro*/
.pro {
  padding: 45px 0 35px;
}
.pro .spro {
  margin-bottom: 50px;
}
.pro-tit {
  padding-bottom: 25px;
  text-align: center;
  color: #2b2b2b;
  font-size: 18px;
}
.pro-tit span {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 36px;
}
.pro-tit.blue-tit span {
  background: url(../images/pro_bg01.jpg) no-repeat center bottom;
  color: #96b1df;
}
.pro-tit.pink-tit span {
  background: url(../images/pro_bg02.jpg) no-repeat center bottom;
  color: #fdc3c5;
}
.pro-tit.green-tit span {
  background: url(../images/pro_bg03.jpg) no-repeat center bottom;
  color: #a3c85e;
}
/*pro show*/
.pshow {
  padding: 35px 0 55px;
  line-height: 24px;
  color: #838383;
}
@media (max-width: 910px) {
  .pshow {
    padding: 20px 0 55px;
  }
}
.pshow .pro-img {
  float: left;
  position: relative;
  width: 62.5%;
}
.pshow .pro-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pshow .pro-img i {
  display: block;
  padding-bottom: 66.66%;
}
.pshow .pro-view {
  float: right;
  width: 35.5%;
}
.pshow .pro-view h1 {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 30px;
  color: #151515;
  font-weight: 100;
}
.pshow .pro-view .txt {
  overflow: hidden;
  min-height: 88px;
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 15px;
}
.pshow .pro-view .txt .p1 {
  border-bottom: 1px solid #858585;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #2e2e2e;
}
.pshow .pro-view #share {
  text-align: right;
}
.pshow .pro-view #share a {
  float: none;
  display: inline-block;
  width: 21px;
  height: 21px;
  padding: 0;
  margin: 0 0 0 5px;
}
.pshow .pro-view #share a.bds_tsina {
  background: url(../images/ico10.jpg) no-repeat;
}
.pshow .pro-view #share a.bds_tqq {
  background: url(../images/ico11.jpg) no-repeat;
}
.pshow .pro-view #share a.bds_sqq {
  background: url(../images/ico12.jpg) no-repeat;
}
.pshow .pro-view #share a.bds_weixin {
  background: url(../images/ico13.jpg) no-repeat;
}
.pshow .pro-view .back-item {
  display: block;
  margin-top: 50px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #dedede;
  font-size: 24px;
  color: #0484d8;
}
.pshow .pro-view .back-item img {
  height: 32px;
}
.pshow .pro-view .back-item span {
  margin-left: 10px;
}
.pshow .pro-view .back-item img,
.pshow .pro-view .back-item span {
  vertical-align: middle;
}
.pshow .con {
  padding-top: 40px;
}
.pshow .con .sub-tit {
  padding: 0 15px;
  margin-bottom: 40px;
  background: #b9d9ee;
  line-height: 30px;
  font-size: 15px;
  color: #018eeb;
}
@media (max-width: 900px) {
  .pshow .pro-img {
    width: 48%;
  }
  .pshow .pro-view {
    width: 50%;
  }
  .pshow .pro-view .back-item {
    margin-top: 20px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .pshow .pro-view .back-item img {
    height: 20px;
  }
}
@media (max-width: 760px) {
  .pshow .pro-img {
    float: none;
    width: 80%;
    margin: 0 auto 20px;
  }
  .pshow .pro-view {
    float: none;
    width: 100%;
  }
  .pshow .pro-view h1 {
    text-align: center;
  }
  .pshow .pro-view .back-item {
    margin-top: 0;
    background: #21a5e3;
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
  }
  .pshow .pro-view .back-item img {
    display: none;
  }
}
@media (max-width: 450px) {
  .pshow .pro-view h1 {
    font-size: 14px;
  }
}
/*shop*/
.shop {
  margin: 40px auto 60px;
  background: url(../images/shop_bg.jpg) repeat;
  line-height: 22px;
  color: #949494;
  font-size: 14px;
}
.shop-in {
  width: 960px;
  padding: 70px 124px 60px;
  margin: 0 auto;
}
.shop-in img {
  background: #fff;
  padding: 5px;
}
.shop-in .con {
  float: left;
  width: 53%;
  margin-bottom: 85px;
}
.shop-in .con .tit {
  margin-bottom: 35px;
  color: #0189e3;
  font-size: 36px;
  text-transform: uppercase;
}
.shop-in .con .tit span {
  margin-left: 10px;
  font-size: 18px;
}
.shop-in .con .sub-tit {
  margin-bottom: 10px;
  font-size: 15px;
  color: #000;
}
.shop-in .l-img {
  overflow: hidden;
  width: 56%;
}
.shop-in .l-img li {
  float: left;
  width: 50%;
}
.shop-in .l-img .l-img02 {
  margin-top: -18px;
}
.shop-in .r-img {
  float: right;
  width: 43%;
  text-align: right;
}
.shop-in .r-img .r-img01 {
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  .shop {
    margin: 30px auto 50px;
  }
  .shop-in {
    width: 100%;
    padding: 70px 0 60px;
  }
  .shop-in .con {
    margin-bottom: 40px;
  }
  .shop-in .l-img {
    float: right;
    width: 43%;
    text-align: right;
  }
  .shop-in .l-img .l-img02 {
    margin-top: 0;
  }
  .shop-in .r-img li {
    float: left;
    width: 50%;
  }
}
@media (max-width: 750px) {
  .shop-in {
    padding: 30px 0;
  }
  .shop-in .con {
    float: none;
    width: 100%;
  }
  .shop-in .con .tit {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .shop-in .r-img {
    float: none;
    width: 50%;
  }
  .shop-in .l-img {
    float: left;
    width: 50%;
  }
}
@media (max-width: 450px) {
  .shop-in .con .tit {
    font-size: 18px;
  }
  .shop-in .r-img {
    float: none;
    width: 100%;
  }
  .shop-in .l-img {
    float: none;
    width: 100%;
  }
}
/*# sourceMappingURL=public.css.map */
/*顶部电话可视化编辑宽度*/
.phonetext{
     position: absolute;right:20%;top:0px;overflow:hidden;
}
#pnav{display: none;}
@media (max-width: 768px) {
    .phonetext{
        width: 100%;
    }
    #pnav{display: block;}
}

/*sitemap*/
.sitemap{ width:100%; float:left;}
.sitemap ul{ width:100%; float:left; padding:0px 0 10px 10px; overflow:hidden; line-height:33px;}
.sitemap ul li{  overflow:hidden;line-height:35px;}
.sitemap ul li ul li ul li a{ color:#999;}
.sitemap ul li ul{ padding-bottom:0;}
.sitemap > ul > li > ul > li { border-bottom:1px solid #e3e3e3;}
.sitemap > ul > li > ul > li a{display:inline-block;height:35px;line-height:35px;overflow: hidden;}
.sitemap ul li ul li ul li{ display:inline-block; width:110px;}
.sitemap ul li h2 { margin:10px 0;}
.sitemap ul li h2 a{ color:#894c15; display:inline-block; border:1px solid #a9bacc; border-radius:3px; padding:2px 15px; font-weight:bold;  font-size:14px}
.sitemap ul li h2 a:hover{ background:#a9bacc; color:#fff; text-decoration:none}
.sitemap ul li p{ padding:20px 10px 20px 30px; font-family:'Microsoft YaHei'}
.sitemap ul li p a{ padding:0 15px; line-height:20px; font-size:14px; display:inline-block; color:#666}
.sitemap ul li p a:hover{ text-decoration:underline; color:#333}

.pub_form_ul li input[type="text"]{line-height:30px!important;height:30px!important;}
a.l-btn span.l-btn-left{height:auto!important;}
.pub_form_ul .edit_del{height: auto!important;}

.panel-body{padding:0!important;}
#fileDialog .middle{height:457px!important;}
.panel-body-noheader{padding:0!important;}
.pub_form_ul li input[type="text"]{line-height:30px!important;height:30px!important;}
.panel{margin-bottom:0!important;}
a.l-btn span.l-btn-left{height:auto!important;}

/*
.pager span,.pager a{margin-left: 7px!important;}
.page-cur{}*/

.pager a,.pager span {
    display: inline-block;
    background: #f0f0f0;
    margin: 0 2px 10px;
    height: 27px;
    line-height: 27px;
    padding: 0 10px;
    color: #949494;
    font-family: "宋体";
}
.pager a:hover,
.pager span.page-cur {
    background: #21afff;
    color: #fff;
}

.nshow .title{font-size: 24px; color: #484848; font-weight: normal; padding-bottom: 10px; text-align: center; line-height: 28px;}
.nshow .source{font-size: 12px; color: #666666; text-align: center; padding-bottom: 10px; border-bottom: 1px solid #ddd;}
.nshow .source span{margin: 0px 2%; display: inline-block;}

.identification{clear:both;width:100%;text-align:center;}
.identification img{display:inline;}

.BMapLib_nav{display:none;padding:10px!important;}
.BMapLib_bubble_content{padding:10px!important;}
.BMapLib_sendToPhone,.BMapLib_bubble_close{display:none;}
.BMap_cpyCtrl{display:none;}
.BMapLib_trans{margin:0!important;}
.BMap_Marker img{max-width:39px;}

/*产品分类*/
.subnav-2{background-color: #f6f6f6; padding: 10px 0;}
.subnav-2 a{display: inline-block; margin-right: 25px;}
.subnav-2 .selects{color: #0189e3}
@media screen and (max-width: 758px) {
  .subnav-2{display: none!important;}
  .pager .page-num{display: none;}
  .pager a, .pager span{    padding: 0 5px;}
  .inner-page .before,.inner-page .after{display: none;}
  .inner-page .ph{display: block;}
  /* .inner-page a, .inner-page span{
   max-width: 80%;
  
  } */
	.inner-page .ph2{
		text-align: left;
	}
  .inner-page a{
     /* float: left; */
  }
 /*  .inner-page{
    margin-bottom: 40px;
  } */
	.miptxt01 textarea{
		width: 202px;height: 100px;
	}
   .head-bread .menu{
    display: none!important;/*手机端导航隐藏*/
  }
}
.head-bread .bread a:last-child{
  font-weight: bold;
  margin: 0 0px;
}
@media screen and (min-width: 758px) { /*电脑端底部无缝隙*/
  .pro .spro{
    min-height: 260px;
  }
  .news{
    min-height: 260px;
  }
  .idea{
    min-height: 370px;
  }
}
.copy.on{position: fixed;left: 0;right: 0;bottom: 0;}
.header .clearfix .place a img{
  max-height: 65px;
  max-width: 165px
}

.fn-suspend {margin-right: 20px\0;}
@media(max-width:760px){
  body{
    width:100%;
    overflow-x:hidden;
  }
}

@media (min-width: 1024px) and (max-width: 1960px) { 

.job{min-height: 400px;}
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .swiper-container-android .swiper-slide, .swiper-wrapper{
    text-align: center;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
            background-image: url(../images/ico02.png)!important;
            left: 10%!important;
  }
.swiper-button-next, .swiper-button-prev{
      background-size: 38px 38px!important;
          width: 40px!important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
  background-image: url(../images/ico03.png)!important;
  right: 10%!important;
}