body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: MicrosoftYaHei;
}

* {

    box-sizing: border-box;
}

.pointer {
    cursor: pointer;
}

.relative {
    position: relative;
}

section {
    display: block;
    margin: 0 auto;
}

section::before {
    clear: both;
}

section::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: black;
    display: inline-block;
}

a[disabled] {
    cursor: default !important;
    user-select: none;
    pointer-events: none;
}

a.active {
    color: black;
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

.bolder {
    font-weight: bolder;
}

h1,
h2,
h3,
h4 {
    margin: 0
}

.flex {
    display: flex;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-evenly {
    display: flex;
    justify-content: space-evenly;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-center-middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.flex-middle {
    display: flex;
    align-items: center;
}

.flex-flow-column {
    display: flex;
    flex-flow: column;
}

.inline-block {
    display: inline-block !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-overflow-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /*行数*/
    -webkit-box-orient: vertical;
}

.text-overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*行数*/
    -webkit-box-orient: vertical;
}

.el-loading-mask {
    z-index: 999999 !important;
}

/* 去掉百度地图logo */

.anchorBL {
    display: none;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 6px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 8px;
}

::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
    background: rgba(144, 147, 153, 0.3);
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
    /* background: #ededed; */
}

.n-more {
    font-size: 14px;
    margin-top: 5px;
}

.margin-left {
    margin-left: 10px;
}

.margin-top {
    margin-top: 10px;
}

.margin-top40 {
    margin-top: 40px;
}

.margin-top50 {
    margin-top: 50px;
}

.margin-top90 {
    margin-top: 90px;
}

.margin-bottom80 {
    margin-bottom: 80px;
}

.padding20 {
    padding: 20px;
}

.padding-t30 {
    padding-top: 30px;
}

.padding-t40 {
    padding-top: 30px;
}

.padding-b60 {
    padding-bottom: 60px;
}

.padding-b40 {
    padding-bottom: 40px;
}

.padding-bottom80 {
    padding-bottom: 80px;
}

.padding20-top {
    padding-top: 20px;
}

.padding20-lr {
    padding-left: 20px;
    padding-right: 20px;
}

.padding20-tb {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding40-tb {
    padding-top: 40px;
    padding-bottom: 40px;
}

.el-button--warning.el-submit {
    background-color: #d74a15;
    border-color: #d74a15;
}

.el-submit.el-button:focus,
.el-submit.el-button:hover {
    border-color: #fb6a33;
    background-color: #fb6a33;
}

.no-has-data {
    padding: 100px;
    min-height: 200px;
    text-align: center;
}

.no-has-data>div {
    display: inline-block;
    height: 92px;
    width: 142px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url("../images/nodata.png");
    position: relative;
}

.no-has-data>div::before {
    content: '暂无相关数据';
    display: block;
    position: absolute;
    bottom: -30px;
    width: 100%;
    color: #999999;
    font-size: 14px;
    line-height: initial;
}

.list-min-height {
    height: 320px;
}

.bg-white {
    background-color: #fff;
}

.v-path {
    background: #f9f9f9;
    height: 35px;
    line-height: 35px;
    color: #111111;
}

.v-path>section>span {
    font-size: 14px;
}

/* kuaizhangbiao */

.bg-grey {
    background-color: #eeeeee;
}
/*分页样式改动*/
.n-page-area .page-large a{
    border-radius: 5px;
}
.page-large .next-page:hover{
    background-color: #ffffff;
    background-image:url(../images/small-next-page.png);
    color: #D74A15;
}
.page-large .prev-page:hover{
    background-color: #ffffff;
    color: #D74A15;
    background-image:url(../images/small-prev-page.png);
}
.n-page-area .page-large a.on{
    background: #D74A15;
    cursor: default;
    color: white;
}
