/*常用的一些共有css*/
/*布局相关*/
.f-hide {
    display: none!important;
}

/*清除浮动*/
.clear-both {
    clear: both;
}



.center-all-relative {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-left-relative {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.center-top-relative {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}

.center-all-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-left-absolute {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.center-top-absolute {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.round {
    border-radius: 50%;
}

.set-text-center {
    text-align: center;
}

.set-bottom {
    bottom: 0;
}

.set-left {
    left: 0;
}

.set-top {
    top: 0;
}

.set-right {
    right: 0;
}

.set-left-025 {
    left: 2.5%;
}

.set-position-absolute {
    position: absolute;
}

.set-margin-top10 {
    margin-top: 0.1rem;
}

.set-margin-top20 {
    margin-top: 0.2rem;
}

.set-margin-top30 {
    margin-top: 0.3rem;
}

.set-margin-top50 {
    margin-top: 0.5rem;
}

.set-margin-top80 {
    margin-top: 0.8rem;
}

.set-margin-top100 {
    margin-top: 1rem;
}

.set-margin-top150 {
    margin-top: 1.5rem;
}

.set-margin-top200 {
    margin-top: 2rem;
}

.set-margin-top300 {
    margin-top: 3rem;
}

.set-margin-top400 {
    margin-top: 4rem;
}
.set-margin-top500 {
    margin-top: 5rem;
}
.set-margin-left100 {
    margin-left: 1rem;
}
.set-padding-top20 {
    padding-top: 0.2rem;
}

.set-padding-top40 {
    padding-top: 0.4rem;
}

.set-padding-top60 {
    padding-top: 0.6rem;
}

.set-padding-top60 {
    padding-top: 0.6rem;
}


.set-padding-top70 {
    padding-top: 0.7rem;
}


.set-padding-top80 {
    padding-top: 0.8rem;
}


.set-padding-top90 {
    padding-top: 0.9rem;
}


.set-padding-top100 {
    padding-top: 1rem;
}
.set-padding-top120 {
    padding-top: 1.2rem;
}
.set-padding-top150 {
    padding-top: 1.5rem;
}



.set-padding-50 {
    padding: 0.5rem;
}

/*字体相关*/
/*多余省略号*/
.set-text-redundant-omitted{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.set-nowrap {
    white-space: nowrap;
}
.set-text-decoration{
	text-decoration:line-through
}

.set-text-bold {
    font-weight: bold;
}
.size-50 {
    font-size: 0.5rem;
}
.size-70 {
    font-size: 0.7rem;
}
.size-80 {
     font-size: 0.8rem;
 }
.size-90 {
    font-size: 0.9rem;
}

.size-100 {
    font-size: 1rem;
}

.size-120 {
    font-size: 1.2rem;
}

.size-150 {
    font-size: 1.5rem;
}

.size-170 {
    font-size: 1.7rem;
}

.size-200 {
    font-size: 2rem;
}

.size-300 {
    font-size: 3rem;
}
.color-white {
    color: white;
}
.color-gray {
    color: gray;
}

.color-red {
    color: red;
}

.color-tip-hc{
	color: #898989;
}
.color-hc-818b9a{
    color: #818b9a;
}
.color-hc-949494{
    color: #949494;
}
.color-black-hc{
	color: #393939;
}
.color-yellow-hc{
    color: #bf9c41;
}
.set-top-border{
    border-top:1px solid gray;
}





/*共有输入框*/
.player_blacklist_search{
    width: 100%;
    height: 4rem;
}
.player_blacklist_search input{
    width: 95%;
    height: 2.5rem;
    left: 2.5%;
    top: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding-left: 0.5rem;
}
.search-input-btn{
    width: 2.5rem;
    height: 2.5rem;
    /*background: url("../../img/search.png")12.5% no-repeat;*/
    background-size: 70% 70%;
    position: absolute;
    top: 1rem;
    right: 2.5%;
}


.add-shadow{
	box-shadow:0 4px 16px rgba(66,55,27,0.4)
}
.add-shadow2{
    box-shadow:0 0 8px rgba(0,0,0,0.08);
}



/*旋转*/
.transform180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*可上下拖动*/
.set-overflow-y-auto {
    overflow-y: auto;
}

/*禁止上下拖动*/
.set-overflow-y-hidden {
    overflow-y: visible;
}

/*公有按钮*/
/*绿底白字*/
.public-btn-1 {
    width: 95%;
    height: 2.5rem;
    left: 2.3%;
    background: #3b8dfb;
    border-radius: 0.3rem;
    text-align: center;
    line-height: 2.5rem;
    color: white;
}

/*浅绿底白字*/
.public-btn-2 {
    width: 95%;
    height: 2.5rem;
    left: 2.3%;
    background: #a2d9ff;
    border-radius: 0.3rem;
    text-align: center;
    line-height: 2.5rem;
    color: white;
}

/*灰底白字*/
.public-btn-none {
    width: 95%;
    height: 2.5rem;
    left: 2.3%;
    background: #D1D1D1;
    border-radius: 0.3rem;
    text-align: center;
    line-height: 2.5rem;
    color: #F9F9F9;
}

/*白底蓝字*/
.public-btn-white {
    width: 95%;
    height: 2.5rem;
    left: 2.3%;
    background: white;
    border-radius: 0.3rem;
    text-align: center;
    line-height: 2.5rem;
    color: #3b8dfb;
}

/*通用背景*/
.set-bg-white {
    background: white;
}

.set-bg-public {
    background: #f4f4f4;;
}

/*公有弹框*/
.alert {
    position: fixed;
    z-index: 6;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top:0;
}

.alert-content {
    width: 80%;
    height: 12rem;
    background-color: white;
    margin-top: -2rem;
    border-radius: 0.5rem;
    font-family: "微软雅黑";
}

.alert-title {
    text-align: center;
    margin-top: 1rem;
    height: 1.2rem;
}

.alert-text {
    text-align: center;
    line-height: 1.5rem;
    color: black;
    padding: 0 1rem;
    height: 4rem;
    margin-top: 1.5rem;
}

.alert-text > span {
    color: #408ffb;
}

.alert-btns {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    height: 3rem;

}

alert-btns-2 {
    height: 3rem;
}

.alert-btns-1 {
    height: 3rem;
    width: 100%;
    text-align: center;
    line-height: 3rem;
}

.alert-btns-1 div {
    height: 3rem;
    width: 100%;
    font-size: 1.2rem;
}

.alert-btns-2 div {
    float: left;
    width: 50%;
    text-align: center;
    height: 2.2rem;
    top: 0.4rem;
    line-height: 2.2rem;
    font-size: 1.2rem;
}

.alert-btn-off + .alert-btn-ok {
    border-left: 1px solid #e8e8e8;
}

.alert-btn-ok {
    /*color: #408ffb;*/
}

.alert-btn-off {
    color: gray;
}



/*共有弹框2 上下按钮*/
/*公有弹框*/
.alert2 {
    position: fixed;
    z-index: 6;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top:0;
}

.alert2-content {
    width: 80%;
    height: auto;
    background-color: white;
    margin-top: -2rem;
    border-radius: 0.5rem;
    font-family: "微软雅黑";
}

.alert2-title {
    text-align: center;
    margin-top: 1rem;
    height: 1.2rem;
}

.alert2-text {
    text-align: center;
    line-height: 1.5rem;
    color: black;
    height: auto;
    padding: 1rem;
}


.alert2-btns {
    width: 100%;
    margin-top: 1rem;
}

.alert2 .btns{
    width: 100%;
    height: auto;
    display: flex;
}
.alert2 .btns >div{
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    flex: 1;
    border-top: 1px solid #e8e8e8;
}
.alert2 .btns>div:last-child{
	border-left:1px solid #eee ;
}







/*公用toast*/
.toast-wrap{
    opacity: 0;
    position: fixed;
    bottom: 10%;
    color: #fff;
    width: 100%;
    text-align: center;
}
.toast-msg{
    background-color: rgba(0,0,0,0.7);
    padding: 2px 5px;
    border-radius: 5px;
}
.toastAnimate{
    animation: toastKF 2s;
}
@keyframes toastKF{
    0% {opacity: 0;}
    25% {opacity: 1; z-index: 9999}
    50% {opacity: 1; z-index: 9999}
    75% {opacity: 1; z-index: 9999}
    100% {opacity: 0; z-index: 0}
}







/*红茶公用*/
/*黑底黄字按钮*/
.hc-black-yellow-btn{
	background: #282C31;
	color: #DABF6F;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	border-radius: 2rem;
	width: 90%;
	margin-left: 5%;
	border: 1px solid black;
}
/*透明底黑字按钮*/
.hc-black-color-btn{
	color: black;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	border-radius: 2rem;
	width: 90%;
	margin-left: 5%;
	border: 1px solid black;
}




/*旋转360度*/
@-webkit-keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*pc*/
@media  screen and (min-device-width:825px ) {
	/*公有弹框*/
.alert {
    position: fixed;
    z-index: 6;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top:0;
    font-size: 20px;
}

.alert-content {
    width: 400px;
    height: 200px;
    background-color: white;
    /*margin-top: -2rem;*/
   margin-top:10px;
    border-radius: 10px;
    font-family: "微软雅黑";
    font-size: 20px;
}

.alert-title {
    text-align: center;
    margin-top: 20px;
    height: 30px;
    font-size: 20px;
}

.alert-text {
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    color: black;
    padding: 0 20px;
    height: 40px;
    margin-top: 30px;
}

.alert-text > span {
    color: #408ffb;
    font-size: 20px;
}

.alert-btns {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    height: 60px;
    font-size: 20px;
    cursor: pointer;

}
.alert-btns-1 div {
    height: 60px;
    width: 100%;
    font-size: 20px;
    line-height: 60px;
}

.alert2{font-size: 20px;}
.alert2-content {
	font-size: 20px;
    width: 400px;
    height: auto;
    background-color: white;
    margin-top: 0;
    border-radius: 0.5em;
    font-family: "微软雅黑";
}

.alert2-title {
    text-align: center;
    margin-top: 1em;
    height: 1.2em;
}

.alert2-text {
    text-align: center;
    line-height: 1.5em;
    color: black;
    height: auto;
    padding: 1em;
}


.alert2-btns {
    width: 100%;
    margin-top: 1em;
}

.alert2 .btns{
    width: 100%;
    height: auto;
    display: flex;
}
.alert2 .btns >div{
    height: 3em;
    text-align: center;
    line-height: 3em;
    flex: 1;
    border-top: 1px solid #e8e8e8;
}
.alert2 .btns>div:last-child{
	border-left:1px solid #eee ;
}
}
