/* ------------------------ 本题解析 --------------------------------- */
.btjx-modal {
    width: 600px;
    height: 500px;
    position: fixed;
    top: 20%;
    left: 35%;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0px 6px 12px 0px rgba(89, 91, 178, 0.12);
    border-radius: 10px;
}



.btjx-modal .modal_head {
    position: relative;
    padding-top: 30px;
}

.btjx-modal .modal_head .close_icon {
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/images/2020-12-03/icon_close.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.btjx-modal .modal_head .modal_title {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.9px;
    color: #595bb2;
    line-height: 1;
}

.btjx-modal .modal_content {
    position: absolute;
    top: 68px;
    bottom: 72px;
    left: 20px;
    right: 20px;
    background-color: #f5f5fa;
    border-radius: 8px;
    padding: 15px 0;
}

.btjx-modal .modal_content .wordClickedSpecified {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.5;
}

.btjx-modal .modal_content .wordClickedSpecified span:hover {
    background-color: transparent;
    cursor: auto;
}

.btjx-modal .modal_btn {
    display: block;
    margin: auto;
    width: 200px;
    height: 40px;
    background-color: #595bb2;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: #ffffff;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}