﻿@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */

html {
    color: #333;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizelegibility;
  overflow-x: hidden;
}


/* 如果你的项目仅支持 IE9+ | Chrome | Firefox 等，推荐在 <html> 中添加 .borderbox 这个 class */

html.borderbox *,
html.borderbox *:before,
html.borderbox *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* 内外边距通常让各个浏览器样式的表现位置不同 */

body,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}


/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block;
}


/* HTML5 媒体文件跟 img 保持一致 */

audio,
canvas,
video {
    display: inline-block;
}


/* 要注意表单元素并不继承父级 font 的问题 */

body,
button,
input,
select,
textarea {
    font: 300 1em/1.8 PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
}
.dede_pages{
}
.dede_pages ul{
 float:left;
}
.dede_pages ul li{
 float:left;
 font-family:Tahoma;
 margin-right:6px;
}
.dede_pages ul li a{
 float:left;
 padding:2px 4px 2px;
 color:#666;
 border-bottom:1px solid #EEE;
}
.dede_pages ul li a:hover{
 color:#690;
 text-decoration:none;
 padding:2px 4px 1px;
 border-bottom:2px solid #690;
}
.dede_pages ul li.thisclass a,.pagebox ul li.thisclass a:hover{
 color:#F63;
 padding:2px 4px 1px;
 border-bottom:2px solid #F63;
 font-weight:bold;
}
.dede_pages .pageinfo{
 float:right;
 color:#999;
}
.dede_pages .pageinfo strong{
 color:#666;
 font-weight:normal;
 margin:0px 2px;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}


/* 去掉各Table cell 的边距并让其边重合 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* 去除默认边框 */

fieldset,
img {
    border: 0;
}


/* 块/段落引用 */

blockquote {
    position: relative;
    color: #999;
    font-weight: 400;
    border-left: 1px solid #daae00;
    padding-left: 1em;
    margin: 1em 3em 1em 2em;
}

@media only screen and ( max-width: 640px) {
    blockquote {
        margin: 1em 0;
    }
}


/* Firefox 以外，元素没有下划线，需添加 */

acronym,
abbr {
    border-bottom: 1px dotted;
    font-variant: normal;
}


/* 添加鼠标问号，进一步确保应用的语义是正确的（要知道，交互他们也有洁癖，如果你不去掉，那得多花点口舌） */

abbr {
    cursor: help;
}


/* 一致的 del 样式 */

del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 400;
}


/* 去掉列表前的标识, li 会继承，大部分网站通常用列表来很多内容，所以应该当去 */

ul,
ol {
    list-style: none;
}


/* 对齐是排版最重要的因素, 别让什么都居中 */

caption,
th {
    text-align: left;
}

q:before,
q:after {
    content: '';
}


/* 统一上标和下标 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

:root sub,
:root sup {
    vertical-align: baseline;
    /* for ie9 and other modern browsers */
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* 让链接在 hover 状态下显示下划线 */

a {
    color: #ffcc00;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.typo a {
    border-bottom: 1px solid #daae00;
}

.typo a:hover {
    border-bottom-color: #555;
    color: #555;
    text-decoration: none;
}


/* 默认不显示下划线，保持页面简洁 */

ins,
a {
    text-decoration: none;
}


/* 专名号：虽然 u 已经重回 html5 Draft，但在所有浏览器中都是可以使用的，
 * 要做到更好，向后兼容的话，添加 class="typo-u" 来显示专名号
 * 关于 <u> 标签：http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-u-element
 * 被放弃的是 4，之前一直搞错 http://www.w3.org/TR/html401/appendix/changes.html#idx-deprecated
 * 一篇关于 <u> 标签的很好文章：http://html5doctor.com/u-element/
 */

u,
.typo-u {
    text-decoration: underline;
}


/* 标记，类似于手写的荧光笔的作用 */

mark {
    background: #fffdd1;
    border-bottom: 1px solid #ffedce;
    padding: 2px;
    margin: 0 5px;
}


/* 代码片断 */

pre,
code,

pre tt {
    font-family: Courier, 'Courier New', monospace;
}

pre {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 1em 1.5em;
    display: block;
    -webkit-overflow-scrolling: touch;
}


/* 一致化 horizontal rule */

hr {
    border: none;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 0.8em;
    height: 10px;
}


/* 底部印刷体、版本等标记 */

small,
.typo-small,

/* 图片说明 */

figcaption {
    font-size: 0.9em;
    color: #888;
}

strong,
b {
    font-weight: bold;
    color: #000;
}


/* 可拖动文件添加拖动手势 */

[draggable] {
    cursor: move;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* 强制文本换行 */

.textwrap,
.textwrap td,
.textwrap th {
    word-wrap: break-word;
    word-break: break-all;
}

.textwrap-table {
    table-layout: fixed;
}


/* 提供 serif 版本的字体设置: iOS 下中文自动 fallback 到 sans-serif */

.serif {
    font-family: Palatino, Optima, Georgia, serif;
}


/* 保证块/段落之间的空白隔行 */

.typo p,
.typo pre,
.typo ul,
.typo ol,
.typo dl,
.typo form,
.typo hr,
.typo table,
.typo-p,
.typo-pre,
.typo-ul,
.typo-ol,
.typo-dl,
.typo-form,
.typo-hr,
.typo-table,
blockquote {
    margin-bottom: 1.2em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
    font-weight: 100;
    color: #000;
    line-height: 1.35;
}


/* 标题应该更贴紧内容，并与其他块区分，margin 值要相应做优化 */

.typo h1,
.typo h2,
.typo h3,
.typo h4,
.typo h5,
.typo h6,
.typo-h1,
.typo-h2,
.typo-h3,
.typo-h4,
.typo-h5,
.typo-h6 {
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    line-height: 1.35;
}

.typo h1,
.typo-h1 {
    font-size: 2em;
}

.typo h2,
.typo-h2 {
    font-size: 1.8em;
}

.typo h3,
.typo-h3 {
    font-size: 1.6em;
}

.typo h4,
.typo-h4 {
    font-size: 1.4em;
}

.typo h5,
.typo h6,
.typo-h5,
.typo-h6 {
    font-size: 1.2em;
}


/* 在文章中，应该还原 ul 和 ol 的样式 */

.typo ul,
.typo-ul {
    margin-left: 1.3em;
    list-style: disc;
}

.typo ol,
.typo-ol {
    list-style: decimal;
    margin-left: 1.9em;
}

.typo li ul,
.typo li ol,
.typo-ul ul,
.typo-ul ol,
.typo-ol ul,
.typo-ol ol {
    margin-bottom: 0.8em;
    margin-left: 2em;
}

.typo li ul,
.typo-ul ul,
.typo-ol ul {
    list-style: circle;
}


/* 同 ul/ol，在文章中应用 table 基本格式 */

.typo table th,
.typo table td,
.typo-table th,
.typo-table td,
.typo table caption {
    border: 1px solid #ddd;
    padding: 0.5em 1em;
    color: #666;
}

.typo table th,
.typo-table th {
    background: #fbfbfb;
}

.typo table thead th,
.typo-table thead th {
    background: #f1f1f1;
}

.typo table caption {
    border-bottom: none;
}


/* 去除 webkit 中 input 和 textarea 的默认样式  */

.typo-input,
.typo-textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

.typo-em,
.typo em,
legend,
caption {
    color: #000;
    font-weight: inherit;
}


/* 着重号，只能在少量（少于100个字符）且全是全角字符的情况下使用 */

.typo-em {
    position: relative;
}

.typo-em:after {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    content: "・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・";
}


/* Responsive images */

.typo img {
    max-width: 100%;
}


/* 动画 */

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}


