








@import url("css/aos.css");
@import url("css/bootstrap.min.css");
@import url("css/effect.css");
@import url("css/font-awesome.css");
@import url("css/magnific-popup.css");
@import url("css/owl.carousel.css");
@import url("css/owl.theme.css");
@import url("css/responsive.css");
@import url("css/style.css");


#pagination {
  margin: 60px auto 0 auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-align:center;
}
#pagination ul  {

	  
  
 
}
#pagination ul > li {

	  
  
  display: inline-block;
}
#pagination ul > li > a,
#pagination ul > li > span {
  color: #e91f22;
  font-size:2em;
  padding:0.3em 0.4em;
  text-align: center;

}
#pagination ul > li.active,
#pagination ul > li:hover {
  background-color: #e91f22 !important;
  color: #fff;
}
#pagination ul > li.active a,
#pagination ul > li:hover a{
  color: #ffffff;
}
.category {
	margin-top:30px;
	margin-bottom:30px;
}
.page-article {
	margin-bottom:3em;
}
.page-article p{
	margin-top:15px;
	margin-bottom:15px;
	line-height:1.5em;
}
.error {
  margin: 0 auto;
  text-align: center;
}

.error-404 {
  color: #e91f22;
  font-size: 800%;
}

.error-desc {
  color: #e91f22;
}










/* 客服联系方式侧边栏样式 */
#custom-contact-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 240, 240, 0.8);
    transition: all 0.3s ease;
}

.contact-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #495057;
    text-decoration: none;
    margin: 0 15px;
    border: 2px solid #e9ecef;
}

.contact-btn:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

/* 版本按钮样式 */
.version-btn {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-color: #5a0fb5;
    color: white;
}

.version-btn:hover {
    background: linear-gradient(135deg, #5a0fb5 0%, #1c68e8 100%);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

/* QQ渠道按钮样式 */
.qq-btn {
    background: #1890ff;
    border-color: #096dd9;
    color: white;
}

.qq-btn:hover {
    background: #096dd9;
    box-shadow: 0 5px 15px rgba(24, 144, 255, 0.3);
    border-color: #0050b3;
}

/* 企业微信按钮样式 */
.wechat-btn {
    background: #52c41a;
    border-color: #389e0d;
    color: white;
}

.wechat-btn:hover {
    background: #389e0d;
    box-shadow: 0 5px 15px rgba(82, 196, 26, 0.3);
    border-color: #237804;
}

/* 在线客服按钮样式 */
.chat-btn {
    background: #fa8c16;
    border-color: #d46b08;
    color: white;
}

.chat-btn:hover {
    background: #d46b08;
    box-shadow: 0 5px 15px rgba(250, 140, 22, 0.3);
    border-color: #ad4e00;
}

/* 图标样式 */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
}

.contact-btn:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.version-btn .contact-icon svg {
    width: 18px;
    height: 18px;
}

/* 提示文字 */
.contact-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    z-index: 10001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-15px);
}

/* 弹出层样式 */
.contact-popup {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 220px;
    pointer-events: none;
    z-index: 10000;
    border: 1px solid rgba(240, 240, 240, 0.9);
}

.contact-btn:hover .contact-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
    pointer-events: auto;
}

.popup-content {
    text-align: center;
}

.popup-content p {
    margin: 8px 0;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
}

.popup-content strong {
    color: #1890ff;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.popup-content img {
    max-width: 120px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

/* 响应式设计 */
@media (max-width: 768px) {
    #custom-contact-sidebar {
        right: 10px;
        padding: 10px 0;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
    
    .contact-popup {
        width: 180px;
        padding: 15px;
    }
    
    .contact-btn::before {
        display: none;
    }
}
