/*create by kgu, Inc.
 *kgu.reset v1.0
 * Copyright 2010-2017 kgu.cn(http://kgu.cn)
*/

/*reset*/
@charset "utf_8";

* {
    margin: 0;
    padding: 0;
    font-size: 14px;
    outline: none
}

body {
    font-family: "思源黑体", "微软雅黑", "Arial";
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

/*icon字体*/
@font-face {
    font-family: 'iconfont';
    src: url('font/iconfont.eot');
    src: url('font/iconfont.eot?#iefix') format('embedded-opentype'),
    url('font/iconfont.woff') format('woff'),
    url('font/iconfont.ttf') format('truetype'),
    url('font/iconfont.svg#iconfont') format('svg');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-appearance: none;
}

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

fieldset, img {
    border: 0;
}

ol, ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

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

abbr, acronym {
    border: 0;
}

/*去除谷歌核心浏览器的 video下载按钮*/
video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

img {
    max-width: 100%;
}

h2,
h3,
h4,
h5,
h6 {
    color: #333;
    font-weight: normal;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    color: #666;
}

/*清除浮动*/
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}

.img_box {
    position: relative;
    overflow: hidden;
}

em,
i,
b{
    font-weight: normal;
    font-style: normal;
}


a {
    opacity: 1;
    text-decoration: none;
    -webkit-transition: color 0.5s, all 0.5s;
    -moz-transition: color 0.5s, all 0.5s;
    -ms-transition: color 0.5s, all 0.5s;
    -o-transition: color 0.5s, all 0.5s;
    transition: color 0.5s, all 0.5s;
}

.overflow {
    overflow: hidden;
}

/* Slider css*/
.slick-slider {
    outline: none;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide:focus {
    outline: none;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    height: 40px;
    width: 40px;
    padding: 0;
    font-size: 0;
    line-height: 0;

    /*居中*/
    margin-top: -20px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    z-index: 1000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.slick-prev {
    left: 0;
}

.slick-prev:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    color: #000;
    font-size: 18px;
}

.slick-next {
    right: 0;
}

.slick-next:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    color: #000;
    font-size: 18px;
}

/*dots*/
.slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    font-size: 0;
    z-index: 999;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    *display: inline;
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    zoom: 1;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background-color: transparent;
}

.slick-dots li.slick-active {
    background-color: #ffffff;
}

.slick-dots li a {
    font-size: 0;
    color: transparent;
    outline: none;
}

/*normal*/
.pull_right {
    float: right;
}

.pull_left {
    float: left;
}

