/*缩放效果弹出层*/
.mask_box{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.mask_box.mask_show {
    display: block;
}
.mask_block{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    transform: scale(0, 0);
}
.mask_block.mask_show {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    transform: scale(1, 1);
}

.userAgreementBox{
	height: 70%;
	width: 50%;
	font-size: 14px;
	border-radius: 8px;
	background-color: #fff;
}
.userAgreementTitle{
	text-align: center;
	font-size: 20px;
	height: 60px;
	padding-top: 16px;
}
.userAgreementTitle .mask_close{
	cursor: pointer;
	font-size: 16px;
	/*color: #ccc;*/
}
.userAgreementContent{
	height: calc(100% - 100px);
	width: 100%;
	padding: 0px 48px 20px 48px;
	overflow: auto;
}
.userAgreementContent p{
	line-height: 28px;
    height: auto;
}
.userAgreement{
    font-size: 12px;
    padding: 10px 0px 0px 0px;
    text-align: center;
}
.userAgreementBtn{
    cursor: pointer;
    color: #428bca;
}
/*滚动条*/
.thinScrollbar::-webkit-scrollbar{
    width:6px;
    height: 6px;
}
/* 滚动槽 */
.thinScrollbar::-webkit-scrollbar-track{
    -webkit-box-shadow:inset 006px rgba(0, 0, 0, 0.3);
    border-radius:10px;
}
/* 滚动条滑块 */
.thinScrollbar::-webkit-scrollbar-thumb{
    border-radius:10px;
    background:rgba(0, 0, 0, 0.3);
    -webkit-box-shadow:inset 006px rgba(0, 0, 0, 0.5);
}
.thinScrollbar::-webkit-scrollbar-thumb:window-inactive{
    background:rgba(0, 0, 0, 0.3);
}
@media (min-width:1540px) {
    .userAgreement{
        padding: 30px 0px 0px 0px;
    }
}
@media (max-width:1400px) {
    .userAgreement{
        padding: 10px 0px 0px 0px;
    }
}