:root {
    /*标题*/
    --big-title: 25px;
    --middle-title: 20px;
    --small-title: 20px;
    --mini-title: 20px;
    /*内容*/
    --big-content: 25px;
    --middle-content: 20px;
    --small-content: 20px;
    --mini-content: 20px;

    /* 首页主题色 */
    --index-primary: #1E4496;
    --index-color-primary: #2354E3;
}

body,
div,
ul,
li,
ol,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
dt,
form,
input,
textarea,
select,
option {
    padding: 0;
    margin: 0;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.font-white {
    color: #fff;
}

li {
    list-style: none;
}

img {
    border: none;
}

a {
    text-decoration: none;
}

.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.flex-box {
    display: flex;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-space-between-comm {
    display: flex;
    justify-content: space-between;
}

.flex-space-between-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page {
    margin: 50px auto;
    /*width: 800px;*/
    display: flex;
    justify-content: center;
}

.page ul li {
    float: left;
    margin-right: 5px;
}

.page ul li a {
    display: inline-block;
    font-size: 14px;
    color: #666;
    padding: 0 16px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #ddd;
    background: #fff;
}

.page ul li a.present {
    background: var(--index-color-primary);
    border: 1px solid var(--index-color-primary);
    ;
    font-weight: bold;
    color: #fff;
}

.page ul li a:hover {
    background: var(--index-color-primary);
    border: 1px solid var(--index-color-primary);
    font-weight: bold;
    color: #fff;
}

.page ul .pre_page,
.page ul .next_page {
    padding: 0 15px;
    background: #fff url("https://gaoxiao.houxue.com/asset/images/xinwen/ask_sprite.png") no-repeat;
}

.page ul .pre_page:hover,
.page ul .next_page:hover {
    padding: 0 15px;
    background: var(--index-color-primary) url("https://gaoxiao.houxue.com/asset/images/xinwen/ask_sprite.png") no-repeat;
}

/*不可用*/
.page ul .pre_page {
    background-position: 5px -385px;
}

.page ul .pre_page:hover {
    background-position: 5px -530px;
}

/*可用*/
/*.page ul .pre_page{*/
/*background-position: 0px  -465px;*/
/*}*/
/*可用*/
.page ul .next_page {
    background-position: 61px -492px;
}

.page ul .next_page:hover {
    background-position: 61px -567px;
}



input:focus,
select {
    outline: none;
}

.no-close .ui-dialog-titlebar-close {
    display: none;
}