@import url('font_2017463_1wje0whhgju.css');
/*@import url('https://at.alicdn.com/t/font_1992209_o3qx0nsawuf.css');*/

/*===========================
    reset
===========================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    /* font-size: 100%; */
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

h1,h2,h3,h4,h5,h6{
    font-size: inherit;
    color: inherit;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

a:link,
a:hover,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
}

a:hover{
    color:#ec6200;
}

img {
    width: 100%;
}

input {
    border: none;
    font-size: 14px;
}

input:focus {
    outline: none;
}

:root {
    --col-theme: #ec6200
}

html {
    font-size: 14px;
}

/*===========================
    grid
===========================*/
.container,
.container-fluid,
.container-xs,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* 手机 */
@media (min-width: 576px) {

    .container,
    .container-sm {
        /* max-width: 540px; */
        width: 100%;
    }
}

/* 平板 */
@media (min-width: 768px) {

    .container,
    .container-sm,
    .container-md {
        /* max-width: 720px; */
        width: 100%;
    }
}

/* 中等桌面 */
@media (min-width: 992px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}

/* 大屏幕 */
@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

/* 超大屏幕 */
@media (min-width: 1400px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

.row {
    display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex: 1 0 0%;
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.333333%;
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}


@media (min-width: 200px) {
    .col-xs {
        flex: 1 0 0%;
    }

    .row-cols-xs-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xs-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xs-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xs-3>* {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .row-cols-xs-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xs-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xs-6>* {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xs-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xs-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-xs-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xs-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xs-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xs-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xs-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xs-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xs-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-xs-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xs-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-xs-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-xs-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hide-xs {
        display: none !important;
    }

    .only-xs {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .only-xs {
        display: none !important;
    }

    .hide-xs {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    
}

@media (min-width: 992px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }
}


/*===========================
    default
===========================*/
/*color颜色*/
.col-white {
    color: #fff !important;
}

.col-danger {
    color: #fe5455 !important;
}

.col-info {
    color: #00ccff !important;
}

.col-primary {
    color: #2d8cf0 !important;
}

.col-success {
    color: #19be6b !important;
}

.col-warning {
    color: #ff9900 !important;
}

.col-secondary {
    color: #999 !important;
}

.col-highlight {
    color: var(--col-theme) !important;
}

.col-theme {
    color: var(--col-theme) !important;
}

.col-ddd {
    color: #ddd !important;
}

.col-ccc {
    color: #ccc !important;
}

.col-f5 {
    color: #f5f5f5 !important;
}

.col-333 {
    color: #333 !important;
}

.col-666 {
    color: #666 !important;
}

.col-999 {
    color: #999 !important;
}

/*bg颜色*/
.bg-danger {
    background: #fe5455 !important;
}

.bg-info {
    background: #00ccff !important;
}

.bg-primary {
    background: #3d8cf0 !important;
}

.bg-success {
    background: #19be6b !important;
}

.bg-warning {
    background: #ff9900 !important;
}

.bg-default {
    background: #f5f5f5 !important;
}

.bg-ddd {
    background: #ddd !important;
}

.bg-eee {
    background: #eee !important;
}

.bg-white {
    background: #fff !important;
}

.bg-dark {
    background: #000 !important;
}

.bg-theme {
    background: var(--col-theme) !important;
}

.bg-trans {
    background: transparent !important;
}

.bg-f5 {
    background: #f5f5f5 !important;
}

.bg-eee {
    background: #eee !important;
}

/*字体大小*/
.font-size-10 {
    font-size: 10px !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-24 {
    font-size: 24px !important;
}

.font-size-28 {
    font-size: 28px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

.font-size-40 {
    font-size: 40px !important;
}

.font-size-44 {
    font-size: 44px !important;
}

.font-bold {
    font-weight: bold !important;
}

.font-normal {
    font-weight: normal !important;
}

/*margin外边距*/
.margin-0 {
    margin: 0 !important;
}

.margin-10 {
    margin: 10px !important;
}

.margin-15 {
    margin: 15px !important;
}

.margin-10-15 {
    margin: 10px 15px !important;
}

/*margin-l*/
.margin-l-0 {
    margin-left: 0 !important;
}

.margin-l-5 {
    margin-left: 5px !important;
}

.margin-l-10 {
    margin-left: 10px !important;
}

.margin-l-15 {
    margin-left: 15px !important;
}

.margin-l-20 {
    margin-left: 20px !important;
}

.margin-l-30 {
    margin-left: 30px !important;
}

.margin-l-40 {
    margin-left: 40px !important;
}

/*margin-r*/
.margin-r-0 {
    margin-right: 0 !important;
}

.margin-r-5 {
    margin-right: 5px !important;
}

.margin-r-10 {
    margin-right: 10px !important;
}

.margin-r-15 {
    margin-right: 15px !important;
}

.margin-r-20 {
    margin-right: 20px !important;
}

/*margin-t*/
.margin-l-0 {
    margin-left: 0 !important;
}

.margin-t-5 {
    margin-top: 5px !important;
}

.margin-t-10 {
    margin-top: 10px !important;
}

.margin-t-15 {
    margin-top: 15px !important;
}

.margin-t-20 {
    margin-top: 20px !important;
}

.margin-t-30 {
    margin-top: 30px !important;
}

.margin-t-40 {
    margin-top: 40px !important;
}

/*margin-b*/
.margin-b-0 {
    margin-bottom: 0 !important;
}

.margin-b-5 {
    margin-bottom: 5px !important;
}

.margin-b-10 {
    margin-bottom: 10px !important;
}

.margin-b-15 {
    margin-bottom: 15px !important;
}

.margin-b-20 {
    margin-bottom: 20px !important;
}

.margin-b-30 {
    margin-bottom: 30px !important;
}

.margin-b-40 {
    margin-bottom: 40px !important;
}

/*padding内边距*/
.padded-0 {
    padding: 0 !important;
}

.padded-5 {
    padding: 5px !important;
}

.padded-10 {
    padding: 10px !important;
}

.padded-15 {
    padding: 15px !important;
}

.padded-10-15 {
    padding: 10px 15px !important;
}

.padded-20 {
    padding: 20px !important;
}

/*padded-l*/
.padded-l-0 {
    padding-left: 0 !important;
}

.padded-l-5 {
    padding-left: 5px !important;
}

.padded-l-10 {
    padding-left: 10px !important;
}

.padded-l-15 {
    padding-left: 15px !important;
}

.padded-l-20 {
    padding-left: 20px !important;
}

/*padded-r*/
.padded-r-0 {
    padding-right: 0 !important;
}

.padded-r-5 {
    padding-right: 5px !important;
}

.padded-r-10 {
    padding-right: 10px !important;
}

.padded-r-15 {
    padding-right: 15px !important;
}

.padded-r-20 {
    padding-right: 20px !important;
}

/*padded-t*/
.padded-t-0 {
    padding-top: 0 !important;
}

.padded-t-5 {
    padding-top: 5px !important;
}

.padded-t-10 {
    padding-top: 10px !important;
}

.padded-t-15 {
    padding-top: 15px !important;
}

.padded-t-20 {
    padding-top: 20px !important;
}

/*padded-b*/
.padded-b-0 {
    padding-bottom: 0 !important;
}

.padded-b-5 {
    padding-bottom: 5px !important;
}

.padded-b-10 {
    padding-bottom: 10px !important;
}

.padded-b-15 {
    padding-bottom: 15px !important;
}

.padded-b-20 {
    padding-bottom: 20px !important;
}

/*border*/
.border-1 {
    border: 1px solid #f5f5f5;
}

.border-5 {
    border: 5px solid #f5f5f5;
}

.border-10 {
    border: 10px solid #f5f5f5;
}

.border-b-1 {
    border-bottom: 1px solid #f5f5f5;
}

.border-t-1 {
    border-top: 1px solid #f5f5f5;
}

.border-l-1 {
    border-left: 1px solid #f5f5f5;
}

.border-r-1 {
    border-right: 1px solid #f5f5f5;
}

.border-b-5 {
    border-bottom: 5px solid #f5f5f5;
}

.border-b-8 {
    border-bottom: 8px solid #f5f5f5;
}

.border-b-10 {
    border-bottom: 10px solid #f5f5f5;
}

.border-radius-5 {
    border-radius: 5px !important;
}

.border-radius-10 {
    border-radius: 10px !important;
}

.border-radius-15 {
    border-radius: 15px !important;
}

.border-radius-50 {
    border-radius: 50% !important;
}

/*overflow*/
.overflow-hide {
    overflow: hidden !important;
}

.overflow-auto {
    overflow: auto !important;
}

/*flex样式*/
.flex-row {
    display: flex !important;
    flex-direction: row !important;
}

.flex-col {
    display: flex !important;
    flex-direction: column !important;
}

.flex-align-center {
    align-items: center !important;
}

.flex-justify-center {
    justify-content: center !important;
}

.flex-justify-between {
    justify-content: space-between !important;
}

.flex-justify-around {
    justify-content: space-around !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-bet {
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
}

.flex-around {
    display: flex;
    justify-content: space-around !important;
    align-items: center !important;
}

.flex-center {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
}

.flex-start {
    display: flex;
    justify-content: start !important;
    align-items: center !important;
}

/*文字排列*/
.align-left {
    text-align: left;
}

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

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

/*多行省略*/
.p-ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.p-ellipsis3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.p-nowrap {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*===========================
    public
===========================*/
body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* background: #fff; */
}

/* display */
.hide {
    display: none;
}

.show {
    display: block;
}

/* browserupgrade */
.browserupgrade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: center;
    font-size: 18px;
    z-index: 10000;
    background: #fff;
    color: lightcoral;
}

/* nav-pop */
.nav-pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    display: none;
}

.nav-pop a {
    display: block;
}

.nav-pop .top {
    padding: 15px;
}

.nav-pop .top .logo {
    width: 100px;
    height: calc(100px / (170 / 50));
}

.nav-pop .top .close {
    font-size: 16px;
    color: #666;
}

.nav-pop .menu {
    padding: 15px;
}

.nav-pop .menu>li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-pop .menu li .link {
    font-size: 16px;
}

.nav-pop .menu li .submenu {
    margin-top: 10px;
}

.nav-pop .menu li .submenu li .iconfont {
    font-size: 12px;
    margin-right: 5px;
}

.nav-pop .menu li .submenu li a {
    line-height: 2.5;
    display: block;
    font-size: 12px;
    color: #666;
}

.nav-pop .menu li.active,
.nav-pop .menu li .submenu li.active a {
    color: var(--col-theme);
}

/* header */
.header {
    background-color: #171f2c;
    height: 80px;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header .body {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header h1 {
    display: inherit;
}

.header h1 a {
    display: inherit;
}

.header .body .logo {
    width: 130px;
    height: calc(130px / (170 / 50));
}

.header .body .nav {
    display: flex;
    align-items: center;
    height: 80px;
}

.header .body .nav .item {
    height: 80px;
    line-height: 80px;
    /* margin: 0 15px; */
    padding: 0 15px;
    position: relative;
    font-size: 16px;
}

.header .body .nav .item.active {
    color: var(--col-theme);
}

.header .body .nav .item .link {
    cursor: pointer;
}

.header .body .nav .item .link.active {
    color: var(--col-theme);
}

.header .body .nav .item .link .iconfont {
    font-size: 13px;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.4);
}

.header .body .nav .item .link .iconfont.active {
    transform: rotate(90deg);
    transition: all 0.5s;
}

.header .body .nav .item .submenu {
    position: absolute;
    padding: 20px 10px;
    /* width: 80px; */
    width: 100%;
    top: 80px;
    line-height: 2;
    left: 0;
    background: #fff;
    color: #333;
    opacity: 0;
    transform: all 0.5s;
    box-sizing: border-box;
    display: none;
}

.header .body .nav .item .submenu.show {
    display: block;
    transform: all 0.5s;
    opacity: 1;
}

.header .body .nav .item .submenu li {
    text-align: center;
    line-height: 2.2;
    font-size: 14px;
}

.header .body .nav .item .submenu li.active {
    color: var(--col-theme);
}

.header-xs {
    width: 100%;
    height: 60px;
    background-color: #171f2c;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.header-xs .logo {
    width: 100px;
    height: calc(100px / (170 / 50));
}

.header .body .right {
    display: flex;
}

.header .body .right .btn {
    margin: 0 10px;
    border: 1px solid #fff;
    padding: 5px 15px;
    border-radius: 4px;
}

.header .body .right .btn.reg {
    background: #ec6200;
    border-color: #ec6200;
}

.header-mate {
    height: 80px;
}

/* main */
.main {
    padding: 0;
    /* min-height: 60vh; */
    /* min-height: calc(100vh - 100px); */
    /* background-color: #fff; */
}

/* banner */
.banner {
    position: relative;
    z-index: 1;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    /* background: url(../image/home/bg.jpg) no-repeat center center / cover; */
}

.banner .body {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.banner .body .title {
    font-size: 45px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    line-height: 2;
}

.banner .body .btn-box {
    display: flex;
}

.banner .body .btn-box .btn {
    display: block;
    border-radius: 4px;
    border: 1px solid #fff;
    height: 35px;
    line-height: 35px;
    text-align: center;
    width: 100px;
    margin: 0 10px;
}

.banner .body .btn-box .btn.apply {
    background: var(--col-theme);
    border-color: var(--col-theme)
}

/* block */
.b-banner {
    background: #ddd url(/static/image/qp/banner.jpg) no-repeat center center / cover;
    height: 400px;
}

.banner .body .search-bar .btn{
    cursor: pointer;
}

.b-banner .body .title {
    text-align: center;
    font-size: 35px;
    line-height: 1.8;
}

.b-page {
    margin: 15px;
}

.b-page ul {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.b-page ul li {
    width: 80px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #9a9a9a;
    font-size: 16px;
}

.b-page ul li.active {
    background: var(--col-theme);
    color: #fff;
}

.b-page ul li a {
    width: 100%;
    height: 100%;
    display: block;
}

.b-breadcrumb {
    display: flex;
    align-items: center;
    color: #666;
}

.b-breadcrumb .iconfont {
    font-size: 12px;
    margin: 0 5px;
    color: #999;
}

.block {
    margin: 50px 0;
}

.block:first-child {
    margin-top: 0;
}

.block .b-title {
    padding: 40px 0;
    font-size: 30px;
    text-align: center;
}

/* b-search */
.b-search{
    height: 245px;
    font-size: 16px;
}

.b-search .body .title{
    font-size: 30px;
    margin-bottom: 20px;
}

.b-search .body .search-bar{
    display: flex;
    line-height: 50px;
}

.b-search .body .search-bar input.keyword{
    height: 50px;
    border-radius: 5px 0 0 5px;
    width: 600px;
    padding: 0 15px;
}

.b-search .body .search-bar .btn{
    display: inline-block;
    height: 50px;
    background: var(--col-theme);
    padding: 0 30px;
    border-radius: 0 5px 5px 0;
    color:#fff;
    font-size: 18px;
}

.video-pop{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgb(0, 0, 0, .8);
}

.video-pop .body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* rich-txt */
.rich-txt{
    margin: 40px 0;
}

.rich-txt img{
    max-width: 100%;
    width: auto;
    display: inline-block;
}


/* footer */
.footer {
    background-color: #2f313e;
    color: #fff;
    padding: 0;
}

.footer .body .ad a {
    display: block;
}

.footer .body .ad a img {
    display: block
}

.footer .body .ad2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .body .ad2 ul {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer .body .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .body .menu {
    width: 70%;
    /* flex: 1; */
    /* margin-right: 10%; */
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.footer .body .menu .item .title {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer .body .menu .item ul li {
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
}

.footer .body .qrcode .img-box {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    background: #ddd;
}

.footer .body .qrcode .img-box img {
    width: 100%;
}

.footer .body .qrcode .intro {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer .link {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer .link>div{
    flex-shrink: 0;
    line-height: 25px;
}

.footer .link ul {
    display: flex;
    flex-wrap: wrap;
}

.footer .link ul li {
    margin-right: 25px;
    line-height: 1.8;
}

.footer .body .copyright {
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 0;
    text-align: center;
    background: #2d2f3b;
    font-size: 12px;
}

/* iconfont */
.iconfont {
    font-family: 'iconfont';
    font-size: 16px;
    font-weight: normal;
}

/* go-top */
.go-top {
    position: fixed;
    z-index: 999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    right: 10px;
    bottom: 80px;
    color: #999;
    border-radius: 50%;
    padding: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* go-top */

/* media */
@media (max-width: 767px) {
    .header {
        height: 60px;
    }

    .header-mate {
        height: 60px;
    }

    .main {
        /* min-height: calc(100vh - 60px); */
    }

    .banner {
        height: 220px !important;
    }

    .banner .body .title {
        font-size: 16px !important;
    }

    .block .b-title {
        font-size: 16px;
    }

    .footer .body .qrcode .img-box {
        width: 90px;
        height: 90px;
    }

    .b-page ul li {
        width: auto;
        padding: 0 15px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }

    .rich-txt img{
        width: 100%;
    }
    
    .col-sm-6{width:50%}
}

.header-lg {
    min-width: 1200px;
}

/*@media (max-width: 1200px) {*/
/*    .header-lg {*/
/*        display: none !important;*/
/*    }*/
/*}*/

/*@media (min-width: 1200px) {*/
/*    .header-md {*/
/*        display: none !important;*/
/*    }*/
/*}*/




