.screen_container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    background: url(../images/loginwrap.45b98ece.png) no-repeat center 0;
    background-size: cover;
    z-index: 9999;
}
.screen {
    width: 80%;
    max-width: 624px;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    padding: 30px 20px 0px;
    box-sizing: border-box;
    background: #5f697970;
    border-radius: 10px;
    overflow-y: scroll;
    transform: translate(-50%, -50%) scale(0);
    transition: all linear 0.5s;
}
.screen.show {
    transform: translate(-50%, -50%) scale(1);
}
.screen h2 {
    /* color: #1F4E79; */
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(70, 31, 8, 0.76);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}
.screen .content {
    width: 100%;
    margin-bottom: 30px;
}
.screen .content p span {
    font-size: 14px;
    color: #fff;
    /* color:#000; */
}
.screen .content p a {
    text-decoration: none;
}
.screen .btn_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.screen .btn_content .btn {
    width: 188px;
    display: flex;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent;
    font-weight: 400;
    height: 42px;
    line-height: 42px;
    color: #fff;
    font-size: 15px;
    align-items: center;
}
.screen .btn_content .btn img {
    width: 25px;
    margin: 0px 10px;
}
.screen .btn_content .no_btn {
    background: #9b9b9b;
}
.screen .btn_content .yes_btn {
    background: #1f4e79;
}
@media screen and (max-width: 600px) {
    .screen .btn_content {
        flex-wrap: wrap;
    }
    .screen .btn_content .btn {
        width: 100%;
        margin-top: 20px;
    }
}
.screen::-webkit-scrollbar {
    /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
    width: 10px;
    /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
    /* height: 10px; */
}
.screen::-webkit-scrollbar-thumb {
    /*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
    background: transparent;
}
.screen::-webkit-scrollbar-track {
    /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
    /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
    border-radius: 10px;
    background: transparent;
}
.screen::-webkit-scrollbar {
    height: 0;
    width: 0;
    color: transparent;
}
.screen {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.screen_container .tc {
    max-width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all ease 0.5s;
    transform: translate(-50%, -50%) scale(0);
}
.screen_container .tc.show {
    transform: translate(-50%, -50%) scale(1);
}
.screen_container .tc .tc_content {
    width: 100%;
}
.tc_content .title_top {
    padding: 0px 20px 0px 20px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}
.tc_content .main_content {
    padding: 10px 20px 20px 20px;
    width: 100%;
    display: flex;
    background: #fff;
    border-bottom: 1px solid #fff;
}
.tc_content .main_content .img_box {
    width: 45px;
    margin-right: 20px;
}
.tc_content .main_content .img_box img {
    width: 45px;
    object-fit: contain;
}
.tc_content .main_content p {
    font-size: 18px;
    line-height: 1.2;
    display: flex;
    margin: 0px;
    align-items: center;
}
.tc_content .btn_content {
    width: 100%;
    display: flex;
    background: #fff;
    justify-content: flex-end;
    padding: 0px 20px 20px 20px;
}
.tc_content .btn_content .btns {
    width: 90px;
    height: 40px;
    color: #616262;
    background: #c5c5c5;
    line-height: 40px;
    text-align: center;
    margin-left: 20px;
    display: block;
    border-radius: 10px;
    cursor: pointer;
}
.tc_content .btn_content .btns:hover, .tc_content .btn_content .btns.yes {
    color: #fff;
    background: #1f4e79;
}