* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 10px 0;
    background: #FFFFFF;
    font-size: 16px;
    font-family: PingFangSC-regular, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #333;
    text-decoration: none;
}

.page_container {
    max-width: 645px;
    margin: 0 auto;
    padding: 11px 20px;
}

.box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    width: 100%;
    word-break: break-word;
    flex-direction: column;
    margin-bottom: 16px;
    overflow: hidden;
}

.content-title-div {
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    margin: 15px 15px 10px;
    font-family: system-ui;
}

.author-div {
    display: flex;
    margin: 0 15px 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.headimg-div {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.headimg-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nickname-div {
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    line-height: 20px;
}

.time-div {
    font-size: 14px;
    color: #999;
    line-height: 20px;
}

.type-div {
    font-size: 14px;
    color: #676767;
    margin: 3px 10px;
}

.type-div img {
    vertical-align: middle;
    margin-right: 4px;
}

.cover-image {
    margin: 0 15px 12px;
    border-radius: 8px;
    overflow: hidden;
}

.cover-image img {
    width: 100%;
    display: block;
}

.subtitle-text {
    color: #686868;
    font-size: 15px;
    line-height: 24px;
    margin: 0 15px 12px;
}

.content-text {
    color: #333;
    margin: 0 15px 18px;
    line-height: 28px;
    font-size: 17px;
}

.content-text h1,
.content-text h2 {
    display: none;
}

.content-text h3,
.content-text h4 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
}

.content-text p {
    margin: 0 0 10px;
}

.content-text img {
    width: 100%;
    border-radius: 8px;
    display: block;
    margin: 10px 0;
}

.content-text video,
.content-text iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
    display: block;
    margin: 10px 0;
}

.content-text ul,
.content-text ol {
    margin: 0 0 10px;
    padding-left: 20px;
}

.loading,
.error-msg {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* Voting */
.vote-box {
    padding: 16px;
}

.vote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.vote-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.vote-brand {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vote-brand strong {
    color: #4a90d9;
    font-weight: 700;
}

.vote-items {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.vote-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.vote-emoji {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}

.vote-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

.vote-bar-wrap {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.vote-bar {
    height: 100%;
    background: #4a90d9;
    border-radius: 3px;
    transition: width 0.3s;
}

.vote-pct {
    font-size: 11px;
    color: #4a90d9;
    margin-top: 4px;
}

/* Feedback */
.feedback-box {
    padding: 16px;
}

.feedback-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feedback-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
}

.feedback-textarea:focus {
    border-color: #4a90d9;
}

.feedback-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.feedback-count {
    font-size: 13px;
    color: #e74c3c;
}

.feedback-submit {
    background: #ccc;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: not-allowed;
}

.feedback-submit.active {
    background: #4a90d9;
    cursor: pointer;
}

/* Next article scroll */
.next-colum {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    height: 40px;
    line-height: 40px;
    margin: 20px 0 5px;
}

.next-colum span {
    display: inline-table;
    padding: 0 10px;
    background: #FFFFFF;
    font-family: system-ui;
    font-weight: 700;
    color: #e5620a;
    font-size: 20px;
}

.next-colum::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 102, 0, 0.4);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
}

.next-article-wrap {
    position: relative;
    margin-bottom: 20px;
}

.box-content {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.box-content-sort {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 720px;
}

.inner-article {
    margin-bottom: 0;
}

.more-box {
    display: block;
    position: relative;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 10px;
}

.more-box::after {
    content: '';
    height: 40px;
    width: 100%;
    display: block;
    position: absolute;
    top: -25px;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 1));
    z-index: 1;
}

.more-box button {
    background: #e5620a;
    border: none;
    color: #fff;
    border-radius: 50px;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    font-size: 16px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.more-box button span {
    vertical-align: top;
    display: inline-table;
    height: 30px;
}

.more-box button span svg {
    margin-top: 8px;
}

#scroll-sentinel {
    height: 1px;
    width: 100%;
}

.Copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 10px 0 20px;
}

/* Home list */
.home-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.home-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.home-brand img {
    display: block;
}

.list-section {
    margin-bottom: 16px;
}

.list-section + .list-section {
    padding-top: 4px;
}

.list-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 8px 0 14px;
}

.featured-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.featured-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.featured-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #e5620a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.featured-body {
    padding: 14px 16px 16px;
}

.featured-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.featured-subtitle {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #686868;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.featured-more {
    color: #e5620a;
    font-weight: 600;
}

.list-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 12px;
}

.list-card-cover {
    width: 110px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e8e8;
}

.list-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.list-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.list-card-tag {
    font-size: 11px;
    font-weight: 700;
    color: #e5620a;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.list-card-title {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-card-subtitle {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.list-card-date {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

/* Static pages */
.back-link {
    font-size: 13px;
    font-weight: 600;
    color: #e5620a;
}

.static-box {
    padding: 20px 16px;
}

.static-title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

.static-content {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.static-content h2 {
    margin: 24px 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.static-content p {
    margin: 0 0 12px;
}

.static-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.static-content li {
    margin-bottom: 6px;
}

.static-content a,
.contact-email {
    color: #e5620a;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e5620a;
}
.adv>p{
    text-align: center;
}