/* 主体*/

.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.header-1 {
    height: 100%;
    background: url(img/header.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 0;
    display: block;
}

.header {
    height: 130px;
    width: 100%;
    background: #333333;
}

.nav-icon::after {
    position: absolute;
    content: '▾';
    font-size: 10px;
    padding-left: 5px;
}

.nav {
    height: 50px;
    line-height: 50px;
    background: #1f1f1f;
}

.nav li {
    display: block;
    float: left;
    height: 50px;
    line-height: 50px;
    width: 150px;
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
}

.nav a:hover {
    color: #fdd000;
}

.nav a.nav-icon:hover::after {
    color: white;
}

.nav-icon-new {
    position: relative;
}

.nav-icon-new::before {
    content: '';
    position: absolute;
    display: block;
    width: 25px;
    height: 28px;
    background: url(img/new.gif);
    right: -15px;
    top: -23px;
}


/* index banner css*/

.index-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.index-banner .hd {
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 50%;
    bottom: 10px;
    z-index: 1;
    margin-right: -55px;
}

.index-banner .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}

.index-banner .hd ul li {
    float: left;
    margin-right: 15px;
    width: 16px;
    height: 16px;
    ext-align: center;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 0;
}

.index-banner .hd ul li.on {
    border: 2px solid #fdd000;
    box-sizing: border-box;
    background: none;
}

.index-banner .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}

.index-banner .bd li {
    zoom: 1;
    vertical-align: middle;
    width: 100%;
    height: 500px;
    font-size: 0;
}

.banner1,
.banner2,
.banner3 {
    background: url(http://www.bjshl.com/uploads/image/20160310/1457585831.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.nav-hover {
    position: absolute;
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.nav-box {
    position: relative;
}

.nav-hover-box {
    width: 150px;
    height: 500px;
    float: left;
}

.nav-hover-box:hover {
    background-color: rgba(255, 255, 255, 0);
}

.nav-hover-ul {
    width: 100%;
    height: 500px;
    display: block;
    text-align: center;
}

.nav-hover-ul li a {
    height: 50px;
    line-height: 50px;
    color: white;
}

.nav-hover-ul li a:hover {
    color: #fdd000;
}

.hide-x:hover {
    background-color: transparent
}

.nav-product-list a {
    color: white;
}

.nav-product-list a:hover {
    color: #fdd000;
}

.nav-product-list {
    display: block;
    width: 100%;
    text-align: center;
}

.nav-product-list ol li {
    line-height: 50px;
}

.nav-product-list ul li {
    margin: 0;
    line-height: 25px;
    font-size: 14px;
}

.x-f {
    filter: grayscale(0%)!important;
}

.index-box1 {
    width: 100%;
    height: 180px;
    background-color: white;
}

.index-contact {
    width: 260px;
    height: 210px;
    position: absolute;
    background-color: #ffcc00;
    top: -34px;
    box-sizing: border-box;
    padding: 25px;
}

.index-contact input {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background-color: transparent;
    border: 1px solid #fff;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    text-indent: 10px;
}

.index-contact input::-webkit-input-placeholder {
    color: #fff;
}

.index-contact button {
    width: 100%;
    height: 36px;
    background: #fff;
    color: #666666;
    border: none;
    font-size: 14px;
    margin: 5px 0;
}

.index-contact button:hover {
    cursor: pointer;
}

.index-contact p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.index-contact p strong {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.index-box1-1-box {
    width: 136px;
    height: 136px;
    text-align: center;
    display: inline-block;
    margin: 20px;
}

.index-box1-1-box span {
    display: block;
    font-size: 14px;
    color: #a9a9a9;
}

.index-box1-1 {
    height: 180px;
    margin-left: 260px;
}

.index-box-1-img img {
    padding: 20px 0 0px 0;
    filter: grayscale(100%);
    -webkit-filter: gray;
    filter: gray;
}

.index-box-1-img span {
    font-size: 16px;
    color: #333;
}

.index1-shadow {
    width: 100%;
    height: 1px;
    box-shadow: 0px 10px 11px #5a5a5a;
    margin-top: -12px;
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 56px;
    background-color: #fdc703;
  z-index:20;
}

.bottom-fixed .container {
    height: 100%;
    background: url(img/index2-bg.png);
    background-repeat: no-repeat;
}

.bottom-fixed ul {
    float: right;
  margin-right: 200px;
}

.bottom-fixed li {
    display: inline-block;
    line-height: 56px;
    color: white;
    margin-right: 20px;
    font-size: 16px;
    cursor: pointer;
}

.bottom-fixed li:hover {
    color: #c39800;
}

.bottom-fixed li:hover::after {
    color: white;
}

.bottom-fixed li::after {
    content: '|';
    margin-left: 20px;
}

.bottom-fixed li:nth-last-of-type(1)::after {
    content: '';
    font-size: 12px;
    margin: 0;
}

.kf {
position: absolute;
    right: -20px;
    bottom: 0px;
    cursor: pointer;
    font-size: -webkit-xxx-large;
    line-height: 0;
}

.index-video {
    margin-top: 10px;
    width: 100%;
    height: 480px;
    background: url(img/index.gif);
}

.indexx-video-eng {
    font-size: 59px;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    z-index: 1;
    position: absolute;
    left: 45px;
    top: 90px;
    line-height: 120%;
}

.index-video video {
    width: 890px;
    height: 400px;
}

.index-video-img {
    position: absolute;
    right: 35px;
    top: 45px;
}

.index-video-img-box {
    position: relative;
}

.index-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -50px;
    cursor: pointer;
}

.index-box-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-top: 40px;
}

.index-box-title em {
    font-style: normal;
    font-weight: 200;
}

.index-box-title span {
    display: block;
    font-size: 18px;
    color: #666;
    font-weight: 100;
    margin-top: -8px;
    border-bottom: 1px dashed #666;
    padding-bottom: 10px;
}


/* 模态 */

.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em
}

