body {
    height: 100%;
    overflow: hidden;
}

.page_body {
    height: calc(100% - 155px);
    padding-top: 0px;
    overflow-y: auto;
}

.header_fixed_box {
    display: block;
    clear: both;
    width: 100%;
    height: 95px;
    overflow: hidden;
    position: relative;
}

.option_title {
    display: block;
    clear: both;
    width: 200px;
    height: 40px;
    overflow: hidden;
    background-color: #cccccc;
    border-radius: 5px;
    margin: 10px auto;
    padding: 5px;
}

.option_title .name {
    display: block;
    float: left;
    width: 50%;
    height: 100%;
    line-height: 30px;
    overflow: hidden;
    font-size: 1.6rem;
    color: #333333;
    text-align: center;
    border-radius: 5px;
}

.option_title .active {
    background-color: #ffffff;
    font-weight: bold;
    color: #000000;
}

.header_fixed_box a.post {
    display: flex;
    float: right;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    width: auto;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    border: 1px dashed red;
    border-radius: 5px;
    padding: 0px 5px;
    font-size: 1.6rem;
    color: red;
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 15px;
}

.header_fixed_box a.post img {
    display: block;
    height: 20px;
}

.category_list {
    display: block;
    clear: both;
    width: 100%;
    height: 40px;
    overflow: hidden;
    border-top: 1px solid #eeeeee;
    padding: 0px 5px;
}

.category_list a {
    display: block;
    float: left;
    width: auto;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    padding: 0px 6px;
    font-size: 1.4rem;
    color: gray;
    position: relative;
}

.category_list a.active {
    font-size: 1.6rem;
    color: #000;
    font-weight: bold;
}

.category_list a.active:before {
    content: " ";
    display: block;
    clear: both;
    width: 20px;
    height: 5px;
    overflow: hidden;
    background-color: red;
    border-radius: 5px;
    margin: 0 auto;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
}

.category_list .icon_search {
    display: flex;
    justify-content: center;
    gap: 3px;
    align-items: center;
    float: right;
    width: 70px;
    height: 30px;
    overflow: hidden;
    padding: 5px;
    color: #0059ff;
    font-size: 1.4rem;
}

.category_list .icon_search img {
    display: block;
    height: 20px;
}

.image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 15px;
    padding-top: 10px;
}

.image_list li {
    flex-grow: 1;
    display: block;
    width: calc(50% - 5px);
    height: auto;
    overflow: hidden;
}

.image_list li .image_box {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 15px;
}

.image_list li .image_box .image {
    display: flex;
    justify-content: center;
    align-items: center;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.image_list li .image_box img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.image_list li .image {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(to bottom right, #cccccc, #333333);
}

.image_list li .image img {
    display: block;
    width: 100%;
}

.image_list li dl {
    display: block;
    clear: both;
    width: 100%;
    overflow: hidden;
}

.image_list li dt, .image_list li dd {
    display: block;
    clear: both;
    width: 100%;
    overflow: hidden;
    padding: 5px 0px;
    line-height: 20px;
    font-size: 1.4rem;
    color: #000;
}

.image_list .user_avatar {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    padding: 3px;
}

.image_list .user_avatar img {
    display: block;
    width: 100%;
    border-radius: 30px;
}

.image_list .user_info p {
    display: block;
    float: right;
    width: calc(100% - 45px);
    height: auto;
    overflow: hidden;
    line-height: 20px;
    font-size: 1.2rem;
    color: gray;
}

.btn_close_preview {
    display: block;
    float: right;
    width: auto;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 0px 10px;
    position: fixed;
    z-index: 10;
    right: 20px;
    top: 20px;
    font-size: 1.4rem;
}

.image_preview {
    overflow-y: auto;
}

.image_preview img {
    display: block;
    clear: both;
    max-width: 100%;
    height: auto;
    margin: auto auto;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
}

.not_more {
    display: none;
    clear: both;
    width: 100%;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    text-align: center;
    font-size: 1.3rem;
    color: gray;
}

.loading_more_box {
    display: none;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.loading_more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 50px;
    overflow: hidden;
    padding: 5px;
}

.loading_more .icon {
    display: block;
    width: 20px;
    height: auto;
    overflow: hidden;
}

.loading_more .icon img {
    display: block;
    width: 20px;
    height: auto;
}

.loading_more .text {
    display: block;
    clear: both;
    width: auto;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    color: gray;
}


/*搜索区-开始*/
.search_mask {
    display: block;
    clear: both;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 100%;
}
.soft_logo {
    display: block;
    width: 200px;
    overflow: hidden;
    margin: 30px auto;
    padding-top: 15px;
    padding-bottom: 0px;
    position: relative;
}
.search_tag {
    display: block;
    float: right;
    width: auto;
    height: 25px;
    line-height: 25px;
    overflow:hidden;
    background-color: green;
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    position: absolute;
    z-index: 5;
    right: 0px;
    top: 0;
}

.soft_logo img {
    display: block;
    width: 100%;
}
.navigator_title {
    position: relative;
    z-index: 1;
}
.search_form_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    clear: both;
    width: calc(100% - 100px);
    height: 40px;
    overflow: hidden;
    background-color: #eeeeee;
    border-radius: 8px;
    padding: 5px;
    margin-left: 35px;
}
.search_form_header .icon {
    flex-shrink: 0;
    display: block;
    width: 18px;
    height: 18px;
    overflow: hidden;
    margin-left: 5px;
}
.search_form_header .icon img {
    display: block;
    width: 100%;
}
.search_form_header .weui-input {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 30px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0px 0px 50px 50px #eeeeee inset;
    border: none;
    font-size: 16px;
    color: #0068FF;
    caret-color:#0068FF;
}
.search_form_header .weui-icon-clear {
    display: none;
}
.search_btn {
    flex-shrink: 0;
    display: block;
    width: 60px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #0068FF;
    text-align: center;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 5px;
}
/*搜索条-结束*/