.relative {
    position: relative;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

/*reset end*/

/*frame*/
.container {
    width: 1220px;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}
.container_1920{
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
}
.container_1600{
    width: 1600px;
    margin: auto;
}
.container_1400{
    width: 1400px;
    margin: auto;
}
.container_1200 {
    width: 1200px;
    margin: auto;
}

.row {
    margin-right: -5px;
    margin-left: -5px;
    *margin-right: 0px;
    *margin-left: 0px;
}

.col_box {
    *margin-left: 5px;
    *margin-right: 5px;
}

.container:before,
.container:after,
.container_1200:before,
.container_1200:after,
.row:before,
.row:after {
    display: table;
    content: " ";

}

.container:after,
.container_1200:after,
.row:after {
    clear: both;
}

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

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col_xs_1, .col_sm_1, .col_md_1, .col_lg_1,
.col_xs_2, .col_sm_2, .col_md_2, .col_lg_2,
.col_xs_3, .col_sm_3, .col_md_3, .col_lg_3,
.col_xs_4, .col_sm_4, .col_md_4, .col_lg_4,
.col_xs_5, .col_sm_5, .col_md_5, .col_lg_5,
.col_xs_6, .col_sm_6, .col_md_6, .col_lg_6,
.col_xs_7, .col_sm_7, .col_md_7, .col_lg_7,
.col_xs_8, .col_sm_8, .col_md_8, .col_lg_8,
.col_xs_9, .col_sm_9, .col_md_9, .col_lg_9,
.col_xs_10, .col_sm_10, .col_md_10, .col_lg_10,
.col_xs_11, .col_sm_11, .col_md_11, .col_lg_11,
.col_xs_12, .col_sm_12, .col_md_12, .col_lg_12,
.col_xs_13, .col_sm_13, .col_md_13, .col_lg_13,
.col_xs_14, .col_sm_14, .col_md_14, .col_lg_14,
.col_xs_15, .col_sm_15, .col_md_15, .col_lg_15,
.col_xs_16, .col_sm_16, .col_md_16, .col_lg_16,
.col_xs_17, .col_sm_17, .col_md_17, .col_lg_17,
.col_xs_18, .col_sm_18, .col_md_18, .col_lg_18,
.col_xs_19, .col_sm_19, .col_md_19, .col_lg_19,
.col_xs_20, .col_sm_20, .col_md_20, .col_lg_20,
.col_xs_21, .col_sm_21, .col_md_21, .col_lg_21,
.col_xs_22, .col_sm_22, .col_md_22, .col_lg_22,
.col_xs_23, .col_sm_23, .col_md_23, .col_lg_23,
.col_xs_24, .col_sm_24, .col_md_24, .col_lg_24,
.col_lg_1_5,.col_lg_1_7, .col_lg_1_9, .col_lg_1_10
{
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
    *padding-right: 0px;
    *padding-left: 0px;
}

.col_lg_1, .col_lg_2, .col_lg_3, .col_lg_4, .col_lg_5, .col_lg_6, .col_lg_7, .col_lg_8, .col_lg_9, .col_lg_10, .col_lg_11, .col_lg_12, .col_lg_13, .col_lg_14, .col_lg_15, .col_lg_16, .col_lg_17, .col_lg_18, .col_lg_19, .col_lg_20, .col_lg_21, .col_lg_22, .col_lg_23, .col_lg_24, .col_lg_1_5,.col_lg_1_7,.col_lg_1_9, .col_lg_1_10{
    float: left;
}

.col_lg_24 {
    width: 100%;
}

.col_lg_23 {
    width: 95.83333333%;
}

.col_lg_22 {
    width: 91.66666667%;
}

.col_lg_21 {
    width: 87.5%;
}

.col_lg_20 {
    width: 83.33333333%;
}

.col_lg_19 {
    width: 79.16666667%;
}

.col_lg_18 {
    width: 75%;
}

.col_lg_17 {
    width: 70.83333333%;
}

.col_lg_16 {
    width: 66.66666667%;
}

.col_lg_15 {
    width: 62.5%;
}

.col_lg_14 {
    width: 58.33333333%;
}

.col_lg_13 {
    width: 54.16666667%;
}

.col_lg_12 {
    width: 50%;
}

.col_lg_11 {
    width: 45.83333333%;
}

.col_lg_10 {
    width: 41.66666667%;
}

.col_lg_9 {
    width: 37.5%;
}

.col_lg_8 {
    width: 33.33333333%;
}

.col_lg_7 {
    width: 29.16666667%;
}

.col_lg_6 {
    width: 25%;
}

.col_lg_5 {
    width: 20.83333333%;
}

.col_lg_4 {
    width: 16.66666667%;
}

.col_lg_3 {
    width: 12.5%;
}

.col_lg_2 {
    width: 8.33333333%;
}

.col_lg_1 {
    width: 4.16666667%;
}
.col_lg_1_5 {
    width: 20%;
}
.col_lg_1_7{
    width: 14.2857143%;
}
.col_lg_1_9 {
    width: 11.11111%;
}
.col_lg_1_10 {
    width: 10%;
}
/*列排序*/
.col_lg_pull_24 {
    right: 100%;
}

.col_lg_pull_23 {
    width: 95.83333333%;
}

.col_lg_pull_22 {
    right: 91.66666667%;
}

.col_lg_pull_21 {
    right: 87.5%;
}

.col_lg_pull_20 {
    right: 83.33333333%;
}

.col_lg_pull_19 {
    right: 79.16666667%;
}

.col_lg_pull_18 {
    right: 75%;
}

.col_lg_pull_17 {
    right: 70.83333333%;
}

.col_lg_pull_16 {
    right: 66.66666667%;
}

.col_lg_pull_15 {
    right: 62.5%;
}

.col_lg_pull_14 {
    right: 58.33333333%;
}

.col_lg_pull_13 {
    right: 54.16666667%;
}

.col_lg_pull_12 {
    right: 50%;
}

.col_lg_pull_11 {
    right: 45.83333333%;
}

.col_lg_pull_10 {
    right: 41.66666667%;
}

.col_lg_pull_9 {
    right: 37.5%;
}

.col_lg_pull_8 {
    right: 33.33333333%;
}

.col_lg_pull_7 {
    right: 29.16666667%;
}

.col_lg_pull_6 {
    right: 25%;
}

.col_lg_pull_5 {
    right: 20.83333333%;
}

.col_lg_pull_4 {
    right: 16.66666667%;
}

.col_lg_pull_3 {
    right: 12.5%;
}

.col_lg_pull_2 {
    right: 8.33333333%;
}

.col_lg_pull_1 {
    right: 4.16666667%;
}

.col_lg_pull_0 {
    right: auto;
}

.col_lg_push_24 {
    left: 100%;
}

.col_lg_push_23 {
    left: 95.83333333%;
}

.col_lg_push_22 {
    left: 91.66666667%;
}

.col_lg_push_21 {
    left: 87.5%;
}

.col_lg_push_20 {
    left: 83.33333333%;
}

.col_lg_push_19 {
    left: 79.16666667%;
}

.col_lg_push_18 {
    left: 75%;
}

.col_lg_push_17 {
    left: 70.83333333%;
}

.col_lg_push_16 {
    left: 66.66666667%;
}

.col_lg_push_15 {
    left: 62.5%;
}

.col_lg_push_14 {
    left: 58.33333333%;
}

.col_lg_push_13 {
    left: 54.16666667%;
}

.col_lg_push_12 {
    left: 50%;
}

.col_lg_push_11 {
    left: 45.83333333%;
}

.col_lg_push_10 {
    left: 41.66666667%;
}

.col_lg_push_9 {
    left: 37.5%;
}

.col_lg_push_8 {
    left: 33.33333333%;
}

.col_lg_push_7 {
    left: 29.16666667%;
}

.col_lg_push_6 {
    left: 25%;
}

.col_lg_push_5 {
    left: 20.83333333%;
}

.col_lg_push_4 {
    left: 16.66666667%;
}

.col_lg_push_3 {
    left: 12.5%;
}

.col_lg_push_2 {
    left: 8.33333333%;
}

.col_lg_push_1 {
    left: 4.16666667%;
}

.col_lg_push_0 {
    left: auto;
}

.col_lg_offset_24 {
    margin-left: 100%;
}

.col_lg_offset_23 {
    margin-left: 95.83333333%;
}

.col_lg_offset_22 {
    margin-left: 91.66666667%;
}

.col_lg_offset_21 {
    margin-left: 87.5%;
}

.col_lg_offset_20 {
    margin-left: 83.33333333%;
}

.col_lg_offset_19 {
    margin-left: 79.16666667%;
}

.col_lg_offset_18 {
    margin-left: 75%;
}

.col_lg_offset_17 {
    margin-left: 70.83333333%;
}

.col_lg_offset_16 {
    margin-left: 66.66666667%;
}

.col_lg_offset_15 {
    margin-left: 62.5%;
}

.col_lg_offset_14 {
    margin-left: 58.33333333%;
}

.col_lg_offset_13 {
    margin-left: 54.16666667%;
}

.col_lg_offset_12 {
    margin-left: 50%;
}

.col_lg_offset_11 {
    margin-left: 45.83333333%;
}

.col_lg_offset_10 {
    margin-left: 41.66666667%;
}

.col_lg_offset_9 {
    margin-left: 37.5%;
}

.col_lg_offset_8 {
    margin-left: 33.33333333%;
}

.col_lg_offset_7 {
    margin-left: 29.16666667%;
}

.col_lg_offset_6 {
    margin-left: 25%;
}

.col_lg_offset_5 {
    margin-left: 20.83333333%;
}

.col_lg_offset_4 {
    margin-left: 16.66666667%;
}

.col_lg_offset_3 {
    margin-left: 12.5%;
}

.col_lg_offset_2 {
    margin-left: 8.33333333%;
}

.col_lg_offset_1 {
    margin-left: 4.16666667%;
}

/*frame end*/

/*form*/
.inp {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.inp_bordered {
    border: 1px solid #ccc;
    position: relative;
    border-radius: 2px;
}

.inp_bordered .inp_control {
    border: none;
}

.inp_bordered .label_control {
    position: absolute;
    top: 0;
    left: 8px;
}

.inp_bordered.active .label_control {
    display: none;
}

.inp_control {
    display: block;
    width: 100%;
    height: 34px;
    *height: 18px;
    padding: 7px 8px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

}
select::-ms-expand { display: none; }
textarea.inp_control {
    height: 100px;
}

.label_control {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    zoom: 1;
}

.inp .tips {
    position: absolute;
    white-space: nowrap;
    color: #f1433c;
    text-align: center;
    border-radius: 4px;
    top: 0px;
    display: none;
    font-size: 14px;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    right: 0;
}

.btn {
    display: inline-block;
    *display: inline;
    zoom: 1;
    padding: 6px 25px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    background-color: #ccc;
    color: #fff;
    font-family: "微软雅黑", "Arial";
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

/*分享按钮*/
.bdsharebuttonbox {
    font-size: 0;
    line-height: 0;
}

.bdsharebuttonbox a {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    margin-right: 5px;
    zoom: 1;
}

.bdsharebuttonbox i {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    line-height: 1;
    color: #999;
    font-size: 25px;
    z-index: -1;
}

/*头部*/
.header {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    z-index: 999999;
}

.header .container_1200 {
    position: relative;
    z-index: 2;
}

/*logo*/
.header .logo {
    margin: 18px 0;
    font-size: 0;
    line-height: 0;
}

.header .logo h1 {
    font-size: 0;
}

/*搜索框*/
.header .header_search {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    height: 48px;
    zoom: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header .header_search .inp {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    position: relative;
    padding-right: 36px;
    margin: 6px 0;
    width: 300px;
    zoom: 1;
}

.header .header_search .inp input {
    *height: 20px;
}

.header .btn_search {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: transparent;
    outline: none;
    border: none;
}

.header .btn_search .iconfont {
    font-size: 22px;
    color: #333;
}

/*导航*/
.header_right {
    text-align: right;
}

.nav_list {
    text-align: center;
    font-size: 0;
    line-height: 0;
    position: relative;
}

.nav_list > li {
     display: -moz-inline-stack;
     display: inline-block;
    *
     display: inline;
     vertical-align: top;
     zoom: 1;
     text-align: center;
}

.nav_list > li > a {
    display: block;
    padding: 0 35px;
    color: #333;
    font-size: 16px;
}

.nav_list > li > a > span {
    display: block;
    padding: 37px 0;
    line-height: 1;
    color: #333;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*stick*/
.header.is_stuck .header_search {
    height: 0;
    overflow: hidden;
    display: block;
}

.header.is_stuck .nav_list > li > a > span {
    padding: 40px 0 34px;
}

/*nav_normal*/

.nav_normal > li {
    position: relative;
}

.nav_normal > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    z-index: 1;
}

.nav_normal .dropdown_menu li {
    width: 100%;
}

.nav_normal .dropdown_menu li a {
    display: block;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #f5f5f5;
    background: #ffffff;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}
.nav_normal .dropdown_menu li:last-child a{
    border-bottom: 0;
}
.nav_normal .dropdown_menu li a:hover{
    color: #0075c2;
}

.nav_normal .nav_line {
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    height: 3px;
    width: 0px;
    background: #0075c2;
    border-radius: 1px;
    line-height: 0;
    font-size: 0;
}

/*nav_tile*/
.droplist_tile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1;
    border-top: 1px solid #f0f0f0;
}

.drop_tile {
    display: none;
}

.nav_tile .nav_line {
    position: absolute;
    left: 0;
    bottom: -1px;
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    height: 3px;
    width: 0px;
    background: #dd0000;
    border-radius: 1px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*banner*/
.banner {
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner .banner_box {
    position: relative;
    z-index: 1;
}

.banner .banner_item {
    padding-top: 40%;
    width: 100%;
    font-size: 0;
    line-height: 0;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.banner_full,
.banner_full .banner_box,
.banner_full .banner_slick,
.banner_full .slick-list,
.banner_full .slick-track {
    padding-top: 0;
    height: 100%;
}

.banner_full .banner_item {
    width: 100%;
    font-size: 0;
    line-height: 0;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

/*新闻列表*/
.news .img_box {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.news .img_box img {
    width: 100%;
}

.news .news_describe {
    margin-right: 10px;
}

.news .news_describe h5 {
    font-size: 22px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news .news_describe p {
    height: 95px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    overflow: hidden;
}

.news .news_date {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 12px;
    font-weight: normal;
    color: #999;
}

.news .news_date span {
    line-height: 1.2;
    font-size: 12px;
    font-weight: normal;
    margin-right: 5px;
}

.news .news_link {
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    padding: 8px 25px;
    background: #ccc;
    line-height: 1;
    color: #fff;
    font-style: normal;
}


.news_item {
    font-size: 0;
    line-height: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
    zoom: 1
}

/*列表式*/
.news_list .img_box {
    display: block;
    width: 30%;
    margin-right: 30px;
    float: left;
    overflow: hidden;
}

/*平铺式*/
.news_tile .news_item {
    background: #f5f5f5;
    border: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.news_tile .news_date_hide {
    position: absolute;
    bottom: -40px;
    height: 40px;
    width: 100%;
    text-align: left;
    line-height: 40px;
    font-size: 12px;
    text-indent: 15px;
    color: #fff;
    -webkit-transition: bottom 0.5s;
    -moz-transition: bottom 0.5s;
    -ms-transition: bottom 0.5s;
    -o-transition: bottom 0.5s;
    transition: bottom 0.5s;
    background: rgb(0, 0, 0); /*The Fallback color,这里也可以使用一张图片来代替*/
    background: rgba(0, 0, 0, 0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#80000000,endColorstr=#80000000)"; /*Filter for IE8 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr=#80000000, endColorstr=#80000000); /*Filter for older IEs */
}

.news_tile .news_item:hover {
    webkit-box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
    -moz-box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
    box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
    transform: translate3d(0, -1px, 0);
}

.news_tile .news_item:hover .news_date_hide {
    bottom: 0;
}

.news_tile .news_describe {
    margin: 10px 20px;
}

.news_tile .news_describe h5 {
    font-size: 16px;

}

.news_tile .news_describe p {
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
}

.news_tile {
    font-size: 0;
    line-height: 0;
}

.news_tile > div {
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: top;
    float: none;
    zoom: 1;
}

/*分页*/
.page {
    text-align: left;
    margin-bottom: 100px;
    border-left: 1px solid #e5e5e5;
    font-size: 0;
}

.page a {
    display: inline-block;
    *display: inline;
    height: 38px;
    width: 38px;
    background-color: #fff;
    line-height: 38px;
    border: 1px solid #e5e5e5;
    border-left: none;
    font-size: 12px;
    text-align: center;
    color: #666666;
    -webkit-transition: .3s;
    transition: .3s;
    zoom: 1;
}

.page a.on, .page a:hover {
    background-color: #af251c;
    color: #fff;
}

.page .prev, .page .next {
    font-weight: bold;
}

.page span {
    float: right;
    line-height: 38px;
    font-size: 14px;
    color: #666;
}

.m_page {
    display: none;
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    border-left: none;
    line-height: 36px;
    font-size: 14px;
    margin-bottom: 30px;
}

.m_page a {
    float: left;
    width: 33.333333%;
    border-left: 1px solid #ddd;
    text-align: center;
    background: #fff;
    height: 100%;
    color: #666;
}

.search_result h2 {
    font-size: 30px;
    line-height: 80px;
    color: #333;
    font-weight: 500;
}

.search_result h2 span {
    font-size: 30px;
    line-height: 90px;
    color: #af251c;
    font-weight: 500;
}

.search_result .result_list {
    padding: 20px 0;
    margin-bottom: 30px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.search_result .result_list li a {
    display: block;
    font-size: 14px;
    line-height: 3;
    color: #999;
}

.search_result .result_list li a:hover,
.search_result .result_list li a:hover .date,
.search_result .result_list li a:hover .clumn {
    color: #dd0000;
}

.search_result .result_list .date {
    font-size: 14px;
    line-height: 3;
    color: #cccccc;
    float: right;
}

.search_result .result_list .clumn {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.m_page_pop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: #fff;
    overflow: auto;
    z-index: 800000;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.m_page_pop a {
    display: block;
    height: 40px;
    border-bottom: 1px solid #ddd;
    padding: 0 40px;
    line-height: 40px;
    text-align: left;
    font-size: 14px;
    color: #888;
}

.m_page_pop a.on {
    color: #af251c;
}

.show_page .m_page_pop {
    height: 100%;
    padding-top: 78px;
}

/*招聘列表*/
.recruit_list h3,
.recruit_list h4 {
    font-size: 0;
    line-height: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

.recruit_list li span {
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    width: 20%;
    vertical-align: top;
    cursor: pointer;
    zoom: 1;
}

.recruit_list li span b {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-right: 1px solid #ddd;
    font-size: 16px;
    color: #666;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.recruit_list li span b.recruit_show:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 45px;
    content: "＋";
    color: #666;
    font-size: 30px;
    font-weight: bold;
}

.recruit_list li .on span b.recruit_show:after {
    content: "━";
    font-size: 24px;
}

.recruit_list li.recruit_h span b.recruit_show:after {
    display: none;
}

.recruit_list .recruit_h span {
    background: #00b4ae;
    border-bottom: none;
    cursor: auto;
}

.recruit_list .recruit_h span b {
    color: #fff;
    font-size: 18px;
}

.recruit_list li span b.recruit_show {
    border: none;
}

.recruit_txt {
    display: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    line-height: 2;
    color: #666;
    overflow: hidden;
}

.recruit_txt .recruit_box {
    margin: 20px 30px;
}

.recruit_txt h5 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 2;
    font-weight: normal;
    color: #666;
}

.recruit_txt a {
    font-size: 14px;
    line-height: 2;
    font-weight: normal;
    color: #666;
}

.recruit_txt a:hover {
    color: #00b4ae;
}

/*手风琴1*/
.accordion {
    overflow: hidden;
    width: 100%;
    font-size: 0;

}

.accordion .item {
    /*float: left;*/
    width: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.accordion .item .mask_b {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}

.accordion .item.active .mask_b {
    background: transparent;
    display: none;
}

.accordion .item h4{
    color: #fff;
    width: 30px;
    margin-left: 15px;
    display: block;
    font: 30px/30px Microsoft Yahei;
    position: relative;
    padding: 30px 0 0 0;
}


/*瀑布流*/
/*.waterfall_box {
    width: 1220px;
    margin: auto;
}*/

/*效果*/
.shadow {
    -webkit-box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
    -moz-box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
    box-shadow: 3px 3px 10px -4px rgba(0, 0, 0, .3);
}

.img_scale .img_box img,
.img_scale.img_box img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.img_scale:hover .img_box img,
.img_scale:hover.img_box img { /*图片放大*/
    transform: scale(1.25, 1.25);
    -ms-transform: scale(1.25, 1.25); /* IE 9 */
    -webkit-transform: scale(1.25, 1.25); /* Safari 和 Chrome */
    -o-transform: scale(1.25, 1.25); /* Opera */
    -moz-transform: scale(1.25, 1.25); /* Firefox */
}

/*inline_bloack*/
.inline_block {
     display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

/*pc隐藏模块*/
.m_header,
.m_nav_fixed {
    display: none;
}

.body_mask {
    display: none;
    z-index: 99;
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    visibility: hidden;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    left: 0;
    top: 0;
}

.stopscroll {
    height: 100%;
    overflow: hidden;
}

.stopscroll .body_mask {
    display: block;
    opacity: 0.7;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)';
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    visibility: visible;
}

/*other*/
/*fit 百度地图*/
#map {
    width: 100%;
    height: 500px;
}

#map img,
#dituContent img {
    max-width: initial;
}

#dituContent .pop .center,
#dituContent .pop .bottom {
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
}

#dituContent .BMap_Marker.BMap_noprint {
    background: url("../images/reset/us_cursor.gif") no-repeat -46px -21px !important;
    overflow: hidden;
}

.iw_poi_title {
    color: #CC5522;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    padding-right: 13px;
    white-space: nowrap
}

.iw_poi_content {
    font: 12px "微软雅黑", sans-serif;
    overflow: visible;
    padding-top: 4px;
    white-space: -moz-pre-wrap;
    word-wrap: break-word;
}

/*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading {
    background-image: url('../images/reset/fancybox_sprite.png');
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    filter: Alpha(opacity=80);
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url('../images/reset/fancybox_loading.gif') center center no-repeat;
}

.fancybox-next, .fancybox-prev {
    position: absolute;
    bottom: 0px;
    top: 50%;
    margin-top: -20px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    outline: none;
    z-index: 1102;
    background: #f0f0f0;
}

.fancybox-prev {
    left: 0px;
    /*background: url('../images/reset/gallery_arrow.png') no-repeat 0px -50px;*/
}

.fancybox-prev:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    content: "←";
    color: #000;
    font-size: 18px;
    text-align: center;
}

.fancybox-next {
    right: 0px;
    /*background: url('../images/reset/gallery_arrow.png') 50px -50px;*/
}

.fancybox-next:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 40px;
    content: "→";
    color: #000;
    font-size: 18px;
    text-align: center;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    /*overflow: hidden;*/
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url('../images/reset/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
}

.fancybox-bg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.7;
    filter: Alpha(opacity=70);
    position: fixed;
    bottom: 0;
    right: 0;
    overflow: auto;
    z-index: 8000;
}

/* Title helper */

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: -30px;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent; /* Fallback for web browsers that doesn't support RGBa */
    text-shadow: 0 1px 2px #222;
    font-weight: normal;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    white-space: nowrap;
    margin-top: 40px;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8);
}

.magnifierRentgen {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    width: 100%
}

.magnifierRentgen .magnifier-loupe {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border: #f0f0f0 4px solid;
    box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 8px;
    cursor: crosshair;;
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    display: none;
}

.fancybox-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 8040;
    background: #f9f9f9;
}

.fancybox-close:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 35px;
    content: "×";
    color: #000;
    font-size: 35px;
    text-align: center;
}

/**
 * fullPage 2.4.6
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 * 全屏滚动
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */

/*html, body {*/
    /*margin: 0;*/
    /*padding: 0;*/
    /*overflow: hidden;*/

    /*!*Avoid flicker on slides transitions for mobile phones #336 *!*/
    /*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
/*}*/

#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

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

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    overflow: scroll;

}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}

#fp-nav.right {
    right: 17px;
}

#fp-nav.left {
    left: 17px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    background: #333;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}

#fp-nav ul li:hover .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}
/*************** SCROLLBAR BASE CSS ***************/

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}

.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}

.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}
/*************** SCROLLBAR RAIL ***************/

.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-rail > .scroll-element {
    background-color: #3fabba;
}

.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #ccc;
    background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #ccc;
    background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 6px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #f6f6f6;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* scrollbar height/width & offset from container borders */

.scrollbar-rail > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible { margin-top: 17px; top: -17px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 1px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar { left: 3px; min-height: 10px; width: 4px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer { height: 15px; left: 5px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size { height: 2px; left: -10px; top: 5px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer { top: 5px; width: 12px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size { left: 5px; top: -10px; width: 2px; }

/* update scrollbar offset if both scrolls are visible */

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -25px; }

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -25px; }

/**
* Swiper 4.0.5
* Most modern mobile touch slider and framework with hardware accelerated transitions
* http://www.idangero.us/swiper/
*
* Copyright 2014-2017 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: November 7, 2017
*/
.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-invisible-blank-slide{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s top,.2s -webkit-transform;transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;transition:.2s transform,.2s top;transition:.2s transform,.2s top,.2s -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s left,.2s -webkit-transform;transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;transition:.2s transform,.2s left;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;transition:.2s transform,.2s right;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}