body {
    padding-bottom: 55rem;
    background-color: #f5f5f5;
}

.header {
    z-index: 9999;
    position: sticky;
    top: 0;
    left: 0;
}

.user {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
}

.user_avatar {
    width: 24rem;
    height: 24rem;
    border-radius: 12rem;
    background-color: #ddd;
    overflow: hidden;
}

.user_avatar img {
    width: 100%;
    height: 100%;
}

.user_name {
    font-size: 14rem;
    color: #222;
    margin-left: 10rem;
}

.user_level {
    margin-left: 10rem;
    width: 47rem;
    height: 21rem;
    background-size: 100% 100%;
}

.btn_follow {
    width: 50rem;
    height: 25rem;
    font-size: 13rem;
    color: #fff;
    background-color: #F6840A;
    border-radius: 13rem;
    text-align: center;
    line-height: 25rem;
    margin: auto 10rem;
    flex-shrink: 0;
}

.detail {
    width: 100%;
    background-color: #fff;
}

.detail_pics {
    width: 100%;
    height: 320rem;
    background-color: #eee;
    position: relative;
    overflow: hidden;
    touch-action: pan-y;              /* 阻止浏览器水平导航手势，关键修复 */
    -webkit-overflow-scrolling: touch;
}

.detail_pics-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
    touch-action: pan-y;              /* 阻止浏览器水平导航手势，关键修复 */
}

.detail_pics-slider img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;             /* 让触摸事件统一冒泡到 slider */
}

.detail_count {
    position: absolute;
    right: 5rem;
    bottom: 5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 10rem;
    padding: 0 8rem;
    border-radius: 10rem;
    height: 20rem;
    line-height: 20rem;
}

.detail_picDesc {
    padding: 10rem 15rem;
    font-size: 14rem;
    color: #606266;
    border-bottom: solid 0.5px #eee;
    min-height: 50rem;
    text-align: center;
}

.detail_info {
    width: 100%;
    padding: 10rem 15rem;
}

.detail_title {
    width: 100%;
    text-align: left;
    font-size: 18rem;
    color: #222;
    font-weight: bold;
}

.detail_datas {
    width: 100%;
    padding-top: 10rem;
}

.detail_addr {
    display: flex;
    justify-content: start;
    align-items: center;
}

.detail_addr i {
    width: 12rem;
    height: 12rem;
    background: url(/images/tukuinfo_loc.png);
    background-size: 100% 100%;
    margin-right: 5rem;
}

.detail_addr span {
    font-size: 12rem;
    color: #5B94D5;
}

.detail_time {
    font-size: 11rem;
    color: #909399;
    margin-left: 10rem;
}

.detail_hits {
    display: flex;
    justify-content: start;
    align-items: center;
}

.detail_hits i {
    width: 12rem;
    height: 12rem;
    background: url(/images/tukuinfo_click.png);
    background-size: 100% 100%;
    margin-right: 5rem;
}

.detail_hits span {
    font-size: 12rem;
    color: #909399;
}

.detail_desc {
    padding-top: 10rem;
    width: 100%;
    font-size: 15rem;
    color: #606266;
    line-height: 150%;
}

.other,
.comment,
.pith {
    width: 100%;
    padding: 0 15rem;
    background-color: #fff;
    margin-top: 5rem;
}

.other_nav,
.pith_nav {
    width: 100%;
    padding: 15rem 0;
}

.other_navTitle,
.pith_navTitle {
    flex: 1;
    font-size: 15rem;
    color: #222;
    font-weight: bold;
}

.other_more,
.pith_more {
    font-size: 13rem;
    color: #909399;
}

.other_list {
    width: 100%;
}


.other_item {
    width: calc(50% - 5rem);
    flex-shrink: 0;
    padding-bottom: 15rem;
}

.other_img,
.pith_img {
    width: 100%;
    height: 200rem;
    background-color: #eee;
    border-radius: 4rem;
    overflow: hidden;
    position: relative;
}

.other_img img,
.pith_img img {
    width: 100%;
    height: 100%;
}

.other_count,
.pith_count {
    position: absolute;
    right: 5rem;
    bottom: 5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 10rem;
    border-radius: 10rem;
    width: 20rem;
    height: 20rem;
    text-align: center;
    line-height: 20rem;
}

.other_desc,
.pith_desc {
    width: 100%;
}

