@charset "utf-8";
html,
body {
    color: #000;
    overflow-x: hidden;
}

body,
figure,
h1,
h2,
h3,
html,
li,
nav,
p,
ul {
    padding: 0;
    margin: 0;
}

/*@font-face {*/
    /*font-family: 'PingFangSC-Regular';*/
    /*!*src: url('font/pingfangsc-regular-webfont.woff') format('woff'), !* 现代浏览器 *!*!*/
        /*!*url('font/pingfangsc-regular-webfont.woff2') format('woff2'),*!*/
        /*!*url('font/pingfangsc-regular-webfont.ttf') format('truetype'); !* Safari, Android, iOS *!*!*/
    /*src: url('font/PingFangSC-Regular.ttf') format('truetype');*/
/*}*/
/*@font-face {*/
    /*font-family: 'PingFangSC-Light';*/
    /*src: url('font/PingFangSC-Light.ttf') format('truetype');*/
/*}*/
/*@font-face {*/
    /*font-family: 'PingFangSC-Medium';*/
    /*src: url('font/PingFangSC-Medium.ttf') format('truetype');*/
/*}*/

body {
    font: 400 12px/1.45 'PingFang SC', "Helvetica Neue", Helvetica, 'Microsoft YaHei', Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    background-color: transparent;
}

img {
    border: none;
}

input,
textarea,
select,
button {
    outline: none !important;
}

a,
a:hover,
a:active {
    text-decoration: none;
    outline: none !important;
}

ul,
ol,
dl {
    list-style: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::before,
*::after {
    clear: both;
}


input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
::-ms-clear,
::-ms-reveal{
    display: none;
}

::-webkit-input-placeholder {
    color: #a7a7a7;
}

:-moz-placeholder {
    color: #a7a7a7;
}

::-moz-placeholder {
    color: #a7a7a7;
}

:-ms-input-placeholder {
    color: #a7a7a7;
}

::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    background-color: #edf1f5;
}

::-webkit-scrollbar-track{
    border-radius: 5px;
    background-color: #edf1f5;
}

::-webkit-scrollbar-thumb{
    border-radius: 5px;  
    background-color: #999;
}

.display-table {
    display: table;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.right{
    float: right;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.checkbox-item{
    display: inline-block;
    margin-bottom: 0;
    font-size: 0;
    height: 2.5rem;
    width: auto !important;
    vertical-align: middle;
}
.checkbox-item input[type=checkbox]{
    display: none;
}
.checkbox-item span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../image/icons/checkbox.png) no-repeat left center;
    background-size: 100% 100%;
    vertical-align: middle;
}
.checkbox-item input[type=checkbox]:disabled + span{
    opacity: 0.35;
}
.checkbox-item input[type=checkbox]:checked + span{
    background-image: url(../image/icons/checkbox-active.png);
}
.checkbox-item i{
    font-size: 1.16666667rem;
    color: #35343D;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    font-weight: 400;
}
input[name=btSelectAll] + span{
    vertical-align: 3px;
}
.table .checkbox-item{
    height: 16px;
}

.radio-item{
    display: inline-block;
    margin-bottom: 0;
    font-size: 0;
    height: 2.5rem;
    vertical-align: middle;
}
.radio-item input[type=radio]{
    display: none;
}
.radio-item span{
    display: inline-block;
    width: 1.16666667rem;
    height: 1.16666667rem;
    border-radius: 50%;
    border: 1px solid rgba(0,202,157,1);
    vertical-align: middle;
    position: relative;
}
.radio-item input[type=radio]:disabled + span{
    opacity: 0.35;
}
.radio-item input[type=radio]:checked + span:after{
    content: '';
    position: absolute;
    width: 0.83333333rem;
    height: 0.83333333rem;
    background: rgba(0,202,157,1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.radio-item i{
    font-size: 1.16666667rem;
    color: #35343D;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    font-weight: 400;
}
