/* ========== 全局变量与基础 ========== */
:root {
    --primary: #4A90D9;
    --primary-light: #6BA3E0;
    --accent: #67C7A0;
    --accent-light: #8DD4B5;
    --bg: #F8FAFE;
    --bg-card: #FFFFFF;
    --text-dark: #2D3748;
    --text-mid: #4A5568;
    --text-light: #718096;
    --border: #E2E8F0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
main{
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 导航栏 ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links > li.navbar-item {
    position: relative;
}

.nav-links > li.navbar-item > a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
}

.nav-links > li.navbar-item > a:hover,
.nav-links > li.navbar-item > a.active {
    color: var(--primary);
    background: rgba(74, 144, 217, 0.08);
}

.nav-links > li.navbar-item.has-child > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--text-light);
    transition: transform 0.2s ease;
}

.nav-links > li.navbar-item.has-child:hover > a::after {
    transform: rotate(180deg);
}

.nav-links > li.navbar-item > ul {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    min-width: 160px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
}

.nav-links > li.navbar-item:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.nav-links > li.navbar-item {
    padding-bottom: 8px;
}

.nav-links > li.navbar-item > ul > li.navbar-item {
    list-style: none;
}

.nav-links > li.navbar-item > ul > li.navbar-item > a {
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-mid);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-links > li.navbar-item > ul > li.navbar-item > a:hover {
    background: rgba(74, 144, 217, 0.12);
    color: var(--primary);
    padding-left: 18px;
}

/* ========== Hero 区域 ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .swiper-pagination {
    bottom: 30px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #fff;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.7) 0%,
        rgba(74, 144, 217, 0.5) 50%,
        rgba(103, 199, 160, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease forwards;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: #fff;
}

/* ========== 文章卡片区 ========== */
.articles {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 16px;
}

.section-header.light h2 {
    color: #fff;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.card h3{
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.card p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.card-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.1), rgba(103, 199, 160, 0.1));
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.card-meta time {
    font-size: 13px;
    color: var(--text-light);
}

.read-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.read-more:hover {
    color: var(--accent);
    letter-spacing: 1px;
}

.travel {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2C3E50 100%);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.travel-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.travel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.travel-img {
    position: relative;
    height: 200px;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
    overflow: hidden;
}

.travel-img img { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in;
    transform-origin: center;
    z-index: 1;
}

.travel-card:hover .travel-img {
    transform: scale(1.03);
}

.travel-location {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    border-radius: 0 3px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(4px);
    z-index: 3;
}

.travel-info {
    padding: 20px;
}

.travel-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.travel-info p {
    font-size: 14px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 48px;
    margin-bottom: 8px;
}

.travel-info time {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.7;
}

/* ========== 页脚 ========== */
.site-footer {
    background: #1a2332;
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-links.contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== 动画 ========== */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 渐入动画 */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        height: 64px;
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        padding: 16px 0;
        margin: 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links > li.navbar-item {
        padding: 0;
    }

    .nav-links > li.navbar-item > a {
        display: block;
        padding: 12px 24px;
        border-radius: 0;
        text-align: left;
    }

    .nav-links > li.navbar-item > ul {
        position: static;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(74, 144, 217, 0.05);
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 24px;
    }

    .nav-links > li.navbar-item.has-child > ul {
        display: none;
    }

    .nav-links > li.navbar-item.has-child.active > ul {
        display: block;
    }

    .nav-links > li.navbar-item.has-child > a::after {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        letter-spacing: 2px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

    .articles,
    .travel {
        padding: 64px 0;
    }




    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-header h2 {
        font-size: 26px;
    }
}



/* ========== 内页 - Single ========== */
.single-main {
    padding-top: 64px;
}

/* 文章顶部横幅 */
.single-hero {
    position: relative;
    padding: 80px 24px 60px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2C3E50 100%);
    text-align: center;
    overflow: hidden;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 217, 0.3) 0%,
        rgba(103, 199, 160, 0.2) 100%
    );
}

.single-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.single-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.meta-item svg {
    opacity: 0.7;
}

/* 文章内容区 */

.single-content-wrap {
    padding: 30px 0 50px;
}

