body {
    background-color: #FFFFFF;
}
section.page {
    width: 100%;
    position: relative;
    background-color: #2a1f5a;
}
section.main-wrap {
    position: relative;
    width: 100%;
}

img.order_btn {
    position: absolute;
    top: 5.2rem;
    right: 0;
    width: 1rem;
    height: auto;
    z-index: 99;
}

div.banner-wrap {
    width: 100%;
    margin-bottom: -3.8rem;
}

div.banner-wrap img.banner {
    width: 100%;
    height: auto;
}
p.guide-text{
    margin-top: 0.4rem;
    color: #FFFFFF;
    font-size: 16px;
    text-align: center; /* 新增：文字居中，提升视觉效果 */
}
img.start-btn {
    display: block;
    width: 11rem;
    height: auto;
    margin: 0.6rem auto 0.4rem; /* 修复：改为auto居中 */
}

img.start-zoom{
    /* 修复：前缀属性在前，统一顺序 */
    -webkit-animation: zoom 0.9s linear infinite alternate;
    -moz-animation: zoom 0.9s linear infinite alternate;
    -o-animation: zoom 0.9s linear infinite alternate;
    animation: zoom 0.9s linear infinite alternate;
}
/* 修复：form → from 拼写错误 */
@keyframes zoom {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.91);
        -moz-transform: scale(0.91);
        transform: scale(0.91);
    }
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
    }
}

div.content-wrap {
    width: 100%;
    padding: 0 0.3rem;
}

div.content-wrap div.content-box {
    width: 100%;
}

div.content-wrap img.border {
    display: block;
    width: 100%;
    height: auto;
}

div.content-wrap img.border-top {
    margin-bottom: -1px;
}

div.content-wrap img.border-bot {
    margin-top: -1px;
}

div.content-wrap div.content-panel {
    width: 100%;
    /* 修复：统一引号为双引号 */
    background-image: url("/statics/ffsm/taluo/bieren/img/border_mid.png");
    background-repeat: repeat-y;
    background-size: 100% 100%;
}

div.content-wrap img.title {
    display: block;
    width: 10rem;
    height: auto;
    margin: 0.4rem auto; /* 修复：改为auto居中 */
}

div.content-wrap div.content {
    width: 100%;
    padding: 0 0.6rem; /* 修复：简化冗余的0rem */
}

div.content-wrap img.parse-desc {
    display: block;
    width: 100%;
    height: auto;
}

div.content-wrap img.parse-list {
    display: block;
    width: 100%;
    height: auto;
}

/*评论区样式（核心修复）*/
div.content-wrap p.comment-title{
    width: 100%;
    color: #715ae4;
    font-weight: bold;
    font-size: 22px;
    white-space:nowrap;
    text-align: center; /* 新增：标题居中 */
}
div.content-wrap p.comment-title em{
    font-weight: bold;
    color: #e0804a;
}
div.content-wrap div.detail-data{
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    padding: 0.6rem 0;
}
div.content-wrap div.detail-data span{
    /* 修复：补充flex布局定义 */
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    background-color: #8c76e5;
    border-radius: 6px;
    padding: 0.1rem 0.35rem;
    margin-bottom: 0.2rem; /* 新增：增加行间距 */
}
div.content-wrap div.detail-data span img{
    display: block;
    width: 0.6rem;
    height: auto;
    margin-right: 0.1rem;
}
div.content-wrap div.detail-data span em{
    color: #ffff00;
}
div.content-wrap div.labels{
    width: 100%;
    font-size: 14px;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #cecece;
    /* 修复：补充flex布局定义 */
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
div.content-wrap div.labels span{
    padding: 0.2rem 0.2rem;
    background-color: #fad1ba;
    border-radius: 1rem;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}
div.content-wrap div.labels span:last-child{
    margin-right: 0;
}
div.content-wrap div.labels div.span-line{
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
div.content-wrap div.upto-wrap {
    width: 100%;
    position: relative;
    height: 440px;
    /* 修复：改为overflow-y:auto，允许垂直滚动 */
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 16px;
    /* 新增：优化滚动条样式（移动端友好） */
    -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 340px) {
    div.content-wrap p.comment-title{
        font-size: 18px;
    }
    div.content-wrap div.detail-data{
        font-size: 14px;
    }
    div.content-wrap div.labels{
        font-size: 12px;
    }
    div.content-wrap div.upto-wrap {
        font-size: 14px;
        height: 380px; /* 适配小屏，降低高度 */
    }
}

div.content-wrap ul.comment-list {
    width: 100%;
    padding: 0 0.2rem; /* 新增：增加内边距 */
}

div.content-wrap ul.comment-list li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #7c7972;
    padding: 0.4rem 0; /* 修复：增加上下内边距 */
    box-sizing: border-box;
    /* 修复：移除强制高度，改为自适应 */
    height: auto !important;
}

div.content-wrap ul.comment-list li p.user {
    color: #8749E3;
    margin-bottom: 0.2rem;
    font-weight: 500; /* 新增：突出用户名 */
}

div.content-wrap ul.comment-list li p.detail {
    color: #54524e;
    line-height: 1.4rem; /* 新增：优化行高，提升可读性 */
}

/*评论区样式*/

div.float-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    /* 修复：新增居中适配，兼容不同宽度设备 */
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

div.float-wrap div.float-btn {
    width: 100%;
    max-width: 640px;
    height: 2.4rem;
    background-color: rgba(0, 0, 0, 0.6);
    /* 新增：按钮内内容居中 */
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}