/* 基础样式 - 电脑端和手机端共用 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f5f5f5;
}

.logo-img {
    display: inline-block;
    width: auto; /* 宽度自适应，避免拉伸 */
    height: 36px; /* 根据原有文字高度调整，保持布局一致 */
    object-fit: contain; /* 确保图片完整显示，不裁剪 */
    vertical-align: middle; /* 与周围元素对齐（若有） */
}


.logo-link {
    text-decoration: none; 
    outline: none; 
}
/* 搜索区域样式 - 电脑端 */
.search-container {
    background: linear-gradient(to right, #4285f4, #2b7de9);
    padding: 60px 0;
    text-align: center;
}
.search-box {
    width: 500px;
    margin: 0 auto;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 12px 40px 12px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}
.search-icon {
position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    color: #4285f4;
    cursor: pointer;
    padding: 12px 34px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* 容器样式 - 电脑端固定宽度 */
.container {
    width: 1280px;
    margin: 0 auto;
			
}

/* 标签栏样式 - 电脑端 */
.tab-container {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tab {
    padding: 15px 20px;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}
.tab.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    font-weight: bold;
}
.tab:hover:not(.active) {
    color: #0066cc;
    background-color: #f9f9f9;
}

/* 内容区域 */
.content-section {
    display: none;
}
.content-section.active {
    display: block;
}

/* 分类区域 - 电脑端 */
.categories {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff;
}
.category-column {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
}
.category {
    margin-bottom: 10px;
    color: #555;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.category:hover {
    background-color: #f0f7ff;
    color: #007bff;
}

/* 模板展示区域 - 电脑端 */
.templates {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff;
}
.template {
    width: 25%;
    margin-bottom: 20px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.template:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* 图片容器 */
.image-container {
    width: 100%;
    height: 236px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
}
.template img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 5s ease-out;
}
.template:hover img {
    transform: translateY(calc(316px - 100%));
}
.template img {
    transform: translateY(0);
}

/* 模板文字 */
.template p {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* 右上角标签样式 */
.template-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tag-recommend {
    background-color: #ff4d4f;
}
.tag-new {
    background-color: #1890ff;
}

/* 按钮容器及按钮样式 */
.template-buttons {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    transition: bottom 0.3s ease;
    background: #ffffff;
}
.template:hover .template-buttons {
    bottom: 0px;
}
.template-btn {
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.build-btn {
    background-color: #ff6633;
}
.preview-btn {
    background-color: #3399ff;
}

/* 分页样式 - 电脑端 */
.pagination {
    display: flex;
    justify-content: center;
    padding: 20px;
    list-style: none;
    background-color: #fff;
    margin: 0;
}
.pagination li {
    margin: 0 5px;
}
.pagination button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
}
.pagination button:hover:not(.active) {
    border-color: #007bff;
    color: #007bff;
}
.pagination button.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 手机端优化 - 仅在小屏幕设备生效 */
@media (max-width: 768px) {
    /* 搜索区域手机端优化 */
    .search-container {
padding: 40px 20px;
    }
    .search-box {
width: 90%;
    }
    .search-input {
padding: 14px 45px 14px 20px;
border-radius: 30px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .search-icon {
right: 15px;
font-size: 20px;
    }

    /* 容器手机端优化 */
    .container {
width: 100%;
box-shadow: none;
    }

    /* 标签栏手机端优化 */
    .tab-container {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
    }
    .tabs {
padding: 0 10px;
white-space: nowrap;
    }
    .tab {
padding: 16px 10px;
font-size: 15px;
margin-right: 10px;
    }
    .tab.active {
font-weight: 600;
    }

    /* 分类区域手机端优化 */
    .categories {
padding: 15px 10px;
gap: 8px;
    }
    .category-column {
flex: 1 1 45%;
min-width: 120px;
margin-right: 0;
    }
    .category {
margin-bottom: 8px;
padding: 10px 15px;
border-radius: 8px;
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
    }

    /* 模板展示手机端优化 */
    .templates {
justify-content: center;
padding: 15px;
gap: 15px;
    }
    .template {
width: 90%;
max-width: 350px;
padding: 12px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .template:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    /* 图片容器手机端优化 */
    .image-container {
height: 180px;
border-radius: 8px;
    }
    .template img {
       /* height: 100%;*/
object-fit: cover;
transition: transform 4s ease-out;
    }
    .template:hover img {
transform: translateY(calc(180px - 100%));
    }

    /* 模板文字手机端优化 */
    .template p {
margin-top: 12px;
font-size: 15px;
line-height: 1.6;
padding: 0 5px;
height: 48px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
    }

    /* 标签手机端优化 */
    .template-tag {
top: 12px;
right: 12px;
padding: 5px 12px;
font-weight: 600;
    }

    /* 按钮手机端优化 */
    .template-buttons {
gap: 12px;
padding: 12px 15px;
    }
    .template-btn {
padding: 10px 30px;
border-radius: 25px;
font-size: 15px;
font-weight: 500;
flex: 1;
max-width: 150px;
    }

    /* 分页手机端优化 */
    .pagination {
padding: 25px 10px;
gap: 8px;
    }
    .pagination li {
margin: 0;
    }
    .pagination button {
padding: 10px 16px;
border-radius: 8px;
font-size: 15px;
    }
}

/* 小屏手机额外优化 */
@media (max-width: 375px) {
    .tab {
padding: 16px 18px;
font-size: 14px;
    }
    .category-column {
flex: 1 1 42%;
    }
    .template-btn {
padding: 10px 20px;
font-size: 14px;
    }
    .image-container {
height: 160px;
    }
    .template:hover img {
transform: translateY(calc(160px - 100%));
    }
}

/* 移动设备触摸反馈 */
@media (max-width: 768px) {
    * {
-webkit-tap-highlight-color: transparent;
    }
    
    .category, .template, .tab, .pagination button, .search-icon {
touch-action: manipulation;
    }
    
    .category:active, .template:active {
opacity: 0.8;
    }
}
		
		/* 基础样式重置与全局设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    outline: none;
}

/* 容器样式 */
.container-1280 {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* 红色通知栏 - 手机端优化 */
.notification-bar {
    background-color: #e53e3e;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .notification-content {
flex-direction: row;
justify-content: space-between;
align-items: center;
gap: 0;
    }
    
    .notification-bar {
font-size: 14px;
padding: 10px 0;
    }
}

/* 头部样式 */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

/* Logo样式 - 手机端优化大小 */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-primary {
    color: #e53e3e;
}

.logo-secondary {
    color: #333;
}

.logo-badge {
    background-color: #1e40af;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    white-space: nowrap;
}

@media (min-width: 768px) {
 
    
    .logo-badge {
font-size: 12px;
padding: 3px 8px;
margin-left: 12px;
    }
}

/* 导航菜单样式 - 桌面版默认隐藏，手机端通过按钮控制 */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
display: flex;
align-items: center;
gap: 24px;
    }
}

.nav-link {
    color: #4b5563;
    padding: 6px 10px;
    transition: color 0.2s;
    font-size: 16px;
    font-weight: 600;
}

.nav-link:hover {
    color: #1e40af;
}

.nav-link.active {
    color: #1e40af;
    font-weight: 600;
 
}

/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-icon {
    margin-left: 4px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 1px;
    width: 200px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    display: none;
    z-index: 100;
}

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

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #4b5563;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

/* 登录按钮 - 手机端优化 */
.login-button {
    display: flex;
    align-items: center;
    color: #4b5563;
    transition: color 0.2s;
    margin-right: 12px;
    font-size: 14px;
}

.login-button:hover {
    color: #1e40af;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    margin-right: 8px;
}

/* 移动端菜单按钮 - 增大触控区域 */
.mobile-menu-button {
    color: #4b5563;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .mobile-menu-button {
display: none;
    }
}

/* 移动端菜单 - 优化显示效果 */
.mobile-menu {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    display: none;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    color: #4b5563;
    padding: 14px 16px;
    transition: all 0.2s;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link:hover {
    color: #1e40af;
    background-color: #f9fafb;
}

.mobile-nav-link.active {
    color: #1e40af;
    font-weight: 500;
}

.mobile-dropdown-menu {
    padding-left: 16px;
    border-left: 2px solid #e5e7eb;
    margin: 4px 0 8px 16px;
    display: none;
}

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

.mobile-dropdown-item {
    display: block;
    font-size: 14px;
    color: #6b7280;
    padding: 12px 16px;
    transition: all 0.2s;
}

.mobile-dropdown-item:hover {
    color: #1e40af;
    background-color: #f9fafb;
}
		
		
		/* 基础样式 */




/* 页面内容占位 */
.page-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content p {
    color: #86909C;
    font-size: 1.1rem;
}

/* 底部区域 */
footer {
    background-color: #000000;
    border-top: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
			margin-top: 16px
}

.footer-content {
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .footer-grid {
grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column h3 {
    font-size: 1.5rem;
}

.footer-column h4 {
    font-size: 1.2rem;
}

.footer-column p {
    color: #86909C;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* 社交图标 */
.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #165DFF;
    background-color: rgba(22, 93, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #165DFF;
    color: white;
    transform: translateY(-3px);
}

/* 链接列表 */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #86909C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #165DFF;
}

/* 联系信息 */
.contact-item {
    display: flex;
    margin-bottom: 12px;
}

.contact-item i {
    color: #165DFF;
    margin-right: 12px;
    margin-top: 4px;
    min-width: 20px;
}

.contact-item span {
    color: #86909C;
}

/* 订阅表单 */
.subscribe-form {
    display: flex;
    margin-bottom: 16px;
}

.subscribe-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-input:focus {
    border-color: #165DFF;
    box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.2);
}

.subscribe-button {
    background-color: #165DFF;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #0E4CD1;
}

.subscribe-note {
    font-size: 0.8rem;
    color: #86909C;
}

/* 分隔线 */
.footer-divider {
    border-top: 1px solid #e5e7eb;
    margin: 30px 0;
}

/* 版权信息 */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .footer-bottom {
flex-direction: row;
justify-content: space-between;
align-items: center;
    }
}

.copyright {
    color: #86909C;
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-link {
    color: #86909C;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

       .bottom-link  a{
    color: #86909C;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.bottom-link:hover {
    color: #165DFF;
}

/* 微信二维码 */
.wechat-qrcode-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
}

.qrcode-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #165DFF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qrcode-trigger:hover {
    background-color: #0E4CD1;
    transform: scale(1.05);
}

.qrcode-trigger i {
    font-size: 1.8rem;
}

.qrcode-popup {
    position: absolute;
    right: 100%;
    bottom: 0;
    margin-right: 16px;
    padding: 12px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
}

.wechat-qrcode-container:hover .qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qrcode-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.qrcode-text {
    text-align: center;
    font-size: 0.8rem;
    color: #1D2129;
    margin-top: 8px;
}

/* 清除默认样式 */

/* 通用链接/文本样式 */
.pagination a,
.pagination b {
display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 36px;
    border-radius: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    transition: all 0.2s ease;

}

/* 总记录数样式 */
.pagination a[title="Total record"] {
  width: auto;
  padding: 0 12px;
  color: #6b7280; /* 灰色文本 */
  background: transparent;
  cursor: default;
}

/* 页码链接样式 */
.pagination a:not([title="Total record"]) {
  color: #000; /* 主题蓝 */
  border: 1px solid #e2e8f0; /* 浅灰边框 */
}

/* 页码链接 hover 效果 */
.pagination a:not([title="Total record"]):hover {
  background-color: #eff6ff; /* 浅蓝背景 */
  border-color: #bfdbfe; /* 加深边框色 */
  transform: translateY(-1px); /* 轻微上浮 */
}

/* 当前页码样式 */
.pagination b:not([title="Total record"]) {
  color: #ffffff;
  background-color: #3b82f6; /* 主题蓝背景 */
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2); /* 轻微阴影 */
}

/* 禁用状态（可选，若后续有禁用需求） */
.pagination a.disabled {
  color: #9ca3af;
  border-color: #e5e7eb;
  cursor: not-allowed;
  background: transparent;
  transform: none;
}

/* 响应式适配（小屏幕） */
@media (max-width: 480px) {
  .pagination {
    gap: 4px;
  }
  .pagination a,
  .pagination b {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}


/* 热门搜索词样式 */
.hot-search {
margin: 0 auto;
    padding: 16px 0;
}

.hot-title {
    color: #fff;
    font-size: 14px;
}

.hot-tag {
    color: #555;
    font-size: 14px;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hot-tag:hover {
    background: #e8f0fe;
    color: #4a90e2;
    transform: translateY(-1px);
}

/* 响应式调整 */
@media (max-width: 480px) {
    .search-input {
        padding: 10px 15px;
        font-size: 14px;
        width: 90%;
    }
    
    .search-icon {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hot-tag {
        padding: 3px 10px;
        font-size: 13px;
    }
}

/* 横向友情链接容器 */
.footer-friendlinks {
    padding: 20px 0;
 
}

/* 友情链接标题 */
.footer-friendlinks h4 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

/* 横向列表容器 */
.friendlinks-list {
    display: flex;
    flex-wrap: wrap; /* 超出自动换行 */
    gap: 15px 25px; /* 间距控制 */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 友链链接样式 */
.friendlink {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.friendlink:hover {
    color: #007bff; /* hover效果与其他链接保持一致 */
    text-decoration: underline;
}

/* QQ List */
a {

	text-decoration: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
ul {
    padding: 0;
    margin: 0;
}
#kefu {
	padding: 2px;
	background-color: #165DFF;
	position: fixed;
	top: 50%;
	right: -152px;
	z-index: 999999;
	margin-top: -179px;
	height: 160px;
}

#kefutitle {
	width: 40px;
	height: 161px;
	text-indent: -9999px;
	overflow: hidden;
	float: left;
	background: url(https://zhibo.52muban.com/skin/images/qqbg.png) 0px top no-repeat;
}

#qqlist {
	float: right;
	width: 150px;
	overflow: hidden;
	background-color: #ffffff;
}

#qqlist h3 {
	font-weight: normal;
	font-size: 16px;
	margin: 10px 0 0 10px;
}

#qqlist h3.tel {
	text-indent: -9999px;
	overflow: hidden;
	height: 26px;
	background: url(https://zhibo.52muban.com/skin/images/kefubg.gif) left top no-repeat;
}

#qqlist ul {
	margin: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #cecece;
}

#qqlist ul.tel {
	margin-top: 5px;
}

#qqlist ul.tel p {
	font-size: 18px;
	font-weight: bold;
	font-family: "Microsoft YaHei", "å¾®è½¯é›…é»‘", "SimHei", "é»‘ä½“";
	font-style: italic;
	margin: 0;
	color: #ff0000;
}

#qqlist li {
	font-size: 14px;
	height: 26px;
	line-height: 26px;
}

#qqlist li img {
	margin-right: .5em;
}

#gongdanlink a,
#helplink a {
	border-radius: 16px;
	display: block;
	text-align: center;
	font-size: 14px;
	width: 120px;
	height: 32px;
	line-height: 32px;
	margin: 10px auto;
	background-color: #1465ff;
	color: #ffffff;
}

#gongdanlink a:hover,
#helplink a:hover {
	opacity: .8;
}

#gongdanlink a .fa,
#helplink a .fa {
	margin-right: 5px;
}