﻿.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/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);
  }
}
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
}
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: #db1525;
}
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;
}
/* 按钮样式 */
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;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
img {
  max-width: 100%;
}
/*
    --------------------------------
            公共样式 (如 header nav footer ...)
    --------------------------------
*/
.headBox {
  position: relative;
  z-index: 99;
}
.head {
  height: 95px;
  z-index: 99;
}
@media (max-width: 1024px) {
  .head {
    height: 54px;
  }
}
.head .logo {
  margin: 4px -24px ;
  display: inline-block;
}
.head .logo img {
  float: left;
  height: 72px;
  max-width: 386px;
}
@media (max-width: 1024px) {
  .head .logo img {
    height: 30px;
  }
   .head .logo {margin: 4px 3px}
}
@media (max-width: 1085px) {.head .logo img{max-width: 200px;margin-left: 29px;}} 
.head .nav {
  float: right;
}
@media (max-width: 1024px) {
  .head .nav {
    display: none;
  }
}
.head .nav ul {
  width: 100%;
}
.head .nav ul li {
  float: left;
  font-size: 15px;
  width: 100px;
  text-align: center;
}
.head .nav ul li > a {
  color: #565656;
  display: block;
  line-height: 95px;
}
.head .nav ul li:hover,
.head .nav ul li.cur {
  background: #f2f2f2;
  height: 95px;
  border-bottom: 4px solid #db1525;
}
.head .nav ul li:hover > a,
.head .nav ul li.cur > a {
  color: #db1525;
}
.head .nav ul li div {
  position: absolute;
  width: 100%;
  left: 0;
  top: 95px;
  height: 40px;
  background: url(../images/ioc-01.png);
  text-align: center;
  display: none;
}
.head .nav ul li div a {
  display: inline-block;
  line-height: 40px;
  color: #565656;
  font-size: 12px;
}
.head .nav ul li div a:hover {
  color: #db1525;
}
.head .nav ul li div em {
  background: url(../images/ioc-02.jpg) no-repeat center 5px;
  width: 1px;
  height: 13px;
  display: inline-block;
  margin: 0 5px 0 10px;
}
.head .navbtn {
  position: absolute;
  right: 15px;
  top: 50%;
  color: #db1525;
  font-size: 24px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  display: none;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .head .navbtn {
    display: block;
  }
}
/*底部*/
.footBox {
  background: #292929;
  border-top: 1px solid #3d3d3d;
  border-bottom: 1px solid #373737;
}
.footBox .footNav {
  float: left;
  width: 60%;
  line-height: 46px;
}
@media (max-width: 1024px) {
  .footBox .footNav {
    display: none;
  }
}
.footBox .footNav div a {
  display: inline-block;
  color: #ffffff;
  margin-right: 24px;
}
.footBox .footNav div a:hover {
  color: #db1525;
}
.footBox .footS {
  width: 187px;
  height: 26px;
  border: 1px solid #949494;
  float: right;
  margin-right: 17px;
  background: #292929;
  margin-top: 11px;
}
@media (max-width: 1024px) {
  .footBox .footS {
    float: left;
  }
}
.footBox .footS span {
  display: block;
  width: 156px;
  height: 24px;
  line-height: 24px;
  float: left;
  font-size: 12px;
  padding: 0 8px;
  margin-left: 5px;
}
.footBox .footS span input {
  border: none;
  background: none;
  width: 148px;
  height: 24px;
  line-height: 24px;
  color: #a9a9a9;
}
.footBox .footS .ipbtn {
  float: right;
  background-image: url(../images/ioc-12.png);
  width: 24px;
  height: 24px;
}
.footBox .footTop {
  width: 170px;
  float: right;
  height: 46px;
}
@media (max-width: 1024px) {
  .footBox .footTop {
    float: right;
  }
}
@media (max-width: 435px) {
  .footBox .footTop {
    float: right;
    width: 46px;
  }
}
.footBox .footTop a {
  width: 170px;
  height: 46px;
  display: block;
  background-image: url(../images/ioc-13.png);
}
@media (max-width: 435px) {
  .footBox .footTop a {
    display: block;
    width: 46px;
    background-image: url(../images/ioc-14.png);
  }
}
.copyBox {
  background: #373737;
  border-top: 1px solid #303030;
}
@media (max-width: 1024px) {
  .copyBox {
    width: 100%;
  }
}
.copyBox .copyleft {
  width: 490px;
  float: left;
  padding: 1% 0;
}
@media (max-width: 724px) {
  .copyBox .copyleft {
    width: 100%;
  }
}
.flink {
  padding: 2% 0;
  border-bottom: 1px solid #5f5f5f;
  margin-bottom: 3%;
}
@media (max-width: 640px) {
  .copyBox .copyleft div {
    display: none;
  }
}
.copyBox .copyleft div span {
  display: inline-block;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 24px;
}
.copyBox .copyleft div a {
  display: inline-block;
  color: #a9a9a9;
  font-size: 12px;
  margin: 0 5px;
  line-height: 24px;
}
.copyBox .copyleft div a:hover {
  color: #FFFFFF;
}
.copyBox .copyleft p {
  color: #aeaeae;
  font-size: 12px;
  line-height: 26px;
}
.copyBox .copyleft p em {
  font-style: normal;
}
@media (max-width: 540px) {
  .copyBox .copyleft p em {
    display: block;
    font-style: normal;
    width: 100%;
  }
}
.copyBox .copyleft p span {
  font-family: arial;
}
.copyBox .copyleft p a {
  font-family: arial;
  color: #aeaeae;
}
.copyBox .copyleft p a:hover {
  color: #FFFFFF;
}
@media (max-width: 640px) {
  .copyBox .copyleft .d1,
  .copyBox .copyleft .d2 {
    /*display: none;*/
  }
}
@media (max-width: 640px) {
  .copyBox .copyleft .d3 {
    text-align: center;
  }
}
.copyBox .copyright {
  width: 170px;
  background: #4b4b4b;
  float: right;
}
@media (max-width: 724px) {
  .copyBox .copyright {
    margin-top: 2%;
    float: left;
  }
}
@media (max-width: 640px) {
  .copyBox .copyright {
    display: none;
  }
}
.copyBox .copyright span {
  display: block;
  width: 170px;
  height: 170px;
  padding: 17px;
}
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/
.banner img {
  /*width: 100%;*/
  text-align: center;
  margin:0 auto;
}
.banner button {
  width: 33px;
  height: 33px;
}
.indexPro {
  padding: 35px 0 0;
}
@media (max-width: 600px) {
  .indexPro {
    padding: 20px 0 0;
  }
}
.indexPro .tit {
  text-align: center;
  margin-bottom: 30px;
}
.indexPro .tit a {
  color: #db1525;
  display: inline-block;
  padding: 0 32px;
  font-size: 24px;
  line-height: 42px;
  border-top: 1px solid #db1525;
  border-bottom: 1px solid #db1525;
}
@media (max-width: 600px) {
  .indexPro .tit a {
    font-size: 18px;
    line-height: 32px;
    padding: 0 24px;
  }
}
.indexPro .tit p {
  width: 570px;
  margin: 24px auto 0;
  color: #898989;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 600px) {
  .indexPro .tit p {
    width: 100%;
    padding: 0 22px;
    margin-top: 12px;
  }
}
.index-pro {
  display: inline-block;
  padding: 0 15px;
  width:344px;float:left;
}
@media (max-width: 650px) {
  .index-pro {
    width: 50%;
  }
}
.index-pro .pimg {
  display: block;
  width: 100%;
}
.index-pro .pimg i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 69.59%;
}
.index-pro div {
  background: #f8f8f8;
  padding: 16px 15px 14px;
  width: 100%;
}
.index-pro div .bt {
  display: block;
  color: #484848;
  line-height: 20px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.index-pro div p {
  text-align: center;
  color: #898989;
  font-size: 12px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
  margin: 8px 0 10px;
}
.index-pro div em {
  border-top: 1px dashed #dddddd;
  display: block;
}
.index-pro div .more {
  display: block;
  width: 21px;
  height: 20px;
  background: url(../images/ioc-03.png) no-repeat;
  margin: 10px auto 0px;
  transition: transform 0.6s ease-out;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  -moz-transition: -moz-transform 0.6s ease-out;
  -o-transition: -o-transform 0.6s ease-out;
  float:none;
}
.index-pro:hover div {
  background: #db1525;
  transition: width 1.5s ease-in-out, background 1.5s linear;
  -moz-transition: width 1.5s ease-in-out, background 1.5s linear;
  -webkit-transition: width 1.5s ease-in-out, background 1.5s linear;
  -o-transition: width 1.5s ease-in-out, background 1.5s linear;
}
.index-pro:hover div .bt {
  color: #FFFFFF;
}
.index-pro:hover div p {
  color: #FFFFFF;
}
.index-pro:hover div .more {
  background: url(../images/ioc-06.png) no-repeat;
  transform: rotate(720deg);
  -webkit-transform: rotate(720deg);
  -moz-transform: rotate(720deg);
  -o-transform: rotate(720deg);
}
.proBox-div {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.proBox-div .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 40px;
  border-left: 15px solid #FFFFFF;
  border-right: 15px solid #FFFFFF;
  background: #efefef;
  height: 40px;
}
@media (max-width: 650px) {
  .proBox-div .slick-dots {
    margin-top: 30px;
  }
}
.proBox-div .slick-dots li {
  width: 5px;
  margin: 0px 8px 0 3px;
}
.proBox-div .slick-dots li.slick-active button,
.proBox-div .slick-dots li:hover button {
  background: url(../images/ioc-08.png) no-repeat center center;
}
.proBox-div .slick-dots button {
  overflow: hidden;
  text-indent: 999px;
  width: 5px;
  height: 5px;
  background: url(../images/ioc-07.png) no-repeat center center;
  margin-top: 16px;
}
.indexAbout-box {
  background-image: url(../images/t-01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /*关于我们背景图片*/
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding: 3% 0;
  margin: 50px 0 0;
}
@media (max-width: 1024px) {
  .indexAbout-box {
    width: 100%;
    padding: 5% 0px 4%;
    margin: 40px 0 0;
  }
}
.indexAbout .tit {
  text-align: center;
}
.indexAbout .tit a {
  color: #FFFFFF;
  display: inline-block;
  padding: 0 32px;
  font-size: 24px;
  line-height: 42px;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media (max-width: 600px) {
  .indexAbout .tit a {
    font-size: 18px;
    line-height: 32px;
    padding: 0 24px;
  }
}
.indexAbout .tit p {
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  margin: 3% 0 0;
  height: 120px;
  overflow: hidden;
}
.indexAboutimg {
  margin: 4% auto 0;
  text-align: center;
  max-width: 450px;
  width: 100%;
}
.indexAboutimg div {
  float: left;
  display: block;
  width: 25%;
  padding: 3%;
}
.indexAboutimg span {
  display: block;
}
.indexAboutimg span img {
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -mz-border-radius: 50%;
}
.indexCase {
  padding: 4% 0;
}
@media (max-width: 1024px) {
  .indexCase {
    padding-top: 4%;
  }
}
.indexCase .tit {
  text-align: center;
}
.indexCase .tit a {
  color: #db1525;
  display: inline-block;
  padding: 0 32px;
  font-size: 24px;
  line-height: 42px;
  border-top: 1px solid #db1525;
  border-bottom: 1px solid #db1525;
}
@media (max-width: 600px) {
  .indexCase .tit a {
    font-size: 18px;
    line-height: 32px;
    padding: 0 24px;
  }
}
.indexCase .tit p {
  width: 570px;
  margin: 24px auto 0;
  color: #898989;
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 600px) {
  .indexCase .tit p {
    width: 100%;
    padding: 0 22px;
    margin-top: 12px;
  }
}
.indexCaseBox {
  padding: 3% 0 0;
}
.indexCaseBox .Caseimg {
  display: block;
  width: 25%;
  padding: 3px;
  padding-bottom: 0;
  float: left;
}
@media (max-width: 640px) {
  .indexCaseBox .Caseimg {
    width: 50%;
  }
  .indexCaseBox .Caseimg:nth-child(n+5) {
    display: none;
  }
}
.indexCaseBox .Caseimg div {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.indexCaseBox .Caseimg div:hover .casemore {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0) scale(1);
  -moz-transform: translateX(0) scale(1);
  -webkit-transform: translateX(0) scale(1);
  -o-transform: translateX(0) scale(1);
}
.indexCaseBox .Caseimg div i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 73.790%;
}
.indexCaseBox .Caseimg div .casemore {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All .8s ease;
  -webkit-transition: All .8s ease;
  -moz-transition: All .8s ease;
  -o-transition: All .8s ease;
  transform: translateX(-100%) scale(0);
  -moz-transform: translateX(-100%) scale(0);
  -webkit-transform: translateX(-100%) scale(0);
  -o-transform: translateX(-100%) scale(0);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  background-image: url(../images/ioc-11.png);
}
.indexCaseBox .Caseimg div .casemore span {
  font-weight: bold;
  border: 1px solid #FFFFFF;
  line-height: 24px;
  display: inline-block;
  padding: 0 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 99%;
  margin: 22% 0 0;
}
@media (max-width: 660px) {
  .indexCaseBox .Caseimg div .casemore span {
    margin: 26% 0 0;
  }
}
@media (max-width: 540px) {
  .indexCaseBox .Caseimg div .casemore span {
    margin: 20% 0 0;
  }
}
@media (max-width: 400px) {
  .indexCaseBox .Caseimg div .casemore span {
    margin: 28% 0 0;
  }
}
.indexCaseBox .Caseimg div .casemore p {
  font-size: 12px;
  line-height: 18px;
  padding: 0 16px;
  height: 36px;
  overflow: hidden;
  margin-top: 5%;
}
@media (max-width: 660px) {
  .indexCaseBox .Caseimg div .casemore p {
    display: none;
  }
}
@media (max-width: 640px) {
  .indexCaseBox .Caseimg div .casemore p {
    display: block;
  }
}
@media (max-width: 540px) {
  .indexCaseBox .Caseimg div .casemore p {
    display: block;
  }
}
@media (max-width: 400px) {
  .indexCaseBox .Caseimg div .casemore p {
    display: none;
  }
}
.indexBox {
  background: #efefef;
  padding: 2% 0 2%;
}
@media (max-width: 440px) {
  .indexBox {
    padding: 3% 0 4%;
  }
}
@media (max-width: 640px) {
  .indexBox .indexBoxnr .inNewsnr2 {
    display: none;
  }
}
.indexBox .indexBoxnr .inNewsnr {
  width: 50%;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .indexBox .indexBoxnr .inNewsnr {
    width: 50%;
    padding: 0 1%;
  }
}
@media (max-width: 680px) {
  .indexBox .indexBoxnr .inNewsnr {
    width: 100%;
    padding: 0;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews,
.indexBox .indexBoxnr .inNewsnr .indexContact {
  width: 100%;
}
.indexBox .indexBoxnr .inNewsnr .indexNews .bt,
.indexBox .indexBoxnr .inNewsnr .indexContact .bt {
  border-bottom: 1px solid #cccccc;
  height: 42px;
}
@media (max-width: 600px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .bt,
  .indexBox .indexBoxnr .inNewsnr .indexContact .bt {
    height: 32px;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews .bt span,
.indexBox .indexBoxnr .inNewsnr .indexContact .bt span {
  float: left;
  display: inline-block;
  color: #db1525;
  font-size: 24px;
  height: 42px;
  line-height: 42px;
  border-bottom: 1px solid #db1525;
}
@media (max-width: 600px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .bt span,
  .indexBox .indexBoxnr .inNewsnr .indexContact .bt span {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews .bt a,
.indexBox .indexBoxnr .inNewsnr .indexContact .bt a {
  display: inline-block;
  width: 47px;
  height: 20px;
  background: #4d4d4d;
  color: #FFFFFF;
  font-family: arial;
  font-size: 12px;
  float: right;
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .bt a,
  .indexBox .indexBoxnr .inNewsnr .indexContact .bt a {
    margin-top: 5px;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews .Newslist,
.indexBox .indexBoxnr .inNewsnr .indexContact .Newslist {
  padding: 5% 0 0;
}
@media (max-width: 680px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .Newslist,
  .indexBox .indexBoxnr .inNewsnr .indexContact .Newslist {
    padding: 2% 0 0;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li,
.indexBox .indexBoxnr .inNewsnr .indexContact .Newslist li {
  float: left;
  color: #565656;
  font-size: 12px;
  line-height: 26px;
  width: 100%;
}
@media (max-width: 640px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li:nth-child(n+7),
  .indexBox .indexBoxnr .inNewsnr .indexContact .Newslist li:nth-child(n+7) {
    display: none;
  }
}
.indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li:hover a,
.indexBox .indexBoxnr .inNewsnr .indexContact .Newslist li:hover a {
  color: #db1525;
}
.indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li a,
.indexBox .indexBoxnr .inNewsnr .indexContact .Newslist li a {
  display: inline-block;
  float: left;
  color: #565656;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li span,
.indexBox .indexBoxnr .inNewsnr .indexContact .Newslist li span {
  float: right;
  color: #767676;
  font-family: arial;
}
.indexBox .indexBoxnr .inNewsnr .indexContact {
  width: 100%;
}
.indexBox .indexBoxnr .inNewsnr .indexContact .inMap {
  width: 100%;
  position: relative;
  height: 170px;
  border: 1px solid #e3e3e3;
  margin-top: 18px;
}
.indexBox .indexBoxnr .inNewsnr .indexContact p {
  color: #565656;
  font-size: 12px;
  line-height: 26px;
  margin-top: 3.1%;
}
.indexBox .indexBoxnr .inNewsnr .indexContact p span {
  font-family: arial;
}
.indexBox .indexBoxnr .inNewsnr .indexContact p a {
  color: #565656;
  font-family: arial;
}
.indexBox .indexBoxnr .inNewsnr .indexContact p a:hover {
  color: #db1525;
}
/*
	--------------------------
	公共组件 （如 page title ...）
	--------------------------
*/
.w1000 {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .w1000 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.w1004 {
  width: 1004px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .w1004 {
    width: 100%;
  }
}
.w1030 {
  width: 1032px;overflow:hidden;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .w1030 {
    width: 100%;
  }
}
.w1060 {
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .w1060 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page {
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #e8e8e8;
}
.page a,.page span {
  display: inline-block;
  color: #707070;
  font-size: 12px;
  margin: 0 8px;
}
.page a:hover,
.page a.tow,.page .page-cur {
  color: #db1525;
  text-decoration: underline;
}
.nextDiv p {
  line-height: 33px;
  width: 50%;
  float: left;
  background: #dadada;
  font-size: 12px;
  border-right: 1px solid #ffffff;
}
@media (max-width: 680px) {
  .nextDiv p {
    width: 100%;
    margin-bottom: 5px;
  }
}
.nextDiv p span {
  color: #565656;
  margin-left: 12px;
  float: left;
  display: inline-block;
}
.nextDiv p a {
  display: inline-block;
  float: left;
  color: #898989;
  width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.nextDiv p a:hover {
  color: #db1525;
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.nybanner img {
  width: 100%;
}
.main {
  margin-top: 36px;
  min-height: 600px;
}
@media (max-width: 1024px) {
  .main {
    margin: 0;
  }
}
.mainleft {
  width: 188px;
  border-top: #db1525 solid 4px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .mainleft {
    display: none;
  }
}
.mainleft .side-menu {
  background: #f1f1f1;
  padding: 0 13px;
  text-align: center;
}
.mainleft .side-menu h3 {
  color: #404040;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 1px solid #cccccc;
  height: 63px;
  line-height: 63px;
}
.mainleft .side-menu ul {
  padding-bottom: 39px;
}
.mainleft .side-menu ul li {
  float: left;
  width: 100%;
  line-height: 50px;
  border-bottom: 1px solid #cccccc;
}
.mainleft .side-menu ul li:hover > a,
.mainleft .side-menu ul li.cur > a {
  color: #da1526;
  font-weight: bold;
}
.mainleft .side-menu ul li > a {
  color: #565656;
  display: block;
  height:50px;
  /*padding:5px 0;*/
  overflow: hidden;
}
.mainleft .side-menu ul li div {
  border-top: 1px solid #cccccc;
  padding: 10px 0 15px;
}
.mainleft .side-menu ul li div a {
  display: block;
  color: #898989;
  font-size: 12px;
  line-height: 24px;
}
.mainleft .side-menu ul li div a:hover,
.mainleft .side-menu ul li div a.cur {
  color: #e55e69;
}
.mainleft .leftlx {
  margin-top: 30px;
  border: 3px solid #f1f1f1;
  text-align: center;
  padding: 6px 10px 5px;
}
.mainleft .leftlx p {
  color: #565656;
  font-size: 18px;
  line-height: 20px;
  background: url(../images/ioc-15.jpg) no-repeat center 11px;
}
.mainleft .leftlx {
  color: #565656;
  font-size: 18px;
  font-family: arial;
  line-height: 25px;
  display: block;
  margin-top: 8px;
}
.mainright {
  width: 780px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mainright {
    width: 100%;
  }
}
.mainright .bread {
  border-bottom: 1px solid #cccccc;
  height: 67px;
}
@media (max-width: 640px) {
  .mainright .bread {
    height: 40px;
  }
}
.mainright .bread h3 {
  color: #565656;
  font-size: 24px;
  float: left;
  max-width: 40%;
  height:50px;
  overflow: hidden;
  line-height: 30px;
  padding-top: 20px;
}
@media (max-width: 640px) {
  .mainright .bread h3 {
    display: none;
  }
}
.mainright .bread div {
  float: right;
  max-width: 55%;
  font-size: 12px;
  line-height: 18px;
  padding-top: 30px;
}
@media (max-width: 640px) {
  .mainright .bread div {
    max-width: 100%;
    float: left;
    line-height: 40px;
    padding: 0;
    display:block;overflow:hidden; white-space:nowrap; text-overflow:ellipsis;

  }
}
.mainright .bread div b {
 
  text-decoration: underline;
}
/*about*/
.mainright .about {
  padding: 15px 0 30px;
}
.mainright .about .about_text {
  font-size: 12px;
  line-height: 24px;
  text-indent: 2em;
  padding-top: 10px;
}
.mainright .about .about_img {
  text-align: center;
  margin: 20px 0 10px;
}
.mainright .about .about_img img {
  width: 100%;
}
/*honor*/
.mainright .honor {
  padding-bottom: 30px;
}
.mainright .honor .honortext {
  width: 225px;
  float: left;
  margin-right: 52px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .mainright .honor .honortext {
    width: 25%;
    margin-right: 0;
    padding: 0.6%;
  }
}
@media (max-width: 640px) {
  .mainright .honor .honortext {
    width: 33%;
    margin-right: 0;
    padding: 0.7%;
  }
}
@media (max-width: 400px) {
  .mainright .honor .honortext {
    width: 50%;
    margin-right: 0;
    padding: 0.7%;
  }
}
.mainright .honor .honortext div a {
  display: block;
  background: #f6f6f6;
  border: 1px solid #e7e7e7;
  padding: 4px;
}
.mainright .honor .honortext div a i {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 74.884%;
}
.mainright .honor .honortext div p {
  text-align: center;
  color: #565656;
  font-size: 12px;
  line-height: 20px;
  padding-top: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/*surr*/
.mainright .surr {
  padding: 30px 0;
}
.mainright .surr .surrtext {
  width: 258px;
  float: left;
  margin-right: 2px;
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .mainright .surr .surrtext {
    width: 25%;
    margin: 0;
    padding: 0.6%;
  }
}
@media (max-width: 640px) {
  .mainright .surr .surrtext {
    width: 33%;
    margin: 0;
    padding: 0.7%;
  }
}
@media (max-width: 400px) {
  .mainright .surr .surrtext {
    width: 50%;
    margin-right: 0;
    padding: 0.7%;
  }
}
.mainright .surr .surrtext span {
  display: block;
  position: relative;
  padding-bottom: 66.67%;
}
/*pro*/
.mainright .pro {
  padding: 0 0 40px;
}
@media (max-width: 1024px) {
  .mainright .pro .pro_list {
    margin-top: 30px;
  }
}
.mainright .pro .pro_list .protxt {
  width: 236px;
  margin: 30px 36px 30px 0;
  float: left;
  height:235px;
}
@media (max-width: 1024px) {
  .mainright .pro .pro_list .protxt {
    width: 33%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 37px;
    padding: 0.7%;
  }
}
@media (max-width: 640px) {
  .mainright .pro .pro_list .protxt {
    width: 50%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 37px;
    padding: 0.7%;
  }
}
@media (max-width: 440px) {
  .mainright .pro .pro_list .protxt {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 37px;
    padding: 0.8% 0;
  }
}
.mainright .pro .pro_list .protxt .p-img {
  display: block;
  position: relative;
    text-align: center;
}
.mainright .pro .pro_list .protxt .p-img i {
  display: block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 69.492%;
}
.mainright .pro .pro_list .protxt div {
  background: #f8f8f8;
  padding: 12px 13px 12px;
  text-align: center;
}
.mainright .pro .pro_list .protxt div:hover {
  background: #db1525;
  transition: width 1.5s ease-in-out, background 1.5s linear;
  -moz-transition: width 1.5s ease-in-out, background 1.5s linear;
  -webkit-transition: width 1.5s ease-in-out, background 1.5s linear;
  -o-transition: width 1.5s ease-in-out, background 1.5s linear;
}
.mainright .pro .pro_list .protxt div:hover .tit {
  color: #fff;
}
.mainright .pro .pro_list .protxt div:hover p {
  color: #fff;
}
.mainright .pro .pro_list .protxt div:hover em {
  color: #ed8a92;
}
.mainright .pro .pro_list .protxt div:hover .more {
  background: url(../images/ioc-06.png) no-repeat;
  transform: rotate(720deg);
  -webkit-transform: rotate(720deg);
  -moz-transform: rotate(720deg);
  -o-transform: rotate(720deg);
}
.mainright .pro .pro_list .protxt div .tit {
  color: #484848;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  position: relative;
}
.mainright .pro .pro_list .protxt div p {
  color: #898989;
  font-size: 12px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
  margin-top: 6px;
}
.mainright .pro .pro_list .protxt div em {
  border-bottom: 1px dashed #dddddd;
  display: block;
  position: relative;
  margin-top: 8px;
  margin-bottom: 12px;
}
.mainright .pro .pro_list .protxt div .more {
  background: url(../images/ioc-03.png) no-repeat center center;
  display: block;
  position: relative;
  width: 21px;
  height: 20px;
  margin: 0 auto;
  transition: transform 0.6s ease-out;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  -moz-transition: -moz-transform 0.6s ease-out;
  -o-transition: -o-transform 0.6s ease-out;
}
/*proshow*/
.mainright .proshow {
  padding: 30px 0 4%;
}
.mainright .proshow .proshowtit .pleft {
  width: 42.5%;
}
@media (max-width: 680px) {
  .mainright .proshow .proshowtit .pleft {
    width: 100%;
  }
}
.mainright .proshow .proshowtit .pleft i {
  display: block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 69.880%;
}
.mainright .proshow .proshowtit .pright {
  width: 54%;
  border-bottom: 1px solid #dcdcdc;
  height: 232px;
}
@media (max-width: 1024px) {
  .mainright .proshow .proshowtit .pright {
    border-bottom: none;
    height: auto;
  }
}
@media (max-width: 680px) {
  .mainright .proshow .proshowtit .pright {
    width: 100%;
    margin-top: 15px;
  }
}
.mainright .proshow .proshowtit .pright div h1 {
  color: #565656;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  padding-top: 10px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-family: "微软雅黑";
}
@media (max-width: 640px) {
  .mainright .proshow .proshowtit .pright div h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mainright .proshow .proshowtit .pright p {
  color: #898989;
  font-size: 12px;
  line-height: 24px;
  height: 120px;
  overflow: hidden;
  margin: 20px 0 0;
}
@media (max-width: 680px) {
  .mainright .proshow .proshowtit .pright p {
    height: auto;
  }
}
.mainright .proshow .pstext {
  width: 100%;
  padding-bottom: 15px;
}
.mainright .proshow .pstext .tit {
  color: #db1525;
  height: 30px;
  line-height: 28px;
  border-bottom: 2px solid #e9203a;
  background: #e0e0e0;
  display: inline-block;
  padding: 0 22px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}
.mainright .proshow .pstext p {
  color: #898989;
  font-size: 12px;
  line-height: 24px;
}
.mainright .proshow .pstext p em {
  font-style: normal;
  width: 250px;
  text-align: left;
  display: inline-block;
}
@media (max-width: 680px) {
  .mainright .proshow .pstext p em {
    width: 100%;
  }
}
.mainright .proshow .pstext p b {
  font-weight: normal;
}
@media (max-width: 680px) {
  .mainright .proshow .pstext p b {
    width: 100%;
  }
}
.mainright .proshow .pstext .return {
  display: inline-block;
  float: right;
  color: #626262;
  line-height: 24px;
  margin-top: 10px;
}
.mainright .proshow .pstext .return:hover {
  color: #db1525;
}
.mainright .proshow .xgcp {
  margin-top: 20px;
}
.mainright .proshow .xgcp h3 {
  color: #565656;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  padding-top: 10px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-family: "微软雅黑";
}
@media (max-width: 640px) {
  .mainright .proshow .xgcp h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mainright .proshow .xgcp .xgcpBox {
  width: 790px;
  margin-top: 20px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mainright .proshow .xgcp .xgcpBox {
    width: 100%;
  }
}
.mainright .proshow .xgcp .xgcpBox .xgcplist {
  width: 187px;
  float: left;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .mainright .proshow .xgcp .xgcpBox .xgcplist {
    width: 25%;
    margin: 0;
    padding: 0 0.8%;
  }
}
@media (max-width: 640px) {
  .mainright .proshow .xgcp .xgcpBox .xgcplist {
    width: 50%;
    padding: 0.8%;
  }
}
.mainright .proshow .xgcp .xgcpBox .xgcplist a {
  display: block;
  position: relative;
}
.mainright .proshow .xgcp .xgcpBox .xgcplist a i {
  display: block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  padding-bottom: 69.744%;
}
.mainright .proshow .xgcp .xgcpBox .xgcplist a p {
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  margin-top: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/*case*/
.mainright .case {
  padding: 30px 0 40px;
}
@media (max-width: 1024px) {
  .mainright .case .case_list {
    padding-bottom: 20px;
  }
}
.mainright .case .case_list .casetxt {
  width: 248px;
  float: left;
  margin: 0 18px 30px 0;
}
@media (max-width: 1024px) {
  .mainright .case .case_list .casetxt {
    width: 33%;
    margin-right: 0;
    padding: 0.7%;
    margin-bottom: 0.7%;
  }
}
@media (max-width: 640px) {
  .mainright .case .case_list .casetxt {
    width: 50%;
    margin: 0;
    padding: 0.7%;
  }
}
@media (max-width: 380px) {
  .mainright .case .case_list .casetxt {
    width: 100%;
    margin-right: 0;
    padding: 2% 0;
  }
}
.mainright .case .case_list .casetxt div {
  overflow: hidden;
  position: relative;
}
.mainright .case .case_list .casetxt div:hover .c-more {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0) scale(1);
  -webkit-transform: translateX(0) scale(1);
  -moz-transform: translateX(0) scale(1);
  -o-transform: translateX(0) scale(1);
}
.mainright .case .case_list .casetxt div i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  display: block;
  position: relative;
  padding-bottom: 73.79%;
}
.mainright .case .case_list .casetxt div .c-more {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All .5s ease;
  -webkit-transition: All .5s ease;
  -moz-transition: All .5s ease;
  -o-transition: All .5s ease;
  transform: translateX(-100%) scale(0);
  -webkit-transform: translateX(-100%) scale(0);
  -moz-transform: translateX(-100%) scale(0);
  -o-transform: translateX(-100%) scale(0);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ioc-11.png);
  text-align: center;
  color: #FFFFFF;
}
.mainright .case .case_list .casetxt div .c-more span {
  font-weight: bold;
  border: 1px solid #FFFFFF;
  display: inline-block;
  padding: 0 16px;
  line-height: 24px;
  margin-top: 55px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 99%;
}
@media (max-width: 640px) {
  .mainright .case .case_list .casetxt div .c-more span {
    margin-top: 40px;
  }
}
.mainright .case .case_list .casetxt div .c-more p {
  padding: 0 16px;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  margin-top: 5px;
}
/*caseshow*/
.mainright .caseshow {
  padding: 30px 0;
}
.mainright .caseshow .caseShow {
  border: 3px solid #dbdbdb;
  padding: 3px;
}
.mainright .caseshow .caseShow .cstext i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  display: block;
  position: relative;
  padding-bottom: 74.22%;
}
.mainright .caseshow .caseShow2 {
  margin-top: 13px;
  padding: 17px 30px 15px;
  background: #e2e2e2;
}
.mainright .caseshow .caseShow2 .cstext2 {
  padding: 0 10px;
}
.mainright .caseshow .caseShow2 .cstext2 i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  display: block;
  position: relative;
  padding-bottom: 73.984%;
}
.mainright .caseshow .caseShow2 button {
  width: 13px;
  height: 27px;
}
.mainright .caseshow .caseShow2 .slick-prev,
.mainright .caseshow .caseShow2 .slick-next {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(../css/backgroundsize.min.htc);
  text-indent: 999px;
  overflow: hidden;
}
.mainright .caseshow .caseShow2 .slick-prev {
  left: 12px;
  background-image: url(../images/cleft.png);
}
.mainright .caseshow .caseShow2 .slick-next {
  right: 12px;
  background-image: url(../images/cright.png);
}
.mainright .caseshow .caseshownr {
  margin: 20px 0 15px;
}
.mainright .caseshow .caseshownr .tit span {
  display: inline-block;
  float: left;
  color: #565656;
  font-weight: bold;
  line-height: 24px;
}
.mainright .caseshow .caseshownr .tx {
  color: #565656;
  font-weight: bold;
  line-height: 24px;
}
.mainright .caseshow .caseshownr .text {
  color: #898989;
  font-size: 12px;
  line-height: 24px;
}
.mainright .caseshow .caseshownr .return {
  float: right;
  display: inline-block;
  color: #626262;
  line-height: 24px;
  margin-top: 10px;
}
.mainright .caseshow .caseshownr .return:hover {
  color: #db1525;
}
/*news*/
.mainright .news {
  padding: 10px 0 40px;
}
.mainright .news .newstext ul {
  padding-bottom: 36px;
}
.mainright .news .newstext ul li {
  width: 100%;
  line-height: 50px;
  border-bottom: 1px dashed #cccccc;
  position: relative;
  padding-right: 80px;
}
.mainright .news .newstext ul li a {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
}
.mainright .news .newstext ul li a:hover {
  font-weight: bold;
}
.mainright .news .newstext ul li span {
  display: inline-block;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  line-height: 50px;
  height: 50px;
}
/*newsshow*/
.mainright .newsshow {
  padding: 18px 0 40px 0;
}
.mainright .newsshow .tit {
  border-bottom: 1px solid #cccccc;
}
.mainright .newsshow .tit h1 {
  color: #565656;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  padding-top: 10px;
  width: 100%;
  padding-bottom: 10px;
  font-family: "微软雅黑";
}
@media (max-width: 640px) {
  .mainright .newsshow .tit h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mainright .newsshow .data {
  color: #898989;
  font-size: 12px;
  line-height: 30px;
  padding: 8px 0 0;
}
.mainright .newsshow .data span {
  padding-right: 15px;
}
@media (max-width: 420px) {
  .mainright .newsshow .data span {
    display: block;
    line-height: 24px;
  }
}
.mainright .newsshow .newsshownr {
  padding-bottom: 15px; word-wrap: break-word;
}
.mainright .newsshow .newsshownr .text {
  font-size: 12px;
  line-height: 24px;
  padding-top: 12px;
}
.mainright .newsshow .newsshownr .n-img {
  margin: 20px 0 5px;
}
.mainright .newsshow .newsshownr .n-img img {
  width: 100%;
}
.mainright .newsshow .newsshownr .return {
  float: right;
  color: #626262;
  display: inline-block;
  line-height: 24px;
  margin-top: 10px;
}
.mainright .newsshow .newsshownr .return:hover {
  color: #db1525;
}
.mainright .newsshow .xgxw {
  margin-top: 20px;
}
.mainright .newsshow .xgxw h3 {
  color: #565656;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  padding-top: 10px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  font-family: "微软雅黑";
}
@media (max-width: 640px) {
  .mainright .newsshow .xgxw h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mainright .newsshow .xgxw .xgxwBox {
  margin-top: 2%;
}
.mainright .newsshow .xgxw .xgxwBox li {
  border-bottom: 1px dashed #cccccc;
  line-height: 40px;
  padding-right: 80px;
  position: relative;
}
.mainright .newsshow .xgxw .xgxwBox li a {
  display: block;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.mainright .newsshow .xgxw .xgxwBox li a:hover {
  font-weight: bold;
}
.mainright .newsshow .xgxw .xgxwBox li span {
  display: inline-block;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
}
/*res*/
.mainright .res {
  padding: 30px 0;
}
.mainright .res .tit {
  color: #555555;
  font-size: 16px;
  line-height: 20px;
}
.mainright .res .text {
  color: #898989;
  font-size: 12px;
  line-height: 18px;
  margin-top: 8px;
}
.mainright .res .reslist {
  border-top: 1px dashed #e4e4e4;
  border-bottom: 1px dashed #e4e4e4;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 26px;
}
@media (max-width: 500px) {
  .mainright .res .reslist {
    padding-bottom: 0;
  }
}
.mainright .res .reslist ul {
  margin-top: 16px;
  background: url(../images/ioc-16.jpg) repeat-x left 20px;
}
@media (max-width: 1004px) {
  .mainright .res .reslist ul {
    background: none;
  }
}
.mainright .res .reslist ul li {
  float: left;
  width: 156px;
  margin-right: 52px;
}
@media (max-width: 1024px) {
  .mainright .res .reslist ul li {
    width: 21%;
  }
}
@media (max-width: 1004px) {
  .mainright .res .reslist ul li {
    width: 50%;
    padding: 0 20px 20px 0;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .mainright .res .reslist ul li {
    width: 100%;
    padding: 0 0 20px 0;
  }
}
.mainright .res .reslist ul li span {
  display: block;
  width: 100%;
  height: 39px;
  text-align: center;
  line-height: 39px;
  color: #FFFFFF;
}
.mainright .res .reslist ul li p {
  color: #898989;
  font-size: 12px;
  line-height: 24px;
  margin-top: 10px;
  height: 96px;
  overflow: hidden;
}
@media (max-width: 1004px) {
  .mainright .res .reslist ul li p {
    height: 48px;
  }
}
/*job*/
.mainright .job {
  padding: 10px 0 40px;
}
.mainright .job .jobnr {
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .mainright .job .jobnr {
    margin-top: 20px;
  }
}
.mainright .job .jobnr .jobtext {
  width: 237px;
  float: left;
  margin: 20px 34px 20px 0;height:139px;overflow:hidden;
}
@media (max-width: 1024px) {
  .mainright .job .jobnr .jobtext {
    width: 33%;
    margin-right: 0;
    padding: 0.7%;
    margin-bottom: 0.7%;
  }
}
@media (max-width: 640px) {
  .mainright .job .jobnr .jobtext {
    width: 50%;
    margin: 0;
    padding: 0.7%;
  }
}
@media (max-width: 480px) {
  .mainright .job .jobnr .jobtext {
    width: 100%;
    margin-right: 0;
    padding: 2% 0;
  }
}
.mainright .job .jobnr .jobtext:hover a {
  background: #db1525;
}
.mainright .job .jobnr .jobtext:hover span {
  color: #FFFFFF;
  border-bottom: 1px dashed #FFFFFF;
  background: url(../images/ioc-18.png) no-repeat right;
}
.mainright .job .jobnr .jobtext:hover .text {
  color: #f5cdcf;
}
.mainright .job .jobnr .jobtext a {
  display: block;
  position: relative;
  background: #eaeaea;
  padding: 10px 17px 15px;
}
.mainright .job .jobnr .jobtext a span {
  display: block;
  height: 32px;
  line-height: 32px;
  color: #565656;
  border-bottom: 1px dashed #dadada;
  background: url(../images/ioc-17.png) no-repeat right;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 15px;
  margin-bottom: 5px;
}
.mainright .job .jobnr .jobtext a .text {
  color: #898989;
  font-size: 12px;
  line-height: 24px;
}
/*jobshow*/
.mainright .jobshow {
  padding: 30px 0px;
}
.mainright .jobshow .jright {
  width: 100%;
}
.mainright .jobshow .jright h1 {
  font-family: "微软雅黑";
  color: #565656;
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .mainright .jobshow .jright h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
.mainright .jobshow .jright .jobT {
  border-bottom: 1px dashed #cccccc;
  padding: 10px 0;
}
.mainright .jobshow .jright .jobT .text {
  float: left;
  color: #565656;
  font-size: 13px;
  line-height: 20px;
  width: 33%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 795px) {
  .mainright .jobshow .jright .jobT .text {
    width: 50%;
  }
}
@media (max-width: 360px) {
  .mainright .jobshow .jright .jobT .text {
    width: 100%;
  }
}
.mainright .jobshow .jright .jobZ {
  display: inline-block;
  line-height: 34px;
  color: #565656;
  font-weight: bold;
  padding: 0 12px;
  background: #e0e0e0;
  margin-top: 17px;
}
.mainright .jobshow .jright .Jtit {
  margin-top: 20px;
}
.mainright .jobshow .jright .Jfs,
.mainright .jobshow .jright .Jtit,
.mainright .jobshow .jright .Jtext {
  color: #565656;
  font-size: 13px;
  line-height: 24px;
}
.mainright .jobshow .jright .Jfs {
  border-top: 1px dashed #cccccc;
  margin-top: 15px;
  padding-top: 18px;
}
.mainright .jobshow .jright .Jfs a {
  color: #db1525;
  font-family: arial;
  text-decoration: underline;
}
.mainright .jobshow .jright .return {
  float: right;
  color: #626262;
  display: inline-block;
  line-height: 24px;
  margin-top: 10px;
}
.mainright .jobshow .jright .return:hover {
  color: #db1525;
}
/*contact*/
.mainright .contact {
  padding: 25px 0 40px;
}
.mainright .contact h1 {
  font-family: "微软雅黑";
  color: #565656;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  padding-bottom: 20px;
  background: url(../images/ioc-20.jpg) no-repeat center bottom;
}
.mainright .contact em {
  text-align: center;
  display: block;
  margin: 40px 0 12px;
}
@media (max-width: 640px) {
  .mainright .contact em {
    margin: 20px 0 10px;
  }
}
.mainright .contact .dh {
  color: #3e3e3e;
  font-size: 30px;
  font-family: arial;
  text-align: center;
  line-height: 30px;
}
.mainright .contact .conLx {
  margin-top: 24px;
}
@media (max-width: 640px) {
  .mainright .contact .conLx {
    margin-top: 3px;
  }
}
.mainright .contact .conLx p {
  color: #565656;
  line-height: 18px;
  float: left;
}
@media (max-width: 1024px) {
  .mainright .contact .conLx p {
    width: 100%;
    text-align: center;
    line-height: 24px;
  }
}
@media (max-width: 360px) {
  .mainright .contact .conLx p {
    width: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
  }
}
.mainright .contact .conLx p a {
  font-family: arial;
  color: #565656;
}
.mainright .contact .conLx p a:hover {
  color: #db1525;
}
.mainright .contact .conLx p span {
  font-family: arial;
}
.mainright .contact .conLx .d1 {
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .mainright .contact .conLx .d1 {
    margin: 0;
  }
}
.mainright .contact .conDt {
  margin-top: 22px;
  width: 100%;
  border: 1px solid #e8e8e8;
  height: 350px;
  position: relative;
}
@media (max-width: 640px) {
  .mainright .contact .conDt {
    margin-top: 15px;
  }
}
.mainright .contact .conLy {
  border-top: 1px dashed #cccccc;
  margin-top: 40px;
  padding-top: 22px;
}
@media (max-width: 640px) {
  .mainright .contact .conLy {
    margin-top: 20px;
    padding-top: 11px;
  }
}
.mainright .contact .conLy .tit {
  line-height: 26px;
  display: block;
}
.mainright .contact .conLy .tit i {
  color: #e30000;
  font-size: 14px;
  font-style: normal;
}
.mainright .contact .conLy .conLynr {
  background: #f8f8f8;
  margin-top: 5px;
  padding: 15px;
}
.mainright .contact .conLy .conLynr .context2 {
  margin-top: -62px;
}
@media (max-width: 810px) {
  .mainright .contact .conLy .conLynr .context2 {
    width: 100%;
    margin: 0;
  }
}
.mainright .contact .conLy .conLynr .context {
  width: 50%;
  float: left;
  padding: 15px;
}
@media (max-width: 810px) {
  .mainright .contact .conLy .conLynr .context {
    width: 100%;
    padding: 15px 0;
  }
}
@media (max-width: 640px) {
  .mainright .contact .conLy .conLynr .context {
    width: 100%;
    padding: 8px 0;
  }
}
.mainright .contact .conLy .conLynr .context div {
  border: 1px solid #cccccc;
  line-height: 30px;
  padding: 0 10px;
}
.mainright .contact .conLy .conLynr .context div span {
  float: left;
  display: block;
  width: 92%;
  line-height: 30px;
}
.mainright .contact .conLy .conLynr .context div span input {
  background: none;
  border: none;
  width: 100%;
  height: 30px;
  line-height: 30px;
  color: #333;
}
.mainright .contact .conLy .conLynr .context div i {
  float: right;
  color: #e30000;
  font-style: normal;
  height: 18px;
  line-height: 18px;
  margin-top: 8px;
}
.mainright .contact .conLy .conLynr .context div p {
  padding: 10px 0;
  height: 90px;
  float: left;
  display: block;
  width: 95%;
  line-height: 16px;
}
.mainright .contact .conLy .conLynr .context div p textarea {
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  color: #333;
}
.mainright .contact .conLy .conLynr .context .yzm {
  width: 134px;
  float: left;
}
.mainright .contact .conLy .conLynr .context .imgYzm {
  float: left;
  width: 103px;
  height: 32px;
  margin-left: 7px;
}
.mainright .contact .conLy .conLynr .context .textYzm {
  display: inline-block;
  float: left;
  line-height: 32px;
  color: #9d9d9d;
  font-size: 12px;
  text-decoration: underline;
  margin-left: 7px;
}
@media (max-width: 410px) {
  .mainright .contact .conLy .conLynr .context .textYzm {
    display: none;
  }
}

@media(min-width:1000px){
	.pro_list{width:1000px;}
}

.mainright .contact .conLy .conLynr .conBtn {
  background: #b4b4b4;
  line-height: 40px;
  color: #FFFFFF;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}
/*# sourceMappingURL=public.css.map */
.panel-body{padding:0!important;}
#fileDialog .middle{height:458px!important;}
.panel{margin-bottom:0!important;}
a.l-btn span.l-btn-left{height:24px!important;}

.sitemap h2{margin:20px auto;font-size:24px;}
.sitemap p a{margin:10px 20px 0 0;}
#allmap{height:220px!important;}

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

.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;}

@media (max-width: 640px) {
  .page-num{display: none!important;}
  .mainright .contact .conLy .conLynr .context .imgYzm{
    width: 78px;
  }
  .footBox .footS{margin-left: 20px;}
  
}
/* .banner img{ //较小屏幕显示不全
  max-width:1903px;max-height:645px ;
} */
@media (max-width: 768px) {
  .indexBox .indexBoxnr .inNewsnr .indexNews .Newslist li a{max-width: 68%;}
  .banner img{max-width:none;max-height:none;width: 100%;}
  }
.footer.on{position: fixed;left: 0;right: 0;bottom: 0;}

.banner .slick-next {
    right: 5%;
    background-image: url(../images/t-right.png);
}
.banner .slick-prev, .banner .slick-next {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -ms-behavior: url(../images/backgroundsize.min.htc);
    behavior: url(../css/backgroundsize.min.htc);
    text-indent: 999px;
    overflow: hidden;
}
.banner button {
    width: 33px;
    height: 33px;
}
.banner .slick-prev {
    left: 5%;
    background-image: url(../images/t-left.png);
}
.place,.module{margin-bottom: 0px!important;}
@media (max-width: 515px) {
  .banner .slick-next{
    right: 2%;
  }
  .banner .slick-prev {
    left: 2%;
  }
}
/*中英文切换*/
.headBox .switch {
    display: block;
    position: relative;
    left: 103%;
    top: -71%;
    text-align: center;
    line-height: 33px;
    bottom: 33px;
    width: 100px;
    min-width: 33px;
    max-width: 100px;
    height: 34px;
   
    
}
.headBox .switch .phoneen{
 background: #f2f2f2;
 border-radius: 10px;
}
@media(max-width:768px){
  .phone_lang a,.phone_lang span{
      width:auto;
    /*float:left;*/
    }
}
/*解决pc端刷新手机端导航隐藏一闪 而过现象 勿删*/
#pnav{display: none;}
@media (max-width: 1024px) {
  #pnav{display: block;}
  .headBox .switch{left:30%;display: none;}
}

.copyBox .copyright img{width:136px;height:136px;}

.fn-suspend{margin-right:20px\0 !important;}