.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

a:hover {
    text-decoration: none
}

.page {
    min-height: calc(100vh - var(--window-top));
    background-color: #f6f7f8;
    overflow: hidden;
    max-width: 750 rpx;
    width: 100%;
}

.loading-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80 upx;
    color: #979797;
    font-size: 24 upx;
}

.loading {
    line-height: 80 upx;
    text-align: center;
    font-size: 38 upx;
    color: #777;
}

.theme-c {
    color: #0A99E6;
}

.theme-c1 {
    color: #4B5365;
}

.butt-pr {
    margin: 50 upx 40 upx;
    color: #fff;
}

.butt-pr:after {
    border-color: #0A99E6;
}

/*左浮动*/
.fl {

    float: left;
}


/*右浮动*/
.fr {
    float: right;
}


/*清除浮动*/
.clear {
    zoom: 1;
}

.clear:after {
    display: block;
    content: "";
    clear: both;
    height: 0;
    visibility: hidden;
    line-height: 0;
}

/* 文字一行溢出 */
.oneline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* 文字两行溢出 */
.twoline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.htreline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.fourline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/*flex 转换成flex容器*/
.flex,
.jus-c,
.ali-c,
.flexc,
.jus-b,
.jus-a,
.jus-e,
.flex-wrap,
.ali-e {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.dflex {
    display: flex;
}

/*flexv 竖直排列*/
.flexv {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*flex1 自动填充*/
.flex1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*flex-wrap 自动换行*/
.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*	jus-c 水平居中
 * 	flexc 水平垂直居中
 * */
.jus-c,
.flexc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*jus-b 水平两端对齐*/
.jus-b {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*jus-a 水平相等间距*/
.jus-a {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

/*jus-e 水平终端对齐*/
.jus-e {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/*ali-c 竖直居中*/
.ali-c,
.flexc {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.ali-e {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.greybody {
    background: #f4f4f4;
}

/* 图片宽高100% */
.fill {
    width: 100%;
    height: 100%;
    display: block;
}

/* 图片宽度100%，高度自动 */
.fill-auto {
    display: block;
    width: 100%;
    height: auto;
}

.mask {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 88;
    background: rgba(0, 0, 0, 0.5);
}

.bgf {
    background-color: #fff;
}

.text-c {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}
#pages{
    text-align: center;
    font-size: 16px;
}
#pages li{
    display: inline-block;
}
#pages li+li{
    margin-left: 10px;
}