@charset "utf-8";
/* CSS Document for Mobile Juqing Page */

/* ===== Base/Reset ===== */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover,
a:active {
    color: #1490ce;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: block;
}

.clear {
    clear: both;
}

body {
    background-color: #f7f8fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: #333;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
}

#top {
    background-color: #fff;
    padding-bottom: 20px;
}

/* ===== Navbar ===== */
.navbar-wrap {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-wrap .column {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 44px;
    line-height: 44px;
}

.navbar-wrap .column .block {
    flex: 1;
    text-align: center;
    font-size: 15px;
    color: #666;
    position: relative;
    cursor: pointer;
    letter-spacing: 1px;
}

.navbar-wrap .column .block.active {
    color: #1490ce;
    font-weight: bold;
    font-size: 16px;
}

.navbar-wrap .column .block.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #08dce6, #008cff);
    border-radius: 2px;
}

/* ===== Modern Card ===== */
.modern-card {
    margin: 8px 8px;
    padding: 15px;
    /* Screenshot shows generous padding */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.modern-card+.modern-card {
    margin-top: 0;
    margin-bottom: 10px;
}

/* ===== Pagination (Fenye) - Round Pills Style ===== */
.fenye {
    text-align: left;
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Pagination Pills */
.fenye a {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    /* Fully rounded */
    font-size: 13px;
    /* Slightly smaller text for clean look */
    text-decoration: none;
    border: none;
    margin: 0;
    text-align: center;
    min-width: unset;
    /* Allow natural width */
}

/* Active Pill */
.fenye a.active,
.fenye b {
    background: #1490ce;
    /* Active Blue */
    color: #fff;
    font-weight: normal;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(20, 144, 206, 0.3);
}

/* Hide load more if present */
#load-more {
    display: none;
}

/* ===== Content (Res List Summary) ===== */
.res-list-smmary {
    padding: 0;
}

.section-title.jname {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1;
    border-left: 4px solid #1490ce;
    /* Blue vertical bar */
    padding-left: 10px;
    display: flex;
    /* Ensure vertical alignment */
    align-items: center;
    height: 18px;
}

.jname a {
    color: #1a1a1a;
    text-decoration: none;
}

.summary {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    /* Good readability */
    text-align: justify;
    letter-spacing: 0.5px;
    text-indent: 2em;
    /* Indentation */
}

.containerc {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
    text-indent: 2em;
}

/* ===== Footer ===== */
#bottom {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 12px;
    background: #fff;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

#bottom a {
    color: #666;
    margin: 0 5px;
}

.goTop {
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 50px;
    right: 15px;
    border-radius: 50%;
    z-index: 999;
}