@charset "utf-8";
.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: "Arial";
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background-color: #fff;
}

a {
    color: #666;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #58b4dd;
    }

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,
ol,
dl,
dd,
dt {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

img {
    max-width: 100%;
}
/*
    --------------------------------
            公共样式 (如 header nav footer ...)
    --------------------------------
*/
.headBox {
    position: relative;
    z-index: 1;
}

    .headBox .headLeft {
        width: 50%;
        margin: 25px 0 21px;
        position: relative;
    }

@media (max-width: 1023px) {
    .headBox .headLeft {
        margin: 10px 0;
        width: 100%;
    }
}

.headBox .headLeft .logo,
.headBox .headLeft .logo-wz {
    float: left;
}

    .headBox .headLeft .logo img,
    .headBox .headLeft .logo-wz img {
        float: left;
        height: 70px;
    }

@media (max-width: 1023px) {
    .headBox .headLeft .logo img,
    .headBox .headLeft .logo-wz img {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .headBox .headLeft .logo img,
    .headBox .headLeft .logo-wz img {
        height: 30px;
    }
}

@media (max-width: 767px) {
    .headBox .headLeft .logo-wz {
        display: none;
    }
}

.headBox .headLeft .navbtn {
    position: absolute;
    right: 0;
    top: 50%;
    color: #58b4dd;
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    display: none;
    overflow: hidden;
    z-index: 999;
}

    .headBox .headLeft .navbtn:hover {
        color: #4fa1c5;
    }

@media (max-width: 1023px) {
    .headBox .headLeft .navbtn {
        display: block;
    }
}

.headBox .headRight {
    position: relative;
    
}

@media (max-width: 1023px) {
    .headBox .headRight {
        width: 100%;
        padding: 10px 0 5px;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .headBox .headRight {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid #f0f0f0;
        padding: 15px;
    }
}

.headBox .headRight .search {
    float: right;
    width: 234px;
    height: 24px;
    border: 1px solid #58b4dd;
}

@media (max-width: 1023px) {
    .headBox .headRight .search {
        float: left;
    }
}

.headBox .headRight .search p {
    float: left;
    width: 43px;
    line-height: 22px;
    color: #999999;
    font-size: 12px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    overflow: hidden;
}

.headBox .headRight .search span {
    width: 136px;
    display: block;
    float: left;
    line-height: 22px;
    padding: 0 7px;
}

    .headBox .headRight .search span input {
        float: left;
        background: none;
        border: none;
        width: 100%;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
        color: #d5d5d5;
    }

.headBox .headRight .search .ipBtn {
    width: 53px;
    float: left;
    background: #58b4dd;
    height: 22px;
    color: #FFFFFF;
    border: none;
    border-radius: 0;
}

@media (max-width: 1023px) {
    .headBox .headRight .rxdh {
        float: right;
        max-width: 50%;
        text-align: right;
    }
}

@media (max-width: 767px) {
    .headBox .headRight .rxdh {
        display: none;
    }
}

.headBox .headRight .rxdh div {
padding-top: 8px;
padding-bottom: 3px;
background: url(../images/ioc-01.jpg) no-repeat 0px 9px;
padding-left: 23px;
position: relative;
}

@media (max-width: 1023px) {
    .headBox .headRight .rxdh div {
        padding-top: 8px;
        padding-bottom: 0;
        height: 36px;
        background: url(../images/ioc-01.jpg) no-repeat left 12px;
    }
}

.headBox .headRight .rxdh div .s1 {
    color: #58b4dd;
    font-size: 16px;
    line-height: 24px;
}

.headBox .headRight .rxdh div .s2 {
    color: #8e8e8e;
    font-size: 12px;
    line-height: 24px;
}

    .headBox .headRight .rxdh div .s2 em {
        color: #58b4dd;
        font-style: normal;
    }

.headBox .headRight .rxdh div i {
    font-style: normal;
    color: #8e8e8e;
    font-size: 12px;
    line-height: 24px;
}

.headBox .headRight .rxdh div b {
    color: #58b4dd;
    font-size: 20px;
    line-height: 24px;
}

.headBox .headRight .rxdh div .s3 {
    position: absolute;
    left: 55px;
    top: -2px;
    width: 26px;
    height: 11px;
    background: url(../images/ioc-02.jpg) no-repeat;
}

@media (max-width: 1023px) {
    .headBox .headRight .rxdh div .s3 {
        display: none;
    }
}

.headBox .headRight .tel {
    color: #1aaeef;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 22px;
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    display: none;
}

@media (max-width: 767px) {
    .headBox .headRight .tel {
        display: block;
        margin: 6px 14px 0 0;
    }
}

.navBox {
    height: 41px;
    background: #58b4dd;
}

@media (max-width: 1023px) {
    .navBox {
        display: none;
    }
}

.navBox .nav li {
    float: left;
    width: 10.5%;
    text-align: center;
    line-height: 41px;
    height: 41px;
    overflow: hidden;
}

    .navBox .nav li:hover,
    .navBox .nav li.cur {
        background: #4fa1c5;
    }

    .navBox .nav li a {
        display: block;
        color: #ffffff;
    }

.footBox {
    background: #160049;
    border-bottom: 1px solid #160049;
}

    .footBox .foot .footLeft {
        padding: 2% 0% 2.4%;
        /*width: 529px;*/
        border-right: 1px solid #373737;
    }

@media (max-width: 1023px) {
    .footBox .foot .footLeft {
        width: 100%;
        border-right: none;
    }
}

.footBox .foot .footLeft span {
    color: #ffffff;
    display: block;
    line-height: 18px;
}

.footBox .foot .footLeft ul {
    margin-top: 5px;
}

    .footBox .foot .footLeft ul li {
        float: left;
        padding-right: 18px;
    }

@media (max-width: 1023px) {
    .footBox .foot .footLeft ul li {
        width: 12%;
    }
}

.footBox .foot .footLeft ul li a {
    display: inline-block;
    color: #acacac;
    line-height: 26px;
}

    .footBox .foot .footLeft ul li a:hover {
        color: #FFFFFF;
    }

.footBox .foot .footLeft ul li div {
    margin-top: 5px;
}

    .footBox .foot .footLeft ul li div a {
        display: block;
        font-size: 12px;
        line-height: 14px;
        padding-bottom:7px;
        width: 58px;
        overflow: hidden;
    }

.footBox .foot .footMin {
    width: 302px;
    padding: 2% 0% 2.4%;
    /*border-right: 1px solid #373737;*/
    margin-left: 20px;
}

@media (max-width: 1023px) {
    .footBox .foot .footMin {
        width: 100%;
        border-right: none;
        margin-left: 0;
        padding-top: 0;
    }
}

.footBox .foot .footMin span {
    color: #ffffff;
    display: block;
    line-height: 18px;
}

.footBox .foot .footMin div {
    margin-top: 6px;
}

    .footBox .foot .footMin div p {
        color: #acacac;
        font-size: 12px;
        line-height: 26px;
    }

        .footBox .foot .footMin div p a {
            color: #acacac;
        }

            .footBox .foot .footMin div p a:hover {
                color: #FFFFFF;
            }

.footBox .foot .footRight {
    width: 100px;
    padding: 2% 0;
    margin-left: 40px;
}

@media (max-width: 1023px) {
    .footBox .foot .footRight {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }
}

.footBox .foot .footRight span {
    color: #ffffff;
    display: block;
    line-height: 18px;
}

.footBox .foot .footRight p {
    margin-top: 15px;
}

.banquan {
    background: #2c2c2c;
    padding: 8px 0;
    padding-bottom: 60px;
}
.banquan a:hover{color:#fff}

    .banquan .bq {
        color: #b6b6b6;
        font-size: 12px;
        line-height: 24px;
    }

@media (max-width: 1024px) {
    .banquan .bq {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .banquan .bq p {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .banquan .bq span {
        display: none;
    }
}

.nybanner {
    position: relative;
    z-index: 1;
}

    .nybanner img {
        width: 100%;
    }
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/
.banner {
    border-bottom: 1px solid #e6e6e6;
}

    .banner img {
        width: 100%;
    }

    .banner button {
        width: 42px;
        height: 32px;
    }

@media (max-width: 500px) {
    .banner button {
        width: 32px;
        height: 22px;
    }
}

.banner .slick-prev,
.banner .slick-next {
    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: 999px;
    overflow: hidden;
    top: auto;
    margin: 0;
    bottom: 0;
}

@media (max-width: 1024px) {
    .banner .slick-prev,
    .banner .slick-next {
        top: 50%;
        margin-top: -16px;
    }
}

@media (max-width: 500px) {
    .banner .slick-prev,
    .banner .slick-next {
        top: 50%;
        margin-top: -11px;
    }
}

.banner .slick-prev {
    left: 79%;
    background-image: url(../images/prev.png);
}

@media (max-width: 1024px) {
    .banner .slick-prev {
        left: 5%;
    }
}

.banner .slick-next {
    right: 15.1%;
    background-image: url(../images/next.png);
}

@media (max-width: 1024px) {
    .banner .slick-next {
        right: 5%;
    }
}

.indexCon {
    padding: 4% 0 3.5%;
}

    .indexCon .tit {
        padding: 0 10px;
    }

        .indexCon .tit h3 {
            font-family: "Arial";
            color: #000000;
            font-size: 36px;
            line-height: 40px;
            font-weight: bold;
        }

@media (max-width: 930px) {
    .indexCon .tit h3 {
        font-size: 30px;
        line-height: 32px;
    }
}

@media (max-width: 500px) {
    .indexCon .tit h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.indexCon .tit h3 span {
    color: #58b4dd;
    font-size: 25px;
}

@media (max-width: 500px) {
    .indexCon .tit h3 span {
        font-size: 20px;
    }
}

.indexCon .tit p {
    line-height: 24px;
    margin-top: 10px;
}

.indexCon .briefBox {
    margin-top: 4%;
}

    .indexCon .briefBox .brief {
        width: 16.66%;
        padding: 0 10px;
        float: left;
        position: relative;
    }

@media (max-width: 640px) {
    .indexCon .briefBox .brief {
        width: 33.33%;
        padding: 10px;
    }
}

.indexCon .briefBox .brief i {
    background: url(../images/ioc-04.jpg) no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -ms-behavior: url(css/backgroundsize.min.htc);
    behavior: url(css/backgroundsize.min.htc);
    display: block;
    padding-bottom: 98.67%;
}

.indexCon .briefBox .brief span {
    display: block;
    position: absolute;
    left: 0;
    top: 15%;
    text-align: center;
    width: 100%;
    color: #ffffff;
    font-size: 26px;
    font-family: arial;
    line-height: 36px;
}

@media (max-width: 824px) {
    .indexCon .briefBox .brief span {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .indexCon .briefBox .brief span {
        font-size: 36px;
        top: 20%;
    }
}

@media (max-width: 427px) {
    .indexCon .briefBox .brief span {
        font-size: 14px;
    }
}

.indexCon .briefBox .brief p {
text-align: center;
position: absolute;
left: 0;
top: 50%;
width: 100%;
color: #FFFFFF;
font-size: 20px;
line-height: 30px;
}

@media (max-width: 930px) {
    .indexCon .briefBox .brief p {
        font-size:18px;
        line-height: 10px;
    }
}

@media (max-width: 824px) {
    .indexCon .briefBox .brief p {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .indexCon .briefBox .brief p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .indexCon .briefBox .brief p {
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .indexCon .briefBox .brief p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .indexCon .briefBox .brief p {
        font-size: 12px;
    }
}

@media (max-width: 427px) {
    .indexCon .briefBox .brief p {
        font-size: 12px;
    }
}

@media (max-width: 355px) {
    .indexCon .briefBox .brief p {
        font-size: 12px;
    }
}

.indexProBox {
    background-image: url(../images/ioc-05.png);
    /* background-position: center center;*/
    background-repeat: no-repeat;
    background-size: cover;
    -ms-behavior: url(css/backgroundsize.min.htc);
    behavior: url(css/backgroundsize.min.htc);
}

@media (max-width: 1024px) {
    .indexProBox {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.indexProBox .indexPro {
    padding: 2% 0 3%;
}

@media (max-width: 640px) {
    .indexProBox .indexPro {
        padding: 4% 0 4%;
    }
}

@media (max-width: 500px) {
    .indexProBox .indexPro {
        padding: 5% 0;
    }
}

.indexProBox .indexPro .tit {
    padding: 0 10px;
    position: relative;
}

    .indexProBox .indexPro .tit h3 {
        color: #343434;
        font-size: 28px;
        font-weight: bold;
        line-height: 32px;
        font-family: "Arial";
        float: left;
    }

@media (max-width: 500px) {
    .indexProBox .indexPro .tit h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.indexProBox .indexPro .tit div {
    float: right;
    width: 50%;
}

    .indexProBox .indexPro .tit div a {
        display: block;
        width: 42px;
        height: 32px;
        position: absolute;
        top: 0;
    }

@media (max-width: 500px) {
    .indexProBox .indexPro .tit div a {
        width: 32px;
        height: 24px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        -ms-behavior: url(css/backgroundsize.min.htc);
        behavior: url(css/backgroundsize.min.htc);
    }
}

.indexProBox .indexPro .tit div .prev {
    background: url(../images/prev.png) no-repeat;
    right: 52px;
}

@media (max-width: 500px) {
    .indexProBox .indexPro .tit div .prev {
        background: url(../images/prev1.png) no-repeat;
        right: 42px;
    }
}

.indexProBox .indexPro .tit div .next {
    background: url(../images/next.png) no-repeat;
    right: 10px;
}

@media (max-width: 500px) {
    .indexProBox .indexPro .tit div .next {
        background: url(../images/next1.png) no-repeat;
    }
}

.indexProBox .indexPro .indexPronr {
    padding-top: 2.5%;
}

@media (max-width: 500px) {
    .indexProBox .indexPro .indexPronr {
        padding-top: 5%;
    }
}

.indexProBox .indexPro .indexPronr .ProBox {
    display: inline-block;
    width: 33.33%;
    padding: 0 10px;
}

    .indexProBox .indexPro .indexPronr .ProBox a {
        display: block;
        background: #fff;
        padding: 8px 8px 20px;
        width: 100%;
    }

        .indexProBox .indexPro .indexPronr .ProBox a:hover {
            background: #58b4dd;
        }

            .indexProBox .indexPro .indexPronr .ProBox a:hover div {
                background: url(../images/ioc-07.png) no-repeat right;
            }

            .indexProBox .indexPro .indexPronr .ProBox a:hover span,
            .indexProBox .indexPro .indexPronr .ProBox a:hover p {
                color: #FFFFFF;
            }

        .indexProBox .indexPro .indexPronr .ProBox a i {
            display: block;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            -ms-behavior: url(css/backgroundsize.min.htc);
            behavior: url(css/backgroundsize.min.htc);
            padding-bottom: 80.26%;
            height: 500px;
        }

        .indexProBox .indexPro .indexPronr .ProBox a div {
            background: url(../images/ioc-06.png) no-repeat right;
            margin-top: 20px;
            padding-right: 30px;
        }

            .indexProBox .indexPro .indexPronr .ProBox a div span {
                display: block;
                line-height: 24px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
            }

            .indexProBox .indexPro .indexPronr .ProBox a div p {
                font-size: 24px;
                line-height: 30px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
            }

.indexBox {
    padding: 2.5% 0;
}

@media (max-width: 500px) {
    .indexBox {
        padding: 5% 0 2%;
    }
}

@media (max-width: 1023px) {
    .indexBox .IndexRoute {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .indexBox .IndexRoute {
        margin-top: 0px;
    }
}

.indexBox .indexCon2 {
    width: 50%;
    padding: 0 15px;
}

@media (max-width: 1023px) {
    .indexBox .indexCon2 {
        width: 100%;
    }
}

.indexBox .indexCon2 .tit {
    height: 32px;
    margin-bottom: 32px;
}

@media (max-width: 500px) {
    .indexBox .indexCon2 .tit {
        height: 24px;
        margin-bottom: 10px;
    }
}

.indexBox .indexCon2 .tit h3 {
    color: #343434;
    font-size: 28px;
    font-weight: bold;
    line-height: 32px;
    font-family: "Arial";
    float: left;
}

@media (max-width: 500px) {
    .indexBox .indexCon2 .tit h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.indexBox .indexCon2 .NewsBox ul {
    margin-top: -16px;
}

    .indexBox .indexCon2 .NewsBox ul li {
        float: left;
        width: 100%;
        margin: 16px 0;
    }

        .indexBox .indexCon2 .NewsBox ul li a {
            display: block;
        }

            .indexBox .indexCon2 .NewsBox ul li a:hover b {
                color: #58b4dd;
            }

        .indexBox .indexCon2 .NewsBox ul li .NewsBoxLeft {
            width: 25%;
        }

            .indexBox .indexCon2 .NewsBox ul li .NewsBoxLeft i {
                display: block;
                background-position: center center;
                background-repeat: no-repeat;
                background-size: cover;
                -ms-behavior: url(css/backgroundsize.min.htc);
                behavior: url(css/backgroundsize.min.htc);
                padding-bottom: 59.8%;
            }

        .indexBox .indexCon2 .NewsBox ul li .NewsBoxRight {
            width: 71%;
        }

            .indexBox .indexCon2 .NewsBox ul li .NewsBoxRight b {
                font-weight: normal;
                color: #333333;
                line-height: 20px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                display: block;
            }

            .indexBox .indexCon2 .NewsBox ul li .NewsBoxRight p {
                color: #7a7a7a;
                font-size: 12px;
                line-height: 18px;
                overflow: hidden;
                height: 36px;
            }

@media (max-width: 500px) {
    .indexBox .indexCon2 .NewsBox ul li .NewsBoxRight p {
        height: 18px;
        line-height: 18px;
        overflow: hidden;
        margin-top: 3px;
    }
}

.indexBox .indexCon2 .NewsBox ul li .NewsBoxRight span {
    color: #7a7a7a;
    font-size: 12px;
    line-height: 12px;
}

.indexBox .indexCon2 .RouteBox ul {
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

    .indexBox .indexCon2 .RouteBox ul li {
        width: 50%;
        line-height: 47px;
        float: left;
        border-bottom: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
        padding: 0 28px;
    }

        .indexBox .indexCon2 .RouteBox ul li:hover {
            background: #58b4dd;
        }

            .indexBox .indexCon2 .RouteBox ul li:hover a {
                color: #FFFFFF;
            }

        .indexBox .indexCon2 .RouteBox ul li a {
            display: block;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
/*
	--------------------------
	公共组件 （如 page title ...）
	--------------------------
*/
.w1004 {
    width: 1004px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .w1004 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.w1024 {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .w1024 {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.w1034 {
    width: 1034px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .w1034 {
        width: 100%;
    }
}

.page {
    text-align: center;
}

    .page a {
        color: #565656;
        font-size: 12px;
        line-height: 24px;
        padding: 0 5px;
        margin: 0 3px;
    }

        .page a:hover {
            background: #58b4dd;
            color: #FFFFFF;
        }

        .page a.cur, .page a.cpb {
            background: #58b4dd;
            color: #FFFFFF;
        }

.fenye {
    margin-top: 20px;
    text-align: center;
}

    .fenye a {
        display: inline-block;
        width: 88px;
        height: 28px;
        border: 1px solid #cccccc;
        text-align: center;
        line-height: 28px;
        font-size: 12px;
        color: #999999;
        margin: 0 3px;
    }

        .fenye a:hover {
            background: #999999;
            color: #FFFFFF;
        }

@media (max-width: 360px) {
    .fenye a {
        width: 70px;
    }
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.mianBox {
    background: #eeeeee;
    position: relative;
    z-index: 3;
}

    .mianBox .mainLeft {
        margin-top: -10%;
        width: 24%;
        margin-bottom: 30px;
    }

@media (max-width: 1024px) {
    .mianBox .mainLeft {
        margin-top: 0;
    }
}

@media (max-width: 1023px) {
    .mianBox .mainLeft {
        display: none;
    }
}

.mianBox .mainLeft .MLeft {
    background: #58b4dd;
    min-height: 200px;
    padding: 30px 10px 10px 32px;
}

    .mianBox .mainLeft .MLeft .tit {
        color: #ffffff;
        background: url(../images/ioc-08.jpg) no-repeat left bottom;
        padding-bottom: 16px;
    }

        .mianBox .mainLeft .MLeft .tit i {
            color: #ffffff;
            font-size: 24px;
            line-height: 24px;
            font-weight: bold;
            display: block;
        }

        .mianBox .mainLeft .MLeft .tit span {
            display: block;
            font-size: 18px;
            font-weight: bold;
            line-height: 24px;
            margin-top: 8px;
        }

    .mianBox .mainLeft .MLeft .menu ul {
        padding-top: 15px;
    }

        .mianBox .mainLeft .MLeft .menu ul li {
            width: 100%;
            float: left;
            line-height: 30px;
        }

            .mianBox .mainLeft .MLeft .menu ul li:hover a,
            .mianBox .mainLeft .MLeft .menu ul li.cur a {
                font-weight: bold;
            }

            .mianBox .mainLeft .MLeft .menu ul li:hover i,
            .mianBox .mainLeft .MLeft .menu ul li.cur i {
                display: block;
            }

            .mianBox .mainLeft .MLeft .menu ul li a {
                display: inline-block;
                color: #FFFFFF;
                float: left;
                max-width: 167px;
                overflow: hidden;
                /*white-space: nowrap;*/
            }

            .mianBox .mainLeft .MLeft .menu ul li i {
                background: url(../images/ioc-09.png) no-repeat;
                width: 8px;
                height: 9px;
                float: left;
                margin-top: 11px;
                margin-left: 14px;
                display: none;
            }

.mianBox .mainLeft .Mimg {
    width: 100%;
}

.mianBox .mainRight {
    width: 76%;
    margin-bottom: 25px;
    margin-top: -16%;
}

@media (max-width: 1024px) {
    .mianBox .mainRight {
        margin-top: 0;
    }
}

@media (max-width: 1023px) {
    .mianBox .mainRight {
        width: 100%;
    }
}

.mianBox .mainRight .RightBox {
    background: #FFFFFF;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.mianBox .mainRight .RightBox .bread {
    padding-top: 46px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .bread {
        padding-top: 10px;
        margin-bottom: 0;
    }
}

.mianBox .mainRight .RightBox .bread h3 {
    float: left;
    color: #2c2c2c;
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
    font-family: "Arial";
    width: 67%;
    /*text-overflow: ellipsis;*/
    overflow: hidden;
    /*white-space: nowrap;*/
}

    .mianBox .mainRight .RightBox .bread h3 span {
        color: #58b4dd;
        font-size: 23px;
        padding-left: 10px;
    }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .bread h3 {
        display: none;
    }
}

.mianBox .mainRight .RightBox .bread div {
    /*margin-top: -30px;*/
    float: right;
    max-width: 30%;
    border-bottom: 1px dashed #cccccc;
    background: url(../images/ioc-10.png) no-repeat left;
    padding-left: 16px;
    line-height: 26px;
    color: #999999;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space: nowrap;*/
    height: 26px;
}

    .mianBox .mainRight .RightBox .bread div > font {
        font-weight: bold;
    }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .bread div {
        width: 100%;
        max-width: 100%;
        float: left;
    }
}

.mianBox .mainRight .RightBox .bread div a {
    color: #999999;
}

    .mianBox .mainRight .RightBox .bread div a:hover {
        color: #58b4dd;
    }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .nrBox {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*about*/
@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .about {
        font-size: 12px;
    }
}

.mianBox .mainRight .RightBox .about .text {
    line-height: 24px;
    text-indent: 2em;
    padding-top: 15px;
}
/*honor*/
.mianBox .mainRight .RightBox .honor {
    padding-top: 15px;
    width: 110%;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .honor {
        width: 100%;
        font-size: 12px;
    }
}

.mianBox .mainRight .RightBox .honor .honortext {
    width: 210px;
    float: left;
    margin-bottom: 25px;
    margin-right: 21px;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .honor .honortext {
        width: 33.33%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 640px) {
    .mianBox .mainRight .RightBox .honor .honortext {
        width: 50%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 400px) {
    .mianBox .mainRight .RightBox .honor .honortext {
        width: 100%;
        margin: 0;
        padding: 1% 0 3%;
    }
}

.mianBox .mainRight .RightBox .honor .honortext div:hover a {
    background: #58b4dd;
}

.mianBox .mainRight .RightBox .honor .honortext div:hover p {
    background: #4fa1c5;
    color: #FFFFFF;
}

.mianBox .mainRight .RightBox .honor .honortext div a {
    display: block;
    border: #e6e6e6 solid 1px;
    padding: 6px;
}

    .mianBox .mainRight .RightBox .honor .honortext div a i {
        display: block;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        -ms-behavior: url(css/backgroundsize.min.htc);
        behavior: url(css/backgroundsize.min.htc);
        padding-bottom: 65.306%;
    }

.mianBox .mainRight .RightBox .honor .honortext div p {
    line-height: 24px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/*service*/
.mianBox .mainRight .RightBox .service {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .service .Stop {
        border-bottom: 1px dashed #cccccc;
        padding-bottom: 17px;
    }

        .mianBox .mainRight .RightBox .service .Stop p {
            float: left;
            line-height: 76px;
            font-weight: bold;
        }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .service .Stop p {
        width: 100%;
        line-height: 26px;
    }
}

.mianBox .mainRight .RightBox .service .Stop p a {
    color: #e71f19;
}

.mianBox .mainRight .RightBox .service .Stop b {
    width: 210px;
    float: right;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .service .Stop b {
        width: 100%;
        margin-top: 10px;
        margin-right: 0;
    }
}

.mianBox .mainRight .RightBox .service .Snr {
    padding-top: 13px;
}

    .mianBox .mainRight .RightBox .service .Snr li {
        width: 100%;
        border-bottom: 1px dashed #cccccc;
        float: left;
        padding: 21px 0;
    }

        .mianBox .mainRight .RightBox .service .Snr li .SLeft {
            float: left;
            width: 20%;
        }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .service .Snr li .SLeft {
        width: 140px;
    }
}

.mianBox .mainRight .RightBox .service .Snr li .SLeft span {
    border: 1px solid #e0e0e0;
    display: block;
    position: relative;
    padding-bottom: 65.69%;
}

    .mianBox .mainRight .RightBox .service .Snr li .SLeft span img {
        /*width: 100%;*/
        padding: 1px;
    }

.mianBox .mainRight .RightBox .service .Snr li .SRight {
    width: 77.2%;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .service .Snr li .SRight {
        width: 100%;
        margin-top: 10px;
    }
}

.mianBox .mainRight .RightBox .service .Snr li .SRight b {
    line-height: 24px;
    font-weight: bold;
    /*text-overflow: ellipsis;*/
    overflow: hidden;
    /*white-space: nowrap;*/
    display: block;
    width: 515px;
    height: 24px;
}

.mianBox .mainRight .RightBox .service .Snr li .SRight p {
    font-size: 12px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
}
/*route*/
.mianBox .mainRight .RightBox .route {
    padding-top: 15px;
    width: 110%;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .route {
        width: 100%;
    }
}

.mianBox .mainRight .RightBox .route .routenr {
    width: 210px;
    float: left;
    margin-right: 23px;
    margin-bottom: 24px;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .route .routenr {
        width: 33.33%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 700px) {
    .mianBox .mainRight .RightBox .route .routenr {
        width: 50%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 470px) {
    .mianBox .mainRight .RightBox .route .routenr {
        width: 100%;
        margin: 0;
        padding: 1% 0;
    }
}

.mianBox .mainRight .RightBox .route .routenr:hover div {
    border: 1px solid #58b4dd;
}

.mianBox .mainRight .RightBox .route .routenr:hover a {
    border: 2px solid #58b4dd;
    color: #58b4dd;
}

.mianBox .mainRight .RightBox .route .routenr div {
    border: 1px solid #cccccc;
}

    .mianBox .mainRight .RightBox .route .routenr div a {
        border: 2px solid #FFFFFF;
        display: block;
        padding: 0 10px 15px;
        height: 186px;
        overflow: hidden;
    }

        .mianBox .mainRight .RightBox .route .routenr div a h3 {
            text-align: center;
            font-size: 15px;
            font-family: "Arial";
            border-bottom: 1px dashed #CCCCCC;
            line-height: 30px;
            padding: 15px 0 10px;
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }

        .mianBox .mainRight .RightBox .route .routenr div a p {
            line-height: 24px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
/*routeshow*/
.mianBox .mainRight .RightBox .routeshow {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .routeshow li {
        float: left;
        width: 100%;
        border-bottom: 1px dashed #cccccc;
        background: url(../images/ioc-12.jpg) no-repeat left 21px;
        padding: 10px 0;
    }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .routeshow li {
        font-size: 12px;
    }
}

.mianBox .mainRight .RightBox .routeshow li p {
    padding-left: 8px;
    line-height: 24px;
}
/*business*/
.mianBox .mainRight .RightBox .business {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .business .b-img {
        text-align: center;
    }

    .mianBox .mainRight .RightBox .business .b-text {
        text-indent: 2em;
        font-size: 12px;
        line-height: 24px;
        margin-top: 30px;
    }
/*gallery*/
.mianBox .mainRight .RightBox .gallery {
    padding-top: 15px;
    width: 110%;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .gallery {
        width: 100%;
    }
}

.mianBox .mainRight .RightBox .gallery .gallerynr {
    width: 215px;
    float: left;
    margin-right: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1023px) {
    .mianBox .mainRight .RightBox .gallery .gallerynr {
        width: 33.33%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 700px) {
    .mianBox .mainRight .RightBox .gallery .gallerynr {
        width: 50%;
        margin: 0;
        padding: 1%;
    }
}

@media (max-width: 470px) {
    .mianBox .mainRight .RightBox .gallery .gallerynr {
        width: 100%;
        margin: 0;
        padding: 1% 0;
    }
}

.mianBox .mainRight .RightBox .gallery .gallerynr .gtext {
    border: 1px solid #CCCCCC;
    padding: 5px;
}

    .mianBox .mainRight .RightBox .gallery .gallerynr .gtext:hover {
        background: #58b4dd;
        border: 1px solid #58b4dd;
    }

        .mianBox .mainRight .RightBox .gallery .gallerynr .gtext:hover div {
            background: url(../images/gallery-bg2.png) no-repeat right;
            color: #FFFFFF;
        }

    .mianBox .mainRight .RightBox .gallery .gallerynr .gtext i {
        display: block;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        -ms-behavior: url(css/backgroundsize.min.htc);
        behavior: url(css/backgroundsize.min.htc);
        padding-bottom: 80.4878%;
    }

    .mianBox .mainRight .RightBox .gallery .gallerynr .gtext div {
        background: url(../images/gallery-bg.png) no-repeat right;
        padding: 15px 22px 8px 0;
    }

        .mianBox .mainRight .RightBox .gallery .gallerynr .gtext div span {
            display: block;
            font-size: 12px;
            line-height: 14px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .mianBox .mainRight .RightBox .gallery .gallerynr .gtext div p {
            font-size: 16px;
            line-height: 20px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
/*news*/
.mianBox .mainRight .RightBox .news {
    padding-bottom: 20px;
}

    .mianBox .mainRight .RightBox .news li {
        float: left;
        width: 100%;
        border-bottom: 1px dashed #CCCCCC;
        font-size: 12px;
        padding: 18px 0 15px;
    }

        .mianBox .mainRight .RightBox .news li:hover b {
            background: url(../images/ioc-14.jpg) no-repeat left;
            color: #58b4dd;
        }

        .mianBox .mainRight .RightBox .news li:hover .ndata em {
            background: #58b4dd;
        }

        .mianBox .mainRight .RightBox .news li b {
            display: block;
            font-size: 14px;
            line-height: 24px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            background: url(../images/ioc-13.jpg) no-repeat left;
            padding-left: 10px;
        }

        .mianBox .mainRight .RightBox .news li .ntext {
            line-height: 24px;
            height: 48px;
            overflow: hidden;
            margin-top: 5px;
            color: #666666;
        }

        .mianBox .mainRight .RightBox .news li .ndata {
            margin-top: 10px;
            line-height: 18px;
        }

            .mianBox .mainRight .RightBox .news li .ndata span {
                float: left;
                display: inline-block;
                color: #999999;
            }

            .mianBox .mainRight .RightBox .news li .ndata em {
                font-style: normal;
                display: inline-block;
                float: right;
                width: 80px;
                line-height: 18px;
                background: #999999;
                color: #FFFFFF;
                text-align: center;
                border-radius: 3px;
            }
/*newsshow*/
.mianBox .mainRight .RightBox .newsshow {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .newsshow h1 {
        text-align: center;
        font-family: "Arial";
        font-size: 17px;
        line-height: 22px;
        font-weight: bold;
    }

@media (max-width: 430px) {
    .mianBox .mainRight .RightBox .newsshow h1 {
        text-align: left;
    }
}

.mianBox .mainRight .RightBox .newsshow .data {
    text-align: center;
    color: #999999;
    font-size: 12px;
    line-height: 16px;
    margin-top: 15px;
}

.mianBox .mainRight .RightBox .newsshow .ntext {
    font-size: 12px;
    line-height: 24px;
    text-indent: 2em;
    padding-top: 15px;
}

.mianBox .mainRight .RightBox .newsshow .nimg {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
/*contact*/
.mianBox .mainRight .RightBox .contact {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .contact .contop {
        width: 100%;
        border-bottom: 1px dashed #CCCCCC;
        padding-bottom: 30px;
    }

        .mianBox .mainRight .RightBox .contact .contop .conLeft {
            width: 50%;
        }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .contact .contop .conLeft {
        width: 100%;
    }
}

.mianBox .mainRight .RightBox .contact .contop .conLeft h1 {
    color: #878787;
    font-size: 36px;
    font-family: arial;
    border-bottom: 1px dashed #CCCCCC;
    padding-bottom: 4px;
}

.mianBox .mainRight .RightBox .contact .contop .conLeft b {
    line-height: 28px;
    margin-top: 10px;
    display: block;
    margin-bottom: 5px;
}

.mianBox .mainRight .RightBox .contact .contop .conLeft p {
    color: #565656;
    font-size: 13px;
    line-height: 26px;
}

@media (max-width: 390px) {
    .mianBox .mainRight .RightBox .contact .contop .conLeft p {
        font-size: 12px;
    }
}

.mianBox .mainRight .RightBox .contact .contop .conLeft p a {
    color: #565656;
}

    .mianBox .mainRight .RightBox .contact .contop .conLeft p a:hover {
        color: #58b4dd;
    }

.mianBox .mainRight .RightBox .contact .contop .conRight {
    width: 50%;
    text-align: right;
}

.mianBox .mainRight .RightBox .contact .condt {
    position: relative;
    width: 100%;
    height: 309px;
    border: 1px solid #CCCCCC;
    margin-top: 25px;
}
/*feedback*/
.mianBox .mainRight .RightBox .feedback {
    padding-top: 15px;
}

    .mianBox .mainRight .RightBox .feedback ul li {
        float: left;
        width: 100%;
        line-height: 24px;
        margin-bottom: 12px;
    }

        .mianBox .mainRight .RightBox .feedback ul li p {
            float: left;
            width: 115px;
            text-align: right;
        }

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .feedback ul li p {
        width: 100%;
        text-align: left;
    }
}

.mianBox .mainRight .RightBox .feedback ul li div {
    float: left;
    width: 80%;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .feedback ul li div {
        width: 100%;
        margin-left: 0;
        margin-top: 3px;
    }
}

.mianBox .mainRight .RightBox .feedback ul li div span {
    display: block;
    float: left;
    border: 1px solid #CCCCCC;
}

    .mianBox .mainRight .RightBox .feedback ul li div span input {
        border: none;
        background: none;
        width: 100%;
        float: left;
        line-height: 22px;
    }

    .mianBox .mainRight .RightBox .feedback ul li div span textarea {
        width: 100%;
        height: 100%;
        background: none;
        border: none;
    }

.mianBox .mainRight .RightBox .feedback ul li div i {
    float: left;
    color: #FF0000;
    font-style: normal;
    margin-left: 10px;
}

.mianBox .mainRight .RightBox .feedback ul li div .text {
    width: 162px;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
}

@media (max-width: 550px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text {
        width: 96%;
    }
}

@media (max-width: 470px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text {
        width: 93%;
    }
}

.mianBox .mainRight .RightBox .feedback ul li div .text2 {
    width: 260px;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
}

@media (max-width: 550px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text2 {
        width: 96%;
    }
}

@media (max-width: 470px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text2 {
        width: 93%;
    }
}

.mianBox .mainRight .RightBox .feedback ul li div .text3 {
    width: 468px;
    height: 200px;
    padding: 5px;
}

@media (max-width: 550px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text3 {
        width: 96%;
    }
}

@media (max-width: 470px) {
    .mianBox .mainRight .RightBox .feedback ul li div .text3 {
        width: 93%;
    }
}

.mianBox .mainRight .RightBox .feedback ul li div .text4 {
    width: 100px;
    height: 24px;
    padding: 0 10px;
}

.mianBox .mainRight .RightBox .feedback ul li div .yzm {
    width: 63px;
    height: 24px;
    float: left;
    margin-left: 10px;
}

.mianBox .mainRight .RightBox .feedback ul li .Cbtn,
.mianBox .mainRight .RightBox .feedback ul li .Cbtn2 {
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    border: none;
    float: left;
    margin: 25px 0px 0;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .feedback ul li .Cbtn,
    .mianBox .mainRight .RightBox .feedback ul li .Cbtn2 {
        margin-top: 10px;
    }
}

.mianBox .mainRight .RightBox .feedback ul li .Cbtn {
    background: #58b4dd;
    margin-left: 80px;
}

@media (max-width: 767px) {
    .mianBox .mainRight .RightBox .feedback ul li .Cbtn {
        margin-left: 0;
    }
}

.mianBox .mainRight .RightBox .feedback ul li .Cbtn2 {
    background: #606366;
    margin-left: 10px;
}

.mianBox .mainRight .feed-img {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 404px;
    height: 438px;
    z-index: 1;
}

@media (max-width: 767px) {
    .mianBox .mainRight .feed-img {
        display: none;
    }
}

.mianBox .mainRight .footTop {
    float: right;
}

    .mianBox .mainRight .footTop a {
        background: url(../images/back-top.jpg) no-repeat;
        display: block;
        width: 50px;
        height: 50px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        -ms-behavior: url(css/backgroundsize.min.htc);
        behavior: url(css/backgroundsize.min.htc);
    }

@media (max-width: 767px) {
    .mianBox .mainRight .footTop a {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 55px;
        padding-top: 50px;
    }

    .headBox .headLeft {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 999;
        background: #fff;
        margin: 0;
        padding: 10px 15px;
    }

        .headBox .headLeft .navbtn {
            right: 15px;
        }
}
/*# sourceMappingURL=public.css.map */
/*map*/
.map {
    margin: 0 auto;
    margin-top: 40px;
}

    .map dl {
        border: #d6dbe1 solid 1px;
        border-top: #446bb3 solid 2px;
        border-bottom: none;
        margin: 20px 0 20px 0;
    }

        .map dl:hover {
            background: #f5f8fa;
        }

            .map dl:hover dt a {
                color: #003e7e;
            }

    .map dt {
        background: #fcfcfc;
        color: #446bb3;
        font-size: 16px;
        line-height: 40px;
        border-bottom: #d6dbe1 solid 1px;
        padding: 0 0 0 20px;
    }

        .map dt a {
            color: #333;
        }

            .map dt a:hover {
                color: #003e7e;
            }

        .map dt img {
            margin-left: 20px;
        }

    .map dd {
        font-size: 12px;
        line-height: 30px;
        overflow: hidden;
        padding-top: 10px;
        margin-left: 10px;
    }

        .map dd .p2 {
            padding: 0 0 0 20px;
            clear: both;
        }

            .map dd .p2 a {
                color: #E27D23;
                font-weight: bold;
                line-height: 40px;
                overflow: hidden;
                white-space: nowrap;
                /*margin-right:10px;*/
            }

                .map dd .p2 a:hover {
                    color: #764b00;
                }

        .map dd div {
            margin-bottom: 0px;
            margin-top: 0px;
            clear: both;
            overflow: hidden;
            line-height: 30px;
            border-bottom: #d6dbe1 solid 1px;
            padding: 0px 20px 10px 10px;
        }

            .map dd div a {
                margin-top: 0px;
                color: #333;
                float: left;
                padding: 0 10px 0 10px;
            }

                .map dd div a:hover {
                    color: #003e7e;
                    background: #446bb3;
                    color: #fff;
                }
/**************************shy-add*******************************/
.mianBox .mainRight .RightBox .bread h3 {
    height: 39px;
    overflow: hidden;
}

.mianBox .mainLeft .MLeft .menu ul li a {
    height: 30px;
}

.footBox .foot .footLeft {
    width: 682px;
}

.footBox .foot .footMin {
    color: #fff;
}
/***********添加**************/
.mobile-footer-menu {
background: #58b4dd;
    display: none;
    height: 54px;
}

@media(max-width:768px) {
    /***************************底部链接样式开始****************************/
    .mobile-footer-menu {
        display: block;
        width: 100%;
        background: #58b4dd;
        padding: 5px 0;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 99;
        list-style: none;
        font-size: 12px;
    }

        .mobile-footer-menu li {
            width: 25%;
            float: left;
            position: relative;
        }

            .mobile-footer-menu li:after {
                content: "";
                position: absolute;
                height: 42px;
                width: 1px;
                background: rgba(255, 255, 255, 0.2);
                right: 0;
                top: 2px;
            }

            .mobile-footer-menu li span {
                width: 24px;
                height: 24px;
                display: block;
                margin: 0 auto;
                position: relative;
                overflow: hidden;
            }

            .mobile-footer-menu li em {
                font-style: normal;
                text-align: center;
                display: block;
                color: #fff;
                height: 20px;
                line-height: 20px;
                overflow: hidden;
            }

            .mobile-footer-menu li:last-child:after {
                display: none;
            }
    /***************************底部链接样式结束****************************/
}