a,
a:hover,
a:visited,
a:focus {
    color: rgba(0, 0, 0, 0.85);
}

.btn-red {
    height: 48px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
}

/* 小于等于800时  移动端 */
@media screen and (max-width: 799px) {
    .btn-red {
        height: 28px;
        font-size: 12px;
        border-radius: 4px;

    }

    a>.btn-red {
        pointer-events: none;
        /* 处理ios移动端点击两次的问题 */
    }

}

/*这一句是用来解决在安卓上的点击出现篮框问题*/
/* body{ -webkit-tap-highlight-color:rgba(0,0,0,0); } */

/* a{
    cursor: pointer;
} */
/*下面是解决ios上去除微信点击蓝色边框 */
/* a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0); 
} */

/* 布局 */
.t-sl {
    /* //一行超出省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flex {
    display: flex !important;
}

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

.justify-center {
    justify-content: center;
}

/* 颜色 */
.c-fff {
    color: #fff !important;
}

/* 字体 */
.f-18 {
    font-size: 18px !important;
}

.font-blod {
    font-weight: 700 !important;
}

.disvisibility {
    visibility: hidden;
}