.page {
    background: #f6f6f6;
    min-height: 100vh;

    -moz-user-select:none; /* Firefox私有属性 */
    -webkit-user-select:none; /* WebKit内核私有属性 */
    -ms-user-select:none; /* IE私有属性(IE10及以后) */
    -khtml-user-select:none; /* KHTML内核私有属性 */
    -o-user-select:none; /* Opera私有属性 */
    user-select:none; /* CSS3属性 */
}
.ai{
    width: 100%;
    text-align: center;
    margin: 10px 0;
    position: relative;
    margin-top: 10px;
}
.ai>img{
    height: 200px;
    width: 1170px;
    border-radius: 4px;
}

.ai>.iconfont{
    position: absolute;
    top: -6px;
    right: 11%;
    cursor: pointer;
}
.middle{
    margin-top: 10px !important;
}
.page .top {
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
}

.page .top .top_main {
    width: 1170px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page .top .top_main .other {
    flex: 1;
    margin: 0 100px 0 40px;
}

.page .top .top_main .other ul {
    display: flex;
    /* justify-content: space-between; */
    /*column-gap: 25px;*/
}

.page .top .top_main .other ul li:nth-child(1){
    margin-right: 25px;
}

.page .top .top_main .other ul li a {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 19px;
}
.page .top .top_main .other ul li a:hover {
    color: #0051a4;
}

.page .top .top_main .other ul li a:hover {
    color: #226eb4;
}

.page .top .top_main img {
    width: 114px;
    height: 71px;
    cursor: pointer;
    margin-right: 10px;
}

.page .top .top_main .msg_box {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.page .top .top_main .msg_box .inp {
    width: 306px;
    height: 38px;
    border-radius: 50px 50px 50px 50px;
    opacity: 1;
    border: 1px solid #999999;
    padding-left: 10px;
    display: flex;
    align-items: center;
    margin-right: 47px;
}

.page .top .top_main .msg_box .inp img {
    width: 24px;
    height: 24px;
}

.page .top .top_main .msg_box .inp input {
    width: 83%;
    height: 85%;
    margin-right: 2%;
    font-size: 16px;
    border: none;
}

.page .top .top_main .msg_box .inp input::-webkit-input-placeholder {
    color: #999999;
    font-size: 16px;
}

#del_mycoll {
    color: red;
}

/* 可复用 */

.middle_right_bottom {
    margin-top: 12px;
    padding: 12px 0px;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 4px;
}

.middle_right_bottom>.head {
    display: flex;
    justify-content: space-between;
    margin: 0 24px;
}

.middle_right_bottom>.head>div {
    display: flex;
    align-items: center;
}

.middle_right_bottom>.head>div>.img1 {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.middle_right_bottom>.head>div>.rebang {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    /* line-height: 21px; */
}

.middle_right_bottom>.head>div>.img2 {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.middle_right_bottom>.head>div>.hyh {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}

.middle_right_bottom>.rebangList {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    margin: 16px 20px 0;
}

.middle_right_bottom>.rebangList>div {
    padding: 10px;
    display: flex;
    border-radius: 4px;
}

.middle_right_bottom>.rebangList>div:nth-of-type(1)>.number {
    color: #FF6F66;
}

.middle_right_bottom>.rebangList>div:nth-of-type(2)>.number {
    color: #FFC766;
}

.middle_right_bottom>.rebangList>div:nth-of-type(3)>.number {
    color: #7AA8D7;
}

.middle_right_bottom>.rebangList>div>.number {
    font-size: 18px;
    font-weight: 400;
    margin-right: 5px;
}

.middle_right_bottom>.rebangList>div>.subtitle {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    line-height: 24px;
    width: 340px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.userMenu {
    position: absolute;
    top: 57px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    display: none;
}

.userMenu p {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    padding: 6px 36px 6px 12px;
}

@keyframes fadenum {
    100% {
        transform: rotate(360deg);
    }
}

.dialog,
.dialog2 {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
}

.dialog_content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: white;
    /*width: calc(560px - 32px);*/
    /* height: 523px; */
    background: #FFFFFF;
    border-radius: 4px 4px 4px 4px;
}

.dialog_head {
    height: 53px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DCDEE0;
}

.dialog_head span {
    font-size: 16px;
    font-weight: bold;
    color: #323233;
    line-height: 20px;
}

.dialog_head img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.dialog_radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    margin-right: 166px;
}

.dialog_radio>.radio_item>div {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #323233;
    line-height: 20px;
    margin-bottom: 25px;
    cursor: pointer;
}

.close{
    cursor: pointer;
}

.dialog_radio>.radio_item>div:last-child {
    margin-bottom: 0;
}

.dialog_radio>.radio_item>div>input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.dialog_form {
    padding: 16px 16px 0 16px;
}

.dialog_form .form_item {
    display: flex;
    margin-bottom: 24px;
}

.dialog_form .form_item .label {
    display: block;
    width: 70px;
    font-size: 14px;
    font-weight: 400;
    color: #323233;
    line-height: 20px;
    text-align: right;
    margin-right: 8px;
}

.dialog_form .form_item input {
    width: 310px;
    height: 32px;
    background: #FFFFFF;
    opacity: 1;
    border: 1px solid #DCDEE0;
    padding: 0 12px;
    border-radius: 4px;
}

.dialog_form .form_item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.dialog_form .form_item .tip {
    font-size: 12px;
    font-weight: 400;
    color: #969799;
    line-height: 20px;
    margin-left: 24px;
}

.dialog_foot {
    padding: 16px 16px;
    text-align: right;
}

.dialog_foot>button {
    width: 76px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #DCDEE0;
    background: white;
    color: #323233;
    margin-left: 16px;
    font-size: 14px;
    cursor: pointer;
}

.dialog_foot>button:last-child {
    border-radius: 2px;
    border: 1px solid #226EBC;
    background: #226EBC;
    color: white;
}


/* 帖子样式 */

.postsItem {
    border-bottom: 1px solid #DCDEE0;
    padding: 24px 24px ;

}

.postsItem .head {
    display: flex;
    align-items: center;
}

.postsItem .head .ico {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-right: 8px;
}

.postsItem .head div .all {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.postsItem .head div .operation {
    width: 104px;
    background: white;
    position: absolute;
    /* bottom: 0; */
    right: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    display: none;
}

.postsItem .head .operation p {
    font-size: 14px;
    font-weight: 400;
    color: #323233;
    line-height: 20px;
    padding: 6px 12px;
    cursor: pointer;
}

.postsItem .head .user {
    flex: 1;
}

.postsItem .head .user .userName {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    line-height: 22px;
    margin-right: 6px;
}

.postsItem .head .user .userPos {
    font-size: 14px;
    font-weight: 400;
    color: #226EBC;
    line-height: 20px;
}

.postsItem .head .user .userAdd {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    line-height: 20px;
    margin-top: 4px;
}

.postsItem .content {
    margin-top: 16px;
    margin-bottom: 24px;
}

.postsItem .content .title {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 21px;
    margin-bottom: 8px;
}

.postsItem .content .title a:hover {
    color: #226eb4;
}

.postsItem .content .article {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 23px;
    width: 655px;
    word-break: break-all;
}

.postsItem .content .label {
    display: flex;
    margin-top: 8px;
}

.postsItem .content .label p {
    font-size: 16px;
    font-weight: 400;
    color: #226EBC;
    line-height: 20px;
    background: #DEE9F5;
    padding: 6px 12px;
    margin-right: 10px;
}

.postsItem .content .imgList {
    margin: 16px 0 4px 0;
    display: flex;
    flex-wrap: wrap;
}

.postsItem .content .imgList img {
    width: 140px;
    height: 104px;
    margin-right: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 5px;
}

.foot {
    /* outline: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

.foot div {
    cursor: pointer;
}

.foot div:hover span{
    color: #226eb4;
}

.foot div img {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
}

.foot div span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 16px;
}

.reply {
    margin: 25px 0 20px 0;
    display: flex;
    align-items: center;
}

.reply img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.reply input {
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: 1px solid #226EBC;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 16px;
}

.niming {
    display: flex;
    align-items: center;
    justify-content: end;
}

.niming span {
    margin-left: 6px;
}

.niming button {
    width: 62px;
    height: 30px;
    background: #226EBC;
    border-radius: 4px 4px 4px 4px;
    opacity: 1;
    color: #FFFFFF;
    border: none;
    margin-left: 22px;
    cursor: pointer;
}

.postsItem-chi {
    padding: 24px 0 0 0;
    /* outline: 1px solid red; */
}

.postsItem-chi .content {
    padding-left: 56px;
}

.postsItem-chi .foot {
    padding-left: 56px;
}

.postsItem-chi-chi {
    padding: 24px 0 0 56px;
}

.userReply {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    line-height: 22px;
    margin-right: 6px;
}

.lookAll {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 19px;
    margin-top: 30px;
    cursor: pointer;
}


/* 帖子样式 */


/* layui---tab样式 */

.layui-tab-brief>.layui-tab-more li.layui-this:after,
.layui-tab-brief>.layui-tab-title .layui-this:after {
    border-bottom: 2px solid #226eb4 !important;
}

.layui-tab-brief>.layui-tab-title .layui-this {
    color: #323233 !important;
}

.layui-tab-brief>.layui-tab-title .layui-this a {
    color: #226eb4 !important;
}

.layui-tab-title li {
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #323233 !important;
    /* line-height: 20px !important; */
}

.layui-tab-title li a:hover{
    color: #226eb4 !important;
}

.layui-tab-content {
    padding: 0 !important;
    height: fit-content !important;
}

 .middle {
     display: flex;
     justify-content: space-between;
     width: 1170px;
     margin: auto;
     margin-top: 30px;
     margin-bottom: 20px;
 }

.middle .middle_left {
    width: 752px;
    background: #FFFFFF;
    border-radius: 4px;
}
.layui-tab-title {
    display: flex !important;
    padding: 0 24px !important;
}
.middle_left_right>.tab>.layui-tab>.layui-tab-title {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 24px !important;
}

.postsItem:last-child {
    border-bottom: none;
    padding: 24px 24px !important;
}

.middle .middle_right {
    width: 408px;
    height: fit-content;
}

.middle_right>.middle_right_top {
    padding: 14px 24px 24px 24px;
    background: #FFFFFF;
    border-radius: 4px;
}

.middle_right>.middle_right_top>.title {
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    margin-bottom: 10px;
}

.middle_right>.middle_right_top>.subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    line-height: 19px;
}

.middle_right>.middle_right_top>button {
    width: 360px;
    height: 54px;
    background: #FFA100;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    margin-top: 24px;
    cursor: pointer;
    transition: all .2s;
    border-radius: 4px;
}
.middle_right>.middle_right_top>button:hover {
    background-color: #226eb4;
}

.middle_right>.middle_right_top>.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.middle_right>.middle_right_top>.menu>div {
    text-align: center;
    cursor: pointer;
}

.middle_right>.middle_right_top>.menu>div:hover p {
    color: #226eb4;
}

.middle_right>.middle_right_top>.menu img {
    width: 44px;
    height: 46px;
}

.middle_right>.middle_right_top>.menu>div>p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.9);
    line-height: 19px;
    margin-top: 11px;
}

.icon-sousuo{
    font-size: 18px;
    color: #a09f9d;
    margin-left: 10px;
}

.open-content, .close-content{
    cursor: pointer;
    color: #226eb4;
    padding-left: 5px;
}
.redyuang{
    display: block;
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 2px;
}

.login-register{
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.login-register div:hover {
    color: #226eb4;
}

.tosearch{
    width: 72px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #226eb4;
    border-radius: 50px;
    margin-right: 2px;
    cursor: pointer;
}

.layui-layer-photos .layui-layer-phimg img {
    border-radius: 5px !important;
}