html {
    /*font-size: 10px;*/
    font-size: calc(100vw / 375 * 100);
    -webkit-tap-highlight-color: transparent
}
body{
    min-width:1200px;
    /*font-family: 黑体;*/
    font-family: Microsoft YaHei, 黑体,"\u5b8b\u4f53", sans-serif;
}

*, p{
    margin: 0;
    padding: 0;
}
.flex{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}
.flex1{
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flexCenter{
    justify-content: center;
    -webkit-justify-content:center;
    -moz-box-pack:center;
}
.flexHeightCenter{
    align-items:center;
    -webkit-align-items:center;
    -moz-box-align:center;
    -webkit-box-align:center;
}
.flexEnd{
    justify-content: flex-end;
}
.flexColumn{
    flex-flow: column;
}
.flexColumnEnd{
    align-items: flex-end;
}
.tc{
    text-align: center;
}
.fs12{
    font-size: 0.024rem;
}
.fs14{
    font-size: 0.028rem;
}
.fs16{
    font-size: 0.032rem;
}
.fs18{
    font-size: 0.036rem;
}
.fs20{
    font-size: 0.04rem;
}
.fs25{
    font-size: 0.05rem;
}
.fs28{
    font-size: 0.056rem;
}
.fs30{
    font-size: 0.06rem;
}
.fs35{
    font-size: 0.07rem;
}
.fs40{
    font-size: 0.08rem;
}
.fs45{
    font-size: 0.09rem;
}
.fs50{
    font-size: 0.1rem;
}
.block{
    display: block;
}
.mt10{
    margin-top: 0.02rem;
}
.mt15{
    margin-top: 0.03rem;
}
.mt20{
    margin-top: 0.04rem;
}
.mt30{
    margin-top: 0.06rem;
}
.mt40{
    margin-top: 0.08rem;
}
.mt45{
    margin-top: 0.09rem;
}
.mt50{
    margin-top: 0.1rem;
}
.mt60{
    margin-top: 0.12rem;
}
.mt70{
    margin-top: 0.14rem;
}
.mt80{
    margin-top: 0.16rem;
}
.mb10{
    margin-bottom: 0.02rem;
}
.mb15{
    margin-bottom: 0.03rem;
}
.mb20{
    margin-bottom: 0.04rem;
}
.mb30{
    margin-bottom: 0.06rem;
}
.mb40{
    margin-bottom: 0.08rem;
}
.mb45{
    margin-bottom: 0.09rem;
}
.mb50{
    margin-bottom: 0.1rem;
}
.mb60{
    margin-bottom: 0.12rem;
}
.mb70{
    margin-bottom: 0.14rem;
}
.mb80{
    margin-bottom: 0.16rem;
}
.ml10{
    margin-left: 0.02rem;
}
.ml20{
    margin-left: 0.04rem;
}
.ml30{
    margin-left: 0.06rem;
}
.ml35{
    margin-left: 0.07rem;
}
.ml40{
    margin-left: 0.08rem;
}
.ml45{
    margin-left: 0.09rem;
}
.mr10{
    margin-right: 0.02rem;
}
.mr20{
    margin-right: 0.04rem;
}
.mr30{
    margin-right: 0.06rem;
}
.mr35{
    margin-right: 0.07rem;
}
.mr40{
    margin-right: 0.08rem;
}
.mr45{
    margin-right: 0.09rem;
}
.pl20{
    padding-left: 0.04rem;
}
.pl30{
    padding-left: 0.06rem;
}
.pl40{
    padding-left: 0.08rem;
}
.pr20{
    padding-right: 0.04rem;
}
.pr30{
    padding-right: 0.06rem;
}
.pr40{
    padding-right: 0.08rem;
}
.pt5{
    padding-top: 0.01rem;
}
.pt10{
    padding-top: 0.02rem;
}
.pt20{
    padding-top: 0.04rem;
}
.pt30{
    padding-top: 0.06rem;
}
.pt40{
    padding-top: 0.08rem;
}
.pt50{
    padding-top: 0.1rem;
}
.pt60{
    padding-top: 0.12rem;
}
.pt70{
    padding-top: 0.14rem;
}
.pt80{
    padding-top: 0.16rem;
}
.pb5{
    padding-bottom: 0.01rem;
}
.pb10{
    padding-bottom: 0.02rem;
}
.pb20{
    padding-bottom: 0.04rem;
}
.pb30{
    padding-bottom: 0.06rem;
}
.pb40{
    padding-bottom: 0.08rem;
}
.pb50{
    padding-bottom: 0.1rem;
}
.pb60{
    padding-bottom: 0.12rem;
}
.pb70{
    padding-bottom: 0.14rem;
}
.pb80{
    padding-bottom: 0.16rem;
}

.startSlideDownIn{
    animation: 1s linear slideDownIn;
    -webkit-animation: 1s linear slideDownIn;
}

@-webkit-keyframes slideDownIn {
    0%,50% {
        opacity: 0;
        -webkit-transform:translateY(25%);
        transform: translateY(25%);
    }
    70%,100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDownIn {
    0%,50% {
        opacity: 0;
        -webkit-transform:translateY(25%);
        transform: translateY(25%);
    }
    70%,100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

audio,canvas,progress,video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}[hidden],template {
     display: none
 }

a {
    background-color: transparent
}

a:active,a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}
input, button, select, optgroup, textarea {
    font-size: inherit;
    line-height: inherit;
    outline: 0;
}

button, input {
    overflow: hidden;
    border:1px solid #dcdcdc;
    background:none;
}

button, select {
    text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"], input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}
sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,kbd,pre,samp {
    font-size: 1em
}

button,input,optgroup,select,textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,select {
    text-transform: none
}

button,html input[type=button],input[type=reset],input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

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

td,th {
    padding: 0
}
@media print {
    *,:after,:before {
        background: 0 0!important;
        color: #000!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;
        text-shadow: none !important
    }

    a,a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="javascript:"]:after,a[href^="#"]:after {
        content: ""
    }

    blockquote,pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    h2,h3,p {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn>.caret,.dropup>.btn>.caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,.table th {
        background-color: #fff !important
    }

    .table-bordered td,.table-bordered th {
        border: 1px solid #ddd !important
    }
}

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

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

body {
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff
}

button,input,select,textarea {
    font-size: inherit;
    line-height: inherit
}

a {
    color: #333;
    text-decoration: none
}

a:focus,a:hover {
    color: #4452A9;
    text-decoration: none
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

.h1,.h2,.h3,h1,h2,h3 {
    margin-top: 0;
    margin-bottom: 0
}

.h4,.h5,.h6,h4,h5,h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

.h1,h1 {
    font-size: 36px
}

.h2,h2 {
    font-size: 30px
}

.h3,h3 {
    font-size: 24px
}

.h4,h4 {
    font-size: 18px
}

.h5,h5 {
    font-size: 14px
}

.h6,h6 {
    font-size: 12px
}

/*p {*/
/*    margin: 0 0 10px*/
/*}*/

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

ol,ul {
    margin-top: 0;
    margin-bottom: 10px;
    list-style: none;
}

ol ol,ol ul,ul ol,ul ul {
    margin-bottom: 0
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dd,dt {
    line-height: 1.42857143
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}
