@charset "utf-8";

/* ========================================
   全站统一公共样式 - style.css
   包含：标签重置、字体、头部导航、底部、
   外容器、列系统、按钮、回到顶部、
   搜索弹窗、侧边栏、留言弹窗、面包屑、
   分页、Swiper、字体定义、动画
   所有页面共用此文件，仅加载一次
   ======================================== */

/* --- 标签重置 --- */
body, html, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, form, object, iframe, blockquote, pre, a, abbr, address, code, img, fieldset, form, label, figure {
    margin: 0;
    padding: 0;
}

body, html, input, button, textarea {
    color: #333;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body {
    font-size: 14px;
    background: #f7f7f7;
    width: 100%;
    min-width: 1200px;
}

article, aside, figcaption, figure, footer, header, main, nav, section {
    display: block;
}

h1 { font-size: 20px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
h4, h5 { font-size: 14px; }

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
}

li { list-style: none; }

i, em { font-style: normal; }

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:focus { outline: none; }
a:hover { color: #d79d49; text-decoration: none; }

input[type="text"]:focus { outline: none; }
input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; }
input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

hr {
    height: 1px;
    border: none;
    border-top: 1px dashed #c1c1c1;
    margin: 15px 0;
}

a:active, select, input, textarea {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: 0 !important;
}

* { outline: 0; }

/* --- 全局 box-sizing --- */
.layout, .container, .web_head, .web_footer, .web_main, .page_main,
.nav_wrap, .head_nav, .head_nav li, .head_nav li a,
.foot_items, .foot_item, .foot_item .title, .foot_item_bd,
.foot_bar, .foot_bar .layout,
.sys_row, .sys_col, .sys_col_inner,
.pagination, .pagebar,
.inquiry-pop-bd, .inquiry-pop,
.content-wrap.form .ch_form_wrap,
.content-wrap.form .ch_form_wrap ul li,
.content-wrap.form .ch_form_wrap ul input,
.content-wrap.form .ch_form_wrap ul textarea,
.web-search, .head-search, .head-search form {
    box-sizing: border-box;
}

