.zoomPad {
    position: relative;
    float: left;
    z-index: 99;
    cursor: crosshair;
}

.disnone {
    display: none !important;
}

.zoomPreload {
    -moz-opacity: 0.8;
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: #333;
    font-size: 12px;
    font-family: Tahoma;
    text-decoration: none;
    border: 1px solid #CCC;
    background-color: white;
    padding: 8px;
    text-align: center;
    background-image: url(../images/zoomloader.gif);
    background-repeat: no-repeat;
    background-position: 43px 30px;
    z-index: 110;
    width: 90px;
    height: 43px;
    position: absolute;
    top: 0px;
    left: 0px;
    *width: 100px;
    *height: 49px;
}


.zoomPup {
    overflow: hidden;
    background-color: #FFF;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index: 120;
    position: absolute;
    border: 1px solid #CCC;
    z-index: 101;
    cursor: crosshair;
}


.zoomOverlay {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #FFF;
    /*opacity:0.5;*/
    z-index: 5000;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 101;
}

.zoomWindow {
    position: absolute;
    left: 110%;
    top: 40px;
    background: #FFF;
    z-index: 6000;
    height: auto;
    z-index: 10000;
    z-index: 110;
}

.zoomWrapper {
    position: relative;
    border: 1px solid #EBEBEB;
    z-index: 110;
}

.zoomWrapperTitle {
    display: block;
    background: #EBEBEB;
    color: #FFF;
    height: 18px;
    line-height: 18px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 120;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.zoomWrapperImage {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 110;

}

.zoomWrapperImage img {
    border: 0px;
    display: block;
    position: absolute;
    z-index: 101;
}

.zoomIframe {
    z-index: -1;
    filter: alpha(opacity=0);
    -moz-opacity: 0.80;
    opacity: 0.80;
    position: absolute;
    display: block;
}


#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
    z-index: 99999999999999999999999999999999999999;
}

#baguetteBox-overlay.visible {
    opacity: 1;
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%;
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: Verdana, Geneva, sans-serif;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -webkit-transform .4s ease;
    -o-transition: left .4s ease, -o-transform .4s ease;
    -moz-transition: left .4s ease, transform .4s ease, -moz-transform .4s ease;
    transition: left .4s ease, transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
    -moz-animation: bounceFromRight .4s ease-out;
    animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
    -moz-animation: bounceFromLeft .4s ease-out;
    animation: bounceFromLeft .4s ease-out;
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
    top: 50%;
    top: -webkit-calc(50% - 30px);
    top: -moz-calc(50% - 30px);
    top: calc(50% - 30px);
    width: 44px;
    height: 60px;
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    -moz-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
    right: 2%;
    display: block !important;
}

.baguetteBox-button#previous-button {
    left: 2%;
    display: block !important;
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: -webkit-calc(2% + 6px);
    right: -moz-calc(2% + 6px);
    right: calc(2% + 6px);
    width: 30px;
    height: 30px;
}

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0;
}

/*# sourceMappingURL=baguetteBox.css.map */

/* CSS Document */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    color: #333;
    font-family: "OpenSans", arial;
    font-size: 14px;
    font-size: 1.4rem;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

img {
    border: none;
}

ul li {
    list-style-type: none;
}

ul, form, p, a, img, table, tr, td, li, dd, dt, dl, span {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    outline: none;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
}

h1 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

input, textarea {
    font-family: "OpenSans", arial;
    font-size: 14px;
    font-size: 1.4rem;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    border: 0px solid #ccc;
}

embed, video {
    max-width: 100%;
}

input, textarea {
    border: none;
    background: none;
    font-family: inherit;
}

input[type="submit"], textarea[type="submit"] {
    cursor: pointer;
}

input[type="checkbox"], textarea[type="checkbox"] {
    cursor: pointer;
}

input[type="radio"], textarea[type="radio"] {
    cursor: pointer;
}

input:focus, textarea:focus {
    outline: none;
}