.single-body {
    margin: 20px auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 48px;

}

/* 文章正文排版 */
.post-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-mid);
    word-wrap: break-word;
}

.post-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.post-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.post-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 10px;
}

.post-content p {
    margin-bottom: 18px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 24px 0;
    display: block;
}

.post-content a {
    color: var(--primary);
    border-bottom: 1px dashed var(--primary-light);
}

.post-content a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.post-content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(74, 144, 217, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-mid);
    font-size: 15px;
}

.post-content pre {
    margin: 24px 0;
    padding: 20px 24px;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: var(--radius);
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.7;
}

.post-content code {
    padding: 2px 8px;
    background: rgba(74, 144, 217, 0.08);
    color: var(--primary);
    border-radius: 4px;
    font-size: 14px;
}

.post-content pre code {
    padding: 0;
    background: none;
    color: inherit;
}

.post-content ul,
.post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.post-content ol li {
    list-style: decimal;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-content th,
.post-content td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.post-content th {
    background: rgba(74, 144, 217, 0.06);
    font-weight: 600;
    color: var(--text-dark);
}

/* 文章标签 */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.tag-link {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.08), rgba(103, 199, 160, 0.08));
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition);
}

.tag-link:hover {
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.18), rgba(103, 199, 160, 0.18));
    color: var(--accent);
    transform: translateY(-1px);
}

/* 上下篇导航 */
.post-nav {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.post-nav a {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-mid);
    transition: var(--transition);
    overflow: hidden;
    text-align: center;
}

.post-nav .nav-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.post-nav .nav-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-nav a:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* 评论区 */
.comments-section {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 36px 48px;
}

.comments-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.comments-title svg {
    color: var(--primary);
}

/* 内页响应式 */
@media (max-width: 768px) {
    .single-hero {
        padding: 60px 16px 40px;
    }

    .single-meta {
        gap: 12px;
    }

    .meta-item {
        font-size: 13px;
    }

    .single-content-wrap {
        padding: 32px 0 48px;
    }

    .single-body {
        padding: 24px 20px;
    }

    .post-content {
        font-size: 15px;
    }

    .post-nav {
        flex-direction: column;
    }

    .comments-section {
        padding: 24px 20px;
        margin-top: 24px;
    }
}