input::-webkit-input-placeholder { color: #aaa; }
input::-moz-placeholder { color: #aaa; }
input:-ms-input-placeholder { color: #aaa; }
input:-moz-placeholder { color: #aaa; }

/* --- 清除浮动 --- */
.clearfix:after, .layout:after, .web_main:after, .page_main:after, .nav_wrap .head_nav:after, .foot_items:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}
.clear { clear: both; }

/* --- 外容器 --- */
.container {
    width: 1500px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.layout {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.page_main .layout { width: 1300px; }

.hide { display: none; }

/* --- 公共列系统 --- */
.sys_fl { float: left !important; }
.sys_fr { float: right !important; }
.sys_row { margin: 0 -10px; }
.sys_col { float: left; }
.sys_col_inner { margin: 0 10px; }
.sys_col_12 { width: 100%; }
.sys_col_11 { width: 91.66666667%; }
.sys_col_10 { width: 83.33333333%; }
.sys_col_9 { width: 75%; }
.sys_col_8 { width: 66.66666667%; }
.sys_col_7 { width: 58.33333333%; }
.sys_col_6 { width: 50%; }
.sys_col_5 { width: 41.66666667%; }
.sys_col_4 { width: 33.33333333%; }
.sys_col_3 { width: 25%; }
.sys_col_2 { width: 16.66666667%; }
.sys_col_1 { width: 8.33333333%; }

/* --- 公共按钮 --- */
.sys_btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #6828a5;
    color: #6828a5;
    text-transform: uppercase;
    border-radius: 30px;
    position: relative;
    transform: scale(1);
    overflow: hidden;
    letter-spacing: 0.5px;
}
.sys_btn:hover {
    background-color: #6828a5;
    color: #fff;
    padding-right: 35px;
}
.sys_btn:after {
    font-family: 'fontawesome';
    content: '\f0a9';
    padding-left: 10px;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 8px;
    transition: all 0.3s ease;
}
.sys_btn:hover:after {
    opacity: 1;
    right: 15px;
}

/* --- 通用过渡 --- */
.head_nav li, .head_nav li a, .gotop {
    transition: all .3s ease-in-out;
}

/* --- 回到顶部 --- */
.gotop {
    position: fixed;
    text-align: center;
    right: 50px;
    bottom: 50px;
    color: #fff;
    background: #000;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    border-radius: 50%;
    height: 50px;
    line-height: 50px;
    width: 50px;
    z-index: 99999;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(50%) scale(0.8);
}
.gotop em { display: none; }
.gotop:before {
    content: "\f106";
    font: 24px/50px 'FontAwesome';
}
.gotop:hover {
    transform: translateY(-10px);
    background-color: #d79d49;
    color: #fff;
}
.gotop.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ========================================
   头部导航
   ======================================== */
.web_head .head_top {
    position: relative;
    padding: 65px 0;
}
.web_head .logo {
    display: block;
    width: 300px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 40px;
    margin-left: -150px;
}
.web_head .logo img {
    height: 80px;
    vertical-align: middle;
}

.nav_wrap {
    position: relative;
    height: 65px;
    text-align: center;
    box-sizing: content-box;
    line-height: 65px;
}
.nav_wrap .head_nav {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.nav_wrap .head_nav li {
    display: inline-block;
    position: relative;
    font-size: 16px;
    vertical-align: middle;
}
.nav_wrap .head_nav li li {
    display: block;
    text-align: left;
    float: none;
}
.nav_wrap .head_nav li a {
    position: relative;
    display: block;
    line-height: 65px;
    padding: 0 20px;
}
.nav_wrap .head_nav li li a {
    line-height: 1.8;
    padding: 3px 25px;
    color: #333;
}
.nav_wrap .head_nav li li a:hover { color: #d79d49; }
.nav_wrap .head_nav li li a em {
    display: inline-block;
    width: 100%;
}
.nav_wrap .head_nav li ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 160px;
    padding: 10px 0;
    z-index: 999;
    background: #fff;
    transform: scale3d(0.9, 0.9, 1);
    border: 1px solid rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    box-sizing: content-box;
    transition: all .5s ease-in-out;
}
.nav_wrap .head_nav li li ul {
    top: 0;
    left: 100%;
}
.nav_wrap .head_nav li:hover > ul {
    transform: scale3d(1, 1, 1);
    opacity: 1;
    visibility: visible;
}
.nav_wrap .head_nav li.nav-current > a, .head_nav li:hover > a {
    color: #8A48C7;
}
.nav_wrap .head_nav li a b {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    transition: all 0.3s ease;
}
.nav_wrap .head_nav li a b:after {
    font-family: 'fontawesome';
    content: "\f107";
    font-size: 14px;
}
.nav_wrap .head_nav li li a b:after { content: "\f105"; }
.nav_wrap .head_nav li li a b {
    position: absolute;
    right: 10px;
    top: 0;
    margin-top: 3px;
    color: #333;
}
.nav_wrap .head_nav > li > a {
    height: 65px;
    overflow: hidden;
    font-size: 16px;
}
.nav_wrap .head_nav li:hover > a, .nav_wrap .head_nav li:hover > a b {
    color: #6828a5;
}
.nav_wrap .head_nav > li:hover > a > b {
    transform: rotate(180deg);
}

/* 固定导航 */
.fixed-nav .nav_wrap {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0 1px 3px #e5e5e5;
    transition: none;
    transform: translateY(-100%);
    opacity: 0;
}
.fixed-nav-active .nav_wrap {
    transform: none;
    opacity: 1;
    transition: all 0.3s ease;
}
.fixed-nav .nav_wrap .head_nav li li a { line-height: 1.8; }

.web_head .btn--search {
    display: inline-block;
    width: 55px;
    height: 35px;
    text-align: center;
    background: url(../images/search_btn.png) no-repeat center center;
    cursor: pointer;
    vertical-align: middle;
    border-left: 1px solid #e5e5e5;
}

/* ========================================
   语言切换器
   ======================================== */
.language {
    display: inline-block;
    vertical-align: middle;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    position: relative;
}
.language > a {
    display: inline-block;
    line-height: 65px;
    font-size: 14px;
    color: #333;
    padding-right: 16px;
    padding-left: 26px;
    position: relative;
    text-decoration: none;
    background: url(../images/qiu1.png) no-repeat left center;
    background-size: 17px 17px;
}
.language > a > span {
    display: inline-block;
    vertical-align: middle;
}
.language > a::after {
    content: "";
    width: 12px;
    max-height: 6px;
    background: url(../images/jt2s.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .2s;
}
.language > a:hover {
    background: url(../images/qiu2.png) no-repeat left center;
    background-size: 17px 17px;
    color: #0058a8;
}
.language > a:hover::after {
    content: "";
    background: url(../images/jt2.png) no-repeat center;
    background-size: 100% 100%;
    transition: all .2s;
}
.lang-dow {
    position: absolute;
    top: 97%;
    right: 0;
    min-width: 140px;
    background-color: #fff;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.2);
    display: none;
    transition: all .4s;
    z-index: 100;
}
.lang-dow > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lang-dow > ul > li {
    line-height: 60px;
    border-bottom: 1px solid #e5e5e5;
}
.lang-dow > ul > li:last-child {
    border-bottom: none;
}
.lang-dow > ul > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    position: relative;
}
.lang-dow > ul > li > a::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 12px;
    background: url(../images/jt1.png) no-repeat center;
    background-size: 7px 12px;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}
.lang-dow > ul > li > a:hover {
    color: #0058a8;
}

/* ========================================
   底部样式
   ======================================== */
.company_subscribe {
    margin: 0 -60px;
    background-color: #000;
    padding: 40px 0;
}
.company_subscribe .title {
    float: left;
    font-size: 18px;
    padding-top: 8px;
    color: #fff;
}
.company_subscribe .title a { color: #fff; }
.company_subscribe .button {
    float: right;
    line-height: 25px;
    padding: 10px 20px;
    background-color: #8A48C7;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: all .3s ease-in-out;
}
.company_subscribe .button:hover {
    background-color: #fff;
    color: #333;
}

.web_footer {
    position: relative;
    background: #fafafa;
    margin: 100px 0 0;
}
.foot_items {
    padding: 20px 0;
}
.foot_items, .foot_items a { color: #888; }
.foot_items a:hover { color: #000; }

.foot_item {
    width: 23%;
    float: left;
    padding: 30px 0;
}
.foot_item .title {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    color: #333;
}
.foot_item .title a { color: #333; }
.foot_item.foot_item_info { width: 34%; }
.foot_item.foot_item_contact { width: 20%; }
.foot_item.foot_item_info .foot_logo { display: block; }
.foot_item.foot_item_info .foot_logo img {
    max-width: 100%;
    height: auto;
}
.foot_item.foot_item_info .text {
    display: block;
    padding-top: 15px;
    padding-right: 25%;
}
.foot_item.foot_item_product li {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
}
.foot_item a { transition: all .3s ease-in-out; }
.foot_item.foot_item_contact address li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    line-height: 24px;
    font-style: normal;
}
.foot_item.foot_item_contact address li:before {
    content: "";
    width: 21px;
    height: 21px;
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../images/contact_ico.png);
    background-repeat: no-repeat;
}
.foot_item.foot_item_contact address li.foot_addr:before { background-position: 0 0; }
.foot_item.foot_item_contact address li.foot_phone:before { background-position: 0 -21px; }
.foot_item.foot_item_contact address li.foot_email:before { background-position: 0 -42px; }
.foot_item.foot_item_contact address li.foot_map:before { background-position: 0 -63px; }

.foot_bar { text-align: center; }
.foot_bar, .foot_bar a { color: #888; }
.foot_bar .layout {
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

/* ========================================
   搜索弹窗
   ======================================== */
.web-search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.js .web-search {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
}
.js .web-search::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.web-search .btn--search-close {
    font-size: 2em;
    position: absolute;
    top: 1.25em;
    right: 1.25em;
    display: none;
    background: url(../images/search_btn_close.png) no-repeat center center;
    background-size: 35% auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 100%;
    border: 3px solid #fff;
}
.js .btn--search-close { display: block; }
.web-search .search-ipt {
    font-family: inherit;
    line-height: 1;
    display: inline-block;
    box-sizing: border-box;
    width: 75%;
    padding: 0.05em 0;
    color: #fff;
    border: 0;
    border-bottom: 3px solid;
    background: transparent;
    border-radius: 0;
    -webkit-appearance: none;
    font-size: 20px;
    line-height: 10px;
}
.web-search .search-ipt::-webkit-input-placeholder { color: #4a319e; }
.web-search .search-ipt::-moz-placeholder { opacity: 1; color: #4a319e; }
.web-search .search-ipt:-ms-input-placeholder { color: #4a319e; }
.web-search .search-ipt::-webkit-search-cancel-button, .web-search .search-ipt::-webkit-search-decoration {
    -webkit-appearance: none;
}
.web-search .search-ipt::-ms-clear { display: none; }
.web-search .search-attr {
    font-size: 90%;
    display: block;
    width: 75%;
    margin: 0 auto;
    padding: 0.85em 0;
    text-align: right;
    color: #fff;
}

.js .container {
    transition: all .5s ease-in-out;
}
.js .main-wrap--move {
    transform: scale3d(0.7, 0.7, 1);
    height: 100vh;
}
.js .main-wrap--move .btn--search { pointer-events: none; opacity: 0; }
.js .web-search { pointer-events: none; }
.js .search--open { pointer-events: auto; opacity: 1; visibility: visible; }
.js .web-search::before {
    opacity: 0;
    transition: opacity 0.5s;
}
.js .search--open::before { opacity: 1; }
.web-search .btn--search-close { opacity: 0; transition: opacity 0.5s; }
.search--open .btn--search-close { opacity: 1; }
.search__suggestion, .web-search .search-attr {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    transition: opacity 0.8s, transform 0.8s;
}
.search--open .search-attr {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    font-size: 24px;
}
.js .web-search .search-ipt {
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
    transition: transform .3s;
}
.js .search--open .search-ipt {
    transform: scale3d(1, 1, 1);
    transition-duration: 0.5s;
}
.js .search--open .search-btn { display: none !important; }

/* ========================================
   留言弹窗
   ======================================== */

.inquiry-pop-bd {
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -300px 0 0 -275px;
    width: 550px;
    height: 500px;
    background: #FFF;
    box-shadow: 0 0 10px rgba(255, 255, 255, .5);
    display: none;
    z-index: 2000;
}
.inquiry-pop-bd:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}
.inquiry-pop-bd .inquiry-pop {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 22px;
    z-index: 1;
    background: #FFF;
}
.inquiry-pop-bd .inquiry-pop .ico-close-pop {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
    background: url(../images/fancy_close.png) no-repeat center center;
    cursor: pointer;
    z-index: 1;
}

/* 留言表单通用 */
.content-wrap.form .ch_form_wrap {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.content-wrap.form .ch_form_wrap .title {
    background: #6828a5;
    width: 100%;
    height: 55px;
    line-height: 55px;
    color: #fff;
    margin: 0;
    padding: 0 20px;
    font-size: 16px;
    font-weight: normal;
}
.content-wrap.form .ch_form_wrap .title em { font-style: normal; }
.content-wrap.form .ch_form_wrap form { position: relative; }
.content-wrap.form .ch_form_wrap ul { padding: 20px 20px 5px; }
.content-wrap.form .ch_form_wrap ul li {
    position: relative;
    list-style: none;
    margin: 0 0 14px;
    display: flex;
    min-height: auto;
    line-height: 40px;
    width: 100%;
}
.content-wrap.form .ch_form_wrap ul input,
.content-wrap.form .ch_form_wrap ul textarea,
.content-wrap.form .ch_form_wrap ul select {
    position: relative;
    width: 100%;
    border: 1px solid #eee;
    border-left: 3px solid #6828a5;
    height: 39px;
    padding: 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}
.content-wrap.form .ch_form_wrap ul textarea {
    height: 95px;
    padding: 10px;
    resize: none;
}
.content-wrap.form .ch_form_wrap .item_submit { padding: 0 20px; }
.content-wrap.form .ch_form_wrap .item_submit input {
    width: 100%;
    height: 33px;
    color: #fff;
    background: #6828a5;
    border: none;
    cursor: pointer;
    transition-duration: .3s;
}
.content-wrap.form .ch_form_wrap .item_submit input:hover { background: #8A48C7; }
.content-wrap.form .ch_form_wrap .item_checkcode { display: flex; align-items: center; gap: 10px; }
.content-wrap.form .ch_form_wrap .item_checkcode input { flex: 1; width: auto; margin: 0; }
.content-wrap.form .ch_form_wrap .item_checkcode img { height: 40px; cursor: pointer; border: 1px solid #eee; border-radius: 3px; }
.content-wrap.form .ch_form_wrap .email_point { display: none; }
.content-wrap.form .ch_form_wrap li label { display: none; }
.inquiry-pop-bd ::-webkit-scrollbar { width: 0; height: 0; }

/* ========================================
   面包屑
   ======================================== */
.path_bar {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 70px 0;
    transform: translate3d(0, 0, 0);
    margin: 0 -60px;
    color: #fff;
    background-size: cover !important;
    background-attachment: scroll !important;
}
.path_bar a { color: #fff; }
.path_bar a:hover { color: #d79d49; }
.path_bar li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-size: 60px;
    text-transform: uppercase;
}
.path_bar li:after {
    content: ">";
    margin: 0 5px 0 7px;
    font-weight: bold;
}
.path_bar li:last-child:after { display: none; }

/* ========================================
   Web Main 区域
   ======================================== */
.web_main { position: relative; }
.page_main {
    background: #FFF;
    padding: 67px 0 0;
    transform: translate3d(0, 0, 0);
}

/* 分页 */
.pagebar { padding: 20px; overflow: hidden; clear: both; }
.pagebar .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 2px;
    border-radius: 3px;
    line-height: 100%;
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover { color: #333; border: 1px solid #333; }
.pagination a.page-num-current {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}
.pagination .st { font-family: SimSun; }
.text-secondary { text-align: center; padding: 20px 0; }

/* Swiper 通用 */
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: -31.5px;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    font-size: 30px;
    background-color: #fff;
    border-radius: 2px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next { left: 10px; right: auto; }
.swiper-button-next, .swiper-container-rtl .swiper-button-prev { right: 10px; left: auto; }
.swiper-button-prev:before, .swiper-container-rtl .swiper-button-next:before {
    content: '\f104';
    font-family: 'fontawesome';
}
.swiper-button-next:before, .swiper-container-rtl .swiper-button-prev:before {
    content: '\f105';
    font-family: 'fontawesome';
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    pointer-events: none;
    opacity: 0.15;
}
.swiper-button-lock { display: none; }

/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    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: 20px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33);
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    background: #eee;
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet { cursor: pointer; }
.swiper-pagination-bullet-active { background: #836d3c; }
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    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%;
    transform: translateY(-50%);
    width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s left, .2s transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s right, .2s 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%;
    transform: scale(0);
    transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}
.swiper-container-horizontal { overflow: hidden; }
.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;
    width: 15px;
    height: 15px;
}
.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-pagination-lock { display: none; }

/* Swiper Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
}

/* ========================================
   字体定义
   ======================================== */
@font-face {
    font-family: 'fontawesome';
    src: url("../fonts/fontawesome-webfont.eot") format("embedded-opentype"),
         url("../fonts/fontawesome-webfont.woff2") format("woff2"),
         url("../fonts/fontawesome-webfont.woff") format("woff"),
         url("../fonts/fontawesome-webfont.ttf") format("truetype"),
         url("../fonts/fontawesome-webfont.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}
@font-face {
    font-family: 'Poppins';
    src: url("../fonts/poppins.eot") format("embedded-opentype"),
         url("../fonts/poppins.woff2") format("woff2"),
         url("../fonts/poppins.woff") format("woff"),
         url("../fonts/poppins.ttf") format("truetype"),
         url("../fonts/poppins.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* ========================================
   动画
   ======================================== */
@-webkit-keyframes swing {
    20% { -webkit-transform: rotate(40deg); transform: rotate(40deg); }
    40% { -webkit-transform: rotate(-20deg); transform: rotate(-20deg); }
    60% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    80% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}
@keyframes swing {
    20% { -webkit-transform: rotate(40deg); transform: rotate(40deg); }
    40% { -webkit-transform: rotate(-20deg); transform: rotate(-20deg); }
    60% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    80% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}