.other_title,
.pith_title {
    width: 100%;
    padding-top: 10rem;
    font-size: 15rem;
    font-weight: bold;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.other_datas,
.pith_datas {
    width: 100%;
    padding-top: 10rem;
}

.other_user,
.pith_user {
    flex: 1;
    font-size: 12rem;
    color: #222;
}

.other_hits,
.pith_hits {
    display: flex;
    justify-content: start;
    align-items: center;
}

.other_hits i,
.pith_hits i {
    width: 14rem;
    height: 10rem;
    background: url(/images/mov_eye.png);
    background-size: 100% 100%;
}

.other_hits span,
.pith_hits span {
    font-size: 10rem;
    color: #222;
    margin-left: 5rem;
}

.comment_nav {
    padding: 15rem 0;
    font-size: 15rem;
    color: #222;
    font-weight: bold;
}

.comment_list {
    width: 100%;
}

.comment_item {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    border-bottom: solid 0.5px #eee;
    padding-top: 10rem;
}

.comment_item:last-child {
    border-bottom: none;
}

.comment_avatar {
    width: 24rem;
    height: 24rem;
    border-radius: 12rem;
    overflow: hidden;
    flex-shrink: 0;
}

.comment_avatar img {
    width: 100%;
    height: 100%;
}

.comment_main {
    flex: 1;
    margin-left: 10rem;
}

.comment_users {
    width: 100%;
}

.comment_user {
    flex: 1;
    font-size: 14rem;
    color: #606266;
}

.comment_layer {
    font-size: 12rem;
    color: #606266;
}

.comment_time {
    padding-top: 10rem;
    width: 100%;
    font-size: 10rem;
    color: #909399;
}

.comment_content {
    width: 100%;
    padding: 15rem 0;
    line-height: 150%;
    font-size: 15rem;
    color: #222;
}

.comment_more {
    width: 100%;
    padding: 15rem;
    color: #222;
    text-align: center;
    font-size: 14rem;
}

.pith_list {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.pith_item {
    flex-shrink: 0;
    width: calc(50% - 5rem);
}

.foot {
    width: 100%;
    max-width: 750px;
    height: 50rem;
    border-top: solid 0.5px #eee;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 9999;
    display: flex;
    padding: 7rem 15rem;
    align-items: center;
}

.foot_wd {
    flex: 1;
    background-color: #eee;
    border-radius: 18rem;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}

.foot_wd i {
    width: 35rem;
    height: 35rem;
    background: url(/images/tuku_write.png) no-repeat center center;
    background-size: 11rem 16rem;
}

.foot_wd input {
    flex: 1;
    height: 35rem;
    font-size: 15rem;
    background: transparent;
    border: none;
}

.foot_btn {
    width: 50rem;
    height: 35rem;
    background-color: #409EFF;
    text-align: center;
    line-height: 35rem;
    font-size: 13rem;
    color: #fff;
    margin-left: 10rem;
    flex-shrink: 0;
    border-radius: 18rem;
    margin-right: 10rem;
}

.foot_icon-comment {
    width: 18rem;
    height: 18rem;
    position: relative;
    margin-right: 10rem;
    flex-shrink: 0;
}

.foot_icon-comment i {
    width: 100%;
    height: 100%;
    background: url(/images/circle_publish_pinglun.png);
    background-size: 100% 100%;
}

.foot_icon-comment span {
    position: absolute;
    top: -5rem;
    right: -5rem;
    font-size: 10rem;
    color: #f00;
}

.foot_icon-like {
    width: 18rem;
    height: 18rem;
    position: relative;
    margin-right: 10rem;
    flex-shrink: 0;
}

.foot_icon-like i {
    width: 100%;
    height: 100%;
    background: url(/images/tuku_like.png);
    background-size: 100% 100%;
}

.foot_icon-like span {
    position: absolute;
    top: -5rem;
    right: -5rem;
    font-size: 10rem;
    color: #f00;
}

.modal_box {
    z-index: 1000;
    padding-bottom: 50rem;
    width: 100%;
    max-width: 750px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 10rem 10rem 0 0;
    position: fixed;
    bottom: 0;
    max-height: 70vh;
}

.all_nav {
    width: 100%;
    height: 40rem;
    display: flex;
    justify-content: start;
    align-items: center;
}

.all_title {
    flex: 1;
    margin-left: 40rem;
    text-align: center;
    font-size: 15rem;
    font-weight: bold;
    line-height: 40rem;
    color: #222;
}

.all_close {
    width: 40rem;
    height: 40rem;
    font-size: 18rem;
    text-align: center;
    line-height: 40rem;
}

.all_list {
    width: 100%;
    padding: 10rem;
    max-height: calc(70vh - 90rem);
    overflow: auto;
}

.pllist_list::-webkit-scrollbar {
    display: none;
}

#imgViewBox .mask{
    background-color: rgba(0, 0, 0, 0.8);
}

#imgViewBox .box{
    width: auto;
    height: auto;
    background-color: transparent;
}

#imgViewBox img{
    max-width: 95vw;
    max-height: 80vh;
}

#imgViewBox .close{
    margin: 10rem auto;
    border: solid 0.7px #eee;
    color: #fff;
    font-size: 13rem;
    padding: 3rem 10rem;
    border-radius: 4rem;
    width: fit-content;
}

.btn_follow-un{
    background-color: #ddd;
    color: #909399;
}