/* PC端有声小说详情页样式 - 书音阁 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 新增：统一盒模型 */
}

body {
    font-family: "Microsoft Yahei", Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f9f9f9;
}

.wp {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 15px; /* 新增：左右留白，适配小屏 */
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

/* 面包屑样式优化 */
#pt {
    margin: 14px 0;
    
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 新增：轻微阴影提升质感 */
}

#pt .place {
    font-size: 14px;
    color: #666;
}

#pt strong {
    color: #007bff;
    margin-right: 5px;
}

#pt a {
    color: #007bff;
    text-decoration: none;
}

#pt a:hover {
    text-decoration: underline; /* 新增：hover下划线提示 */
}

/* 主体布局 - 修复小屏适配 */
.main-content {
    width: calc(100% - 300px);
    float: left;
}

.right-sidebar {
    width: 280px;
    float: right;
    margin: 0 0 0 20px;
}

/* 内容盒子样式优化 */
.box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* 新增：轻微阴影 */
}

.box-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* 标题样式 */
.novel-title {
    text-align: center;
    font-size: 22px;
    margin: 10px 0 90px;
    line-height: 1.5; /* 新增：行高优化 */
}

/* 小说信息样式 */
.novel-info {
    margin-bottom: 15px;
    line-height: 2;
}

.novel-info span {
    display: inline-block;
    width: 49%;
    color: #555;
    font-size: 14px; /* 新增：统一字号 */
}

/* 小说简介样式 */
.novel-desc {
    line-height: 1.9;
    color: #333;
    margin-bottom: 15px;
    font-size: 15px; /* 新增：优化字号 */
}

/* 下载按钮区域 */
.download-box {
    text-align: center;
    padding: 20px;
    background: #f7f8fa;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #eee; /* 新增：边框统一 */
}

.download-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #007bff;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 8px;
    transition: background 0.2s ease; /* 新增：过渡动画 */
}

.download-btn:hover {
    background: #0056b3;
}

/* 右侧模块样式优化 */
.right-module {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 新增：阴影 */
}

.right-module h4 {
    background: #39a7e4;
    color: #fff;
    padding: 10px 15px; /* 修正：原1px padding错误 */
    font-size: 14px;
    margin: 0;
    font-weight: normal; /* 新增：取消粗体 */
}

.right-module ul {
    padding: 10px 15px;
    margin: 0;
    list-style: none;
}

.right-module li {
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px dashed #eee;
    font-size: 14px; /* 新增：统一字号 */
}

.right-module li:last-child {
    border-bottom: none;
}

.right-module a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease; /* 新增：过渡动画 */
}

.right-module a:hover {
    color: #007bff;
    text-decoration: underline; /* 新增：hover下划线 */
}

/* 上下篇样式 */
.contxt {
    text-align: center;
    margin: 20px 0;
}

.contxt ul {
    padding: 0;
    margin: 0;
}

.contxt li {
    display: inline-block;
    margin: 0 10px;
    list-style: none;
}

.contxt a {
    color: #007bff;
    text-decoration: none;
    padding: 5px 10px; /* 新增：点击区域扩大 */
}

.contxt a:hover {
    text-decoration: underline;
}

/* 响应式适配 - 小屏PC/平板 */
@media screen and (max-width: 992px) {
    .main-content {
        width: 100%;
        float: none;
    }
    .right-sidebar {
        width: 100%;
        float: none;
        margin: 15px 0 0 0;
    }
    .novel-info span {
        width: 100%; /* 小屏下信息单行展示 */
        margin-bottom: 5px;
    }
    .novel-info span:last-child {
        margin-bottom: 0;
    }
}

/* 小屏适配补充 */
@media screen and (max-width: 480px) {
    .novel-title {
        font-size: 18px;
    }
    .download-btn {
        display: block;
        margin: 8px 0; /* 移动端按钮竖向排列 */
    }
}