textarea {
    resize: none;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.clear {
    clear: both;
}

.fix {
    *zoom: 1;
}

.fix:after, .fix:before {
    display: block;
    content: "clear";
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

/* html5 */
article, aside, dialog, footer, header, section, footer, nav, figure, menu {
    display: block;
}

ul, form, p, a, img, table, tr, td, ul, li, dd, dt, dl, span, div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

input, textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

/* WebKit browsers */
:-o-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
::-moz-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

/* Internet Explorer 10+ */
.self-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.self-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.self-ellipsis-3 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.self-ellipsis-4 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.common-vc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.common-hc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.common-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.nlazy {
    min-width: 20%;
}

::selection {
    color: #fff;
    background: #FFC300;
}

/**/
.email {
    word-break: break-all;
}

.scale-big img {
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    -moz-transition: all 350ms;
    transition: all 350ms;
}

.scale-big:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.scale-small img {
    -webkit-transition: all 350ms;
    -o-transition: all 350ms;
    -moz-transition: all 350ms;
    transition: all 350ms;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.scale-small:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

[class*="-item"] .item-pic {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

[class*="-item"] .item-pic img {
    display: block !important;
    width: 100%;
}

[class*="-item"] .item-pics {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
}

[class*="-item"] .item-title {
    overflow: hidden;
}

[class*="-item"] .item-title a {
    display: block;
}

[class*="-item"] .item-title a:hover {
    color: #FFC300 !important;
}

[class*="-item"] .item-subt {
    overflow: hidden;
}

[class*="-item"] .item-subt a {
    display: block;
}

[class*="-item"] .item-subt a:hover {
    color: #FFC300 !important;
}

[class*="-item"] .item-desc {
    overflow: hidden;
    color: #666;
}

[class*="-item"] .item-desc a {
    display: block;
    color: #666;
}

[class*="-item"] .item-desc a:hover {
    color: #FFC300 !important;
}

.wp {
    width: 1200px;
    margin: auto;
}

@media screen and (min-width: 1220px) {
    .wp {
        width: 1200px;
        margin: auto;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .wp {
        width: 980px;
        margin: auto;
    }
}

@media screen and (max-width: 999px) {
    .wp {
        width: 95%;
        margin: auto;
    }
}

.wp1 {
    width: 100%;
    padding: 0 4.48718% 0 3.20513%;
}

@media screen and (max-width: 1219px) {
    .wp1 {
        margin: auto;
        padding: 0 2.5%;
    }
}

.no_margin {
    margin-left: auto !important;
}

@media screen and (min-width: 1000px) {
    .no_marginr {
        margin-right: auto !important;
    }

    .no_marginl {
        margin-left: auto !important;
    }
}

.at-resp-share-element .at4-share-count-container {
    text-decoration: none;
    float: right;
    padding-right: 15px;
    line-height: 25px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.item-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.item-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

/* .an-btn1 start */
.an-btn1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background 0.4s linear, color 0.3s linear;
    -o-transition: background 0.4s linear, color 0.3s linear;
    -moz-transition: background 0.4s linear, color 0.3s linear;
    transition: background 0.4s linear, color 0.3s linear;
}

.an-btn1:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 50%;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: -1;
    content: '';
    background: #FFC300;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn1 .iconfont {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.an-btn1:hover {
    border-color: #FFC300 !important;
    background-color: #FFC300 \9;
    color: #fff !important;
}

.an-btn1:hover .iconfont {
    color: #fff !important;
}

.an-btn1:hover:before {
    height: 500%;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn1 end */
/* .an-btn2 start */
.an-btn2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background 0.4s linear, color 0.3s linear;
    -o-transition: background 0.4s linear, color 0.3s linear;
    -moz-transition: background 0.4s linear, color 0.3s linear;
    transition: background 0.4s linear, color 0.3s linear;
}

.an-btn2:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 50%;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: -1;
    content: '';
    background: #fff;
    -webkit-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.an-btn2 .iconfont {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.an-btn2:hover {
    border-color: #FFC300 !important;
    background-color: #fff \9;
    color: #FFC300 !important;
}

.an-btn2:hover .iconfont {
    color: #FFC300 !important;
}

.an-btn2:hover:before {
    height: 500%;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* .an-btn2 end */
@media screen and (min-width: 992px) {
    .an-bd1 .item-backdrop {
        position: absolute;
        left: 0px;
        top: 0px;
        bottom: 0;
        right: 0;
        -webkit-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        -moz-transition: all 900ms ease;
        transition: all 900ms ease;
        -webkit-transition: -webkit-transform 0.4s ease;
        transition: -webkit-transform 0.4s ease;
        -o-transition: -o-transform 0.4s ease;
        -moz-transition: transform 0.4s ease, -moz-transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease, -moz-transform 0.4s ease, -o-transform 0.4s ease;
        -webkit-transform: scale(0, 1);
        -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -ms-transform-origin: right center;
        -o-transform-origin: right center;
        transform-origin: right center;
    }

    .an-bd1 .item-backdrop:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        opacity: 0.7;
        filter: alpha(opacity=70);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
        background-color: #FFC300;
    }
}

@media screen and (min-width: 992px) {
    .an-bd1:hover .item-backdrop {
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -ms-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }
}

/*-------------table start-------------------------------------------------------------------*/
.table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.table table p {
    line-height: 22px !important;
}

.table table p {
    min-height: 22px !important;
}

.table table, .table table a {
    color: #000;
}

.table table tr td {
    padding: 5px 3px;
    border: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
    .table {
        width: 100%;
        overflow: scroll;
    }

    .table div {
        width: 900px;
        max-width: 900px;
    }
}

/*-------------table end---------------------------------------------------------------------*/
/*-------------proslide_menubtn start--------------------------------------------------------*/
.proslide_menubtn {
    display: none;
    width: 23px;
    height: 18px;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 9999;
}

.proslide_menubtn span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 3px;
    background-color: #FFC300;
}

@media screen and (max-width: 767px) {
    .proslide_menubtn {
        display: block;
    }
}

/*-------------proslide_menubtn end----------------------------------------------------------*/
/*-------------page-start--------------------------------------------------------------------*/
.page {
    overflow: hidden;
    font-family: "OpenSans-Bold", arial;
    font-size: 0;
    letter-spacing: 0;
}

.page .pages-btn {
    display: inline-block
}

@media only screen and (max-width: 999px) {
    .page {
        text-align: center;
    }
}

.page a {
    display: inline-block;
    vertical-align: middle;
    min-width: 47px;
    height: 43px;
    line-height: 41px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #DBDBDB;
    text-align: center;
    color: #999;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 4px 10px;
}

.page a.prev .iconfont, .page a.next .iconfont {
    font-weight: normal;
    color: #666;
}

.page a:hover, .page a.active {
    border-color: #FFC300;
    background-color: #FFC300;
    color: #fff;
}

.page a:hover .iconfont, .page a.active .iconfont {
    color: #fff;
}

@media only screen and (max-width: 1419px) {
    .page a {
        min-width: 32px;
        height: 30px;
        line-height: 28px;
        font-size: 14px;
        font-size: 1.4rem;
        margin: 0 2px 10px;
    }
}

.page .add-btn {
    margin-left: 12px;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #FFC300;
    cursor: pointer;
    border: none;
    background: none
}

.page .add-btn:hover {
    color: #333;
}


.page .add-btn2 {
    margin-left: 12px;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    background: none;
    font-weight: bold;
    color: #FFC300;
    cursor: pointer;
    border: none;
    background: none
}

.page .add-btn2:hover {
    color: #333;
}

@media only screen and (max-width: 1419px) {
    .page .add-btn, .page .add-btn2 {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/*-------------page-end--------------------------------------------------------------------*/
/*-------------contact start---------------------------------------------------------------*/
/*back-top*/
.back-top {
    position: fixed;
    right: 10px;
    bottom: -100px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    cursor: pointer;
    z-index: 998;
    border-radius: 50%;
    background-color: #FFC300;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
}

.back-top .iconfont {
    color: #fff;
    font-family: "OpenSans-Bold", arial;
    font-size: 15px;
    font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
    .back-top {
        display: none;
    }
}

/*-------------contact end-----------------------------------------------------------------*/
/*-------------pro-share start-------------------------------------------------------------*/
.pro-share {
    font-size: 0;
    letter-spacing: 0;
}

.pro-share .share-title {
    margin-right: 8px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #666;
}

.pro-share .share-pic {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    height: 26px;
}

/*-------------pro-share end---------------------------------------------------------------*/
/*-------------m-oths----------------------------------------------------------------------*/
.m-oths .oths-item {
    line-height: 26px;
    padding: 2px 0;
}

.m-oths .oths-item, .m-oths .oths-item a {
    color: #666;
}

.m-oths .oths-item .item-name {
    color: #666;
    text-transform: capitalize;
}

.m-oths .oths-item a:hover {
    color: #FFC300;
}

.m-oths .oths-item-1 {
    background: url(../images/web2.png) repeat-x bottom;
}

.m-oths .iconfont {
    font-size: 17px;
    font-size: 1.7rem;
    color: #999;
    margin-right: 6px;
    float: left;
}

.m-oths .oths-body {
    overflow: hidden;
}

/*-------------bread start-----------------------------------------------------------------*/
.bread-box .bread-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 46px 0 47px;
}

.bread-box .bread-title, .bread-box .bread-title a {
    color: #999;
}

.bread-box .bread-title a:hover, .bread-box .bread-title .active {
    color: #FFC300;
}

.bread-box .bread-title .active {
    cursor: inherit;
}

@media screen and (max-width: 1419px) {
    .bread-box .bread-title {
        padding: 30px 0;
    }
}

@media screen and (max-width: 1219px) {
    .bread-box .bread-title {
        padding: 20px 0;
    }
}

@media screen and (max-width: 767px) {
    .bread-box .bread-title {
        padding: 15px 0 10px;
    }
}

.bread-box .bread-subt {
    margin-bottom: 42px;
    font-family: "OpenSans-Bold", arial;
    font-size: 32px;
    font-size: 3.2rem;
    text-transform: uppercase;
    padding-bottom: 16px;
    position: relative;
}

.bread-box .bread-subt:before {
    position: absolute;
    content: '';
    width: 71px;
    height: 3px;
    background-color: #FFC300;
    left: 0;
    bottom: 0;
}

.bread-box .bread-subt a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1419px) {
    .bread-box .bread-subt {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media screen and (max-width: 1219px) {
    .bread-box .bread-subt {
        font-size: 28px;
        font-size: 2.8rem;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 999px) {
    .bread-box .bread-subt {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 767px) {
    .bread-box .bread-subt {
        font-size: 20px;
        font-size: 2.0rem;
        margin-bottom: 20px;
    }

    .bread-box .bread-subt:before {
        width: 51px;
        height: 2px;
    }
}

/*-------------bread end-------------------------------------------------------------------*/
.search-box {
    margin: 36px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 9;
    width: 255px;
    height: 40px;
    background-color: #3D3D3D;
    cursor: pointer;
}

@media screen and (max-width: 1219px) {
    .search-box {
        width: 92%;
        margin-top: 25px;
    }
}

@media screen and (max-width: 999px) {
    .search-box {
        display: none;
    }
}

.search-box ::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

.search-box :-o-placeholder {
    color: #666;
    opacity: 1;
}

.search-box ::-moz-placeholder {
    color: #666;
    opacity: 1;
}

.search-box :-ms-input-placeholder {
    color: #666;
    opacity: 1;
}

.search-box .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    position: absolute;
    width: 30px;
    height: 18px;
    line-height: 18px;
    right: 0;
    top: 50%;
    margin-top: -9px;
    z-index: 0;
}

.search-box .item-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 40px;
    padding: 0 35px 0 14px;
    color: #666;
}

.search-box .item-submit {
    position: absolute;
    width: 35px;
    height: 100%;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 1;
}

/*-------------header start----------------------------------------------------------------*/
body {
    padding-left: 360px;
    position: relative;
}

@media screen and (max-width: 1419px) {
    body {
        padding-left: 280px;
    }
}

@media screen and (max-width: 1219px) {
    body {
        padding-left: 210px;
    }
}

@media screen and (max-width: 999px) {
    body {
        padding-left: 0;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 360px;
    background-color: #2C2C2C;
    padding: 36px 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 1419px) {
    .header {
        width: 280px;
    }
}

@media screen and (max-width: 1219px) {
    .header {
        width: 210px;
    }
}

@media screen and (max-width: 999px) {
    .header {
        position: relative;
        width: 100%;
        padding: 30px 0 10px;
    }
}

.header .logo {
    display: block;
    width: 100%;
    /*line-height: 80px;*/
    text-align: center;
}

.header .logo a {
    display: inline-block;
    width: 360px;
}

.header .logo img {
    max-height: 80px;
    vertical-align: middle;
}

@media screen and (max-width: 999px) {
    .header .logo {
        line-height: 60px;
    }

    .header .logo img {
        max-height: 60px;
    }
}

.header .lang-box {
    position: relative;
    z-index: 99;
    text-align: center;
}

.header .lang-box .item-title {
    color: #fff;
    display: inline-block;
    background: url(../images/lang.png) no-repeat right center;
    line-height: 24px;
    padding: 3px 15px 3px 0;
    cursor: pointer;
}

.header .lang-box .box-list {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #999;
    padding: 5px;
    display: none;
}

.header .lang-box .box-list a {
    display: block;
    line-height: 24px;
    padding: 3px 0;
}

.header .lang-box .box-list a:hover {
    color: #FFC300;
}

@media screen and (max-width: 999px) {
    .header .lang-box {
        position: absolute;
        top: 0;
        right: 45px;
    }

    .header .lang-box .item-title {
        color: #999;
    }
}

.header .navlist {
    margin-top: 31px;
}

.header .navlist > li {
    display: block;
    text-align: center;
    padding: 8px 0 7px;
    position: relative;
}

.header .navlist > li > a {
    display: inline-block;
    color: #fff;
    font-family: "OpenSans-Bold", arial;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    padding: 5px 3px;
    border-bottom: solid 1px transparent;
    text-transform: uppercase;
}

.header .navlist > li:hover > a, .header .navlist > li.active > a {
    color: #FFC300;
    border-bottom-color: #FFC300;
}

@media screen and (max-width: 1219px) {
    .header .navlist {
        margin-top: 25px;
    }

    .header .navlist > li {
        padding: 3px 0;
    }

    .header .navlist > li > a {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 999px) {
    .header .navlist {
        display: none;
    }
}

.header .yiji {
    position: absolute;
    left: -9999px;
    width: 238px;
    top: 0;
    z-index: 99;
    border-top: 10px solid #2c2c2c;
    border-top: 10px solid rgba(44, 44, 44, 0.9);
    border-bottom: 10px solid #2c2c2c;
    border-bottom: 10px solid rgba(44, 44, 44, 0.9);
}

.header .yiji li {
    background-color: #2C2C2C;
    background-color: rgba(44, 44, 44, 0.9);
    text-align: left;
    position: relative;
}

.header .yiji li > a {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    padding: 8px 20px;
    color: #fff;
}

.header .yiji li > a:hover {
    color: #FFC300;
}

.header .navlist > li:hover .yiji {
    left: 100%;
}

.header .yiji > li:hover .erji {
    left: 100%;
}

.header .erji > li:hover .sanji {
    left: 100%;
}

.header .erji, .header .sanji {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 238px;
    margin-left: 1px;
    border-top: 10px solid #2c2c2c;
    border-top: 10px solid rgba(44, 44, 44, 0.9);
    border-bottom: 10px solid #2c2c2c;
    border-bottom: 10px solid rgba(44, 44, 44, 0.9);
}

.header .copyright {
    margin: 173px auto 0;
    max-width: 285px;
    padding: 0 5px;
}

.header .copyright img {
    margin-right: 5px;
}

@media screen and (max-width: 1219px) {
    .header .copyright {
        margin-top: 100px;
    }
}

@media screen and (max-width: 999px) {
    .header .copyright {
        display: none;
    }
}

@media screen and (max-width: 999px) {
    .header .f-follow {
        display: none;
    }
}

/*-------------header end------------------------------------------------------------------*/
/*-------------footer start----------------------------------------------------------------*/
.footer ::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

/* WebKit browsers */
.footer :-o-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
.footer ::-moz-placeholder {
    color: #999;
    opacity: 1;
}

/* Mozilla Firefox 19+ */
.footer :-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

/* Internet Explorer 10+ */
.footer {
    background-color: #F5F5F5;
}

.footer, .footer a {
    color: #666;
}

.footer a:hover {
    color: #FFC300;
}

.footer .f-top {
    padding: 46px 0 0;
}

.footer .f-top li {
    line-height: 30px;
}

.footer .f-top li > p {
    align-self: flex-start;
    white-space: nowrap;
}

.footer .f-top .footer-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 14px;
}

.footer .f-top .footer-title, .footer .f-top .footer-title a {
    color: #333;
}

.footer .f-top .footer-title a:hover {
    color: #FFC300;
}

.footer .f-top .flist1 {
    width: 22.70833%;
    padding-right: 15px;
}

.footer .f-top .flist2 {
    width: 29.86111%;
    padding-right: 15px;
}

.footer .f-top .flist3 {
    width: 402px;
    margin-right: 6.59722%;
}

@media screen and (max-width: 1619px) {
    .footer .f-top .flist3 {
        margin-right: 0;
    }

    .footer .f-top .flist1 {
        width: 19.44444%;
        padding-right: 15px;
    }

    .footer .f-top .flist2 {
        width: 33.33333%;
        padding-right: 15px;
    }
}

@media screen and (max-width: 1219px) {
    .footer .f-top .flist1 {
        width: 35%;
    }

    .footer .f-top .flist2 {
        width: 65%;
    }

    .footer .f-top .flist3 {
        float: left;
        width: 100%;
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer .f-top {
        display: none;
    }
}

.footer .f-keys {
    line-height: 24px;
}

@media screen and (max-width: 999px) {
    .footer .f-keys {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .footer .f-keys {
        display: none;
    }
}

.footer .links {
    line-height: 24px;
}

.footer .links a {
    display: inline-block;
    margin-right: 30px;
}

@media screen and (max-width: 767px) {
    .footer .links {
        display: none;
    }
}

.footer .f-bot {
    padding: 44px 0 20px;
}

@media screen and (max-width: 767px) {
    .footer .f-bot {
        padding: 15px 0 75px;
    }

    .footer .f-bot .copyright {
        line-height: 20px;
    }
}

.footer .f-bot .f-follow, .footer .f-bot .copyright {
    display: none;
    text-align: left;
}

@media screen and (max-width: 999px) {
    .footer .f-bot .f-follow, .footer .f-bot .copyright {
        display: block;
        text-align: center;
    }
}

.f-form {
    padding-top: 9px;
    width: 100%;
    position: relative;
    max-width: 402px;
}

.f-form .item-row {
    margin-bottom: 14px;
}

.f-form .item-input {
    width: 48.25871%;
}

.f-form input, .f-form textarea {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    color: #999;
}

.f-form input {
    height: 33px;
    line-height: 33px;
    padding: 0 10px;
}

.f-form textarea {
    display: block;
    height: 104px;
    line-height: 24px;
    padding: 3px 10px;
}

.f-form .item-codeinput {
    width: 270px;
}

.f-form .codeimg {
    float: right;
    cursor: pointer;
}

.f-form .codeimg img {
    display: block;
}

.f-form .send-btn {
    font-family: "OpenSans-Bold", arial;
    text-transform: uppercase;
    margin-top: 13px;
    width: 100%;
    height: 34px;
    background-color: #FFC300;
    color: #fff;
    cursor: pointer
}

.f-form .send-btn:hover {
    background-color: #fff;
    color: #FFC300;
}

.copyright {
    text-align: center;
    line-height: 26px;
}

.copyright, .copyright a {
    color: #666;
}

.copyright a:hover {
    color: #FFC300;
}

.f-follow {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
    margin-top: 13px;
}

.f-follow a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    color: #666;
}

.f-follow a:hover {
    color: #FFC300;
}

.f-follow a .iconfont {
    font-size: 18px;
    font-size: 1.8rem;
}

/*-------------footer end------------------------------------------------------------------*/
/*-------------index start-----------------------------------------------------------------*/
/* index-title start */
.index-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 32px;
    font-size: 3.2rem;
    text-transform: uppercase;
    padding-bottom: 16px;
    position: relative;
}

.index-title:before {
    position: absolute;
    content: '';
    width: 71px;
    height: 3px;
    background-color: #FFC300;
    left: 0;
    bottom: 0;
}

.index-title a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1219px) {
    .index-title {
        font-size: 30px;
        font-size: 3rem;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 999px) {
    .index-title {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 767px) {
    .index-title {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

/* index-title end */
/* index-about start */
.index-about {
    padding: 106px 0 104px;
}

@media screen and (max-width: 1419px) {
    .index-about {
        padding: 90px 0;
    }
}

@media screen and (max-width: 1219px) {
    .index-about {
        padding: 70px 0;
    }
}

@media screen and (max-width: 999px) {
    .index-about {
        padding: 50px 0;
    }
}

@media screen and (max-width: 767px) {
    .index-about {
        padding: 30px 0;
    }
}

.index-about .item-pic {
    float: left;
    width: 650px;
    margin-right: 4.16667%;
    overflow: hidden;
}

.index-about .item-pic img {
    display: block;
    margin: 0 auto;
    max-width: 650px;
    width: 100%;
}

@media screen and (max-width: 1619px) {
    .index-about .item-pic {
        width: 550px;
        margin-right: 2.08333%;
    }
}

@media screen and (max-width: 1419px) {
    .index-about .item-pic {
        width: 450px;
    }
}

@media screen and (max-width: 1219px) {
    .index-about .item-pic {
        width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .index-about .item-pic {
        float: none;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 650px;
    }
}

.index-about .index-title {
    display: inline-block;
    margin-top: 22px;
}

@media screen and (max-width: 1619px) {
    .index-about .index-title {
        margin-top: 0;
    }
}

@media screen and (max-width: 1419px) {
    .index-about .index-title {
        margin-top: -7px;
    }
}

.index-about .item-desc {
    margin-top: 32px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    max-height: 210px;
    overflow: hidden;
}

.index-about .item-desc, .index-about .item-desc a {
    color: #666;
}

.index-about .item-desc a {
    display: block;
}

.index-about .item-desc a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1619px) {
    .index-about .item-desc {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1419px) {
    .index-about .item-desc {
        margin-top: 15px;
        line-height: 24px;
        max-height: 168px;
    }
}

.index-about .box-list {
    font-size: 0;
    letter-spacing: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 36px;
}

.index-about .box-list:before {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E3E3E3;
    top: 22px;
}

.index-about .box-list p {
    display: inline-block;
    vertical-align: top;
    background: url(../images/web1.png) no-repeat left top;
    padding-top: 53px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    text-transform: uppercase;
    width: 27.39726%;
    margin-left: 8.90411%;
    position: relative;
}

.index-about .box-list p, .index-about .box-list p a {
    color: #666;
}

.index-about .box-list p a {
    display: block;
}

.index-about .box-list p a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1619px) {
    .index-about .box-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1419px) {
    .index-about .box-list p {
        background-size: 35px;
        padding-top: 38px;
        line-height: 24px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/* index-about end */
/* .index-probox start */
.index-probox {
    margin-bottom: 121px;
}

@media screen and (max-width: 1419px) {
    .index-probox {
        margin-bottom: 90px;
    }
}

@media screen and (max-width: 1219px) {
    .index-probox {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-probox {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .index-probox {
        margin-bottom: 30px;
    }
}

.index-probox .box-main {
    float: right;
    width: 77.5%;
}

@media screen and (max-width: 1619px) {
    .index-probox .box-main {
        width: 74.02778%;
    }
}

@media screen and (max-width: 1219px) {
    .index-probox .box-main {
        width: 71.25%;
    }
}

@media screen and (max-width: 999px) {
    .index-probox .box-main {
        width: 100%;
    }
}

.index-probox .box-slide {
    float: left;
    width: 19.44444%;
    margin-top: 41px;
}

@media screen and (max-width: 1619px) {
    .index-probox .box-slide {
        width: 22.91667%;
    }
}

@media screen and (max-width: 1219px) {
    .index-probox .box-slide {
        width: 25.69444%;
    }
}

@media screen and (max-width: 999px) {
    .index-probox .box-slide {
        width: 100%;
        margin-top: 20px;
    }
}

.index-probox .proslide {
    margin-bottom: 0;
}

.index-probox .box-list {
    font-size: 0;
    letter-spacing: 0;
    padding-top: 40px;
}

@media screen and (max-width: 767px) {
    .index-probox .box-list {
        padding-top: 30px;
    }
}

.index-probox .box-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 22.40143%;
    margin-left: 3.46476%;
    margin-bottom: 40px;
}

@media screen and (max-width: 1419px) {
    .index-probox .box-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px !important;
    }
}

@media screen and (max-width: 999px) {
    .index-probox .box-list .list-item {
        width: 23%;
    }
}

@media screen and (max-width: 767px) {
    .index-probox .box-list .list-item {
        width: 31.33%;
    }
}

@media screen and (max-width: 550px) {
    .index-probox .box-list .list-item {
        width: 48%;
        margin-bottom: 20px !important;
    }
}

.index-probox .box-list .item-pic img {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.index-probox .box-list .item-title {
    margin-top: 1px;
    background-color: #F7F7F7;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 39px;
    padding: 0 5px;
    text-align: center;
}

/* .index-probox end */
/* index-num start */
.index-num {
    background: url(../images/bg1.jpg) no-repeat center;
    background-size: cover;
    padding: 47px 0 55px;
    margin-bottom: 121px;
}

@media screen and (max-width: 1419px) {
    .index-num {
        margin-bottom: 90px;
    }
}

@media screen and (max-width: 1219px) {
    .index-num {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-num {
        margin-bottom: 50px;
        padding: 45px 0;
    }
}

@media screen and (max-width: 767px) {
    .index-num {
        margin-bottom: 30px;
        padding: 30px 0;
    }
}

.index-num .box-list {
    text-align: center;
    font-size: 0;
    letter-spacing: 0;
    padding: 0 4%;
}

@media screen and (max-width: 1419px) {
    .index-num .box-list {
        padding: 0;
    }
}

.index-num .box-list .list-item {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    margin: 0 1% 15px;
}

@media screen and (max-width: 600px) {
    .index-num .box-list .list-item {
        width: 48%;
    }
}

.index-num .box-list .item-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 72px;
    font-size: 7.2rem;
}

.index-num .box-list .item-title, .index-num .box-list .item-title a {
    color: #fff;
}

@media screen and (max-width: 1219px) {
    .index-num .box-list .item-title {
        font-size: 60px;
        font-size: 6rem;
    }
}

@media screen and (max-width: 999px) {
    .index-num .box-list .item-title {
        font-size: 50px;
        font-size: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .index-num .box-list .item-title {
        font-size: 40px;
        font-size: 4rem;
    }
}

@media screen and (max-width: 640px) {
    .index-num .box-list .item-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

.index-num .box-list .item-subt {
    margin-top: 31px;
    font-size: 18px;
    font-size: 1.8rem;
}

.index-num .box-list .item-subt, .index-num .box-list .item-subt a {
    color: #fff;
}

@media screen and (max-width: 1219px) {
    .index-num .box-list .item-subt {
        margin-top: 10px;
    }
}

@media screen and (max-width: 999px) {
    .index-num .box-list .item-subt {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .index-num .box-list .item-subt {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/* index-num end */
/* index-appbox start */
.index-appbox {
    margin-bottom: 88px;
}

@media screen and (max-width: 1219px) {
    .index-appbox {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-appbox {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .index-appbox {
        margin-bottom: 30px;
    }
}

.index-appbox .box-list {
    font-size: 0;
    letter-spacing: 0;
    padding-top: 35px;
}

@media screen and (max-width: 767px) {
    .index-appbox .box-list {
        padding-top: 30px;
    }
}

.index-appbox .box-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 23.88889%;
    margin-left: 1.48148%;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .index-appbox .box-list .list-item {
        width: 48%;
        margin: 0 1% 10px !important;
    }
}

.index-appbox .box-list .item1 {
    width: 49.25926%;
    position: relative;
}

.index-appbox .box-list .item1 .item-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 36px;
    height: 144px;
    font-family: "OpenSans-Bold", arial;
    position: absolute;
    left: 10.57331%;
    right: 8.45865%;
    top: 50%;
    margin-top: -66px;
}

.index-appbox .box-list .item1 .item-title, .index-appbox .box-list .item1 .item-title a {
    color: #999;
}

.index-appbox .box-list .item1:before {
    position: absolute;
    content: '';
    width: 23px;
    height: 17px;
    background: url(../images/web5.png) no-repeat center;
    left: 5.49812%;
    top: 29px;
}

.index-appbox .box-list .item1:after {
    position: absolute;
    content: '';
    width: 23px;
    height: 17px;
    background: url(../images/web6.png) no-repeat center;
    right: 4.65226%;
    bottom: 27px;
}

@media screen and (max-width: 1619px) {
    .index-appbox .box-list .item1 .item-title {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 30px;
        height: 120px;
        margin-top: -60px;
    }

    .index-appbox .box-list .item1:before {
        left: 2.81955%;
        top: 12px;
    }

    .index-appbox .box-list .item1:after {
        right: 2.81955%;
        bottom: 12px;
    }
}

@media screen and (max-width: 1419px) {
    .index-appbox .box-list .item1 .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 24px;
        height: 96px;
        margin-top: -48px;
    }
}

@media screen and (max-width: 1219px) {
    .index-appbox .box-list .item1:before, .index-appbox .box-list .item1:after {
        background-size: 15px;
    }

    .index-appbox .box-list .item1:before {
        left: 0;
        top: 0;
    }

    .index-appbox .box-list .item1:after {
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 999px) {
    .index-appbox .box-list .item1 .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 20px;
        height: 80px;
        margin-top: -40px;
    }
}

@media screen and (max-width: 600px) {
    .index-appbox .box-list .item1 {
        width: 98%;
    }
}

.index-appbox .box-list .item2 {
    position: relative;
}

.index-appbox .box-list .item2 .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 36px;
    height: 108px;
    font-family: "OpenSans-Bold", arial;
    position: absolute;
    left: 8.13953%;
    right: 8.13953%;
    top: 50%;
    margin-top: -58px;
}

.index-appbox .box-list .item2 .item-title, .index-appbox .box-list .item2 .item-title a {
    color: #fff;
}

.index-appbox .box-list .item2 .item-title a:hover {
    color: #333 !important;
}

.index-appbox .box-list .item2:before {
    position: absolute;
    content: '';
    width: 23px;
    height: 17px;
    background: url(../images/web7.png) no-repeat center;
    left: 6.39535%;
    top: 21px;
}

.index-appbox .box-list .item2:after {
    position: absolute;
    content: '';
    width: 23px;
    height: 17px;
    background: url(../images/web8.png) no-repeat center;
    right: 5.23256%;
    bottom: 20px;
}

@media screen and (max-width: 1619px) {
    .index-appbox .box-list .item2 .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 30px;
        height: 90px;
        margin-top: -45px;
    }

    .index-appbox .box-list .item2:before {
        left: 2.90698%;
        top: 10px;
    }

    .index-appbox .box-list .item2:after {
        right: 2.90698%;
        bottom: 10px;
    }
}

@media screen and (max-width: 1419px) {
    .index-appbox .box-list .item2 .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
        height: 72px;
        margin-top: -36px;
    }
}

@media screen and (max-width: 1219px) {
    .index-appbox .box-list .item2:before, .index-appbox .box-list .item2:after {
        background-size: 15px;
    }

    .index-appbox .box-list .item2:before {
        left: 0;
        top: 0;
    }

    .index-appbox .box-list .item2:after {
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 999px) {
    .index-appbox .box-list .item2 .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 20px;
        height: 60px;
        margin-top: -30px;
    }
}

.index-appbox .box-list .item-pic img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.index-appbox .box-list .item-bg {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* index-appbox end */
/* .index-news start */
.index-news {
    margin-bottom: 105px;
}

@media screen and (max-width: 1419px) {
    .index-news {
        margin-bottom: 90px;
    }
}

@media screen and (max-width: 1219px) {
    .index-news {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-news {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .index-news {
        margin-bottom: 30px;
    }
}

.index-news .box-list {
    font-size: 0;
    letter-spacing: 0;
}

.index-news .box-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 29.86111%;
    margin-left: 5.20833%;
    margin-top: 46px;
}

@media screen and (max-width: 1219px) {
    .index-news .box-list .list-item {
        width: 32%;
        margin-left: 2%;
    }
}

@media screen and (max-width: 999px) {
    .index-news .box-list .list-item {
        width: 31.33%;
        margin: 30px 1% 0;
    }
}

@media screen and (max-width: 600px) {
    .index-news .box-list .list-item {
        width: 48%;
    }
}

.index-news .box-list .item-pic img {
    display: block;
    margin: 0 auto;
    max-width: 430px;
    width: 100%;
}

.index-news .box-list .item-date {
    margin-top: 17px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
}

.index-news .box-list .item-date, .index-news .box-list .item-date a {
    color: #999;
}

@media screen and (max-width: 1219px) {
    .index-news .box-list .item-date {
        margin-top: 15px;
    }
}

@media screen and (max-width: 640px) {
    .index-news .box-list .item-date {
        margin-top: 10px;
    }
}

.index-news .box-list .item-title {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Bold", arial;
    line-height: 24px;
}

@media screen and (max-width: 1419px) {
    .index-news .box-list .item-title {
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {
    .index-news .box-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 640px) {
    .index-news .box-list .item-title {
        margin-top: 0;
    }
}

.index-news .box-list .item-desc {
    margin-top: 11px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    height: 60px;
}

@media screen and (max-width: 1419px) {
    .index-news .box-list .item-desc {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1219px) {
    .index-news .box-list .item-desc {
        line-height: 24px;
        height: 48px;
    }
}

@media screen and (max-width: 640px) {
    .index-news .box-list .item-desc {
        line-height: 20px;
        height: 40px;
    }
}

/* .index-news end */
.index-video {
    margin-bottom: 95px; /* .item-videobox start */ /* .item-videobox end */
}

@media screen and (max-width: 1219px) {
    .index-video {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 999px) {
    .index-video {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .index-video {
        margin-bottom: 30px;
    }
}

.index-video .item-videobox {
    width: 650px;
    margin-left: 4.16667%;
    float: right;
}

.index-video .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 74.92308%;
    height: 0;
}

.index-video .item-videobox .item-video iframe, .index-video .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.index-video .item-videobox .item-video iframe body {
    margin: 0px !important;
}

@media screen and (max-width: 1619px) {
    .index-video .item-videobox {
        width: 550px;
        margin-left: 2.08333%;
    }
}

@media screen and (max-width: 1419px) {
    .index-video .item-videobox {
        width: 450px;
    }
}

@media screen and (max-width: 1219px) {
    .index-video .item-videobox {
        width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .index-video .item-videobox {
        float: none;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 650px;
    }
}

.index-video .index-title {
    display: inline-block;
    margin-top: 22px;
}

@media screen and (max-width: 1619px) {
    .index-video .index-title {
        margin-top: 0;
    }
}

@media screen and (max-width: 1419px) {
    .index-video .index-title {
        margin-top: -7px;
    }
}

.index-video .item-desc {
    margin-top: 32px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.index-video .item-desc, .index-video .item-desc a {
    color: #666;
}

.index-video .item-desc a {
    display: block;
}

.index-video .item-desc a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1619px) {
    .index-video .item-desc {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1419px) {
    .index-video .item-desc {
        margin-top: 15px;
        line-height: 24px;
    }
}

.index-cer {
    margin-bottom: 58px;
}

@media screen and (max-width: 1219px) {
    .index-cer {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 999px) {
    .index-cer {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .index-cer {
        margin-bottom: 10px;
    }
}

.index-cer .index-title {
    margin-bottom: 40px;
}

@media screen and (max-width: 999px) {
    .index-cer .index-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .index-title {
        margin-bottom: 20px;
    }
}

.index-cer .box-list {
    font-size: 0;
    letter-spacing: 0;
}

.index-cer .box-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 17.36111%;
    margin-left: 3.29861%;
    margin-bottom: 40px;
}

@media screen and (max-width: 1619px) {
    .index-cer .box-list .list-item {
        width: 18.4%;
        margin-left: 2%;
    }
}

@media screen and (max-width: 1219px) {
    .index-cer .box-list .list-item {
        width: 23.5%;
    }
}

@media screen and (max-width: 999px) {
    .index-cer .box-list .list-item {
        width: 23%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .box-list .list-item {
        width: 31.33%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .index-cer .box-list .list-item {
        width: 48%;
    }
}

.index-cer .box-list .item-pics {
    position: relative;
    padding-bottom: 100%;
    background-color: #E1E1E1;
    border: solid 1px #F1F1F1;
}

.index-cer .box-list .item-pics img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.index-cer .box-list .item-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.index-cer .box-list .item-backdrop .iconfont {
    font-size: 36px;
    font-size: 3.6rem;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 999px) {
    .index-cer .box-list .item-backdrop {
        display: none;
    }
}

.index-cer .box-list .item-title {
    background: #F7F7F7;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 20px;
    padding: 10px 5px;
}

@media screen and (max-width: 999px) {
    .index-cer .box-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 767px) {
    .index-cer .box-list .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        padding: 5px;
    }
}

.index-faq {
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1219px) {
    .index-faq {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 999px) {
    .index-faq {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-faq {
        margin-bottom: 20px;
    }
}

.index-faq .index-title {
    margin-bottom: 34px;
}

@media screen and (max-width: 999px) {
    .index-faq .index-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-faq .index-title {
        margin-bottom: 20px;
    }
}

.index-faq .box-list {
    font-size: 0;
    letter-spacing: 0;
}

.index-faq .box-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 31.11111%;
    margin-left: 3.33333%;
    margin-bottom: 20px;
    position: relative;
}

@media screen and (max-width: 1219px) {
    .index-faq .box-list .list-item {
        width: 48%;
        margin: 0 1% 15px !important;
    }
}

@media screen and (max-width: 767px) {
    .index-faq .box-list .list-item {
        width: 100%;
        margin: 0 0 10px !important;
    }
}

.index-faq .box-list .item-title {
    background-color: #F2F2F2;
    white-space: pre-wrap;
    line-height: 2;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Bold", arial;
    padding: 27px 40px 27px 39px;
    cursor: pointer;
    position: relative;
}

.index-faq .box-list .item-title:before {
    color: #999;
    position: absolute;
    content: '\e725';
    font-family: "iconfont" !important;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    display: block;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 50%;
    margin-top: -10px;
    right: 12px;
}

@media screen and (max-width: 999px) {
    .index-faq .box-list .item-title:before {
        margin-top: -7px;
        right: 10px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.index-faq .box-list .item-title.active {
    background-color: #FFC300;
    color: #fff;
}

.index-faq .box-list .item-title.active:before {
    content: '\e723';
    color: #fff;
}

@media screen and (max-width: 1619px) {
    .index-faq .box-list .item-title {
        line-height: 1.3;
        padding: 12px 40px 12px 15px;
    }
}

@media screen and (max-width: 1419px) {
    .index-faq .box-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 24px;
        padding: 12px 40px 12px 15px;
    }
}

@media screen and (max-width: 999px) {
    .index-faq .box-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        padding: 8px 30px 8px 15px;
    }
}

@media screen and (max-width: 767px) {
    .index-faq .box-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 5px 30px 5px 10px;
    }
}

.index-faq .box-list .item-desc {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
    display: none;
    background-color: #F2F2F2;
    padding: 18px 35px 35px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.index-faq .box-list .item-desc p {
    white-space: pre-wrap;
}

.index-faq .box-list .item-desc img, .index-faq .box-list .item-desc iframe {
    max-width: 100%;
}

.index-faq .box-list .item-desc, .index-faq .box-list .item-desc a {
    color: #333;
}

@media screen and (max-width: 1619px) {
    .index-faq .box-list .item-desc {
        padding: 18px;
        line-height: 24px;
    }

    .index-faq .box-list .item-desc p {
        min-height: 24px;
    }
}

@media screen and (max-width: 1419px) {
    .index-faq .box-list .item-desc {
        line-height: 20px;
    }

    .index-faq .box-list .item-desc p {
        min-height: 20px;
    }
}

@media screen and (max-width: 1219px) {
    .index-faq .box-list .item-desc {
        padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    .index-faq .box-list .item-desc {
        position: relative;
        padding: 10px;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 16px;
    }

    .index-faq .box-list .item-desc p {
        min-height: 16px;
    }
}

.index-download .index-title {
    margin-bottom: 34px;
}

@media screen and (max-width: 999px) {
    .index-download .index-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index-download .index-title {
        margin-bottom: 20px;
    }
}

/*-------------index end-------------------------------------------------------------------*/
.page_wrap {
    padding: 0 0 140px;
}

@media screen and (max-width: 1619px) {
    .page_wrap {
        padding: 0 0 110px;
    }
}

@media screen and (max-width: 1419px) {
    .page_wrap {
        padding: 0 0 90px;
    }
}

@media screen and (max-width: 1219px) {
    .page_wrap {
        padding: 0 0 70px;
    }
}

@media screen and (max-width: 999px) {
    .page_wrap {
        padding: 0 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .page_wrap {
        padding: 0 0 30px;
    }
}

/*-------------2-1-products start----------------------------------------------------------*/
.main .box-main {
    float: left;
    width: 77.5%;
}

@media screen and (max-width: 1619px) {
    .main .box-main {
        width: 74.02778%;
    }
}

@media screen and (max-width: 1219px) {
    .main .box-main {
        width: 71.25%;
    }
}

@media screen and (max-width: 999px) {
    .main .box-main {
        width: 100%;
    }
}

.main .box-slide {
    float: right;
    width: 19.44444%;
}

@media screen and (max-width: 1619px) {
    .main .box-slide {
        width: 22.91667%;
    }
}

@media screen and (max-width: 1219px) {
    .main .box-slide {
        width: 25.69444%;
    }
}

@media screen and (max-width: 999px) {
    .main .box-slide {
        width: 100%;
        margin-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .main .box-slide {
        margin-top: 30px;
    }
}

/* pro1-top start */
.pro1-top {
    margin-bottom: 33px;
}

.pro1-top .item-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    margin-top: -4px;
}

.pro1-top .item-desc {
    margin-top: 13px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    color: #666;
}

@media screen and (max-width: 1419px) {
    .pro1-top .item-title {
        margin-top: 0;
    }

    .pro1-top .item-desc {
        line-height: 27px;
    }
}

@media screen and (max-width: 999px) {
    .pro1-top {
        margin-bottom: 25px;
    }

    .pro1-top .item-desc {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pro1-top .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

/* pro1-top end */
.pro1-list {
    font-size: 0;
    letter-spacing: 0;
    padding: 0 0 19px;
}

@media screen and (max-width: 767px) {
    .pro1-list {
        padding: 0 0 10px;
    }
}

.pro1-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 31.36201%;
    margin-left: 2.95699%;
    margin-bottom: 48px;
    background-color: #F7F7F7;
}

.pro1-list .list-item:hover {
    background-color: #FFC300;
}

.pro1-list .list-item:hover .item-backdrop {
    top: 0;
}

.pro1-list .list-item:hover .item-btn {
    background-color: #fff;
    color: #333;
}

@media screen and (max-width: 1219px) {
    .pro1-list .list-item {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 999px) {
    .pro1-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 640px) {
    .pro1-list .list-item {
        width: 48%;
    }
}

@media screen and (max-width: 380px) {
    .pro1-list .list-item {
        width: 98%;
        margin-bottom: 20px;
    }
}

.pro1-list .item-pic {
    position: relative;
}

.pro1-list .item-pic img {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}

.pro1-list .item-backdrop {
    position: absolute;
    top: 999px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFC300;
    background: rgba(255, 195, 0, 0.3) r;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.pro1-list .item-backdrop .item-desc {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    height: 180px;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -85px;
    padding: 0 8.57143%;
}

.pro1-list .item-backdrop .item-desc, .pro1-list .item-backdrop .item-desc a {
    color: #333;
}

.pro1-list .item-backdrop .item-desc a:hover {
    color: #fff !important;
}

@media screen and (max-width: 1419px) {
    .pro1-list .item-backdrop .item-desc {
        line-height: 24px;
        height: 144px;
        margin-top: -72px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 1219px) {
    .pro1-list .item-backdrop .item-desc {
        line-height: 20px;
        height: 120px;
        margin-top: -60px;
    }
}

@media screen and (max-width: 999px) {
    .pro1-list .item-backdrop {
        display: none;
    }
}

.pro1-list .item-body {
    padding: 13px 10px 18px;
    border-top: solid 1px #fff;
    text-align: center;
}

.pro1-list .item-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
}

.pro1-list .item-title a:hover {
    color: #fff !important;
}

.pro1-list .item-desc {
    display: none;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    height: 60px;
    margin-top: 5px;
}

.pro1-list .item-desc, .pro1-list .item-desc a {
    color: #333;
}

.pro1-list .item-desc a:hover {
    color: #fff !important;
}

@media screen and (max-width: 999px) {
    .pro1-list .item-desc {
        display: block;
    }
}

.pro1-list .item-btnbox {
    margin-top: 17px;
    text-align: center;
    font-size: 0;
    letter-spacing: 0;
}

.pro1-list .item-btnbox input {
    margin-right: 11px;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .pro1-list .item-btnbox input {
        margin-right: 7px;
    }
}

.pro1-list .item-btn {
    display: inline-block;
    vertical-align: middle;
    min-width: 120px;
    line-height: 28px;
    border: solid 1px #FFC300;
    color: #FFC300;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
}

.pro1-list .item-btn:hover {
    background-color: #fff;
    color: #333;
}

@media screen and (max-width: 767px) {
    .pro1-list .item-btn {
        min-width: 100px;
    }
}

.slide-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 22px;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.slide-title a:hover {
    color: #FFC300;
}

@media screen and (max-width: 767px) {
    .slide-title {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

/* proslide start */
.proslide {
    background-color: #F7F7F7;
    margin-bottom: 54px;
}

@media screen and (max-width: 1219px) {
    .proslide {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 999px) {
    .proslide {
        margin-bottom: 20px;
    }
}

.proslide .box-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
    border-bottom: solid 1px #E7E7E7;
    margin-bottom: 3px;
    text-transform: uppercase;
    position: relative;
}

.proslide .box-title.box-title2 {
    display: none;
}

.proslide .box-title a, .proslide .box-title p {
    display: block;
    line-height: 24px;
    padding: 24px 0 18px;
}

.proslide .box-title a:hover {
    color: #FFC300;
}

@media screen and (max-width: 1419px) {
    .proslide .box-title {
        font-size: 20px;
        font-size: 2.0rem;
    }

    .proslide .box-title a, .proslide .box-title p {
        padding-top: 15px;
        padding-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .proslide .box-title a, .proslide .box-title p {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .proslide .box-title.box-title1 {
        display: none;
    }

    .proslide .box-title.box-title2 {
        display: block;
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .proslide .yiji-list {
        display: none;
    }
}

.proslide .yiji-list > li > a, .proslide .yiji-list > li > p {
    display: block;
    line-height: 20px;
    border-bottom: solid 1px #E7E7E7;
    padding: 17px 10px 17px 27px;
    position: relative;
    background-position: 5px 20px !important;
    cursor: pointer;
}

@media screen and (max-width: 1419px) {
    .proslide .yiji-list > li > a, .proslide .yiji-list > li > p {
        padding-top: 12px;
        padding-bottom: 12px;
        background-position: 4px 14px !important;
    }
}

.proslide .yiji-list > li:hover > a, .proslide .yiji-list > li:hover > p, .proslide .yiji-list > li.active > a, .proslide .yiji-list > li.active > p {
    background: url(../images/slide.png) no-repeat;
    color: #FFC300;
}

.proslide .erji-list {
    padding: 7px 0 11px;
    border-bottom: solid 1px #E7E7E7;
    display: none
}

.proslide .erji-list > li > label {
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    padding: 5px 10px;
    color: #666;
}

.proslide .erji-list > li > label input {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

@media screen and (max-width: 1219px) {
    .proslide .erji-list > li > label {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.proslide .erji-list > li > a {
    display: block;
    line-height: 20px;
    padding: 10px 28px 10px 39px;
    color: #666;
    position: relative;
}

.proslide .erji-list > li > a:before {
    display: none;
    position: absolute;
    content: '\e723';
    font-family: "iconfont" !important;
    font-size: 12px;
    font-size: 1.2rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 7px;
    top: 10px;
    color: #FFC300;
}

@media screen and (max-width: 1419px) {
    .proslide .erji-list > li > a {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 35px;
    }

    .proslide .erji-list > li > a:before {
        top: 5px;
    }
}

.proslide .erji-list > li:hover > a, .proslide .erji-list > li.active > a {
    color: #FFC300;
}

.proslide .erji-list > li:hover > a:before, .proslide .erji-list > li.active > a:before {
    display: block;
}

.proslide .sanji-list > li > a {
    display: block;
    line-height: 20px;
    padding: 10px 28px 10px 65px;
    color: #666;
}

@media screen and (max-width: 1419px) {
    .proslide .sanji-list > li > a {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 55px;
    }
}

.proslide .sanji-list > li:hover > a, .proslide .sanji-list > li.active > a {
    color: #FFC300;
}

/* proslide end */
.attr-slide {
    margin-bottom: 45px;
}

@media screen and (max-width: 1219px) {
    .attr-slide {
        margin-bottom: 20px;
    }
}

/* news-slide start */
.news-slide {
    margin-bottom: 59px;
}

@media screen and (max-width: 1219px) {
    .news-slide {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 999px) {
    .news-slide {
        margin-bottom: 20px;
    }
}

.news-slide .box-list {
    margin-top: -2px;
    font-size: 0;
    letter-spacing: 0;
}

@media screen and (max-width: 999px) {
    .news-slide .box-list {
        margin-top: 0;
    }
}

.news-slide .box-list .list-item {
    padding: 26px 0 27px;
    border-bottom: solid 1px #DBDBDB;
}

@media screen and (max-width: 1219px) {
    .news-slide .box-list .list-item {
        padding: 20px 0;
    }
}

@media screen and (max-width: 999px) {
    .news-slide .box-list .list-item {
        display: inline-block;
        vertical-align: top;
        width: 31.33%;
        margin: 0 1%;
    }
}

@media screen and (max-width: 480px) {
    .news-slide .box-list .list-item {
        width: 100%;
        margin: 0;
    }
}

.news-slide .box-list .item-pic {
    float: left;
    width: 100px;
    margin-right: 6.07143%;
}

.news-slide .box-list .item-pic img {
    display: block;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1419px) {
    .news-slide .box-list .item-pic {
        width: 80px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 999px) {
    .news-slide .box-list .item-pic {
        width: 100%;
        float: none;
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .news-slide .box-list .item-pic {
        float: left;
        width: 120px;
        margin: 0 10px 0 0;
    }
}

.news-slide .box-list .item-desc {
    margin-top: -7px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    height: 90px;
}

@media screen and (max-width: 1419px) {
    .news-slide .box-list .item-desc {
        line-height: 22px;
        height: 66px;
    }
}

@media screen and (max-width: 480px) {
    .news-slide .box-list .item-desc {
        margin-top: 12px;
    }
}

/* news-slide end */
/* tags-slide start */
.tags-slide .item-desc {
    margin-top: 13px;
}

.tags-slide .item-desc, .tags-slide .item-desc a {
    color: #666;
}

.tags-slide .item-desc a {
    display: inline-block;
    margin: 0 8px 8px 0;
    border: solid 1px #DBDBDB;
    line-height: 20px;
    padding: 4px 11px;
    font-size: 14px;
    font-size: 1.4rem;
}

.tags-slide .item-desc a:hover {
    border-color: #FFC300;
    color: #FFC300;
}

/* tags-slide end*/
/*-------------2-1-products end------------------------------------------------------------*/
/*-------------2-2-products start----------------------------------------------------------*/
.pro2-box { /* .pro2-info start */
}

.pro2-box .m-propic {
    margin: 0 auto 0;
    width: 742px;
}

.pro2-box .m-propic .provideo-box {
    border: 1px solid #E2E2E2;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.pro2-box .m-propic .provideo-box .provideo {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    height: 0;
}

.pro2-box .m-propic .provideo-box .provideo iframe, .pro2-box .m-propic .provideo-box .provideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.pro2-box .m-propic .provideo-box .provideo iframe body {
    margin: 0px !important;
}

.pro2-box .m-propic .pic-big {
    position: relative;
    float: right;
    width: 600px;
}

.pro2-box .m-propic .big-img {
    display: block;
    line-height: 0;
    font-size: 0;
    border-radius: 0;
    border: 1px solid #E2E2E2;
}

.pro2-box .m-propic .big-img .zoomPad {
    float: none;
    z-index: 8;
}

.pro2-box .m-propic .big-img .zoomPad img {
    border-radius: 0;
}

.pro2-box .m-propic .zoomWrapperImage img {
    max-width: 1200px;
}

.pro2-box .m-propic .pic-small {
    position: relative;
    float: left;
    width: 130px;
    padding: 24px 0;
    overflow: hidden;
}

.pro2-box .m-propic .pic-btn {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.pro2-box .m-propic .pic-btn .iconfont {
    font-size: 25px;
    font-size: 2.5rem;
    color: #2D3D48;
}

.pro2-box .m-propic .pic-btn .iconfont:hover {
    color: #FFC300;
}

.pro2-box .m-propic .pic-btn.prev {
    top: -4px;
}

.pro2-box .m-propic .pic-btn.next {
    bottom: -4px;
}

.pro2-box .m-propic .pic-list {
    height: 553px;
    overflow: hidden;
}

.pro2-box .m-propic .pic-list ul {
    height: 2000px;
}

.pro2-box .m-propic .pic-list .list-item {
    margin-bottom: 11px;
    overflow: visible;
    position: relative;
    padding-bottom: 100%;
}

.pro2-box .m-propic .pic-list .item-pics, .pro2-box .m-propic .pic-list .item-video {
    display: block;
    border-radius: 0;
    border: 1px solid #E2E2E2;
    position: relative;
    overflow: visible;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.pro2-box .m-propic .pic-list .item-pics img, .pro2-box .m-propic .pic-list .item-video img {
    display: block;
    max-width: 100% !important;
    max-height: 100% !important;
}

.pro2-box .m-propic .item-pics:hover, .pro2-box .m-propic .item-pics.active, .pro2-box .m-propic .item-video:hover, .pro2-box .m-propic .item-video.active {
    border-color: #FFC300;
}

@media screen and (max-width: 1419px) {
    .pro2-box .m-propic {
        width: 530px;
    }

    .pro2-box .m-propic .pic-big {
        width: 430px;
    }

    .pro2-box .m-propic .pic-small {
        width: 80px;
        padding: 38px 0;
    }

    .pro2-box .m-propic .pic-list {
        height: 353px;
    }

    .pro2-box .m-propic .pic-btn.prev {
        top: 0;
    }

    .pro2-box .m-propic .pic-btn.next {
        bottom: 0;
    }
}

.pro2-box .m-propic2 {
    display: none;
}

.pro2-box .zoomPad {
    cursor: default !important;
}

.pro2-box .zoomPup {
    display: none !important;
}

.pro2-box .zoomWindow {
    display: none !important;
}

.pro2-box .zoomPreload {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .pro2-box .m-propic1 {
        display: none;
    }

    .pro2-box .m-propic2 {
        position: relative;
        display: block;
        overflow: hidden;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .pro2-box .m-propic2 .box-btn {
        position: absolute;
        top: 50%;
        margin-top: -12px;
        display: block;
        width: 24px;
        height: 24px;
    }

    .pro2-box .m-propic2 .box-btn .iconfont {
        font-size: 24px;
        font-size: 2.4rem;
        color: #2D3D48;
    }

    .pro2-box .m-propic2 .box-btn .iconfont:hover {
        color: #FFC300;
    }

    .pro2-box .m-propic2 .box-btn.prev {
        left: 0;
    }

    .pro2-box .m-propic2 .box-btn.next {
        right: 0;
    }

    .pro2-box .m-propic2 .box-list {
        overflow: hidden;
    }

    .pro2-box .m-propic2 .box-list ul {
        width: 1000%;
    }

    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 3.13%;
        border-radius: 0;
        border: 1px solid #EBEBEB;
        overflow: hidden;
    }

    .pro2-box .m-propic2 .list-item img {
        display: block;
    }

    .pro2-box .m-propic2 .list-item .item-pic {
        position: relative;
        display: block;
        text-align: center;
        overflow: hidden;


        height: 0px;
        padding-bottom: 100%;
    }


    .pro2-box .m-propic2 .list-item img {
        display: block;
    }

    .pro2-box .m-propic2 .list-item .video-play {
        max-width: 80%;

        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }


}

@media only screen and (max-width: 640px) {
    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 4.8%;
    }
}

@media only screen and (max-width: 480px) {
    .pro2-box .m-propic2 .list-item {
        float: left;
        margin-left: .1%;
        margin-right: .1%;
        margin-bottom: 0;
        width: 9.8%;
    }
}

.pro2-box .pro2-info {
    margin: 0 auto;
    position: relative;
}

.pro2-box .pro2-info .item-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 24px;
    font-size: 2.4rem;
    padding: 28px 0 49px 0;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 1419px) {
    .pro2-box .pro2-info .item-title {
        padding: 25px 0;
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .pro2-box .pro2-info .item-title {
        padding: 20px 0;
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.pro2-box .pro2-info .pro-share {
    margin-left: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 15px;
}

.pro2-box .pro2-info .pro-share .share-title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #666;
}

@media screen and (max-width: 1619px) {
    .pro2-box .pro2-info .pro-share {
        margin-left: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pro2-box .pro2-info .pro-share {
        display: block;
        text-align: center;
    }

    .pro2-box .pro2-info .pro-share .share-title {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.pro2-box .pro2-info .item-btns {
    text-align: center;
    font-size: 0;
    letter-spacing: 0;
}

.pro2-box .pro2-info .item-btn {
    display: inline-block;
    vertical-align: middle;
    min-width: 173px;
    line-height: 24px;
    padding: 9px 5px 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Bold", arial;
    margin: 0 25px 15px;
    background-color: #A4A4A4;
    color: #fff;
    position: relative;
}

.pro2-box .pro2-info .item-btn:hover {
    background-color: #FFC300;
    color: #fff;
}

@media screen and (max-width: 1619px) {
    .pro2-box .pro2-info .item-btn {
        margin: 0 10px 15px;
    }
}

@media screen and (max-width: 1419px) {
    .pro2-box .pro2-info .item-btn {
        font-size: 16px;
        font-size: 1.6rem;
        min-width: 150px;
        padding: 7px 5px;
    }
}

@media screen and (max-width: 767px) {
    .pro2-box .pro2-info .item-btn {
        font-size: 14px;
        font-size: 1.4rem;
        min-width: 120px;
        padding: 5px;
        margin: 0 5px 15px;
    }
}

@media screen and (max-width: 450px) {
    .pro2-box .pro2-info .item-btn {
        width: 100%;
        margin: 0 0 15px;
    }
}

.pro2-box .pro2-info .item-down {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #FFC300;
    border-bottom: solid 1px #FFC300;
    margin: 0 15px 15px 30px;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Bold", arial;
    padding-right: 5px;
}

.pro2-box .pro2-info .item-down .iconfont {
    position: absolute;
    font-size: 24px;
    font-size: 2.4rem;
    left: -34px;
    top: 0;
}

.pro2-box .pro2-info .item-down:hover {
    color: #333;
    border-bottom-color: #333;
}

@media screen and (max-width: 1619px) {
    .pro2-box .pro2-info .item-down {
        margin: 0 10px 15px 34px;
    }
}

@media screen and (max-width: 1419px) {
    .pro2-box .pro2-info .item-down {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .pro2-box .pro2-info .item-down {
        font-size: 14px;
        font-size: 1.4rem;
        margin-left: 26px;
    }

    .pro2-box .pro2-info .item-down .iconfont {
        font-size: 20px;
        font-size: 2rem;
        left: -26px;
        top: -2px;
    }
}

.pro2-tab {
    border-bottom: solid 1px #CDCDCD;
    margin-top: 48px;
}

@media screen and (max-width: 1219px) {
    .pro2-tab {
        margin-top: 25px;
    }
}

@media screen and (max-width: 999px) {
    .pro2-tab {
        margin-top: 15px;
    }
}

.pro2-tab .tab-options {
    background-color: #EEEEEE;
    font-size: 0;
    letter-spacing: 0;
    border-bottom: solid 1px #fff;
}

.pro2-tab .tab-options span {
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    padding: 26px;
    padding: 10px 24px 11px;
    margin-bottom: -1px;
    display: inline-block;
    vertical-align: top;
    font-family: "OpenSans-Bold", arial;
    font-size: 18px;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
}

.pro2-tab .tab-options span:hover, .pro2-tab .tab-options span.tab-active {
    background-color: #FFC300;
    color: #fff;
}

@media screen and (max-width: 1419px) {
    .pro2-tab .tab-options span {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 767px) {
    .pro2-tab .tab-options span {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 7px 10px;
    }
}

.pro2-tab .tab-content {
    padding: 30px 0 47px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.pro2-tab .tab-content p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 2px;
    margin-bottom: 3px
}

.pro2-tab .tab-content img, .pro2-tab .tab-content iframe {
    max-width: 100%;
}

.pro2-tab .tab-content, .pro2-tab .tab-content a {
    color: #333;
}

.pro2-tab .tab-content a:hover {
    color: #FFC300;
}

@media screen and (max-width: 999px) {
    .pro2-tab .tab-content {
        line-height: 26px;
    }

    .pro2-tab .tab-content p {
        min-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .pro2-tab .tab-content {
        padding: 25px 0 30px;
        line-height: 24px;
    }

    .pro2-tab .tab-content p {
        min-height: 24px;
    }
}

.pro2-tags {
    padding: 15px 0 0;
}

.pro2-tags a {
    display: inline-block;
    margin-right: 12px;
    line-height: 24px;
    padding: 4px 18px;
    border: solid 1px #ccc;
    margin-top: 10px;
    color: #666;
}

.pro2-tags a:hover {
    color: #FFC300;
    border-color: #FFC300;
}

@media screen and (max-width: 767px) {
    .pro2-tags a {
        padding: 3px 10px;
    }
}

/*-------------2-2-products end------------------------------------------------------------*/
/*-------------3-1-news start--------------------------------------------------------------*/
.news1-list .list-item {
    background-color: #FAFAFA;
    margin-bottom: 52px;
}

@media screen and (max-width: 999px) {
    .news1-list .list-item {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .news1-list .list-item {
        padding: 20px 15px;
    }
}

.news1-list .item-pic {
    float: left;
    width: 350px;
    margin-right: 3.85305%;
}

.news1-list .item-pic img {
    display: block !important;
    margin: 0 auto;
    max-width: 430px;
    width: 100%;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-pic {
        width: 320px;
        margin-right: 2.68817%;
    }
}

@media screen and (max-width: 1219px) {
    .news1-list .item-pic {
        width: 270px;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .item-pic {
        width: 230px;
    }
}

@media screen and (max-width: 480px) {
    .news1-list .item-pic {
        width: 95%;
        margin: 0 auto 20px;
        float: none;
    }
}

.news1-list .item-body {
    overflow: hidden;
    margin-right: 3.58423%;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-body {
        margin-right: 1.79211%;
    }
}

@media screen and (max-width: 480px) {
    .news1-list .item-body {
        margin-right: 0;
    }
}

.news1-list .item-body .item-date {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
}

.news1-list .item-body .item-date, .news1-list .item-body .item-date a {
    color: #999;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-body .item-date {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1219px) {
    .news1-list .item-body .item-date {
        margin-top: 15px;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .item-body .item-date {
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .news1-list .item-body .item-date {
        margin-top: 0;
    }
}

.news1-list .item-body .item-title {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "OpenSans-Bold", arial;
    line-height: 24px;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-body .item-title {
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {
    .news1-list .item-body .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .item-body .item-title {
        margin-top: 0;
    }
}

.news1-list .item-body .item-desc {
    margin-top: 11px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    height: 90px;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-body .item-desc {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1219px) {
    .news1-list .item-body .item-desc {
        line-height: 24px;
        height: 72px;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .item-body .item-desc {
        line-height: 20px;
        height: 60px;
    }
}

.news1-list .item-body .item-btn {
    margin-top: 20px;
    display: inline-block;
    line-height: 24px;
    padding: 7px;
    min-width: 126px;
    border: solid 1px #FFC300;
    color: #FFC300;
    text-align: center;
}

.news1-list .item-body .item-btn:hover {
    background-color: #FFC300;
    color: #fff;
}

@media screen and (max-width: 1419px) {
    .news1-list .item-body .item-btn {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1219px) {
    .news1-list .item-body .item-btn {
        padding: 3px 5px;
    }
}

@media screen and (max-width: 640px) {
    .news1-list .item-body .item-btn {
        margin-top: 10px;
        min-width: 110px;
    }
}

/* hot-slide start */
.hot-slide {
    margin-bottom: 59px;
}

@media screen and (max-width: 1219px) {
    .hot-slide {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 999px) {
    .hot-slide {
        margin-bottom: 20px;
    }
}

.hot-slide .box-list {
    margin-top: -8px;
    font-size: 0;
    letter-spacing: 0;
}

@media screen and (max-width: 999px) {
    .hot-slide .box-list {
        margin-top: 0;
    }
}

.hot-slide .box-list .list-item {
    padding: 24px 0 17px;
    border-bottom: solid 1px #DBDBDB;
}

@media screen and (max-width: 1219px) {
    .hot-slide .box-list .list-item {
        padding: 20px 0 17px;
    }
}

@media screen and (max-width: 999px) {
    .hot-slide .box-list .list-item {
        display: inline-block;
        vertical-align: top;
        width: 31.33%;
        margin: 0 1%;
    }
}

@media screen and (max-width: 480px) {
    .hot-slide .box-list .list-item {
        width: 100%;
        margin: 0;
    }
}

.hot-slide .box-list .item-pic {
    float: left;
    width: 100px;
    margin-right: 6.07143%;
}

.hot-slide .box-list .item-pic img {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1419px) {
    .hot-slide .box-list .item-pic {
        width: 80px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 999px) {
    .hot-slide .box-list .item-pic {
        width: 100%;
        float: none;
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .hot-slide .box-list .item-pic {
        float: left;
        width: 120px;
        margin: 0 10px 0 0;
    }
}

.hot-slide .box-list .item-desc {
    margin-top: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    height: 52px;
}

@media screen and (max-width: 1419px) {
    .hot-slide .box-list .item-desc {
        line-height: 22px;
        height: 44px;
    }
}

@media screen and (max-width: 480px) {
    .hot-slide .box-list .item-desc {
        margin-top: 38px;
    }
}

/* hot-slide end */
/*-------------3-1-news end----------------------------------------------------------------*/
/*-------------3-2-news start--------------------------------------------------------------*/
.news2-main .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    font-family: "OpenSans-Bold", arial;
    line-height: 26px;
}

@media screen and (max-width: 767px) {
    .news2-main .item-title {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 22px;
    }
}

.news2-main .item-date {
    margin-top: 20px;
    font-size: 0;
    letter-spacing: 0;
}

.news2-main .item-date > span {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    color: #666;
}

.news2-main .item-date > span .iconfont {
    font-size: 17px;
    font-size: 1.7rem;
    margin-right: 6px;
    color: #999;
}

.news2-main .item-date .pro-share {
    display: inline-block;
    vertical-align: middle;
}

.news2-main .item-date .pro-share .share-title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #666;
}

@media screen and (max-width: 767px) {
    .news2-main .item-date {
        margin-top: 10px;
    }

    .news2-main .item-date > span .iconfont {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .news2-main .item-date .pro-share .share-title {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.news2-main .item-kind {
    font-size: 0;
    letter-spacing: 0;
    margin-top: 20px;
}

.news2-main .item-kind > * {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-size: 1.4rem;
    color: #666;
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .news2-main .item-kind {
        margin-top: 10px;
    }

    .news2-main .item-kind > * {
        margin-right: 15px;
    }
}

.news2-main .item-desc {
    margin-top: 18px;
    padding: 22px 0 39px;
    border-top: solid 1px #DCDCDC;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.news2-main .item-desc p {
    min-height: 30px;
}

.news2-main .item-desc img, .news2-main .item-desc iframe {
    max-width: 100%;
}

@media screen and (max-width: 999px) {
    .news2-main .item-desc {
        line-height: 26px;
    }

    .news2-main .item-desc p {
        min-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .news2-main .item-desc {
        margin-top: 12px;
        padding: 12px 0 25px;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }

    .news2-main .item-desc p {
        min-height: 24px;
    }
}

/*-------------3-2-news end----------------------------------------------------------------*/
/*-------------4-1-application start-------------------------------------------------------*/
.app1-list {
    font-size: 0;
    letter-spacing: 0;
}

.app1-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 31.36201%;
    margin-left: 2.95699%;
    margin-bottom: 65px;
}

@media screen and (max-width: 1419px) {
    .app1-list .list-item {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 999px) {
    .app1-list .list-item {
        width: 31.33%;
        margin: 0 1% 30px;
    }
}

@media screen and (max-width: 640px) {
    .app1-list .list-item {
        width: 48%;
    }
}

@media screen and (max-width: 380px) {
    .app1-list .list-item {
        width: 98%;
    }
}

.app1-list .item-pic img {
    display: block;
    margin: 0 auto;
    max-width: 430px;
    width: 100%;
}

.app1-list .item-title {
    font-family: "OpenSans-Bold", arial;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    height: 60px;
    margin-top: 9px;
}

@media screen and (max-width: 1419px) {
    .app1-list .item-title {
        line-height: 24px;
        height: 48px;
    }
}

.app1-list .item-desc {
    margin-top: 2px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    height: 60px;
}

@media screen and (max-width: 1419px) {
    .app1-list .item-desc {
        line-height: 24px;
        height: 48px;
    }
}

/*-------------4-1-application end---------------------------------------------------------*/
/*-------------4-2-application start-------------------------------------------------------*/
.app2-main .item-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 26px;
    color: #30323E;
}

@media screen and (max-width: 767px) {
    .app2-main .item-title {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 22px;
    }
}

.app2-main .item-date {
    margin-top: 20px;
    font-size: 0;
    letter-spacing: 0;
}

.app2-main .item-date > span {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    color: #666;
}

.app2-main .item-date > span .iconfont {
    font-size: 17px;
    font-size: 1.7rem;
    margin-right: 6px;
    color: #999;
}

.app2-main .item-date .pro-share {
    display: inline-block;
    vertical-align: middle;
}

.app2-main .item-date .pro-share .share-title {
    font-size: 16px;
    font-size: 1.6rem;
    color: #666;
}

@media screen and (max-width: 767px) {
    .app2-main .item-date {
        margin-top: 10px;
    }

    .app2-main .item-date .pro-share .share-title {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.app2-main .item-desc {
    padding: 28px 0 39px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.app2-main .item-desc p {
    min-height: 30px;
}

.app2-main .item-desc img, .app2-main .item-desc iframe {
    max-width: 100%;
}

@media screen and (max-width: 999px) {
    .app2-main .item-desc {
        line-height: 26px;
    }

    .app2-main .item-desc p {
        min-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .app2-main .item-desc {
        margin-top: 12px;
        padding: 12px 0 25px;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }

    .app2-main .item-desc p {
        min-height: 24px;
    }
}

/*-------------4-2-application end---------------------------------------------------------*/
/*-------------5-download start------------------------------------------------------------*/
.download-list {
    padding-bottom: 5px;
}

.download-list .list-item {
    border-bottom: dashed 1px #d7d7d7;
    position: relative;
    padding-bottom: 23px;
    margin-bottom: 59px;
    text-align: center;
}

.download-list .item-body {
    overflow: hidden;
    padding-right: 200px;
    text-align: left;
}

.download-list .item-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    min-height: 24px;
}

.download-list .item-title .iconfont {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 24px;
    color: #A4A4A4;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.download-list .item-desc {
    line-height: 30px;
    min-height: 30px;
    margin-top: 19px;
}

.download-list .item-desc, .download-list .item-desc a {
    color: #666;
}

.download-list .item-btn {
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    min-width: 139px;
    line-height: 24px;
    padding: 7px 5px;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    background-color: #a4a4a4;
    position: absolute;
    top: 0px;
    right: 0;
}

.download-list .item-btn:hover {
    background-color: #FFC300;
}

@media screen and (max-width: 1419px) {
    .download-list .list-item {
        padding-bottom: 23px;
        margin-bottom: 30px;
    }

    .download-list .item-desc {
        margin-top: 10px;
        line-height: 24px;
    }

    .download-list .item-body {
        padding-right: 150px;
    }
}

@media screen and (max-width: 1219px) {
    .download-list .list-item {
        margin-bottom: 30px;
    }

    .download-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .download-list .item-body {
        padding-right: 0;
    }

    .download-list .item-btn {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
        min-width: 120px;
        padding: 5px;
    }
}

/*-------------5-download end--------------------------------------------------------------*/
/*-------------6-contact start-------------------------------------------------------------*/
.ac-top {
    margin-bottom: 74px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

@media screen and (max-width: 1219px) {
    .ac-top {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 999px) {
    .ac-top {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .ac-top {
        margin-bottom: 30px;
    }
}

.ac-top p {
    min-height: 30px;
}

.ac-top img, .ac-top iframe {
    max-width: 100%;
}

.ac-top, .ac-top a {
    color: #666;
}

.ac-top a:hover {
    color: #FFC300;
}

@media screen and (max-width: 999px) {
    .ac-top {
        line-height: 26px;
    }

    .ac-top p {
        min-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .ac-top {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }

    .ac-top p {
        min-height: 24px;
    }
}

.contact-box {
    max-width: 1200px;
    margin-bottom: 68px;
}

@media screen and (max-width: 999px) {
    .contact-box {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .contact-box {
        margin-bottom: 30px;
    }
}

.contact-box .form-box {
    border-radius: 4px;
    background-color: #FBFBFB;
    border: solid 1px #e1e1e1;
    padding: 19px 4.58333% 29px;
}

@media screen and (max-width: 767px) {
    .contact-box .form-box {
        padding: 15px 2%;
    }
}

.contact-box .box-title {
    font-size: 36px;
    font-size: 3.6rem;
    color: #FFC300;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 39px;
    letter-spacing: 0.7px;
}

.contact-box .box-title:after {
    position: absolute;
    content: '';
    width: 119px;
    height: 4px;
    background-color: #FFC300;
    left: 50%;
    margin-left: -60px;
    bottom: 0;
}

@media screen and (max-width: 1219px) {
    .contact-box .box-title {
        font-size: 30px;
        font-size: 3rem;
    }
}

@media screen and (max-width: 999px) {
    .contact-box .box-title {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 767px) {
    .contact-box .box-title {
        font-size: 24px;
        font-size: 2.4rem;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }

    .contact-box .box-title:after {
        height: 2px;
    }
}

@media screen and (max-width: 767px) {
    .contact-box .box-title {
        font-size: 20px;
        font-size: 2rem;
    }
}

.contact-box .item-form .star {
    position: relative;
}

.contact-box .item-form .star:after {
    position: absolute;
    content: '*';
    color: #999999;
    left: 10px;
    top: 17px;
}

.contact-box .item-form .star input, .contact-box .item-form .star textarea {
    padding-left: 20px;
}

.contact-box .item-form .item-input {
    width: 48.07339%;
    margin-bottom: 21px;
    float: left;
}

.contact-box .item-form .item-input:nth-child(2n) {
    float: right;
}

.contact-box .item-form .item-input1 {
    margin-bottom: 22px;
    width: 100%;
}

.contact-box .item-form input, .contact-box .item-form textarea {
    display: block;
    background-color: #fff;
    width: 100%;
    display: block;
    color: #999999;
    border: solid 1px #E1E1E1;
}

.contact-box .item-form input {
    height: 50px;
    line-height: 48px;
    padding: 0 10px;
}

.contact-box .item-form textarea {
    height: 121px;
    padding: 8px 10px;
    line-height: 24px;
    margin: 3px 0 0;
}

.contact-box .item-form .attachment {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.contact-box .item-form .attachment span {
    float: left;
}

.contact-box .item-form .attachment #file-name {
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-box .item-form .attachment .file-group {
    float: left;
    width: 48.07339%;
    height: 34px;
    line-height: 34px;
    background-color: #FFC300;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    .contact-box .item-form .attachment .file-group {
        width: 100%;
    }
}

.contact-box .item-form .attachment .file-group .file-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-color: #FFC300;
    color: #FFFFFF;
    border: 0;
    height: 34px;
    line-height: 34px;
}

.contact-box .item-form .attachment .file-group .file-single {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.contact-box .item-form .attachment .file-group .file {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.contact-box .item-form .attachment .file-group .file-name-p {
    overflow: hidden;
    height: 34px;
    line-height: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.contact-box .item-form .attachment .file-group .file-name-p i {
    cursor: pointer;
}

.contact-box .item-form .attachment .file-group .file-name-p span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.contact-box .item-form .item-code {
    width: 33.76147%;
    margin-right: 1.74312%;
    float: left !important;
}

.contact-box .item-form .item-img {
    line-height: 50px;
    position: relative;
    top: -1px;
}

.contact-box .item-form .item-img img {
    max-height: 50px;
    vertical-align: middle;
    cursor: pointer;
}

.contact-box .item-form .item-btn {
    width: 48.07339%;
    padding: 0;
    float: right;
}

.contact-box .item-form .item-btn input {
    height: 48px;
    border-color: #FFC300;
    background-color: #FFC300;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "OpenSans-Bold", arial;
    text-transform: uppercase;
    cursor: pointer
}

.contact-box .item-form .item-btn input:hover {
    background-color: #333;
    border-color: #333;
}

@media screen and (max-width: 1419px) {
    .contact-box .item-form .item-code {
        width: 28.44037%;
        margin-right: 1.37615%;
    }
}

@media screen and (max-width: 999px) {
    .contact-box .item-form .item-code {
        width: 260px;
    }

    .contact-box .item-form .item-btn {
        width: 35%;
        margin-left: 15px;
        float: left;
    }
}

@media screen and (max-width: 767px) {
    .contact-box .item-form .star:after {
        top: 10px;
    }

    .contact-box .item-form .item-input, .contact-box .item-form .item-input1 {
        margin-bottom: 10px;
    }

    .contact-box .item-form .item-code {
        width: -webkit-calc(100% - 110px);
        width: -moz-calc(100% - 110px);
        width: calc(100% - 110px);
        margin-right: 0;
    }

    .contact-box .item-form .item-img {
        float: right;
        line-height: 36px;
    }

    .contact-box .item-form .item-img img {
        max-height: 36px;
    }

    .contact-box .item-form .item-btn {
        margin-left: 0;
        width: 100%;
    }

    .contact-box .item-form .item-btn input {
        height: 36px;
        line-height: 34px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .contact-box .item-form input {
        height: 36px;
        line-height: 34px;
    }
}

@media screen and (max-width: 480px) {
    .contact-box .item-form .item-input {
        width: 100%;
    }

    .contact-box .item-form .item-img {
        float: left;
        margin-bottom: 10px;
    }
}

.map {
    max-width: 1200px;
}

.map img {
    display: block;
    margin: 0 auto;
}

/*-------------6-contact end---------------------------------------------------------------*/
/*-------------faq start-------------------------------------------------------------------*/
.faq-list {
    padding-bottom: 10px;
}

.faq-list .list-item {
    margin-bottom: 20px;
}

.faq-list .list-item:first-child .item-desc {
    display: block;
}

@media screen and (max-width: 767px) {
    .faq-list .list-item {
        margin-bottom: 15px;
    }
}

.faq-list .item-title {
    background-color: #EEEEEE;
    line-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "OpenSans-Bold", arial;
    padding: 11px 40px 11px 18px;
    cursor: pointer;
    position: relative;
}

.faq-list .item-title:before {
    position: absolute;
    content: '\e725';
    font-family: "iconfont" !important;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 11px;
    right: 14px;
}

@media screen and (max-width: 999px) {
    .faq-list .item-title:before {
        top: 8px;
        right: 10px;
    }
}

.faq-list .item-title.active {
    background-color: #FFC300;
    color: #fff;
}

.faq-list .item-title.active:before {
    content: '\e723';
}

@media screen and (max-width: 999px) {
    .faq-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        padding: 8px 30px 8px 15px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 5px 30px 5px 10px;
    }
}

.faq-list .item-desc {
    display: none;
    padding: 17px 16px 19px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.faq-list .item-desc p {
    min-height: 30px;
}

.faq-list .item-desc img, .faq-list .item-desc iframe {
    max-width: 100%;
}

@media screen and (max-width: 1219px) {
    .faq-list .item-desc {
        padding: 15px 15px 10px;
        line-height: 26px;
    }

    .faq-list .item-desc p {
        min-height: 26px;
    }
}

@media screen and (max-width: 999px) {
    .faq-list .item-desc {
        padding: 15px 15px 0;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }

    .faq-list .item-desc p {
        min-height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .faq-list .item-desc {
        padding: 10px 10px 0;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 20px;
    }

    .faq-list .item-desc p {
        min-height: 20px;
    }
}

/*-------------faq end---------------------------------------------------------------------*/
/*-------------cer start-------------------------------------------------------------------*/
.cer-list {
    font-size: 0;
    letter-spacing: 0;
    padding-bottom: 10px;
}

.cer-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 23.08333%;
    margin-left: 2.55556%;
    margin-bottom: 36px;
}

@media screen and (max-width: 999px) {
    .cer-list .list-item {
        width: 23%;
        margin-left: 1% !important;
        margin-right: 1%;
    }
}

@media screen and (max-width: 767px) {
    .cer-list .list-item {
        width: 31.33%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 400px) {
    .cer-list .list-item {
        width: 48%;
    }
}

.cer-list .item-pics {
    position: relative;
    padding-bottom: 100%;
    background-color: #F2F2F2;
}

.cer-list .item-pics img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.cer-list .item-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.cer-list .item-backdrop .iconfont {
    font-size: 36px;
    font-size: 3.6rem;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 999px) {
    .cer-list .item-backdrop {
        display: none;
    }
}

.cer-list .item-title {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 16px;
}

@media screen and (max-width: 1219px) {
    .cer-list .item-title {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 999px) {
    .cer-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cer-list .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 10px;
    }
}

/*-------------cer end---------------------------------------------------------------------*/
/*-------------video start-----------------------------------------------------------------*/
.video-top {
    margin-bottom: 55px; /* .item-videobox start */ /* .item-videobox end */
}

@media screen and (max-width: 999px) {
    .video-top {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .video-top {
        margin-bottom: 25px;
    }
}

.video-top .item-videobox {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 0;
    max-width: 595px;
}

.video-top .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 74.95798%;
    height: 0;
}

.video-top .item-videobox .item-video iframe, .video-top .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-top .item-videobox .item-video iframe body {
    margin: 0px !important;
}

.video-top .item-body {
    text-align: center;
}

.video-top .item-title {
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 37px;
}

@media screen and (max-width: 1219px) {
    .video-top .item-title {
        font-size: 18px;
        font-size: 1.8rem;
        margin-top: 20px;
    }
}

@media screen and (max-width: 999px) {
    .video-top .item-title {
        font-size: 16px;
        font-size: 1.6rem;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .video-top .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 8px;
    }
}

.video-top .item-desc {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 17px;
    color: #666;
}

@media screen and (max-width: 999px) {
    .video-top .item-desc {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    .video-top .item-desc {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 8px;
    }
}

/* video-list start */
.video-list {
    font-size: 0;
    letter-spacing: 0; /* .item-videobox start */ /* .item-videobox end */
}

@media screen and (max-width: 767px) {
    .video-list {
        padding-bottom: 10px;
    }
}

.video-list .list-item {
    display: inline-block;
    vertical-align: top;
    width: 31.08333%;
    margin-left: 3.375%;
    margin-bottom: 34px; /* @media screen and (max-width:400px) { width: 98%; } */
}

@media screen and (max-width: 999px) {
    .video-list .list-item {
        width: 31.33%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 640px) {
    .video-list .list-item {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1%;
        margin-bottom: 20px;
    }
}

.video-list .item-videobox {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 0;
}

.video-list .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 75.06702%;
    height: 0;
}

.video-list .item-videobox .item-video iframe, .video-list .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-list .item-videobox .item-video iframe body {
    margin: 0px !important;
}

.video-list .item-pic {
    border-radius: 0;
}

.video-list .item-pic img {
    cursor: pointer;
}

.video-list .item-title {
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: 18px;
}

@media screen and (max-width: 999px) {
    .video-list .item-title {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .video-list .item-title {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 8px;
    }
}

/* video-list end */
.video-backdrop {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999999; /* .item-videobox start */ /* .item-videobox end */
}

.video-backdrop .item-close {
    position: absolute;
    right: 2.60417%;
    top: 2.60417%;
    color: #fff;
    font-size: 36px;
    font-size: 3.6rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .video-backdrop .item-close {
        font-size: 26px;
        font-size: 2.6rem;
    }
}

.video-backdrop .item-videobox {
    overflow: hidden;
    max-width: 595px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-backdrop .item-videobox .item-video {
    position: relative;
    overflow: hidden;
    padding-bottom: 74.95798%;
    height: 0;
}

.video-backdrop .item-videobox .item-video iframe, .video-backdrop .item-videobox .item-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-backdrop .item-videobox .item-video iframe body {
    margin: 0px !important;
}

/*-------------video end-------------------------------------------------------------------*/

@media screen and (min-width: 992px) {
    .n-nav, .n-nav-icon {
        display: none;
    }
}

@-webkit-keyframes resize {
    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: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-moz-keyframes resize {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -moz-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: scale(5, 5);
        -moz-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -moz-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: scale(5, 5);
        -moz-transform: scale(5, 5);
        -o-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.n-nav .n-nav-icon {
    position: fixed;
    right: 5px;
    top: 3px;
    width: 35px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999999999;
}

.n-nav .n-nav-icon .iconfont {
    font-size: 20px;
    font-size: 2.0rem;
    color: #FFC300;
}

.n-nav .n-nav-icon span {
    display: none;
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    background-color: #FFC300;
}

.n-nav .n-nav-icon.active {
    top: 5px;
    background: #666 url(../fonts/nav-close.png) no-repeat center;
    background-size: 30px;
}

.n-nav .n-nav-icon.active span, .n-nav .n-nav-icon.active .iconfont {
    display: none;
}

.n-nav .n-nav-body {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    overflow-y: scroll;
    background-color: #666;
    padding-top: 40px;
}

.n-nav .box-search {
    background-color: #fff;
    padding: 5px 10px;
    position: relative;
    border: solid 1px #FFC300;
    margin: 5px 10px;
}

.n-nav .box-search .item-input {
    width: 100%;
    line-height: 32px;
    height: 32px;
    padding: 0 60px 0 0;
}

.n-nav .box-search .iconfont {
    font-weight: bold;
    background-color: #FFC300;
    width: 44px;
    height: 32px;
    line-height: 32px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 0;
}

.n-nav .box-search .iconfont:hover {
    background-color: #666;
}

.n-nav .box-search .item-submit {
    position: absolute;
    width: 44px;
    height: 32px;
    right: 10px;
    top: 5px;
    z-index: 1;
}

.n-nav .box-list {
    margin-top: 30px;
}

.n-nav .box-list > li {
    position: relative;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: resize;
    -moz-animation-name: resize;
    animation-name: resize;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0 10px;
}

.n-nav .box-list > li a {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    padding: 10px 25px 10px 10px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.n-nav .box-list li {
    position: relative;
}

.n-nav .box-list li .has-next {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url(../fonts/n1.png) no-repeat center;
    background-size: contain;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    cursor: pointer;
}

.n-nav .box-list li.active > .has-next {
    background: url(../fonts/n2.png) no-repeat center;
    background-size: contain;
}

.n-nav .box-list .yiji-list {
    display: none;
}

.n-nav .box-list .yiji-list li {
    padding-left: 12px;
}

.n-nav .box-list .yiji-list li .has-next {
    right: 0;
}

.n-nav .box-list .yiji-list li > a {
    padding: 10px 25px 10px 20px;
    line-height: 22px;
    position: relative;
}

.n-nav .box-list .yiji-list li > a:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #fff;
    top: 19px;
    left: 10px;
}

.n-nav .box-list .erji-list {
    display: none;
}

.n-nav .box-list .sanji-list {
    display: none;
}

.slide {
    position: relative;
}

.slide .carouse {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide .carouse .slideItem {
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.slide video {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: none \9;
    display: block \9 \0;
}

.slide .carouse .slideItem .banner-img {
    width: 100%;
    display: block;
}

.slide .console {
    height: 57px;
    display: inline-block;
    width: 35px;
    position: absolute;
    top: 40%;
}

.slide .carousel-control {
    display: none !important;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    z-index: 999;
    margin-top: -30px;
}

.slide .carousel-control .iconfont {
    font-size: 60px;
    font-size: 6rem;
    color: #fff;
}

.slide .carousel-control:hover .iconfont {
    color: #F20000;
}

.slide .carousel-control.left {
    left: 120px;
    cursor: pointer;
}

.slide .carousel-control.right {
    right: 120px;
    cursor: pointer;
}

.slide .dotList {
    position: absolute;
    left: 21px;
    bottom: 23px;
    line-height: 0;
    letter-spacing: 0;
}

.slide .dotList li {
    display: block;
    cursor: pointer;
    font-size: 0px;
    margin-top: 10px;
    border: none;
    outline: none;
    width: 14px;
    height: 14px;
    background: url(../images/dot.png) no-repeat center center;
    background-size: contain;
}

.slide .dotList li.active {
    background: url(../images/dot1.png) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 999px) {
    .slide .dotList {
        left: 15px;
        bottom: 15px;
    }

    .slide .dotList li {
        margin-top: 5px;
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 767px) {
    .slide .dotList {
        left: 10px;
        bottom: 10px;
    }

    .slide .dotList li {
        margin-top: 5px;
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    .slide .dotList {
        left: 10px;
        bottom: 10px;
    }

    .slide .dotList li {
        margin-top: 5px;
        width: 8px;
        height: 8px;
    }
}

.index-banner {
    position: relative;
    padding-bottom: 48.07692%;
}

.index-banner .carouse {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.page_banner img {
    display: block;
    width: 100%;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.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.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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 {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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 {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        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 {
    0% {
        -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);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -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);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -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(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -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(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes shake {
    0%, 100% {
        -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 {
    0%, 100% {
        -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 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);
    }

    100% {
        -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);
    }

    100% {
        -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 {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .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);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .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);
    }

    100% {
        -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 {
    0% {
        -webkit-transform: none;
        transform: none;
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}


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

    transform-origin: center
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        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);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        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);
    }

    100% {
        -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(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        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);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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


@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) 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(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) 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(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -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 {
    0% {
        -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);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -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);
    }

    100% {
        -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 {
    0% {
        -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);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -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);
    }

    100% {
        -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 {
    0% {
        -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;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -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;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes flipOutY {
    0% {
        -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;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -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;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -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);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -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);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -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 {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -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;
    }

    100% {
        -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;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

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

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        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 {
    0% {
        opacity: 1;
    }

    100% {
        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 {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

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

@-webkit-keyframes zoomInStable {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    33.333% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomInStable {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    33.333% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .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.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .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.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .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.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .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.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

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

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

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

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

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

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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

@keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-webkit-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-moz-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }

}

@-o-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-ms-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }

}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
}

@media screen and (max-width: 1619px) {
}

@media screen and (max-width: 1419px) {
}

@media screen and (max-width: 1219px) {
}

@media screen and (max-width: 999px) {
}

@media screen and (max-width: 767px) {
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/OpenSans-Bold.eot');
    src: url('../fonts/OpenSans-Bold.eot') format('embedded-opentype'),
    url('../fonts/OpenSans-Bold.woff2') format('woff2'),
    url('../fonts/OpenSans-Bold.woff') format('woff'),
    url('../fonts/OpenSans-Bold.ttf') format('truetype'),
    url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans.eot');
    src: url('../fonts/OpenSans.eot') format('embedded-opentype'),
    url('../fonts/OpenSans.woff2') format('woff2'),
    url('../fonts/OpenSans.woff') format('woff'),
    url('../fonts/OpenSans.ttf') format('truetype'),
    url('../fonts/OpenSans.svg#OpenSans') format('svg');
    font-display: swap;
}

@font-face {
    font-family: "iconfont";
    src: url('../fonts/iconfont.eot?t=1610188085969'); /* IE9 */
    src: url('../fonts/iconfont.eot?t=1610188085969#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAA2IAAsAAAAAGOQAAA05AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCHHgqdbJgzATYCJAN8C0AABCAFhG0HglgbIxUzknJWP7L/OoHTIWBetmtAeDtr/10b4z40Pj6aZsLEWu/3aS6GXg+K4IC/KjZ4EdsVobOpt+mJBJ+JB/73U++DILWcRJVgrABAGKLjJ+zUJvSU2vETcrpo6///0Kn/EBe5bkupgVH52qSgkwK6Ak4nJDOdy6lmr44tQDzkdtPJJ5fklyOv90nv9AIYKICdtJlJ3kPpAO0ggSAEhiA7P9m9pJIeyMAhBkn71AFXXzSX5ufoBRAA5W7XmKnHkvQAwfn//1tL7W7CjoTBCaGQcTLCzFyW529efnizF4LNBbkMCm19X4UKIKszskDG15h6WVvhdCFiOWPgTCDmNN2kKj/bmYC6sS3h9t3Hr1Vl1gj0+/7l0xvVWqHcExpU88qeFXM9/AaKavyJvgbwK/364RS4B0SlxC74XHrnvevPaSvYSlJMXAx187PwthIJW8jEFW9dmFrK9a2U131DszNsmOrfe/2ARo8RSx4CBct3/QUakXmeTW7xtuzRi0/zV1yJLI6dSW4B7++GfXuw4eK2nHNFvPof8FgwMqNrThBl80r6BhYtWTZWVlFVU9fTMNTU0taRzBLK6NuE8MMY46MphckscKCXzIgDo2RmOLBEXQ0eoDkgEBSAYFAE8kEZuE4y8xyiyZQ4ZCfT55BIZsChCVoETEFLgBloGTAHjQE3UBlwB1UAD1AV8ATVgElQHVgM6gFbQA3gEWgIvAc1gQ+gFvAR1AY+kUyHIz5KKSgYYRZM4hWu4hbIHylfMGueGU+UVK9Uxd2fa3YScaVS/b6GCJq2qFuh1bxfJkNX6yII1aWgXlPbU99trdV7DhxxxCfom5hMc331mYFw4wmvH8LIMM6GUz6UzFOKaE1dlxtTHugsY9VXldrlOwwhbAglQzkdzvj2UnnKOYlKxHH7xNKSwzHHreNvQpffNwGZD33xtU/NYfbjnPjxNujoSQidUxjLEw03iq22pTEZJ+XtjQlHSIS0x0fCwhWHgyuPvTqnQnCdzwqnkvJJjtd8r8jxw0hEB7oaS8RrEndaAjuOrhqWPKm2AuKaao3lqUbmUNvYi5kfPuDKpi4abzTli7mb/SwUIKEQ9Qd5JgSFzdsK+Fm44rFqUXBAj6185rYuPGj8e4eTPTXDyky/ssPQommgPE4zDu3Vt70wttkXD5YLM8vs5Z9cqWfqOvJeLRJqiLLpHS3d4a7D7pqdolPwpHNPdgycsG+HIkvecxpDRQf/cfuO7Ly5wNu2n9I7dMq5KzqEEtYDHWWw+YNp6KSHbDefE1VHP8xdcFvNFvMTP6iH1D8Q9fna46ITiyZzp64dqaUn7PUW8rAZlM+avzVsm6Sj7sYQnQpuPBGOc4PJeKNtBPA5sa2w+o2YP5j7J9e/z4El0B+A8yucdo6bD0pBKAiWTmZ/Bh9istNKn7djrsQ+XoOiJ71W7JQ8AdbLSA35XnhZNIaxFfPhSK0npPXKIIruygV8WL66dwkeNOPG9TprbJBQQ7r0GHP4eoPT6pCyaWuB/T1a5SLjbuvlhAEStwHABHmQhSCGjovl2MVKT4wc8zWPJb0nLzZ2dk/NWK3BEk5/+ObZbONDbvNU8uRR9FiRdNc5ikYiPpenWvMzur+76oenKB+zw1dvnnXO3brW9tiLB/b95+12Issx4y6/bhJv6Ok7PLjkjnU1XS07pyB0Gp00HeIA2A1PcEc2ARkB6Sl6SAzs2giWnSH2IHi63eG5AEFHbrvYC1OOSaUluzF7t99G6mSeQ9PK1k0zb/rqI+rwa++a546quWaj9Lljx4hG0UYQg/js4tNMgzgSnTZtYXAKy4aJJhQBG8vGMYhBoiZecwboydWatPEp2TEBAAM2Ejt4USzD3/LcZc8Rw7Pk8vWQs1dDN7bbxmvXbI4POrlxqzByzl5lCot9vaFfX4TXcS6MzpQESFOCkqXBktTA6EBLqQqVQmrz8ef3Rsecfi/MG807zz6wD//7Ny/S9r0y1LIzgD/YzZsY2lLDUM07MHvbT/3yNl/mS92lgd+jNrbERMJuI0JNQsdkbRBqHEa0saXGkr45b+8rWG9ZJw+93SRPj3+KsKGcTdgR8AtnJ+eed4fmufzQb21EmHEotH2UGEvV3wznxKzYOP5Abh98u3F8F8Kack5zx5ht7OTcnbEj4TUF2Jlc9ovkM+SiuG2qUco0RUVUXOf9Q4KLyVDQn7rFmskxVL+0ow+/h0l9p/Ha+7Rqt9pDRsvwiPW6fSrYpstz6lok3mLtL6oNAy5mTHit3Je9WPhjGpIwe+mmmBYdlgYlOhFp451D9w5Mm2yvOw54VySfXPHuw59fqQz8zudXPzXyuSsmP7z79SeTAlVSTWDNIyHBzZ0DnCgkAfJCqEAdtF0QjhSuR0IcjavCkbByA9csAP5+ND44nX2qG1q/ZV0zqqmm+bRzT01lk2qEGqlKqIbsdwIYDZ3VazdWHBYHPUd77Zf12bcyYVufXYBMmGAZ6ht4DS00uz9TT2uwLKexM5fLF7Za8ZIJ4f/HPWUhtnIb181y9TVTNslDB+62DQFoeyK7a3bUupaFyDdT5ibfRA4Vtq6QR17c2TXZIb2s1NQsvdRsok7QQwpSUgRkj6CupDJZKlDjN1o3PBvtRnqQON+qoXYhArXkYHdLofIy4ZtERO7pIVMb/Nwzd46JAGbajYUlEpfuOXnCeWPP6CMiZ0l3PiyAy7rVchbRy+qQOE/ivqYkKKIiMQQGISIonhkoRvA7HjB6W2k0oqimUboJ+3AxDJyJOKKZQWKYciNJSGMTmgjjdtSDYx+JX9fTu46GG4Zadnky+jZ7mbp9v0NArZ3cWVl1E29mgBvth1eGWk6SuLd6N7YX2//7NxpmXLrm1++7lpty5wPVSl3iYP1BQsUhn1AN3lTRvPsM7jVl8iLv8KOpyaMZvf5fM5wXHE3Sy1zMlJRLviGlUNDLCCjuFZjsfN9hTHdiubPZ+rY+gdZx+pJY/WRJOx9VI73he1+vDRd0CvObP1/4z5IXli+QIv2kmgRJ1ixJaryg+upACzTDtQGYP1B2MKGv9+yirZrbZJf2XpJtlzUX7KnKiOJAOQG+diW3B6fr7LdeUOJua2A3KzU4IMOyvxTWhJOgXnI+xArYsKnN5S+TbC32hrL/CEQ0C5zU7b0dpuQQuXifqVuoWXrG/yq3Bu+2G/vQtfeQc0jzqSNr8StU9RgeJZwkT6b5J+431J6n47g//3/hc+S0f7YOuvDEWyz06xUlNntOjHpBPpRcz7C6uga6utBB+AKW3t+6Js356u0DPl8z73/zVj1tuYBaUrDAsk80xeBe7/NViC5TvdDwtHmGl8+Tuxx0uDoWXPPZU6fYWQ6YD9g6PxizHitbE5j/p8aXNoHKAmo2g+ONWTx5GZZyNh9jUwplmEymDMwjpGw3eTrdXmQtshNsGCnqZXCpb7I96y7vLFzEX0Zx9x+izsga6Hbrcou5lTV6BosC8veJ/AssdTT4mAGPTvOxO32nR3/tmjj76QJfn69dbD+6lFpwVM6uOaPiBcfHd0ZvYP9sPeKhOqWVIzL+bF2t7r6Xdq/AL/4g5C6IXGu8AwPv6Dwv9pu/ponS/ZyRyn1z3LXrPbounRdmwlyQA7dVS37ZAMrm3156dLFrWgrKssL5WXtbOfNlwNGZMD+ffB9cq1T+B8VBzNw/Ip26m5IFQHqCflR1Od5zqM5/3FRPL31F3wAUnXytUqnlY5XryFoct2xPo3/YbsL/oBnjX5qgaKCPVYpNPavr3ynJAHMMu8WveSjoDSz3Wf2PQt42LAxAUY8psevJdOSiUGtmZJelWM2nPcCh1RGADGirqitIdKmE9PBgJviXMbgwvtz+Gx0/Y2j8b7hSoNl66bXLY7SoAgrWHQAeDCCu6BG+q7+KKZrg3zcJH0W2s9PO5eXKd7yDQvlDdhNy1yR6AluA5UQAdfcceFhQ1Yf762uOxNLjE3NaSSLQQJ8koIOZmP1nkxKwgE/KQAdHUodZ4L56A6ZAAWCA4MUAbECTIgiwYQNBQQ0OEAzYcE7E/fH+SD6vf1KgYpsg7HqDWLtm9GxBEMRM7plRWOqghEZZ/w9I6lzYqpJG/IB1ppFxP2y2v0MJdh6LuF0SEWmmLRbsTe0O8hxZZTEFRf6WqHoKAu1b1FdYNEZGs4BAccIYI+2zGgoq6TeTUevLfwCJWk6wPTf9yfoDWI75eIbzhQLxnZeim67LUGcnESFtaSx0LFTk5puxQO48iKn806WAQnzbEU7lSaAfpqXcX75ZXC7cyXdLu4XJFk6jEwySyY3CVYrF5lCXV9c3Dx4+evzk6bPnL16+yoyP1oc9Akc8LA8W9XMD0gjs5MZRa5d16orfDSQSYZE193LQlDh9a5Lt6xlGpnQkEisK3ncgrNre9ggrHnKxX+gfUrbgsHY1RsMYf8scRcy7Ewuj3suc0VCJHMpY2OsRW4n4UAsFEjHjo8qUBHYlNz3MTZlBbEo+2GNNtQQ+oF9DP714u67u+wvn97P2uy+/bzQAAAA=') format('woff2'),
    url('../fonts/iconfont.woff?t=1610188085969') format('woff'),
    url('../fonts/iconfont.ttf?t=1610188085969') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('../fonts/iconfont.svg?t=1610188085969#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-icon-test10:before {
    content: "\e651";
}

.icon-icon-test12:before {
    content: "\e653";
}

.icon-liebiao:before {
    content: "\e834";
}

.icon-list:before {
    content: "\e671";
}

.icon-vk:before {
    content: "\e702";
}

.icon-up16:before {
    content: "\e746";
}

.icon-up:before {
    content: "\e746";
}

.icon-bottom16:before {
    content: "\e747";
}

.icon-left16:before {
    content: "\e748";
}

.icon-right16:before {
    content: "\e749";
}

.icon-instagram1:before {
    content: "\e79d";
}

.icon-search5:before {
    content: "\e7b3";
}

.icon-top101:before {
    content: "\e7ee";
}

.icon-bottom10:before {
    content: "\e7ef";
}

.icon-left10:before {
    content: "\e7f0";
}

.icon-right10:before {
    content: "\e7f1";
}

.icon-sousuo2:before {
    content: "\e627";
}

.icon-download1:before {
    content: "\e7a0";
}

.icon-left2:before {
    content: "\e710";
}

.icon-right2:before {
    content: "\e711";
}

.icon-calendar3:before {
    content: "\e7e1";
}

.icon-download21:before {
    content: "\e61c";
}

.icon-facebook1:before {
    content: "\e620";
}

.icon-pinterest1:before {
    content: "\e8ab";
}

.icon-linkedin1:before {
    content: "\e648";
}

.icon-youtube1:before {
    content: "\e6d6";
}

.icon-twitter1:before {
    content: "\e607";
}

.icon-up7:before {
    content: "\e722";
}

.icon-bottom7:before {
    content: "\e723";
}

.icon-left7:before {
    content: "\e724";
}

.icon-right7:before {
    content: "\e725";
}

/*xun pan tijiao*/

.xunpanlb .table {
    margin-top: 30px;
}

.xunpanlb .table .thead {
    font-size: 0;
    letter-spacing: 0;
    border: 1px solid #dcdcdc;
}

.xunpanlb .table .thead p {
    text-align: center;
    padding: 0 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    background: #333;
    color: #fff
}

.xunpanlb .table .thead p:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody {
    font-size: 0;
    letter-spacing: 0;
}

.xunpanlb .table .tbody .tread {
    border: 1px solid #dcdcdc;
    border-top: 0;
}

.xunpanlb .table .tbody .tread .td {
    height: 100%;
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box
}

.xunpanlb .table .tbody .tread .td:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody .td img {
    max-width: 110px;
}

.xunpanlb .table .tbody .td a {
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.xunpanlb .table .tbody .td a:hover {
    color: #4678d8;
}

@media screen and (max-width: 520px) {
    .xunpanlb .table {
        border-top: 1px solid #dcdcdc;
    }

    .xunpanlb .table .thead {
        display: none;
    }

    .xunpanlb .table .tbody .td {
        width: 100% !important;
    }

    .xunpanlb .table .tbody .tread .td:nth-child(2) {
        border: 0 !important;
    }
}

.zanwu {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 30px;
    color: #999;
    font-size: 16px;
}

.disnone {
    display: none;
}


.at-resp-share-element .at4-share-count-container {
    text-decoration: none;
    float: right;
    padding-right: 15px;
    line-height: 25px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.listcart {
    margin-top: 30px;
    width: 100%;
    clear: both
}

.listcart a {
    display: inline-block;
    color: #fff;
    min-width: 160px;
    line-height: 40px;
    box-sizing: border-box;
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 10px;
    text-align: center;
    margin-bottom: 20px;
    background: #666
}

.listcart a:hover {
    background: #FFC300;
    color: #fff;
}

@media screen and (max-width: 640px) {
    .listcart a {
        width: 100%;
        display: block
    }
}


.tankaunga {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999999999
}

.tankaunga:before {
    content: "X";
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.tankaungn2 {
    position: fixed;
    left: 5%;
    top: 5%;
    right: 5%;
    bottom: 5%;
}

.tankaungn2 iframe, .tankaungn2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tankaungn2 iframe body {
    margin: 0px !important;
}

@media screen and (max-width: 767px) {
    .tankaungn2 {
        position: fixed;
        left: 5%;
        top: 10%;
        right: 5%;
        bottom: 10%;
    }
}

.slide iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slide video {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 101%;
    min-height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: none \9;
    display: block \9 \0;
}

@media screen and (max-width: 999px) {
    .slide .carousel-control {
        display: none;
    }

    .slide .slideItem {
        position: relative;
    }

    .slide video {
        object-position: inherit;
        object-fit: inherit;
        width: 100%;
        height: 100%;
        transform: translate(0, 0);
        left: 0;
        top: 0;
    }
}

.box-main .zhankai{font-size: 16px;line-height:30px;display: inline-block;vertical-align: top;color:#E7824A;position: relative;}
.przhan{ position:relative; overflow:hidden; max-height: 90px;}
.przhanh{ max-height:none !important; color: #666 !important;}
@media (min-width:1260px) and (max-width: 1459px) {
    .przhan{max-height: 90px;}
    .box-main .zhankai{font-size: 16px;line-height:30px;}
}
@media (min-width:992px) and (max-width: 1259px) {
    .przhan{max-height: 84px;}
    .box-main .zhankai{font-size: 16px;line-height:28px;}
}
@media (max-width: 991px) {
    .przhan{max-height: 78px;}
    .box-main .zhankai{font-size: 15px;line-height:26px;}
}
@media (max-width: 767px) {
    .przhan{max-height: 72px;}
    .box-main .zhankai{font-size: 14px;line-height:24px;}
}
