.mode{
    position:fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: none;
    background: rgba(0, 0, 0, 0.5);
}
.mode-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    height: 100vh;
    width: 100vw;
    
}
.content{
    width: 100vw;
    /* max-height: 500px; */
    background-color: #fff;
    color:black;
    letter-spacing: 0;
}
.mode-body .content{
    position: relative;
    padding: 10px;
    box-sizing:border-box;
    width: 90vw;
    border-radius: 25px;
    line-height: 1;
    font-size: 22px;
}
.mode-body .content .row-txt{
    position: relative;
    max-height: 50vh;
    width: 100%;
    padding: 0 10px 0 10px;
    overflow-y: auto;
    box-sizing: border-box;
}

.row-txt::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: transparent;
    border-radius: 8px;
}
.row-txt::-webkit-scrollbar-thumb{
    background:#B8C0C0;
    border-radius: 8px;
}
.py-10{
    padding-top: 50px !important;
    padding-bottom: 35px !important;
}
.row-txt h1{
    text-align: center;
}
.mode-body .footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mode-body .footer .mode-btn{
    min-width: 100px;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 50px;
    background-color: #313131;
    color: #fff;
    margin: 15px 20px 0;
    text-align: center;
    font-size: 1.4em;
    cursor: pointer;
}

.mode-body .footer .mode-yes{
    background-color: #000;
}
.mode-body .footer .mode-no{

    background-color: #3F4545;
}
.mode-body .content ul{
    padding-left: 1em;
    list-style-type: none;
}
.mode-body .content .object{
    padding: 10px 0;
    border-bottom: 1px solid #c7c7c7;
}
.mode-body .content .item{
    color: blue;
}
.mode-body .content .keyname{
    color: red;
}
.hide{
    display: none !important;
}
.mode-back{
    /* color: #fff; */
    position: absolute;
    top: 25px;
    right: 12px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: black;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    line-height: 26px;
    border:1px solid;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}
#mode_tip .mode-back{
    top:50%;
    border:none;
}
.mode-back::after{
    content: 'X';
}

.tip{
    position: fixed;
    left: 10%;
    width: 80%;
    border-radius: 10px;
    background-color: #fff;
    word-break: break-all;
}

.tip .mode-arr{
    position: absolute;
    border:  8px solid transparent;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}
.tip.top .mode-arr{
    top:0;
    margin-top: -16px;
    border-bottom-color: #fff;
}
.tip.bottom .mode-arr{
    bottom:0;
    margin-bottom: -16px;
    border-top-color: #fff;
}
.tip .mr{
    position: relative;
    padding: 6px 70px 6px 10px;
    font-size: 20px;
}