.cmts{margin-top: 20px;}
.cmtsitem {padding:18px 0 14px;border-bottom:1px dotted #e4e8eb;zoom:1;}
.cmtsitem::after {content:"";display:block;clear:both;}
.cmtsitem .avatar {width:48px;height:48px;float:left;display:inline;margin-right:10px;overflow:hidden;}
.cmtsitem .avatar img {width:48px;height:48px;border-radius:3px;}
.cmtsitem .cmtscon .avatar {display:none;}
.cmtscon {margin-left:65px;zoom:1;}
.cmtscon::after {content:"";display:block;clear:both;}
.cmtscon>.cmtsitem {margin-top:15px;padding:0 0 0 20px;border-left:2px solid #e4e8eb;}
.cmtscon>.cmtsitem .cmtscon {margin:0;}
.cmtsdate {float:right;display:inline;font-size:14px;color:#bbb;}
.cmtsname {font-size:14px;color:#333;display:inline-block;}
.cmtsname a {font-size:14px;color:#333;}
.cmtsname em {margin-top:1px;padding:0 7px;font-size:12px;color:#888;font-style:normal;line-height:20px;border:1px solid #eee;border-radius:2px;background:#fafafa;display:inline-block;vertical-align:top;}
.cmtsbody {margin-top:8px;line-height:26px;word-wrap:break-word;word-break:break-all;}
.cmtsbody .cmtscon {margin:0;padding-left:20px;border-left:2px solid #e4e8eb;}
.cmtsbody .cmtsfoot {display:none !important;}
.cmtsreply {margin-top:15px;padding-left:20px;border-left:2px solid #e4e8eb;}
.cmtsreplyname {font-size:12px;color:#888;}
.cmtsreplyname em {margin-top:1px;padding:0 7px;font-size:12px;color:#888;font-style:normal;line-height:20px;border:1px solid #eee;border-radius:2px;background:#fafafa;display:inline-block;vertical-align:top;}
.cmtsreplyname a {font-size:14px;color:#333;}
.cmtsreplycon {margin-top:8px;word-wrap:break-word;word-break:break-all;}
.cmtsreplydate {margin-top:8px;font-size:14px;color:#bbb;}
.cmtsfoot {margin-top:8px;}
.cmtsfoot .reply {font-size:14px;color:#888;}
.cmtsfoot .reply:hover {color:#171c20;}
.cmtsfoot .reply:hover::before {color:#171c20;}
.cmts.nocmt {padding:15px 30px;}
.cmts.nocmt::before {content:attr(data-content);width:100%;font-size:16px;color:#888;text-align:center;display:inline-block;}
.reply-frm {border-left:2px solid #e4e8eb;padding:0 0 0 20px;margin-top:15px;box-shadow:none;}
.reply-frm .cmtimg {display:none !important;}
.reply-frm .cmtarea {padding:0;}
#cancel-reply {height:26px;margin-left:20px;padding:0 10px 0 6px;font-size:14px;color:#171c20;line-height:25px;border:2px solid #171c20;outline:0;box-sizing:content-box;border-radius:20px;cursor:pointer;background:#fff;vertical-align:top;display:none;}
.comment {margin-top:20px;zoom:1;}
.comment::after {content:"";display:block;clear:both;}
.cmtimg {width:48px;float:left;text-align:center;}
.cmtimg img {width:48px;height:48px;border-radius:3px;}
.cmtimg p {height:20px;font-size:12px;color:#888;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.cmtinfo {padding-left:70px;font-size:14px;word-break:break-all;}
.cmtinfo a {color:#333;}
.cmtinfo .cmt {margin:15px 0 0 -20px;padding-bottom:0;}
.cmtinfo .cmt .cmt {margin:15px 0 0 -20px;padding-bottom:0;}
.cmtinfo .cmt .cmt .cmt {margin:15px 0 0 -20px;padding-bottom:0;}
.cmtinfo .cmtinfo {width:500px;}
.cmtinfo .cmtinfo .cmtinfo {width:430px;}
.cmtinfo .cmtinfo .cmtinfo .cmtinfo {width:360px;}
.cmttime,.cmttime a {font-size:12px;color:#888;}
.cmtarea {padding-left:68px;}
.cmtarea textarea {width:100%;margin:0 0 10px;padding:5px 15px;font-size:16px;color:#333;line-height:28px;border:1px solid #e4e8eb;outline:0;border-radius:3px;overflow:hidden;vertical-align:top;box-sizing:border-box;}
.cmtarea textarea:focus {color:#171c20;background-color:#fff;border-color:#aab7c1;outline:0;box-shadow:0 0 0 .2rem rgba(31,73,119,0.1);}
.cmtsubmit button {height:36px;margin:0 10px 0 0;padding:0 20px;font-size:16px;color:#888;line-height:32px;border:2px solid #e4e8eb;outline:0;border-radius:20px;cursor:pointer;background:#fff;}
.cmtsubmit button:hover {color:#171c20;border-color:#171c20;}
.cmtsubmit button:hover::before {color:#171c20;}
.cmtsubmit button:active {border-color:#171c20;background:#f1f1f1;}
.cmtsubmit span {font-size:14px;color:#888;}
.cmtform {width:100%;float:left;margin:0 0 20px;padding:0 0 20px;border-bottom:1px dotted #e4e8eb;display:none;}
.cmtform p {width:49%;float:left;padding:5px 0;}
.cmtform input {width:180px;height:27px;}

.pagebar { width:100%; margin:0 auto; padding:20px 0; font-size:14px; text-align:center; line-height:28px; clear:both; }
.pagebar .now-page { margin:5px; padding:5px 10px; color:#fff; font-weight:bold; line-height:16px; border:1px solid #3f72af; background:#3f72af; display:inline-block; }
.pagebar a { margin:4px; padding:0 10px; color:#777; font-weight:bold; border:1px solid #ebebeb; background:#fff; display:inline-block; }
.pagebar span { margin:0; padding:0; border:0; background:none; }
.pagebar a:hover { color:#3f72af; border:1px solid #3f72af; background:#fff; }