body {
    font-size: 14px;
    font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
    overflow-x: hidden;
}

body,
ul,
dl,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b {
    padding: 0;
    margin: 0;
    border: 0;
    font-weight: 400;
}

button,
input {
    padding: 0;
    color: inherit;
    outline: none;
    border: none;
    background: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input {
    -webkit-appearance: none;
}

textarea,
select {
    padding: 0;
    color: inherit;
    outline: none;
    border: none;
    background: none;
    -webkit-appearance: none;
}

.none {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul li,
ol li {
    list-style-type: none;
}

img {
    display: block;
    width: 100%;
}

em,
i {
    font-style: normal;
}

table {
    border-collapse: 0;
    border-spacing: 0;
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #ccc;
    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("../images/arrow.png") no-repeat scroll right center transparent;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding: 2px 14px 2px 6px;
}


/*select:after
{
	content: 'kkk';
}*/

select.arr2 {
    background: url("../images/arrow2.png") no-repeat scroll right center transparent;
    background-size: 11px 11px;
}

.index {
    height: 100vh;
    width: 100%;
    background-color: #2d3a4b;
}


/*清除ie的默认选择框样式清除，隐藏下拉箭头*/

select::-ms-expand {
    display: none;
}

.shade {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
}

.shade2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
}

.error {
    z-index: 109;
    position: fixed;
    left: 50%;
    bottom: 60px;
    transform: translate(-50%, 0);
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.7);
    min-width: 140px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}


/*弹窗提示框*/

.notePop {
    border-radius: 2px;
    position: fixed;
    width: 400px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 222;
}

.notePop h3 {
    height: 40px;
    line-height: 40px;
    padding: 0 0 0 12px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: 700;
}

.notePop h3 button {
    color: #999;
    width: 40px;
    height: 40px;
    font-size: 16px;
    float: right;
    cursor: pointer;
    font-size: 18px;
}

.notePop h3 button:hover {
    background: #f4f4f4;
}

.notePop p {
    text-align: center;
    padding: 50px 10px;
    font-size: 14px;
    color: #666;
}

.notePop .upImg {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
}

.notePop .upImg .imgBox {
    height: 100px;
    width: 100px;
    margin: 0 auto 10px;
}

.notePop .upImg .upDate {
    width: 100px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.notePop .upImg .upDate input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0;
}

.put {
    /* width: 90%;
    margin: 5px auto; */
}

.put select,
.put input {
    flex: 1;
    height: 34px;
    border: 1px solid #eee;
    padding: 0 5px;
}

.notePop .upImg img {
    height: 100%;
}

.notePop textarea {
    padding: 20px;
    min-height: 80px;
    box-sizing: border-box;
    resize: none;
    margin: 10px 0;
    font-size: 14px;
    color: #666;
    border: 1px solid #eee;
    flex: 1;
}

.notePop .put {
    display: flex;
    align-items: center;
}

.notePop .put em {
    white-space: nowrap;
    width: 100px;
}

.notePop dl dt {
    width: 50%;
    float: left;
    box-sizing: border-box;
    ;
    font-size: 12px;
    border-top: 1px solid #eee;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
}

.notePop dl dt:nth-of-type(2) {
    border-left: 1px solid #eee;
}

.notePop dl dt:nth-of-type(1):hover {
    background: #f4f4f4;
}

.notePop dl dt:nth-of-type(2):hover {
    background: #ffaf1e;
    color: #fff;
}


/*登录*/

.loginLogo img {
    height: 100%;
    width: auto;
}

.infoLogin {
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 20px 20px;
    width: 350px;
    z-index: 99;
    background: #fff;
}

.infoLogin dt {
    padding: 5px 0;
}

.infoLogin dt em {
    display: block;
    height: 44px;
    border: 1px solid #ccc;
}

.infoLogin dt em i.iconfont {
    display: block;
    float: left;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 18px;
    text-align: center;
    color: #999;
}

.infoLogin dt em input {
    width: calc(100% - 44px);
    height: 44px;
    float: right;
}

.infoLogin dt h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.infoLogin dt .logiBtn {
    background: #eee;
    height: 44px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}

@media screen and (min-width: 1440px) {
    .loginLogo {
        position: fixed;
        top: 60px;
        left: 100px;
        height: 50px;
        z-index: 99;
    }
    .infoLogin {
        right: 15%;
    }
}

@media screen and (max-width: 1440px) {
    .loginLogo {
        position: fixed;
        top: 20px;
        left: 40px;
        height: 40px;
        z-index: 99;
    }
    .infoLogin {
        right: 5%;
    }
    .infoLogin dt .logiBtn {
        color: #fff;
        background: #fcaf17;
    }
}

.noData {
    width: 100%;
    padding: 40px 0;
}

.noData>img {
    width: 160px;
    height: 160px;
    display: block;
    margin: 0 auto;
}

.bj_login {
    width: 100%;
    position: fixed;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.table_center{
	text-align: center
}