.main {
    background-color: rgb(246, 246, 246);
}

.main .container {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.main .container .main_left {
    background-color: #ffffff;
    height: 480px;
    padding-top: 55px;
    width: 25%;
}

.main .container .main_left .img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px auto 20px;
}

.main .container .main_left .img {
    border-radius: 50%;
    overflow: hidden;
}

.main .container .main_left .img img {
    width: 100%;
}

.main .container .main_left p {
    width: 100%;
    text-align: center;
    margin-bottom: .625rem;
}

.main .container .main_left .name {
    font-size: 1.25rem;
    font-weight: 600;
}

.main .container .main_left .date {
    font-size: 1.25rem;
    color: #717171;
}

.main .container .main_left .list {
    display: flex;
    flex-direction: column;
}

.main .container .main_left .list p {
    height: 3.5rem;
    line-height: 3.5rem;
    font-family: ArialMT;
    font-size: 18px;
    text-align: left;
    padding-left: 50px;
    height: 56px;
    line-height: 56px;
}

.main .container .main_left .list p.selected {
    background-color: rgb(232, 243, 255);
    border-left: .3125rem solid #1988ff;
}

.main_right {
    width: 72%;
    background-color: #fff;
    padding: 1.875rem;
    padding-bottom: 9.375rem;
    padding-top: 25px;
}

.main_right_top {
    height: 3.125rem;
    line-height: 3.125rem;
}

.main_right_top input {
    width: 11.25rem;
    height: 2.1875rem;
    background-color: #fbfbfb;
    border: solid .0625rem #e5e5e5;
    margin: 0 auto;
    display: block;
    margin-top: .5rem;
}

.main_right_top_text {
    font-size: 1.125rem;
    text-align: center;
}

.right_top {
    height: 45px;
}

.right_top .text {
    border-bottom: 1px solid #1988ff;
    font-size: 18px;
    /* font-weight: 550; */
    padding: 0px 10px;
}

.right_top .inputBUtton img {
    width: 1.125rem;
    position: absolute;
    right: .625rem;
    top: 30%;
}

.main_right_center {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.column {
    width: 49%;
    background-color: #ffffff;
    box-shadow: 0px 3px 30px 0px rgba(110, 121, 134, 0.2);
    border-radius: 4px;
    margin-bottom: 20px;
}

.column .message {
    height: 2.1875rem;
    line-height: 2.1875rem;
    background-color: #d9f7fe;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    color: #38b9d4;
    padding: 0px .625rem;
    display: inline-block;

}

.column .bottomBox {
    width: 90%;
    margin: 1.875rem auto;
    border-bottom: 1px solid #eee;
}

.column .bottomBox .text {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.column .bottomBox .text p {
    width: 100%;
    font-family: Arial-BoldMT;
    font-size: 1.125rem;
    line-height: 2rem;
    color: #405281;
    font-weight: 600;
    word-spacing: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 42px;
    cursor: pointer;
    font-size: 16px;

}

.column .bottomBox .text img {
    width: .375rem;
    height: .625rem;

}

.column .bottomBox .date {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    font-size: 14px;
}

.column .btnBox {
    display: flex;
    justify-content: flex-end;
    gap: .3125rem;
    margin: 1.25rem;

}

.column .btnBox button {
    width: 32%;
    height: 40px;
    border: none;
    border-radius: 4px;
    border: solid 1px #bdc3cb;
    color: #93989f;
    text-align: center;
    font-size: 13px !important;
}

.right_top {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    border-bottom: .0625rem solid #eeeeee;
    padding: 0px 30px;
}

.right_top .inputBUtton input {
    width: 13.75rem;
    height: 2.5rem;
    background-color: #fbfbfb;
    border: solid .0625rem #e5e5e5;
}

.popButton:hover .pop {
    display: block;
    opacity: 1 !important;
}

.popButton:hover {
    background-color: rgb(235, 136, 136) !important;
    border-color: rgb(235, 136, 136) !important;
}

.pop {
    display: inline-table;
    position: absolute;
    width: 200px;
    height: 45px;
    /* border: 2px solid grey; */
    border-radius: 4px;
    /* box-shadow: 2px 2px 2px grey; */
    background-color: rgba(102, 102, 102, .8);
    top: -150%;
    right: 0;
    display: none;
    color: #fff;
    padding-top: 6px;
    font-size: 12px;
}

.triangle-bottom {
    display: inline-table;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(102, 102, 102, .8);
    border-left: 10px dashed transparent;
    border-right: 10px dashed transparent;
    position: absolute;
    left: 129px;
    top: 45px;
}

@media (max-width: 1000px) {
    .column .bottomBox .text p {
        height: auto;
        -webkit-line-clamp: 100;
    }

    .column {
        width: 100%;
    }

    .main .container {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .main .container .main_left {
        width: 100%;
    }

    .main_right {
        width: 100%;
    }

    /*   .right_top {
        flex-direction: column;
        gap: 1.25rem;
        border: none;
        margin-bottom: 20px;
    }

    .right_top input {
        display: block;
        margin: 0 auto;
    }

    .right_top {
        text-align: center;
    } */
}