.info_box{
    margin-top: 80px;
    background-color: #ccc;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.content{
    width: 100%;
    height: 240px;
    line-height: 20px;
    background-color: white;
    border-radius: .4rem;
    padding: 5px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.content:last-child{
    margin-bottom: 0;
}

.c_title{
    display: flex;
    height: 35px;
    border-bottom: 1px solid #ccc;
}

.user_info{
    width: 60%;
    display: flex;
    align-items: center;
    height: 30px;
}

.user_info img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.user_info span{
    color: #FF58B7;
    margin-left: 10px;
}

.state{
    width: 40%;
    color: #FF58B7;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.c_content{
    display: flex;
    /*border-bottom: 1px solid red;*/
    height: 115px;
}

.c_img{
    width: 30%;
    height: 150px;
    margin-right: 10px;
}

.c_img img{
    width: 80px;
    height: 80px;
    border-radius: .4rem;
    margin-top: 10px;
    margin-left: 10px;
}

.c_info{
    width: 60%;
    height: 150px;
    line-height: 24px;
    padding-top: 10px;
}

.c_info_title{
    font-weight: bolder;
    font-size: 16px;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略号来代表被修剪的文本 */
}

.c_info_a{
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 显示省略号来代表被修剪的文本 */
    font-size: 14px;
}

.c_salary{
    width: 10%;
    height: 150px;
    padding-top: 5px;
    font-weight: bolder;
    text-align: center;
    padding-right: 5px;
}

.c_btn{
    text-align: right;
    height: 40px;
    margin-top: 40px;
}

.c_btn button{
    width: 80px;
    height: 30px;
    background-color: #45bdbb;
    color: white;
    border: none;
    border-radius: .5rem;
}

.hid_box_content{
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-sizing: border-box;
    height: 60px;
}

.hid_box_content:first-child{
    min-height: 60px;
    margin-top: 10px;
}

#p_title{
   color: orangered;
}

.hid_box_content span{
    font-weight: bold;
}

.hid_input{
    height: 40px;
    width: 261px;
    border: 1px solid #ccc;
    font-size: 18px;
}