/* AB模板网 整站模板下载 */
/* 模板：Www.AdminBuy.Cn */
:root {
    --primary-color: #1a56db;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-dark: #111827;
    --text-light: #374151;
    --text-muted: #6b7280;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 97%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.title1 {
    color: #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: center;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.title2 {
    color: #fff;
    position: absolute;
    top: 55%;
    left: 50%;
    text-align: center;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
.title1 {
    width: 80%;
    color: #fff;
    position: absolute;
    top: 30%;
    left: 50%;
    text-align: center;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.title2 {
    width: 80%;
    color: #fff;
    position: absolute;
    top: 45%;
    left: 50%;
    text-align: center;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    font-size: 0.9em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
}

.zonglan {
    margin: 15px 0;
    background: #f97316;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
}

/*---下拉菜单 start-----*/

/* 1. 下拉菜单的外层容器 */
.dropdown {
    position: relative;
    display: inline-block;
    width: 200px;
}



/* 2. 触发按钮的样式 */
.dropdown-btn {
    width: 100%;
    padding: 3px 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

/* 3. 下拉列表的核心样式 */
.dropdown-content {
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #3f6cbe;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
    
    /* 👇 关键代码：限制最大高度，超出显示滚动条 👇 */
    max-height: 120px; 
    overflow-y: auto; 
}

/* 4. 列表项样式 */
.dropdown-content a {
    display: block;
    padding: 3px 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f97316;
}

/* 5. 简单的交互：鼠标悬停时显示 */
.dropdown:hover .dropdown-content {
    display: block;
}

/* -  手机弹窗 - */
.floating-btn{
    display: block;
}
@media screen and (max-width: 768px) {
.dropdown {
    display: none;
}

}
        /* 1. 悬浮窗样式 */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #4d85f1;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 999;
            transition: transform 0.2s;
        }
        .floating-btn:active {
            transform: scale(0.9);
        }

        /* 2. 全屏导航遮罩层 */
        .fullscreen-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* 加一层半透明背景，方便点击空白处关闭 */
            z-index: 1000;
            display: none; 
            justify-content: center;
            align-items: center;
        }
        .fullscreen-nav.active {
            display: flex; 
        }

        /* 3. 导航核心内容区 */
        .nav-content {
            width: 85%;
            max-width: 400px;
            height: 80vh; /* 限制高度，留出上下空间 */
            background-color:#4d85f1;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* 4. 导航头部 (修复关闭按钮) */
        .nav-header {
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        .close-btn {
            cursor: pointer;
            font-size: 24px;
            color: #666;
            /* 扩大点击热区 */
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }
        .close-btn:active {
            background-color: #f0f0f0;
        }

        /* 5. 导航列表 (支持滑动) */
        .nav-list {
            flex: 1;
            overflow-y: auto; 
            -webkit-overflow-scrolling: touch; 
        }
        .nav-item {
            padding: 16px 20px;
            border-bottom: 1px solid #f5f5f5;
            font-size: 16px;
            color: #333;
            cursor: pointer;
        }
        .nav-item:active {
            background-color: #0083ca;
        }



/*---下拉菜单 end-----*/


/* ========== Header ========== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.logo img {
    max-height: 50px;
    width: auto; display:block
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-menu li.active a {
    background: var(--primary-color);
    color: #fff;
}

.nav-menu li a i {
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--border-color);
}

/* ========== Hero Slider ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-item.active {
    opacity: 1;
    z-index: 1;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.slide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.slide-content {
    max-width: 800px;
    color: #fff;
}

.slide-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.slide-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.slide-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: #fff;
}

.hero-search-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 550px;
    padding: 0 20px;
}

.hero-search-box .hero-search {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-search-box .hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.hero-search-box .hero-search button {
    padding: 15px 30px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-search-box .hero-search button:hover {
    background: var(--primary-dark);
}

/* ========== Page Banner ========== */
.page-banner {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.page-banner-small {
    height: 180px;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.85) 0%, rgba(37, 99, 235, 0.85) 50%, rgba(59, 130, 246, 0.85) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    
}

.page-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.page-banner-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.page-banner-search {
    display: flex;
    max-width: 450px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-banner-search input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.page-banner-search button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.page-banner-search button:hover {
    background: var(--primary-dark);
}

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
	    margin-bottom: 10px;
    margin-top: -10px;
}

.page-banner-breadcrumb a {
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.page-banner-breadcrumb a:hover {
    color: #fff;
}

.page-banner-breadcrumb .separator {
    color: rgba(255,255,255,0.5);
}

.page-banner-breadcrumb span:last-child {
    color: rgba(255,255,255,0.7);
}
.adminbuy_cn img{ max-width:100% !important; height:auto !important;display:inline-block;}
.adminbuy_cn p{text-wrap: inherit !important;}
.adminbuy_cn p span{text-wrap: inherit !important;}
/* ========== Hero Section ========== */
.hero-section {
    background: linear-gradient(135deg, #1a56db 0%, #2563eb 50%, #3b82f6 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-search {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.hero-search button {
    padding: 15px 30px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-search button:hover {
    background: var(--primary-dark);
}

/* ========== Home Navigation ========== */
.home-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 25px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.home-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.home-nav-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.home-nav-item i {
    font-size: 16px;
}

/* ========== Main Wrapper ========== */
.main-wrapper {
    background: var(--bg-light);
    padding: 1% 0 0px;
    float: right;
    width: 80%;
}

/* ========== Content Wrapper (List & Read Page) ========== */
.content-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}

.sidebar .widget-box {
    margin-bottom: 0;
}

.sidebar .widget-box + .widget-box {
    margin-top: 20px;
}

/* ========== Home Layout ========== */
.home-content {
    width: 100%;
}

.home-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.home-main {
    flex: 1;
    min-width: 0;
}

.home-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}

.home-sidebar .widget-box {
    margin-bottom: 0;
}

.home-sidebar .widget-box + .widget-box {
    margin-top: 20px;
}

/* ========== M-CT Content Block ========== */
/* 1. 移动端基础样式（默认优先应用） */
.m-ct {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 200px;
    
    /* 移动端自适应优化：取消浮动，宽度设为100% */
    float: none;
    width: 100%;
    margin-right: 0;
}

/* 2. 桌面端样式（当屏幕宽度大于等于 768px 时生效） */
@media screen and (min-width: 768px) {
    .m-ct {
        float: left;
        width: 19%;
        margin-right: 1%;
        height: 250px;
    }
}

.m-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.m-tt {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-tt i {
    color: var(--primary-color);
}

.m-more {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.m-more:hover {
    color: var(--primary-color);
}

.m-bd {
    padding: 20px;
}

/* ========== Style A - Feature with Big Image ========== */
.feature-a {
    display: flex;
    gap: 20px;
}

.feature-main {
    display: block;
    width: 320px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.feature-img {
    display: block;
    height: 220px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature-main:hover .feature-img img {
    transform: scale(1.05);
}

.feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.feature-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-color);
    border-radius: 3px;
    font-size: 12px;
    font-style: normal;
    margin-bottom: 8px;
}

.feature-tt {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.feature-desc {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

.feature-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8faff;
    border-radius: 6px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #eef4ff;
}

.item-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #e0e0e0;
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.item-num.num-1, .item-num.num-2, .item-num.num-3 {
    background: var(--primary-color);
    color: #fff;
}

.item-tt {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-date {
    font-size: 12px;
    color: var(--text-muted);
    font-style: normal;
}

/* ========== Style B - 2 Column Grid ========== */
.grid-2 {
    color: #333;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.card-a {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card-a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.card-img {
    display: block;
    height:250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-a:hover .card-img img {
    transform: scale(1.05);
}

.card-info {
    display: block;
    padding: 12px 15px;
}

.card-tt {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.card-meta em {
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta i {
    color: var(--primary-light);
}

/* ========== Style C - Left Image Layout ========== */
.layout-left-img {
    display: flex;
    gap: 20px;
}

.layout-left-img .main-img {
    display: block;
    width: 260px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.layout-left-img .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.layout-left-img .main-img:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.img-overlay strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

.side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8faff;
    border-radius: 6px;
    transition: var(--transition);
}

.list-item:hover {
    background: #eef4ff;
}

.list-item i {
    color: var(--primary-light);
    font-size: 12px;
}

.list-item .item-tt {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.list-item:hover .item-tt {
    color: var(--primary-color);
}

.list-item .item-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== Style D - Top Image Layout ========== */
.layout-top-img {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-img {
    display: block;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.top-img:hover img {
    transform: scale(1.05);
}

.img-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.img-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.img-info span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.bottom-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    flex-shrink: 0;
}

/* ========== Style E - Right Image Layout ========== */
.layout-right-img {
    display: flex;
    gap: 20px;
}

.layout-right-img .side-list {
    flex: 1;
}

.layout-right-img .list-item .item-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--primary-light);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.layout-right-img .main-img {
    display: block;
    width: 260px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.layout-right-img .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.layout-right-img .main-img:hover img {
    transform: scale(1.05);
}

/* ========== Style F - 3 Column Grid ========== */
.layout-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-item {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.grid-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.item-img {
    display: block;
    height: 120px;
    overflow: hidden;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid-item:hover .item-img img {
    transform: scale(1.05);
}

.item-info {
    display: block;
    padding: 10px 12px;
}

.item-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-info em {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-style: normal;
}

/* ========== Rank List ========== */
.rank-list {
    list-style: none;
}

.rank-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.rank-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rank-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank-num {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.rank-num.rank-1,
.rank-num.rank-2,
.rank-num.rank-3 {
    background: var(--primary-color);
    color: #fff;
}

.rank-title {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-list li a:hover .rank-title {
    color: var(--primary-color);
}

/* ========== Tag Cloud ========== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 13px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== Link List ========== */
.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-list a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 13px;
    transition: var(--transition);
}

.link-list a:hover {
    background: var(--primary-light);
    color: #fff;
}

.feature-thumb-big:hover img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.feature-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-overlay p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-small-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-small-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.feature-small-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.feature-small-item .feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.feature-small-item:hover .feature-num {
    background: rgba(255,255,255,0.2);
}

.feature-small-item .feature-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feature-small-item .feature-date {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.feature-small-item:hover .feature-date {
    color: rgba(255,255,255,0.7);
}

/* ========== Article Grid 4 ========== */
.article-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ========== Category Card ========== */
.category-card {
    margin-bottom: 0;
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card .category-thumb {
    display: block;
    width: 100%;
    height: 140px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-light);
}

.category-card .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card .category-thumb:hover img {
    transform: scale(1.05);
}

.category-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.category-title a {
    color: var(--text-dark);
}

.category-title a:hover {
    color: var(--primary-color);
}

.category-list-new {
    list-style: none;
}

.category-list-new li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.category-list-new li:last-child {
    border-bottom: none;
}

.category-list-new li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.category-list-new li a:hover {
    color: var(--primary-color);
}

.category-list-new li a i {
    color: var(--primary-light);
    font-size: 10px;
}

.category-list-new li a span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-list-new li a em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-muted);
}

/* ========== Rank Grid ========== */
.rank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.rank-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.rank-item .rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--text-muted);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.rank-item .rank-num.rank-1 { background: #ef4444; }
.rank-item .rank-num.rank-2 { background: #f97316; }
.rank-item .rank-num.rank-3 { background: #eab308; }

.rank-item:hover .rank-num {
    background: rgba(255,255,255,0.2);
}

.rank-item:hover .rank-num.rank-1,
.rank-item:hover .rank-num.rank-2,
.rank-item:hover .rank-num.rank-3 {
    background: rgba(255,255,255,0.3);
}

.rank-item .rank-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item .rank-views {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rank-item:hover .rank-views {
    color: rgba(255,255,255,0.7);
}

/* ========== Tag Cloud New ========== */
.tag-cloud-new {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-new a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 12px;
    transition: var(--transition);
}

.tag-cloud-new a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== Links Grid New ========== */
.links-grid-new {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.links-grid-new a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 12px;
    transition: var(--transition);
}

.links-grid-new a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== Category Wide ========== */
.category-wide {
    margin-bottom: 0;
}

.category-wide-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-wide-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 6px;
    transition: var(--transition);
}

.category-wide-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.category-wide-item .item-thumb {
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    background: #e5e7eb;
}

.category-wide-item .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-wide-item:hover .item-thumb img {
    transform: scale(1.05);
}

.category-wide-item .item-title {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-wide-item:hover .item-title {
    color: #fff;
}

.category-wide-item .item-date {
    font-size: 11px;
    color: var(--text-muted);
}

.category-wide-item:hover .item-date {
    color: rgba(255,255,255,0.7);
}

/* ========== Section Row ========== */
.section-row {
    display: flex;
    gap: 25px;
}

.section-main {
    flex: 1;
    min-width: 0;
}

.section-side {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-half {
    flex: 1;
    min-width: 0;
}

/* ========== Section Box ========== */
.section-box {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.section-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent-color);
    font-size: 16px;
}

.more-link {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    transition: var(--transition);
}

.more-link:hover {
    color: #fff;
}

.section-body {
    padding: 20px 22px;
}

/* ========== Feature Section ========== */
.feature-grid {
    display: flex;
    gap: 20px;
}

.feature-main {
    flex: 1;
}

.feature-thumb {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-light);
}

.feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-thumb:hover img {
    transform: scale(1.05);
}

.feature-info {
    padding-top: 15px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-title a {
    color: var(--text-dark);
}

.feature-title a:hover {
    color: var(--primary-color);
}

.feature-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.feature-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-meta i {
    color: var(--primary-light);
}

.feature-list {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.feature-item:hover .feature-num {
    background: rgba(255,255,255,0.2);
}

.feature-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== Search Section ========== */
.search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary-color);
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    outline: none;
}

.search-form button {
    padding: 12px 18px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* ========== Tags Section ========== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== Article Grid 3 ========== */
.article-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.article-thumb {
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--bg-light);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.article-info {
    padding: 15px;
}

.article-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-meta i {
    color: var(--primary-light);
    font-size: 12px;
}

/* ========== Category Section ========== */
.category-section {
    margin-bottom: 0;
}

.category-layout-a,
.category-layout-b {
    display: flex;
    gap: 25px;
}

.category-layout-a .category-main,
.category-layout-b .category-main {
    width: 280px;
    flex-shrink: 0;
}

.category-layout-a .category-list,
.category-layout-b .category-list {
    flex: 1;
}

.category-thumb {
    display: block;
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-light);
}

.category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-thumb:hover img {
    transform: scale(1.05);
}

.category-info {
    padding-top: 12px;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.5;
}

.category-info h3 a {
    color: var(--text-dark);
}

.category-info h3 a:hover {
    color: var(--primary-color);
}

.category-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.category-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.category-item i {
    color: var(--primary-light);
    margin-right: 10px;
    font-size: 12px;
}

.category-item:hover i {
    color: rgba(255,255,255,0.7);
}

.category-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-item em {
    font-style: normal;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 15px;
}

.category-item:hover em {
    color: rgba(255,255,255,0.7);
}

/* ========== Rank List ========== */
.rank-list {
    list-style: none;
}

.rank-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.rank-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rank-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.rank-list li a:hover {
    color: var(--primary-color);
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--text-muted);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.rank-num.rank-1 { background: #ef4444; }
.rank-num.rank-2 { background: #f97316; }
.rank-num.rank-3 { background: #eab308; }

.rank-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== Links Grid ========== */
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.link-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== Article List ========== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.article-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.article-item .article-thumb {
    width: 240px;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}

.article-item .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-item:hover .article-thumb img {
    transform: scale(1.05);
}

.article-item .article-info {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-item .article-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.article-item .article-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== List Page Cards ========== */
.article-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card-item {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    max-height: 400px;
    height: auto;
    overflow-y: auto;
}



.article-card-item .card-thumb {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.article-card-item .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card-item:hover .card-thumb img {
    transform: scale(1.05);
}

.article-card-item .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 86, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.article-card-item:hover .card-overlay {
    opacity: 1;
}

.article-card-item .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition);
}

.article-card-item:hover .card-btn {
    transform: translateY(0);
}

.article-card-item .card-content {
    padding: 18px;
}

.article-card-item .card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-card-item .card-title a {
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-item .card-title a:hover {
    color: var(--primary-color);
}

.article-card-item .card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-item .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
}

.article-card-item .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-card-item .card-meta i {
    color: var(--primary-light);
    font-size: 12px;
}


/* ========== List Header ========== */
.list-header {
    background: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.list-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-title i {
    color: var(--primary-color);
}

.list-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== Read Page ========== */
.read-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.read-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.read-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.read-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-meta i {
    color: var(--primary-light);
}

.read-meta a {
    color: var(--text-light);
}

.read-meta a:hover {
    color: var(--primary-color);
}

.read-content {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.read-content p {
    margin-bottom: 20px;
}

.read-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 18px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
}

.read-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.read-content ul, .read-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.read-content li {
    margin-bottom: 8px;
}

.read-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.read-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    color: var(--text-light);
}

.read-tags {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--bg-light);
}

.read-tags .label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-tags .label i {
    color: var(--primary-color);
}

.read-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.read-tags a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ========== Tab Navigation ========== */
.m-center-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    margin: 20px 0;
    border-bottom: 2px solid var(--border-color);
    list-style: none;
}

.m-center-tab li {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: var(--transition);
    position: relative;
}

.m-center-tab li:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.m-center-tab li.active {
    color: var(--primary-color);
    background: var(--bg-light);
    font-weight: 600;
}

.m-center-tab li.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.m-center-tab-content {
    min-height: 200px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Related Posts ========== */
.related-posts {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.related-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.related-title i {
    color: var(--primary-color);
}

.related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.related-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.related-item .num {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.related-item:hover .num {
    color: rgba(255,255,255,0.7);
}

/* ========== Article Read More ========== */
.article-readmore {
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.readmore-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ========== Comments ========== */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 6px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--border-color);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

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

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.comment-time {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== No Result ========== */
.no-result {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-result i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--border-color);
}

.no-result p {
    font-size: 16px;
    margin-bottom: 10px;
}

.no-result .tip {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== Footer ========== */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 50px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    margin-bottom: 12px;
}

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    transition: var(--transition);
}

.nav-list li a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.nav-list li a i {
    font-size: 12px;
    color: var(--primary-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary-light);
    margin-top: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-stats {
    display: flex;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-copyright a {
    color: rgba(255,255,255,0.7);
}

.footer-copyright a:hover {
    color: #fff;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========== Widget Box ========== */
.widget-box {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.widget-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header i {
    color: var(--accent-color);
}

.widget-body {
    padding: 18px 20px;
}

.widget-list {
    list-style: none;
}

.widget-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.widget-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.widget-list .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.widget-list li:nth-child(1) .num { background: #ef4444; }
.widget-list li:nth-child(2) .num { background: #f97316; }
.widget-list li:nth-child(3) .num { background: #eab308; }

.hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hot-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.hot-tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

.search-box {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    outline: none;
}

.search-box button {
    padding: 12px 18px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* ========== M-CT Style Variations ========== */
.m-ct-style-1 .m-hd,
.m-ct-style-7 .m-hd,
.m-ct-style-13 .m-hd,
.m-ct-style-19 .m-hd,
.m-ct-style-25 .m-hd,
.m-ct-style-31 .m-hd,
.m-ct-style-37 .m-hd,
.m-ct-style-43 .m-hd {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
}

.m-ct-style-1 .m-tt,
.m-ct-style-1 .m-tt i, 
.m-ct-style-7 .m-tt,
.m-ct-style-7 .m-tt i,
.m-ct-style-13 .m-tt,
.m-ct-style-13 .m-tt i,
.m-ct-style-19 .m-tt,
.m-ct-style-19 .m-tt i,
.m-ct-style-25 .m-tt,
.m-ct-style-25 .m-tt i, 
.m-ct-style-31 .m-tt,
.m-ct-style-31 .m-tt i, 
.m-ct-style-37 .m-tt,
.m-ct-style-37 .m-tt i, 
.m-ct-style-43 .m-tt,
.m-ct-style-43 .m-tt i {
    color: #fff;
}

.m-ct-style-1 .m-more,
.m-ct-style-7 .m-more,
.m-ct-style-13 .m-more,
.m-ct-style-19 .m-more,
.m-ct-style-25 .m-more,
.m-ct-style-31 .m-more,
.m-ct-style-37 .m-more,
.m-ct-style-43 .m-more {
    color: rgba(255,255,255,0.8);
}

.m-ct-style-1 .m-more:hover,
.m-ct-style-7 .m-more:hover,
.m-ct-style-13 .m-more:hover,
.m-ct-style-19 .m-more:hover,
.m-ct-style-25 .m-more:hover,
.m-ct-style-31 .m-more:hover,
.m-ct-style-37 .m-more:hover,
.m-ct-style-43 .m-more:hover {
    color: #fff;
}

/* 1. 背景渐变样式 */
.m-ct-style-2 .m-hd,
.m-ct-style-8 .m-hd,
.m-ct-style-14 .m-hd,
.m-ct-style-20 .m-hd,
.m-ct-style-26 .m-hd,
.m-ct-style-32 .m-hd,
.m-ct-style-38 .m-hd,
.m-ct-style-44 .m-hd {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* 2. 标题及图标颜色 */
.m-ct-style-2 .m-tt,
.m-ct-style-2 .m-tt i,
.m-ct-style-8 .m-tt,
.m-ct-style-8 .m-tt i,
.m-ct-style-14 .m-tt,
.m-ct-style-14 .m-tt i,
.m-ct-style-20 .m-tt,
.m-ct-style-20 .m-tt i,
.m-ct-style-26 .m-tt,
.m-ct-style-26 .m-tt i,
.m-ct-style-32 .m-tt,
.m-ct-style-32 .m-tt i,
.m-ct-style-38 .m-tt,
.m-ct-style-38 .m-tt i,
.m-ct-style-44 .m-tt,
.m-ct-style-44 .m-tt i {
    color: #fff;
}

/* 3. 默认文字颜色 */
.m-ct-style-2 .m-more,
.m-ct-style-8 .m-more,
.m-ct-style-14 .m-more,
.m-ct-style-20 .m-more,
.m-ct-style-26 .m-more,
.m-ct-style-32 .m-more,
.m-ct-style-38 .m-more,
.m-ct-style-44 .m-more {
    color: rgba(255,255,255,0.8);
}

/* 4. 鼠标悬停文字颜色 */
.m-ct-style-2 .m-more:hover,
.m-ct-style-8 .m-more:hover,
.m-ct-style-14 .m-more:hover,
.m-ct-style-20 .m-more:hover,
.m-ct-style-26 .m-more:hover,
.m-ct-style-32 .m-more:hover,
.m-ct-style-38 .m-more:hover,
.m-ct-style-44 .m-more:hover {
    color: #fff;
}

/* 1. 背景渐变样式 */
.m-ct-style-3 .m-hd,
.m-ct-style-9 .m-hd,
.m-ct-style-15 .m-hd,
.m-ct-style-21 .m-hd,
.m-ct-style-27 .m-hd,
.m-ct-style-33 .m-hd,
.m-ct-style-39 .m-hd,
.m-ct-style-45 .m-hd{
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* 2. 标题及图标颜色 */
.m-ct-style-3 .m-tt,
.m-ct-style-3 .m-tt i,
.m-ct-style-9 .m-tt,
.m-ct-style-9 .m-tt i,
.m-ct-style-15 .m-tt,
.m-ct-style-15 .m-tt i,
.m-ct-style-21 .m-tt,
.m-ct-style-21 .m-tt i,
.m-ct-style-27 .m-tt,
.m-ct-style-27 .m-tt i,
.m-ct-style-33 .m-tt,
.m-ct-style-33 .m-tt i,
.m-ct-style-39 .m-tt,
.m-ct-style-39 .m-tt i,
.m-ct-style-45 .m-tt,
.m-ct-style-45 .m-tt i{
    color: #fff;
}

/* 3. 默认文字颜色 */
.m-ct-style-3 .m-more,
.m-ct-style-9 .m-more,
.m-ct-style-15 .m-more,
.m-ct-style-21 .m-more,
.m-ct-style-27 .m-more,
.m-ct-style-33 .m-more,
.m-ct-style-39 .m-more, 
.m-ct-style-45 .m-more, {
    color: rgba(255,255,255,0.8);
}

/* 4. 鼠标悬停文字颜色 */
.m-ct-style-3 .m-more:hover,
.m-ct-style-9 .m-more:hover,
.m-ct-style-15 .m-more:hover,
.m-ct-style-21 .m-more:hover,
.m-ct-style-27 .m-more:hover,
.m-ct-style-33 .m-more:hover,
.m-ct-style-39 .m-more:hover,
.m-ct-style-45 .m-more:hover,{
    color: #fff;
}

/* ========== Style 4 (紫色) ========== */
.m-ct-style-4 .m-hd,
.m-ct-style-10 .m-hd,
.m-ct-style-16 .m-hd,
.m-ct-style-22 .m-hd,
.m-ct-style-28 .m-hd,
.m-ct-style-34 .m-hd,
.m-ct-style-40 .m-hd {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.m-ct-style-4 .m-tt, .m-ct-style-4 .m-tt i,
.m-ct-style-10 .m-tt, .m-ct-style-10 .m-tt i,
.m-ct-style-16 .m-tt, .m-ct-style-16 .m-tt i,
.m-ct-style-22 .m-tt, .m-ct-style-22 .m-tt i,
.m-ct-style-28 .m-tt, .m-ct-style-28 .m-tt i,
.m-ct-style-34 .m-tt, .m-ct-style-34 .m-tt i,
.m-ct-style-40 .m-tt, .m-ct-style-40 .m-tt i {
    color: #fff;
}

.m-ct-style-4 .m-more,
.m-ct-style-10 .m-more,
.m-ct-style-16 .m-more,
.m-ct-style-22 .m-more,
.m-ct-style-28 .m-more,
.m-ct-style-34 .m-more,
.m-ct-style-40 .m-more {
    color: rgba(255,255,255,0.8);
}

.m-ct-style-4 .m-more:hover,
.m-ct-style-10 .m-more:hover,
.m-ct-style-16 .m-more:hover,
.m-ct-style-22 .m-more:hover,
.m-ct-style-28 .m-more:hover,
.m-ct-style-34 .m-more:hover,
.m-ct-style-40 .m-more:hover {
    color: #fff;
}

/* ========== Style 5 (橙色) ========== */
.m-ct-style-5 .m-hd,
.m-ct-style-11 .m-hd,
.m-ct-style-17 .m-hd,
.m-ct-style-23 .m-hd,
.m-ct-style-29 .m-hd,
.m-ct-style-35 .m-hd,
.m-ct-style-41 .m-hd {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.m-ct-style-5 .m-tt, .m-ct-style-5 .m-tt i,
.m-ct-style-11 .m-tt, .m-ct-style-11 .m-tt i,
.m-ct-style-17 .m-tt, .m-ct-style-17 .m-tt i,
.m-ct-style-23 .m-tt, .m-ct-style-23 .m-tt i,
.m-ct-style-29 .m-tt, .m-ct-style-29 .m-tt i,
.m-ct-style-35 .m-tt, .m-ct-style-35 .m-tt i,
.m-ct-style-41 .m-tt, .m-ct-style-41 .m-tt i {
    color: #fff;
}

.m-ct-style-5 .m-more,
.m-ct-style-11 .m-more,
.m-ct-style-17 .m-more,
.m-ct-style-23 .m-more,
.m-ct-style-29 .m-more,
.m-ct-style-35 .m-more,
.m-ct-style-41 .m-more {
    color: rgba(255,255,255,0.8);
}

.m-ct-style-5 .m-more:hover,
.m-ct-style-11 .m-more:hover,
.m-ct-style-17 .m-more:hover,
.m-ct-style-23 .m-more:hover,
.m-ct-style-29 .m-more:hover,
.m-ct-style-35 .m-more:hover,
.m-ct-style-41 .m-more:hover {
    color: #fff;
}

/* ========== Style 6 (青色) ========== */
.m-ct-style-6 .m-hd,
.m-ct-style-12 .m-hd,
.m-ct-style-18 .m-hd,
.m-ct-style-24 .m-hd,
.m-ct-style-30 .m-hd,
.m-ct-style-36 .m-hd,
.m-ct-style-42 .m-hd {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.m-ct-style-6 .m-tt, .m-ct-style-6 .m-tt i,
.m-ct-style-12 .m-tt, .m-ct-style-12 .m-tt i,
.m-ct-style-18 .m-tt, .m-ct-style-18 .m-tt i,
.m-ct-style-24 .m-tt, .m-ct-style-24 .m-tt i,
.m-ct-style-30 .m-tt, .m-ct-style-30 .m-tt i,
.m-ct-style-36 .m-tt, .m-ct-style-36 .m-tt i,
.m-ct-style-42 .m-tt, .m-ct-style-42 .m-tt i {
    color: #fff;
}

.m-ct-style-6 .m-more,
.m-ct-style-12 .m-more,
.m-ct-style-18 .m-more,
.m-ct-style-24 .m-more,
.m-ct-style-30 .m-more,
.m-ct-style-36 .m-more,
.m-ct-style-42 .m-more {
    color: rgba(255,255,255,0.8);
}

.m-ct-style-6 .m-more:hover,
.m-ct-style-12 .m-more:hover,
.m-ct-style-18 .m-more:hover,
.m-ct-style-24 .m-more:hover,
.m-ct-style-30 .m-more:hover,
.m-ct-style-36 .m-more:hover,
.m-ct-style-42 .m-more:hover {
    color: #fff;
}

/* AB模板网新增分页样式 www.admibnuy.cn */
.pagebar { padding:20px; overflow:hidden; clear:both}
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px; line-height:100%
}
.pagination span {
    color: #333;
    font-size: 12px;
    padding: 7px 2px;
    margin: 0 2px;
    border-radius: 3px;
}
.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}
.pagination a.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}
.pagination .st{ font-family:宋体}
.text-secondary{ text-align:center; padding:20px 0}