.blocker.behind {
    background-color: transparent
}

.modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('img/G1zltnAgAAAABJRU5ErkJggg==')
}

.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px
}

.modal-spinner>div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.5)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0)
    }
}

.index-video-x video {
    width: 100%;
    height: auto;
}

.index-video-x {
    max-width: 80%;
    height: auto;
}

.index-product .hd {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.index-product .hd li {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 120px;
    color: #333;
    font-size: 18px;
}

.index-product .hd li.on {
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.index-product-box {
    display: block;
    float: left;
    width: 24.7%;
    margin-right: 0.4%;
}

.index-product-box:nth-of-type(4n+4) {
    margin-right: 0;
}

.index-product-img-box img {
    width: 100%;
    height: auto;
    transition: all 0.6s;
}

.index-product-title-box span {
    display: block;
    width: 100%;
    text-align: center;
    height: 48px;
    line-height: 40px;
    color: #333;
}

.index-product-img-box {
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.index-product-box:hover .index-product-img-box img {
    transform: scale(1.1);
}

.index-product-box:hover .index-product-title-box span {
    background: #ffcc00;
    color: white;
}
.index-box4 {
    width: 100%;
    background-color: #eeeeee;
    float: left;
margin-top: 60px;
}

.index-s-box {
    width: 296px;
    height: 400px;
    float: left;
    margin-right: 5.3px;
    position: relative;
    margin-top: 45px;
    margin-bottom: 45px;

}
.index-s-box:hover .index-s-info{
    padding-top: 65px;
    background-color: rgba(0, 0, 0, 0.45);
    -webkit-animation: xtop 1s;
    animation: xtop 1s;
}
.index-s-box:hover .index-s-info-p {
    display: block;
}
.index-s-box:nth-child(4){
    margin-right: 0;
}

.index-s-info {
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    text-align: center;
    padding: 115px 32px 65px 32px;
    box-sizing: border-box;
}

.index-s-info span,.index-s-info em,.index-s-info-p{
    display: block;
}
.index-s-info em{font-weight: 100;}

.index-s-info-p {
    font-size: 13px;
    margin-top: 15px;
    display: none;
}


@-webkit-keyframes xtop {
    from {
        opacity: 0;
        padding-top: 65px;

    }
    50% {
        opacity: 1;
        padding-top: 115px;

    }
}

@keyframes xtop {
    from {
        opacity: 0;
        padding-top: 400px;

    }
    50% {
        opacity: 1;
        padding-top: 65px;

    }
}

.index-box5 {
    width: 100%;
    float: left;
}

.case-box {
    height: 500px;
    margin-top: 38px;
}

.case-box-left {
    width: 78px;
    height: 100%;
    float: left;
    text-align: center;
    
}
.case-box-left li{
    box-sizing: border-box;
    width: 230px;
    height: 78px;
    padding: 12px 0;
    font-size: 18px;
    background: #eeeeee;
    color: #333;
    margin-top: 6.5px;
    display: block;
    cursor: default;
}
.case-box-left li:hover{
    background: #ffcc00;
    font-weight: bold;
}
.case-box-left li span{
display: block;
   font-size: 12px;
    line-height: 0;
    margin-top: 6px;
font-weight: normal;
}


.case-box-right {
    width: 960px;
    height: 500px;
    float: right;
}


.cbr .prev,.cbr .next {
    width: 50px;
    height: 90px;
    background: url(img/cbr-left.png);
    display: block;
    position: absolute;
    left: 0;
    top: 41%;
}
.cbr .next {
        background: url(img/cbr-right.png);
    left: auto;
    right: 0!important;

}

.cbr {
    position: relative;
    width: 100%;
    height: 100%;
}

.cbr-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cbr-img-box:hover img{
        transform: scale(1.1);
}
.cbr-img-box img{
  	width:100%;
    transition: all 0.6s;
}
.cbr-img-box span{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: white;
    font-size: 18px;
    text-indent: 40px;
      background: -webkit-linear-gradient(rgba(255, 255, 255, 0), #1f1f1f);
  background: linear-gradient(rgba(255, 255, 255, 0), #1f1f1f);
}

.index-box6 {
    background: #eeeeee;
    width: 100%;
    height: 374px;
    float: left;
    margin-top: 0px;
}
.index-box6 .container{
    height: 100%;
    background: url(img/boxindex-bg.jpg);
    display: block;
}

.index-box7 {
    float: left;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 45px;
}
.index-box7 .container{
        width: 1130px;
}

.index-box7-img-box {
    width: 520px;
    height: 320px;    box-shadow: 20px 20px 0px #fdd000;
    float: left;
}
.index-box7-img-box img{
    box-shadow: -1px 9px 11px #0000005c;
}

.index-box7-1 {
    width: 100%;
    height: 340px;
    margin-top: 48px;
}

.index-box7-company-box {
    width: 49%;
    float: right;
    height: 100%;
}
.index-box7-company-box p{
    font-size: 18px;
    color: #333;
    line-height: 190%;
}
.index-box7-company-box p a{
    color: #fdd000;
    font-weight: bold;
}

.index-box7-c-t {
    font-size: 28px;
    font-weight: bold;
    margin-top: 16px;
    position: relative;
}
.index-box7-c-t::after{
    content: '';
    display: block;
    width: 110px;
    height: 4px;
    background: #fdd000;
    margin-top: 5px;
    margin-bottom: 15px;
}


.index-box7-2 .next,.index-box7-2 .prev{
    width: 32px;
    height: 58px;
    display: block;
    background: url(img/box7-l.png);
    position: absolute;
    left: -35px;;
    top: 36%;
}
.index-box7-2 .prev{
    left: auto;
    right: -35px;
}
.index-box7-2 .prev{
    background: url(img/box7-r.png)

}

.index-box7-2{
width: 100%;
    position: relative;
    margin-top: 40px;
}
.index-box7-2 .bd{
    width: 100%;
    overflow: hidden;
}
.piclist li{
    width: 275px;
    height: 200px;
    margin-right: 10px;
    overflow: hidden;
}

.box7-img-box {
    position: relative;
}

.box7-img-box:hover img{
        transform: scale(1.1);

}.box7-img-box img{
        transition: all 0.6s;

}
.box7-img-box span{
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: white;
    height: 40px;
    line-height: 40px;
        background: -webkit-linear-gradient(rgba(255, 255, 255, 0), #1f1f1f);
    background: linear-gradient(rgba(255, 255, 255, 0), #1f1f1f);
    margin-bottom: 8px;
}

.index-box8 {
    background: #fff;
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 40px;
}

.box8-t {
    font-size: 20px;
    font-weight: bold;
    height: 80px;
    line-height: 80px;
    text-indent: 20px;
}
.box8-t span{
    color: #999;
}
.box8-t a{
float: right;
color: #333;font-weight: normal;font-size: 16px;padding-right: 10px;}

.index-box8-box {
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    height: 450px;
    padding-right: 20px;
}

.box8-img {
    width: 100%;
    height: 200px;
    
}
.box8-img img{
    width: 100%;
    height: 100%;
}

.box8-title {
    font-size: 24px;
    width: 100%;
    padding: 0 20px;
    font-weight: bold;
    margin-top: 15px;
}
.box8-title:hover a{
    color: #ffcc00;
}
.box8-title a{
    color: #666;
}

.box8-time {
        width: 100%;
    color:#999;padding: 0 20px;
}

.box8-content {
    color: #999;padding: 0 20px;
}

.box8-article {
    box-sizing: border-box;
}

.box8-list li{
    text-indent: 20px;
    font-size: 18px;
    line-height: 235%;
}
.box8-list li a{
    color: #999;
}
.box8-list li:hover a{
    color: #ffcc00;
    
}

.box8-list-time {
    font-size: 15px;float: right;
}

.footer {
    width: 100%;
    height: 320px;
    background: #1f1f1f;
    float: left;
}

.footer-a li,.footer-a a{
    color: white;
    font-size: 14px;line-height: 200%;
}
.fs{
    display: block;
    height: 230px;
    float: left;
    position: relative;
    margin-right: 50px;
}
.fs span{font-size: 23px;position: relative;margin-bottom: 30px;display: block;}
.fs span::after{
content: '';
    width: 42px;
    height: 2px;
    background: #ffcc00;
    position: absolute;
    left: 0;
    bottom: -10px;;
    
}

.footer-a {
    margin-top: 43px;
}



.qr {
    position: absolute;
    right: 250px;
    color: white;
    
}
.qr span{display: block;text-align: center;font-size: 15px;margin-top: -5px;}

.footer-c {
    position: absolute;
    right: 0;
}

.flink {
    width: 100%;
    height: 120px;
    background: #333;
    float: left;
    color: #c8c8c8;
    box-sizing: border-box;
    padding-top: 20px;
      margin-bottom: 50px;
}
.flink ul{
    box-sizing: border-box;
    padding-left: 155px;
    padding-top: 2px;
}
.flink li{
    display: inline-block;
    margin-right: 20px;
}
.flink a{color: white;}

.flink-title {
    position: absolute;
    left: 0;
    font-size: 18px;
}

.crumbs {
    width: 100%;
    height: 45px;
    background: #ededed;
    line-height: 45px;
        color: #666;

}
.crumbs a{
    color: #666;
}

.product-1 ,.product-m{
    width: 100%;
    height: 750px;
}
.product-1{
    background-position: center;    background-size: 100%;
    background-repeat: no-repeat;
}
.product-m{
background: rgba(0, 0, 0, 0.8);
}
.product-m .container {
box-sizing: border-box;padding: 30px 0;}

.product-1-left {
width: 850px;
    height: 680px;
    float: left;
    overflow: hidden;
    position: relative;
}
.product-1-left .hd ul{
    margin-top: 13px;
    display: block;
    width: 200%;
    height: 106px;
}
.product-1-left .hd li{
    width: 160px;
    height: 106px;
    display: block;
    float: left;
    margin-right: 12px;
    box-sizing: border-box;
}
.product-1-left .hd li img{
    width: 100%;
    height: 100%;
}
.product-1-left .on{
    border: 2px solid #fcc62e;
    border-radius: 2px;
}
.product-1-left .prev, .product-1-left .next {
    width: 50px;
    height: 90px;
    background: url(img/cbr-left.png);
    display: block;
    position: absolute;
    left: 0;
    top: 34.5%;
}
.product-1-left .next {
    background: url(img/cbr-right.png);
    left: auto;
    right: 0;
}
.product-1-left .bd,.product-1-left .bd li{
    width: 850px;
    height: 560px;
}
.product-1-left .bd img{
    width: 100%;
    height: 100%;
}

.product-1-right {
    width:300px;
    float: right;
    color: white;
}
.product-1-right h1{
    display: block;
    color: white;
    font-weight: bold;
    font-size: 1.8em;
    line-height: 160%;
}

.pr-1 {
    margin:10px 0;
    font-size: 20px;
}
.pr-1 span{
    color: #ffcc00;
    font-size: 2.1em;
    font-weight: bold;
}

.hr {
    opacity: 0.2;
    width: 100%;
}

.pr-info span{
    color: white;
    display: block;
    position: relative;
    font-size: 1.2em;
    margin-bottom: 15px;
}
.pr-info b{
    color: white;
}

.pr-2 {
    width: 100%;
    height: 60px;
    position: relative;
    margin-top: 30px;
}
.pr-2 span,.pr-2 img{
    position: absolute;
}
.pr-2 img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.pr-2-1{
    left: 75px;font-weight: bold;font-size: 1.1em;
}
.pr-2-2{bottom: 5px;;left: 75px;font-size: 0.8em;}

.icon-call {
    position: relative;
    width: 120px;
    height: 32px;
    padding: 0 20px;
    display: block;
    border: 1px solid #fff;
    border-radius: 244px;
    text-align: center;
    text-indent: 30px;
    margin-top: 25px;
    
}
.icon-call::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 17px;
    left: 35px;
    top: 5px;
    background: url(img/icon-call.png);}

.call-number {
    color: #ffcc00;
    font-size: 2.5em;
    font-weight: bold;
}

.pi-title {
    font-size: 2em;
    line-height: 360%;
}

.pi-content {
margin-bottom: 80px;}
.pi-content p{
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.product-bx {
    width: 100%;
    height: 70px;
    line-height: 70px;
    background: #ffcc00;
    color: white;
    text-align: center;
    font-size: 1.4em;
    position: relative;
    float: left;
}
.product-bx span::before{
    content: 'icon';
    display: inline-block;
    width: 36px;
    height: 41px;
    background: url(img/icon-safe.png);
    line-height: 56px;
    font-size: 0;margin-right: 15px;
}
.product-bx::after{
    content: '111';
    width: 28px;
    height: 28px;
    display: inline-block;
    text-align: center;
    background: #ffcc00;
transform:rotate(45deg);
    position: absolute;
    top: -14px;
    z-index: -1;
    font-size: 0;
    
}

.pr-box {
    width: 25%;
    float: left;
    text-align: center;
    margin-bottom: 10px;
}
.pr-box a:hover{
color: #ffcc00}
.pr-box img{
    width: 260px;
    height: 170px;
}
.pr-box a{
    width: 260px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    color: #666;
}

.product-recommend {
    width: 100%;
    float: left;
    margin-bottom: 100px;
}

.product-all-category {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    margin: 35px 0;
}
.product-all-category li{
    display: inline-block;
    font-size: 1.1em;
    margin-right: 30px;
    
}
.product-all-category a{
    color: #666;
    padding: 5px 10px;
    box-sizing: border-box;

}
.product-all-category li:hover a{
    color: #ffcc00;
    border: 1px solid #ffcc00;
    border-radius: 3px;
}
.product-all-category .current-cat a{
    background: #ffcc00;
    color: white;
    border-radius: 3px;
}

.pac-title {
    display: inline;float: left;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 20px;
}

.product-tips {
    height: 34px;
    line-height: 34px;
    color: #666;
    background: #ffcc00;
    display: inline-block;
    padding: 0 20px;
    font-size: 1.1em;
    margin-bottom: 35px;
}

.product-box-content {
    width: 100%;
    box-sizing: border-box;
        border: 1px solid #fff;
    border-top: none;
    padding: 3%;
}

.product-box {
      box-sizing: border-box;
    display: block;
    float: left;
    width: 29%;
    margin: 1.5%;
    margin-top: 0;
}
.product-box:hover .product-box-content{
      border: 1px solid #ffcc00;
      border-top: none;
}

.product-img-box-box {
    display: none;
    position: absolute;
    width: 86%;
    height: 80%;
    left: 7%;;
    top: 10%;
    color: #ffcc00;
    box-sizing: border-box;
    border: 1px solid #ffcc00;
    line-height: 100%;
    font-size: 16px;
    padding:12% 5%;
    
}
.product-img-box-box p{
    font-size: 16px;line-height: 200%;font-weight: 200;
}
.product-img-box img{
    width: 100%;
}

.product-img-box {
    line-height: 0;
    font-size: 0;
    position: relative;
    background: #000;
}
.product-img-box:hover img{
    opacity: 0.7;
}
.product-img-box:hover .product-img-box-box{
    display: block;
}

.pibb-title {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
	line-height:150%;
}
.pibb-title::after{
    content: '';
    width: 13%;
    height: 3px;
    font-weight: normal;
    text-align: center;
    background: #ffcc00;
    display: block;
    margin: 0 auto;
    margin-top: 7%;
    margin-bottom: 7%;
}

.product-box-content-title {
    font-weight: bold;
    color: #333;
    font-size: 1.3em;
    height: 37px;
    line-height: 37px;
    overflow: hidden;;
}

.product-box-info {
    color: #333;
    line-height: 220%;
}
.product-box-info span{
position: relative;
        margin-left: 26px;
}

.icon-bhw::before,.icon-mjw::before,.icon-csw::before,.icon-moneyw::before,.icon-jgw::before{
    content: '1';
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(img/icon-bhw.png);
    background-repeat: no-repeat;
    font-size: 0;
    position: absolute;
    left: -26px;
    bottom: 3px;;
}
.icon-mjw::before{
        background: url(img/icon-mjw.png);

}
.icon-csw::before{
        background: url(img/icon-csw.png);

}
.icon-moneyw::before{
        background: url(img/icon-moneyw.png);

}
.icon-moneyw em{
    font-style: normal;
    font-weight: bold;
    color: #ffcc00;
    font-size: 30px;
}
.icon-jgw::before{
        background: url(img/icon-jgw.png);

}


.ptbx {
    margin-left: 2%;
}

.product-container {
    width: 100%;
    padding: 2%;
  float:left;
  
}

.pagelist {
    float: left;
    margin: 40px auto;
      min-width: 100%;
}
.pagelist li{
    display: inline-block;
      margin-right: 15px;
    
}
.pagelist li a{
    height: 36px;
    line-height: 36px;
    border: 1px solid #333;
    color: #333;
    padding: 10px 20px;;
}

.pagelist li.current a,.pagelist li:hover a{
    background: #ffcc00;
    color: white;
    border: 1px solid #ffcc00;
}

.product-wiki {
    padding: 55px;
  padding-bottom:0;
    background: #ffcc00;
    width: 100%;
    float: left;
    box-sizing: border-box;
}

.product-wiki-title {
    color: #333;
    font-weight: bold;
    font-size: 2em;
    position: relative;
    text-indent: 52px;
}
.product-wiki-title::before{
content: '';
width: 32px;
    height: 38px;
    display: inline-block;
    background: url(img/icon-wiki.png);
    position: absolute;
    left: 0;
    bottom: 10px;
}

.product-wiki-content {
    padding: 53px;
    padding-top: 20px;
    box-sizing: border-box;
    float: left;
}

.product-wiki-cite-title {
        font-size: 1.3em;
    font-weight: bold;

}

.product-wiki-cite-content {
    line-height: 220%;
    margin-bottom: 20px;
}

.icase-box {
    width: 100%;
    height: 325px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 14px;
    margin-bottom: 30px;
}
.icase-box:hover{
    border: 1px solid #ffcc00;

}

.case-img-box {
    width: 450px;
    height: 297px;
    float: left;
    position: relative;
}
.case-img-box span{
    display: block;
    width: 80px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: white;
    position: absolute;
    bottom: 25px;
    z-index: 999;
    background: #ffcb00;
    left: -10px;
}

.case-list-info {
    height: 100%;
    width: 700px;
    float: left;
    margin-left: 20px;
}

.case-list-title{
    height: 35px;width: 100%;
    float: left;
    margin-bottom: 15px;
    margin-top: 5px;
}
.case-list-title a{
    color: #333;
    font-weight: bold;
    font-size: 1.6em;
    height: 35px;
    line-height: 35px;
    display: block;
    float: left;
}    
.case-list-title a:hover{
    color: #ffcb00;
}
.case-list-title span{
    margin-left: 20px;
    height: 35px;
    line-height: 35px;
    display: block;
    float: left;
    background: #ffcb00;
    padding: 0 10px;
    border-radius: 3px;
    margin-top: -3px;
    
}
.case-list-title span a{
font-weight:100;
font-size:15px;color:#333;}
.case-list-title span:hover a{
color:#666;}
.case-list-parameter {
    color: #333;
    margin-bottom: 20px;
}
.case-list-parameter span{
    display: inline-block;
    margin-bottom: 10px;
}
.case-list-parameter span i::before{
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    
}
.icon-xmdz i::before{    background: url(img/icon-xmdz.png);background-repeat: no-repeat;margin-bottom: -1px;}
.icon-jgsj i::before{    background: url(img/icon-jgsj.png);background-repeat: no-repeat;margin-bottom:-4px;}
.icon-jgtx i::before{    background: url(img/icon-jgtx.png);background-repeat: no-repeat;margin-bottom: -3px;}
.icon-jzmj i::before{    background: url(img/icon-jzmj.png);background-repeat: no-repeat;margin-bottom: -3px;}

.case-imgs-box {
    box-sizing: border-box
}
.case-imgs-box li:nth-child(3) img{
    margin: 0;
}
.case-imgs-box img{
    width: 220px;
    height: 145px;
    float: left;
    margin-right: 20px;
}


.case-article-bg {
    width: 100%;
    height: 400px;
    background: url(img/case-bg-demo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    
}

.case-article-box {
    box-sizing: border-box;
    padding: 0 5%;
}
.case-article-box h1{
    font-size: 2.7em;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}
.case-article-box h1 a{
    height: 35px;
    line-height: 35px;
    font-weight: normal;
    display: inline-block;
    color: #333;
    background: #ffcc00;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 3px;
    position: absolute;
    top: 12px;
    margin-left: 40px;
}

.case-c{
    margin-bottom: 40px;
    position: relative;
}
.case-c span i::before{
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    
}

.case-c-x {
    display: inline-block;
    position: absolute;
    top: -20px;
    margin-left: 50px;
    width: 160px;
    height: 68px;
    
}

.case-cx-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.case-cx-1 {
    display: block;
    position: absolute;
    top: 5px;
    left: 80px;
}

.case-cx-2 {
    position: absolute;
    bottom: 10px;
    font-size: 13px;
    left: 80px;
    
}

.my-gallery figure{
    float: left;
    width: 19.2%;
    margin-right: 1%;
    margin-bottom: 20px;
}
.my-gallery figure:nth-child(5n+5){
    margin-right: 0;
}
.my-gallery figure img{
    width: 100%;
}

.case-article-content {
    float: left;
    padding: 20px 0 40px 0;
}
.case-article-content p{
    font-size: 1.1em;
    line-height: 200%;
    margin-bottom: 20px;
}

.case-recommend {
    float: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5%;
}

.cr-title {
    font-size: 2em;
    line-height: 400%;
}

.cr-box {
    display: block;
    float: left;
    width: 15.6%;
    margin-right: 1.28%;
    margin-bottom: 20px;
    text-align: center;
}
.cr-box:nth-child(6n+6){
    margin-right: 0;
}
.cr-box img{
width: 100%;
}
.cr-box span{
    color: #333;
}
.cr-box:hover span{
    color: #ffcc00;
}

.shipai-cat {
    width: 640px;
    height: 40px;
    line-height: 40px;
    margin: 40px auto;
}
.shipai-cat li{
    display: inline-block;
    
}
.shipai-cat a:hover{
    background: #707070;
    color: white;
}
.shipai-cat a{
    display: inline-block;
    width: 140px;
    height: 40px;
    background: #333333;
    color: white;
    text-align: center;
    border-radius: 5px;
    margin-right: 16px;
}

.hv a{
    background: #ffcc00;color:#666;
}



.shipai-img figure{
    width: 24%;
    float: left;
    margin-right: 1.3%;
    margin-bottom: 10px;
}
.shipai-img figure:nth-child(4n+4){
    margin-right: 0;
}
.shipai-img figure img{
    width: 100%;
}

.shipai-img {
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

.x-contact {
    width: 100%;
    height: 100%;
background:rgba(0, 0, 0, 0.26);
    

}

.xc-container {
    float: left;
    width: 100%;
    height: 800px;
        background: url(img/xc-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 90px;
    margin-bottom: 30px;
}

.x-c-box {
    width: 560px;
    height: 800px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    padding-top: 100px;
}
.x-c-box input{
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: none;
    border-radius: 9px;
    padding: 0 30px;
    box-sizing: border-box;
    font-size: 1.2em;
    margin-bottom: 30px;
}
.x-c-box textarea{
    width: 100%;
    height: 160px;
    border-radius: 9px;
    padding: 20px 30px;
    font-size: 1.2em;
    box-sizing: border-box;
    border: none;
}
.x-c-box button{
    width: 100%;
    height: 60px;
    line-height: 60px;
    display: block;
    background: #ffcc00;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 9px;
    margin-top: 20px;
    cursor:pointer;
        color: white;
    border: none;
}

.x-c-box-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.x-c-box-p {
    font-size: 1.1em;
    margin-bottom: 50px;
}



.x-nav {
    width: 100%;
    float: left;
    padding: 30px 0;
}
.x-nav li{
    display: inline-block;
    height: 36px;
    line-height: 36px;
    width: 33%;
    font-size: 18px;
    margin-bottom: 40px;
}
.x-nav li a{
    position: relative;
    color: #333;
    padding-left: 50px;
    
}
.x-nav li a:hover{
      color: #ffcc00;
    font-weight: bold;
}

.x-nav li a::before{
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(img/icon-xz.png);
    position: absolute;
    left: 0;
}

.news-index-banner .prev,.news-index-banner .next {
    width: 32px;
    height: 58px;
    background: url(img/box7-l.png);
    display: block;
    position: absolute;
    left: 0;
    top: 41%;
}
.news-index-banner .next {
    background: url(img/box7-r.png);
    display: block;
    position: absolute;
    left: auto;
    right: 0;
    top: 41%;
}

.news-index-banner{
margin: 40px 0;
}
.news-index-banner .hd{
    position: absolute;
    bottom: 40px;
    right: 170px;
}
.news-index-banner .hd li{
    width: 16px;
    height: 16px;
    font-size: 0;
    background: #b2b2b2;
    border-radius: 33px;
    float: left;
    margin-right: 10px;
}
.news-index-banner .hd li.on{
    background: #ffcc00;
}
.news-index-banner .bd{
    width: 100%;
    height: 370px;
    position: relative;
}
.news-index-banner .bd li a{
    width: 355px;
    font-size: 2em;
    font-weight: bold;
    color:  #333;
    position: absolute;
    right: 60px;
    top: 143px;
}

.news-index-banner-img-box {
    width: 750px;
    height: 370px;
    float: left;
}
.news-index-banner-img-box img{
    width: 100%;
    height: 100%;
}

.hot-news-img {
    width: 88px;
    height: 87px;
    position: absolute;
    right: 190px;
    top: 40px;
}

.newx-index-lfet {
    width: 200px;
    height: 100%;
    float: left;
}

.x-title {
    width: 200px;
    height: 41px;
    background: url(img/title-bg.png);
    box-sizing: border-box;
    padding-left: 53px;
    line-height: 30px;
    color: #333;
    font-size: 1.1em;
}
.x-title a{
    float: right;
    font-size: 13px;
    color: #999;
}

.news-left-ul li{
    margin-bottom: 10px;
    position: relative;

}
.news-left-ul a{
    color: #666;
    
}
.news-left-ul a::before{
    content: '1.';
    margin-right: 5px;
    position: absolute;
    left: -27px;
    margin-top: -10px;
    font-size: 1.2em;
    font-weight: 400;
    color: #ccc;
}
}
.news-left-ul li:nth-child(1) a::before,.news-left-ul li:nth-child(2) a::before,.news-left-ul li:nth-child(3) a::before{
    color: #ffcc00;
}
.news-left-ul li:nth-child(2) a::before{
    content: '2.';
}
.news-left-ul li:nth-child(3) a::before{
    content: '3.';
}
.news-left-ul li:nth-child(4) a::before{
    content: '4.';
}
.news-left-ul li:nth-child(5) a::before{
    content: '5.';
}
.news-left-ul li:nth-child(6) a::before{
    content: '6.';
}
.news-left-ul li:nth-child(7) a::before{
    content: '7.';
}
.news-left-ul li:nth-child(8) a::before{
    content: '8.';
}
.news-left-ul li:nth-child(9) a::before{
    content: '9.';
}
.news-left-ul li:nth-child(10) a::before{
    content: '10.';
}


.news-left-ul {
    width: 100%;
    float: left;
    box-sizing: border-box;
    font-size: 0.9em;
    padding-left: 40px;
    padding-top: 20px;

}

.news-index-c {
    width: 600px;
    height: 100%;
    float: left;
    margin-left: 50px;
}

.news-index-c .hd{
    height: 50px;
        border-top: 1px solid #ffcc00;
    border-bottom: 1px solid #ffcc00;
}
.news-index-c .hd li{
    float: left;height: 50px;
    line-height: 50px;
    width: 33.333333%;
    text-align: center;
    font-size: 1.3em;
}
.news-index-c .hd li.on{
    background: #ffcc00;
    color: white;
    font-weight: bold;
}

.nfs{
float:left;color: #333;}
.news-list-first {
    width: 100%;
}


.n-f-img {
    width: 100%;
    height: 300px;
}
.n-f-img img{
    width: 100%;
    height: 80%;
}

.n-f-title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 10px;
}
.n-f-title a{
    color: #333;
}
.n-f-title span{
    font-size: 0.75em;
    float: right;
    font-weight: normal;
    color: #c0c0c0;
}

.news-index-box {
    width: 100%;
    height: 120px;
    position: relative;
    margin: 20px 0;
}

.n-i-b-img {
    width: 190px;
    height: 120px;
    float: left;
    margin-right: 25px;
}
.n-i-b-img img{
width: 100%;
height: 100%;}
.news-index-box a{
    color: #333;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 12px;
    display: inline;
}

.n-i-b-info {
    width: 350px;
    height: 25px;
    position: absolute;
    right: 35px;
    color: #bbb;
  margin-top: 13px;
    
}

.n-i-b-tag a{
    font-size: 0.9em;
    font-weight: normal;
    line-height: 25px;
    margin-right: 10px;
    float: left;
        color: #bbb;

}
.n-i-b-tag a:hover{
    color: #ffcc00;
}
.n-i-b-tag span{
    border: 1px solid #ffcc00;
    color: #ffcc00;
    font-size: 0.9em;
    height: 20px;
    line-height: 20px;
    padding: 0 5px;
    display: block;
    float: left;
    border-radius: 3px;
    margin-right: 10px;
}


.n-i-b-time {
    display: inline-block;
    float: left;
    font-size: 0.9em;
}
.n-i-b-time::before{
    content: '|';
    padding-right: 10px;
}

.newx-index-right {
    float: right;
    width: 300px;
    height: 100%;
}

.question-1 {
    width: 100%;
    height: 250px;
    float: left;
    margin-bottom: 30px;
}
.question-1 img{
    width: 100%;
    height: 100%;
}

.y-title {
    width: 300px;
    height: 41px;
    background: url(img/title-bg-y.png);
    box-sizing: border-box;
    padding-left: 53px;
    line-height: 30px;
    color: #333;
    font-size: 1.1em;
    float: left;
}
.z-title {
    width: 300px;
    height: 41px;
    background: url(img/hot-news-bg.png);
    box-sizing: border-box;
    padding-left: 53px;
    line-height: 30px;
    color: #333;
    font-size: 1.1em;
    float: left;
}
.z-title a{
    float: right;
    font-size: 0.8em;
    color: #888;
}
.y-zt-list{    margin-bottom: 30px;
    float: left;
}

.y-zt-list span{
    display: block;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), #000);
    background: linear-gradient(rgba(255, 255, 255, 0), #000);
    color: white;
    position: absolute;
    bottom: 0;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    height: 35px;line-height: 35px;
    width: 100%;
    font-size: 0.9em;
}


.y-zt-list a{
    width: 300px;
    height: 140px;
    display: block;
    float: left;
    position: relative;
    margin-top: 20px;
}
.y-zt-list a img{
    width: 100%;
    height: 100%;
}

.special-box {
    width: 1200px;
    float: left;
}

.special-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    line-height: 110%;
    margin-top: 60px;margin-bottom: 40px;
}
.special-title  span{
    display: block;
    font-weight: normal;
    font-size: 0.6em;
}

.special-top{
    width: 100%;
    height: 210px;
    margin-bottom: 20px;
}
.special-top a{
    width: 285px;
    height: 210px;
    display: block;
    float: left;
    margin-right: 20px;
    position: relative;
}
.special-top a:nth-child(4){
    margin-right: 0;
}
.special-top a img{width: 100%;height: 100%;}
.special-top a span{
    width: 100%;
    display: block;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), #000);
    background: linear-gradient(rgba(255, 255, 255, 0), #000);
    color: white;
    position: absolute;
    bottom: 0;
    font-size: 1.25em;
    height: 50px;
    line-height: 50px;
    
}
.special-top a span::before{
    content: '';
    width: 20px;
    height: 20px;
    background: url(img/icon-qs.png);
    display: inline-block;
    margin: 0 13px;
    margin-bottom: -2px;
}

.special-all {
    float: left;
    margin-top: 20px;
    margin-bottom: 50px;
}
.special-all li{
    width: 132px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    float: left;
    background: #f9f9f9;
    margin-right: 20.5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #eeeff2;
    overflow: hidden;
}
.special-all li:nth-child(8n+8){
    margin-right: 0;
}
.special-all a{
        color: #333;

}

.news-list-title {
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    margin-top: 40px;
    border-bottom: 1px solid #e5e5e5;
font-size: 2em;
    
}
.news-list-title::after{
    content: '';
    height: 37px;
    width: 10px;
    display: block;
    float: left;
    background: #ffcc00;
    margin-right: 30px;
    margin-top: 5px;
}

.news-list-img {
    width: 240px;
    height: 150px;
    float: left;
    margin-right: 25px;
}
.news-list-img img{
    width: 100%;
    height: 100%;
}

.news-list-t{
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}
.news-list-tag{
    margin-bottom: -8px;
    display: inline-block;}
.news-list-tag span {
    border: 1px solid #ffcc00;
    color: #ffcc00;
    font-size: 0.9em;
    height: 20px;
    line-height: 20px;
    padding: 0 5px;
    display: block;
    float: left;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 2px;
}
.news-list-tag a {
 font-size: 0.95em;
    font-weight: normal;
    line-height: 25px;
    margin-right: 10px;
    float: left;
    color: #bbb;
}


.news-list-left {
    width: 850px;
    float: left;
    height: 100%;
margin-bottom: 30px;
}
.news-list-left p{
    font-size: 1em;
  line-height:150%;
}

.news-list-time {
    display: inline-block;
    font-size: 0.95em;
    height: 25px;
    line-height: 25px;
}
.news-list-time::before{
    content: '|';
    margin-right: 10px;
}

.news-list-info {
position: absolute;
    bottom: 0;
    width: 545px;
    right: 40px;
    height: 40px;
    font-size: 0.9em;
}

.news-list-box {
    position: relative;
    width: 100%;
    height: 150px;

}
.news-list-container{
        padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}
.news-list-container:hover {
    background: #f0f0f0;
    border-bottom: 1px solid #ffcc00;
}

.news-list-right {
    margin-top: 30px;
}

.article-left {
    width: 840px;
    height: 100%;
    float: left;
}

.article-left h1{
    font-weight: bold;
    margin-top: 55px;
}

.article-a {
    color: #888;
    margin: 5px 0;
    margin-bottom: 15px;
}

.article-content p{
    text-indent: 40px;
    line-height: 200%;
    margin-bottom: 20px;
}
.article-content img{
    max-width: 100%;
    height: auto;
}

.article-tag span{
        border: 1px solid #ffcc00;
    color: #ffcc00;
    font-size: 0.9em;
    height: 25px;
    line-height: 25px;
    padding: 0 5px;
    display: block;
    float: left;
    border-radius: 3px;
    margin-right: 10px;
}
.article-tag a {
    font-size: 0.95em;
    font-weight: normal;
    line-height: 25px;
    margin-right: 10px;
    float: left;
    color: #bbb;
}

.article-info {
    width: 100%;
    height: 25px;
    line-height: 25px;
}

.article-source {
    float: right;
    color: #888;
  font-size:14px;
}
.article-source::before{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(img/icon-source.png);
    margin-bottom: -2px;
    margin-right: 10px;
    
}

.article-brother{
    padding: 15px 0;
    font-size: 1em;
    border-bottom: 3px solid #ffcc00;
    margin-bottom: 20px;
}
.article-brother span{
    display: block;
    margin-left: 50px;
    margin-bottom: 10px;
}
.article-brother a{
    color: #333;
}
.article-brother a:hover{
    color: #ffcc00;
}

.margin-clear {
    margin: 0;
}

.hot-article{
    padding: 10px 0px 10px 5px;
    display: block;
    float: left;
    box-sizing: border-box;
}
.hot-article li a{
    line-height: 220%;
    color: #333;
    font-size: 1em;
}
.hot-article li::before{
content: '1.';
    font-size: 1.2em;
    font-weight: 400;
    margin-right: 5px;color: #ccc;
}
.hot-article li:nth-child(1)::before,.hot-article li:nth-child(2)::before,.hot-article li:nth-child(3)::before{
    color: #ffcc00;
}
.hot-article li:nth-child(2)::before{
    content: '2.';
}
.hot-article li:nth-child(3)::before{
    content: '3.';
}
.hot-article li:nth-child(4)::before{
    content: '4.';
}
.hot-article li:nth-child(5)::before{
    content: '5.';
}
.hot-article li:nth-child(6)::before{
    content: '6.';
}
.hot-article li:nth-child(7)::before{
    content: '7.';
}
.hot-article li:nth-child(8)::before{
    content: '8.';
}
.hot-article li:nth-child(9)::before{
    content: '9.';
}
.hot-article li:nth-child(10)::before{
    content: '10.';
}


.p1 {
    float: left;
    width: 100%;
}

.special-all-1{
        padding: 10px 0;
    float: left;
    width: 100%;
}
.special-all-1 li{
    width: 132px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    display: inline-block;
    background: #f9f9f9;
    border: 1px solid #eeeff2;
    margin-right: 1.8px;
    margin-bottom: 10px;
}
.special-all-1 li:hover{
    background: #ffcc00;
    color: white;
        border: 1px solid #ffcc00;

}
.special-all-1 li:hover a{
color: white;font-weight: bold;
}
.special-all-1 li:nth-child(6n+6){
    margin-right: 0;
}
.special-all-1 a{
    color: #333;
}

.page-left {
    width: 180px;
    background: #ffcc00;
    border-radius: 5px;
    float: left;
    position: relative;
    padding-bottom: 30px;
}
.page-left ul{
    width: 100%;
    margin-top: 15px;
}
.page-left li:hover,li.page-s-hover{
background: #daae00;}
.page-left li{
    text-align: center;
    line-height: 235%;
    font-size: 1.05em;
}
.page-left li a{color: white;}

.m1 {
    margin: 40px auto;
}

.page-left-title {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 110px;
}
.page-left-title::after{
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    background: url(img/icon-page.png);
    top: 30px;
    left: 60px;
}
.page-left-title span{
    display: block;
    font-size: 0.5em;
    font-weight: normal;
}

.page-right {
    width: 980px;
    height: 100%;
    float: right;
    margin-bottom: 100px;
}

.page-right h1{
    font-weight: bold;
    font-size: 1.7em;
    color: #ffcc00;
    line-height: 150%:
}
.page-right h1::before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 32px;
    background: #ffcc00;
    margin-right: 20px;
    margin-bottom: -7px;
}
.page-right h1 span{
    font-size: 0.6em;
    font-weight: normal;
}
@media screen and (max-width: 1400px) {
.product-box-info {
    font-size: 14px;
}
}
.article-content{    padding-bottom: 30px;}
.news-index-c a:hover,.news-index-c a:hover .nfs{color:#ffcc00;}
.news-list-t{color:#333;}
.news-list-t:hover{color:#ffcc00;}
