* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body{
    font-size: 14px;
    line-height: 1.28571;
    color: #333;
}
html,body{
    width: 100%;
    height: 100%;
    min-height: 100%;
    /* font-family: 'Avenir', Helvetica, Arial, sans-serif; */
    /* font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif; */
    /* font: 14px PingFang SC,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif !important; */
    font-family: 微软雅黑,Microsoft YaHei,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input, textarea{
    outline: none;
    font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif !important;
}

button{border:0;background-color: transparent;outline: none;}
img { border: 0;vertical-align: middle;height: 100%;width: 100%;}
a { text-decoration: none; -webkit-touch-callout: none;color: #333; }
em, i { font-style: normal; }
ul { list-style: none; margin: 0px; padding: 0px; }
li { list-style: none; }

.gray{
    color: #666;
}
.wrapper{
    max-width: 1200px;
    margin: 0 auto;
}
.wrapper-1400{
    max-width: 1400px;
    margin: 0 auto;
}
.flex-and-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.w-auto{
    width: auto !important;
}
.mr-top-20{
    margin-top: 20px;
}
.orange:hover{
    transition: all .3s;
    color: #FF6A00 !important;
}
.page-row{
    margin: 0 -15px;
}
.clearfix:after{
    content: "";
    display: block;
    height: 0;
    clear:both;
    visibility: hidden;
}
.cursor{
    cursor: pointer;
}
.cursor:hover{
    opacity: .9;
    transition: all .3s;
}
.grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.item-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flexCt{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;	
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.text-white{
    color: #FFFFFF;
}
.row-center {
	justify-content: center;
}

.row-left {
	justify-content: flex-start;
}

.row-right {
	justify-content: flex-end !important;
}

.row-between {
	justify-content: space-between;
}

.row-around {
	justify-content: space-around;
}
/* 文字一行溢出 */
.text-one{
    /* display: inline-block; */
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;
}
/* 文字两行溢出 */
.text-two{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-four{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.text-three{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-box{
    height: 100%;
    width: 100%;
}
.page-bg{
    background: #F4F4F4 !important;
}
.header-bg{
    background: #F0F0F0 !important;
}
.page-title{
    text-align: center;
}
.page-title h1{
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 12px;
}

/* 宽度公共样式 */
.container {
    width: 100%;
    min-width: 1200px;
}

.container-box {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 下拉框的颜色 */
.layui-form-select dl dd.layui-this{
    background-color: var(--theme1-bg-color);
}

/* 颜色 */
:root{
    --theme1-color:#06A4ED;
    --theme1-bg-color:#06A4ED;
}