/* ==================== 基础样式 ==================== */
/*页面全部黑白灰，彩色消失
html {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
:target {
  scroll-margin-top: 60px;
}
.contenter{
    margin: 0 auto;
    width: 1290px;
}

/* ==================== 顶部导航 ==================== */
.header {
    position: fixed;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 60px;
    background-color: rgba(75,81,104,0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 200px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .header {
    margin-left: 60px;
}

.logo-mobile {
    display: none;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.logo-mobile img {
    width: 195px;
    height: 60px;
    border-radius: 8px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-item:hover > a,
.nav-item.active > a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}
.dropdown-menu a>img{
    width: 15px;
    height: 14px;
    vertical-align: middle;
}
.dropdown-menu a:hover {
    background: #f5f0ff;
    color: #9b59b6;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.header-right i {
    cursor: pointer;
    transition: color 0.3s;
}

.header-right i:hover {
    color: white;
}

/* ==================== 侧边栏 ==================== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: white;
    border-right: 1px solid #e0e0e0;
    z-index: 100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 60px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    font-weight: 600;
    color: #4b5168;
    transition: all 0.3s;
}

.sidebar.collapsed .sidebar-logo span {
    display: none;
}

.sidebar-logo img {
    /* width: 36px;
    height: 36px; */
    border-radius: 8px;
}

.sidebar-menu {
    flex: 1;
    padding: 15px 0;
    overflow-y: auto;
    list-style: none;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu > li {
    margin-bottom: 2px;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #555;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.sidebar-menu > li > a:hover,
.sidebar-menu > li > a.active {
    background: linear-gradient(135deg, #f5f0ff 0%, #ebe0f5 100%);
    color: #9b59b6;
}

.sidebar-menu > li > a i {
    width: 20px;
    text-align: center;
    color: #999;
    transition: color 0.3s;
    font-size: 16px;
}
.sidebar-menu > li > a img{
	width:21px;
	height:21px;
	vertical-align: middle;
}

.sidebar-menu > li > a:hover i,
.sidebar-menu > li > a.active i {
    color: #9b59b6;
}

.sidebar-menu > li > a .arrow-icon {
    margin-left: auto;
    transition: transform 0.3s;
}

.sidebar-menu > li > a.active .arrow-icon {
    transform: rotate(90deg);
}

.sidebar.collapsed .sidebar-menu > li > a span {
    display: none;
}

.sidebar.collapsed .sidebar-menu > li > a .arrow-icon {
    display: none;
}

/* 二级菜单 */
.sidebar-submenu {
    display: none;
    padding-left: 34px;
    background: #fafafa;
    list-style: none;
    border-left: 2px solid #9b59b6;
}

.sidebar-submenu.active {
    display: block;
}

.sidebar-submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #666;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
}

.sidebar-submenu li a:hover {
    background: #f0f0f0;
    color: #9b59b6;
    padding-left: 18px;
}

.sidebar-submenu li a i {
    width: 14px;
    text-align: center;
    color: #bbb;
}
.sidebar-submenu li a>img{
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
.sidebar.collapsed .sidebar-submenu {
    display: none !important;
}

/* 侧边栏折叠按钮 */
.sidebar-toggle {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #999;
    font-size: 12px;
    transition: all 0.3s;
    z-index: 101;
}

.sidebar-toggle:hover {
    background: #f5f5f5;
    color: #9b59b6;
}

.sidebar.collapsed .sidebar-toggle {
    right: -12px;
}

.sidebar-footer {
    padding: 15px 10px;
    border-top: 1px solid #f0f0f0;
}

.sidebar-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-footer ul li {
    margin-bottom: 2px;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: #777;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 6px;
}

.sidebar-footer a:hover {
    background: #f5f5f5;
    color: #9b59b6;
}

.sidebar-footer a i {
    width: 16px;
    text-align: center;
}

.sidebar.collapsed .sidebar-footer a span {
    display: none;
}

/* ==================== 搜索区域 ==================== */
.search-section {
    padding: 30px 20px;
    /*background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);*/
    background-image: linear-gradient(45deg, #8618db 0%, #d711ff 50%, #460fdd 100%);
    position: relative;
    overflow: hidden;
    margin-left: 200px;
    transition: margin-left 0.3s ease;
    padding-top: 90px;
}

.sidebar.collapsed ~ .search-section {
    margin-left: 60px;
}

/* .search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: gradientShift 8s ease-in-out infinite;
} */

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 10%);
    }
}

.search-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.search-left {
    flex: 1;
    max-width: 600px;
}

.search-area {
    margin-bottom: 12px;
}

.search-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.search-tab {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s;
}

.search-tab.active {
    background: rgba(255, 255, 255, 0.9);
    color: #9b59b6;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.3);
}

.search-container {
    display: flex;
    background: white;
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-box {
    flex: 1;
    padding: 10px 16px;
    border: none;
    font-size: 14px;
    outline: none;
}

.search-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.search-btn:hover {
    opacity: 0.9;
}

.hot-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hot-search-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

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

.hot-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.hot-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

.weather-widget {
    background: #fff;
    border-radius: 12px;
    padding: 5px 10px;
    backdrop-filter: blur(10px);
    color: white;
    min-width: 140px;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-details {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 20px;
    font-weight: 600;
}

.weather-city {
    font-size: 13px;
    opacity: 0.9;
}

.weather-air {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

/* ==================== 主内容区域 ==================== */
.content {
    margin:0 auto;
    padding: 20px;
    max-width: 1290px;
}

.main-content {
    margin-left: 200px;
    padding: 20px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .main-content {
    margin-left: 60px;
}

/* ==================== 分类区域 ==================== */
.category {
    margin-bottom: 25px;
}

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

.category-tittle {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.category-tittle img{
	width:21px;
	height:21px;
	vertical-align: middle;
}

.category-tittle span{
	    margin-left: 8px;
}
.category-tittle i {
    margin-right: 8px;
    color: #9b59b6;
}

.category-more {
    font-size: 12px;
    color: #999;
    cursor: pointer;
}

.category-more:hover {
    color: #9b59b6;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: auto;
    margin-left: 8px;
}

.category-tab {
    padding: 4px 12px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f5f5f5;
    border: none;
    user-select: none;
}

.category-tab:hover {
    background: #ebe0f5;
    color: #9b59b6;
}

.category-tab.active {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

/* Tab Panel */
.tab-panel {
    display: none;
    animation: tabFadeIn 0.3s ease;
}

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

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

/* ==================== 网站卡片网格 ==================== */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.site-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.site-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #9b59b6;
}

.site-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
	border: 1px solid #f0f0f0;
}
.site-icon img{
	width:32px;
	height:32px;
}
.site-info {
    flex: 1;
    min-width: 0;
}

.site-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.site-desc {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 图片样式网站卡片 */
.sites-grid-image {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.site-card-image {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.site-card-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #e8dcf8;
}

.site-card-image .site-icon {
    width: 100%;
    height: 80px;
    border-radius: 0;
    font-size: 32px;
}

.site-card-image .site-info {
    padding: 10px;
}

.site-card-image .site-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.site-card-image .site-desc {
    font-size: 11px;
    color: #999;
}

/* ==================== 文章卡片 ==================== */
.articles-section {
    margin-bottom: 25px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #e8dcf8;
}

.article-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-image {
    position: relative;
}

.article-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(155, 89, 182, 0.9);
    color: white;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 500;
}

.article-tag.hot {
    background: rgba(231, 76, 60, 0.9);
}

.article-content {
    padding: 15px;
}

.article-category {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f0ff;
    color: #9b59b6;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.article-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

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

/* ==================== 文章列表页 ==================== */
.articles-page {
    margin: 0 auto;
    padding: 20px;
    max-width: 1290px;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 0;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 15px;
    color: white;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    color: #666;
}

.filter-select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: white;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #9b59b6;
}

.filter-tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tag {
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover {
    background: #e8dcf8;
    color: #9b59b6;
}

.filter-tag.active {
    background: #9b59b6;
    color: white;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
}

.article-item {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: #e8dcf8;
}

.article-cover {
    width: 200px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-item .article-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.article-item .article-content > div:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-item .article-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item .article-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
    border-color: #9b59b6;
    color: #9b59b6;
}

.page-btn.active {
    background: #9b59b6;
    color: white;
    border-color: #9b59b6;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-size: 14px;
    color: #999;
    padding: 0 10px;
}

/* ==================== 页脚 ==================== */
.footer {
    margin-left: 200px;
    background: #4b5168;
    color: white;
    padding: 30px 20px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .footer {
    margin-left: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section .qrcode {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-links a {
    display: inline-flex !important;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* ==================== 悬浮按钮 ==================== */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* 工具提示 */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ==================== 移动端菜单 ==================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1002;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #4b5168;
}

.mobile-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-content {
    padding: 15px 0;
}

.mobile-menu-section {
    margin-bottom: 15px;
}

.mobile-menu-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.mobile-menu-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-section a:hover {
    background-color: #f5f0ff;
    color: #9b59b6;
}

.mobile-menu-section a i {
    width: 16px;
    text-align: center;
    color: #999;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
.contenter{
    margin: 0 auto;
    width: 100%;
}
    .sidebar {
        display: none;
    }

    .sidebar.collapsed {
        display: none;
    }

    .header {
        margin-left: 0 !important;
    }

    .search-section {
        margin-left: 0 !important;
        padding-top: 80px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-content {
        margin-left: 0 !important;
        padding: 10px;
    }

    .content {
        max-width: 100%;
    }

    .footer {
        margin-left: 0 !important;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .header-right span {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-mobile {
        display: flex;
    }

    .search-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-left {
        max-width: none;
        width: 100%;
    }

    .search-container {
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .weather-widget {
        align-self: flex-start;
        width: 100%;
        padding: 5px 6px;
        box-sizing: border-box;
    }

    .weather-info {
        gap: 8px;
    }

    .weather-info i {
        font-size: 24px !important;
    }

    .weather-temp {
        font-size: 18px;
    }

    .weather-city {
        font-size: 12px;
    }

    .weather-air {
        font-size: 11px;
    }

    .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .site-card {
        padding: 10px 12px;
    }

    .site-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .category-tab {
        padding: 3px 10px;
        font-size: 12px;
    }

    .articles-page {
        padding: 10px;
    }

    .page-header {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .articles-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .article-item {
        flex-direction: column;
    }

    .article-cover {
        width: 100%;
        height: 160px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .page-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}
/* ==================== 文章内容页 ==================== */

.article-detail-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.article-detail {
    margin: 0 auto;
    padding: 20px;
    max-width: 1290px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-detail .article-header {
    margin-bottom: 30px;
}

.article-category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.article-detail .article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

.article-meta-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #7f8c8d;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.article-detail .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-detail .meta-item i {
    color: #9b59b6;
}

.article-cover-detail {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-body {
    font-size: 16px;
    line-height: 2;
    color: #444;
}

.article-body p {
    margin-bottom: 20px;
}
.article-body p span{
    text-wrap-mode: wrap !important;
}
.article-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #9b59b6;
}

.article-body h3 {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 12px;
}

.article-body ul,
.article-body ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid #9b59b6;
    padding: 15px 20px;
    background: #f9f5ff;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-body code {
    background: #f4f4f4;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    color: #e74c3c;
}

.article-body pre {
    background: #2c3e50;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body pre code {
    background: none;
    color: #ecf0f1;
    padding: 0;
    font-size: 14px;
}

.article-detail .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.article-detail .article-tags span:first-child {
    font-weight: 500;
    color: #555;
}

.article-detail .article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    gap: 15px;
}

.article-detail .action-btn {
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.article-detail .action-btn:hover {
    background: #f5f5f5;
    border-color: #9b59b6;
    color: #9b59b6;
}

.article-detail .action-btn.like-btn.liked {
    color: #e74c3c;
    border-color: #e74c3c;
}

.article-detail .action-btn.like-btn.liked i {
    animation: likeAnimation 0.3s ease;
}

@keyframes likeAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.article-detail .related-articles {
    margin-top: 40px;
}

.article-detail .related-articles h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #9b59b6;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.related-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-cover {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: block;
}

.related-meta {
    font-size: 13px;
    color: #95a5a6;
}

/* 文章详情页移动端响应式 */
@media (max-width: 768px) {
    .article-detail-page {
        padding: 10px;
    }

    .article-detail {
        padding: 15px;
    }

    .article-detail .article-title {
        font-size: 22px;
    }

    .article-meta-detail {
        font-size: 13px;
        gap: 10px;
    }

    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .article-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .article-body h2 {
        font-size: 19px;
    }

    .article-body h3 {
        font-size: 17px;
    }

    .article-detail .article-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .article-detail .action-btn {
        justify-content: center;
    }

    .related-list {
        grid-template-columns: 1fr;
    }
}
/* ==================== 关于我们 ==================== */
        .about-page {
			margin:0 auto;
max-width: 1290px;
    padding: 50px;
        }

        .about-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .about-section h2 {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #9b59b6;
            position: relative;
        }

        .about-section h2::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #9b59b6 0%, #8e44ad 100%);
        }

        .about-section p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 16px;
        }

        .about-section ul {
            padding-left: 25px;
            margin-bottom: 16px;
        }

        .about-section li {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
        }

        .about-hero {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: white;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .about-hero h1 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-hero p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.95;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .team-member {
            text-align: center;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            font-weight: 600;
        }

        .team-name {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .team-title {
            font-size: 13px;
            color: #9b59b6;
            margin-bottom: 10px;
        }

        .team-desc {
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.6;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: linear-gradient(135deg, #f5f0ff 0%, #e8dcf8 100%);
            border-radius: 10px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #9b59b6;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: #7f8c8d;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e0e0e0;
        }

        .timeline-item {
            position: relative;
            padding: 20px 0;
            border-bottom: 1px dashed #e0e0e0;
        }

        .timeline-item:last-child {
            border-bottom: none;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 25px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #9b59b6;
            border: 3px solid white;
            box-shadow: 0 0 0 2px #e8dcf8;
        }

        .timeline-year {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .timeline-content {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
/* ==================== 联系我们 ==================== */



    .contact-page {
		margin:0 auto;
max-width: 1290px;
    padding: 50px;
        }

        .contact-header {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: white;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .contact-header h1 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-header p {
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.95;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-card h2 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #9b59b6;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card h2 i {
            color: #9b59b6;
        }

        .contact-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5f0ff 0%, #e8dcf8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9b59b6;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-info-content {
            flex: 1;
        }

        .contact-info-label {
            font-size: 13px;
            color: #95a5a6;
            margin-bottom: 5px;
        }

        .contact-info-value {
            font-size: 15px;
            color: #2c3e50;
            font-weight: 500;
        }

        .contact-info-value a {
            color: #9b59b6;
            text-decoration: none;
        }

        .contact-info-value a:hover {
            text-decoration: underline;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-checkcode {
            display: flex;
            gap: 8px;
            justify-content: flex-start;
        }
        .form-group,.form-checkcode label {
            font-size: 14px;
            font-weight: 500;
            color: #555;
        }

        .form-group input,
        .form-checkcode input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #9b59b6;
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            padding: 14px 30px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .working-hours {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .working-hours h2 {
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #9b59b6;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .working-hours h2 i {
            color: #9b59b6;
        }

        .working-hours table {
            width: 100%;
            border-collapse: collapse;
        }

        .working-hours th,
        .working-hours td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }

        .working-hours th {
            font-weight: 600;
            color: #7f8c8d;
            font-size: 13px;
        }

        .working-hours td {
            color: #2c3e50;
            font-size: 14px;
        }

        .working-hours .holiday {
            color: #e74c3c;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5f0ff 0%, #e8dcf8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9b59b6;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
            color: #8e44ad;
        }

/* ==================== 关于我们页移动端适配 ==================== */
@media (max-width: 768px) {
    .about-page {
        padding: 10px;
    }

    .about-hero {
        padding: 25px 15px;
    }

    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-section {
        padding: 20px;
    }

    .about-section h2 {
        font-size: 19px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .about-section p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-section li {
        font-size: 14px;
        line-height: 1.7;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-item::before {
        left: -18px;
        width: 10px;
        height: 10px;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-content {
        font-size: 13px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .team-member {
        padding: 20px 15px;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .team-name {
        font-size: 15px;
    }

    .team-title {
        font-size: 12px;
    }

    .team-desc {
        font-size: 12px;
    }
}

/* ==================== 联系我们页移动端适配 ==================== */
@media (max-width: 768px) {
    .contact-page {
        padding: 10px;
    }

    .contact-header {
        padding: 25px 15px;
    }

    .contact-header h1 {
        font-size: 24px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card h2 {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    .contact-info-item {
        padding: 12px 0;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-info-label {
        font-size: 12px;
    }

    .contact-info-value {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .working-hours {
        padding: 20px;
    }

    .working-hours h2 {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .working-hours th,
    .working-hours td {
        padding: 10px 10px;
        font-size: 13px;
    }

    .working-hours th {
        font-size: 12px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* ----- pagebar ----- */

.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination a {

  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 6px 8px;
  margin: 0 2px;
  border-radius: 3px;

}

.pagination a:hover {
  color: #9b59b6;
  border: 1px solid #9b59b6;
}
.pagination a.page-num-current {
  color: #fff;
  background: #9b59b6;
  border: 1px solid #9b59b6;

}