.m-0 {
  margin-top: 0px !important;
  margin-right: 0px !important;
  margin-bottom: 0px !important;
  margin-left: 0px !important;
}

/* 产品展示网格布局 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.product-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #e6f7ff;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 144, 255, 0.08), transparent);
    transition: all 0.6s ease;
}

.product-item:hover::before {
    left: 100%;
}

/* 标题与图标在同一行 */
.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(24, 144, 255, 0.2);
}

.product-item:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(24, 144, 255, 0.3);
}

.product-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* 为不同产品添加不同颜色的图标背景 */
.product-item:nth-child(1) .product-icon {
    background: #1890ff;
}

.product-item:nth-child(2) .product-icon {
    background: #52c41a;
}

.product-item:nth-child(3) .product-icon {
    background: #faad14;
}

.product-item:nth-child(4) .product-icon {
    background: #f5222d;
}

/* 更换为更高端的图标 */
.icon-info::before {
    content: '⟩';
    font-size: 32px;
    font-weight: bold;
    transform: rotate(90deg);
    display: block;
}

.icon-design::before {
    content: '△';
    font-size: 28px;
    font-weight: bold;
}

.icon-medical::before {
    content: '⊕';
    font-size: 28px;
    font-weight: bold;
}

.icon-software::before {
    content: '○';
    font-size: 16px;
    position: relative;
}

.icon-software::after {
    content: '⦿';
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
    margin: 0;
}

.product-item:hover .product-title {
    color: #1890ff;
}

.product-description {
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.learn-more-link {
    color: #1890ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    position: relative;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1890ff;
    transition: width 0.3s ease;
}

.learn-more-link:hover {
    color: #3b7bde;
    transform: translateX(5px);
}

.learn-more-link:hover::after {
    width: 100%;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-item {
        padding: 20px;
        border-radius: 8px;
    }
    
    /* 确保移动端标题与图标也在同一行 */
    .product-header {
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .product-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .product-icon i {
        font-size: 18px;
    }
    
    /* 移动端图标调整 */
    .icon-info::before {
        font-size: 24px;
    }
    
    .icon-design::before {
        font-size: 20px;
    }
    
    .icon-medical::before {
        font-size: 20px;
    }
    
    .icon-software::before {
        font-size: 14px;
    }
    
    .icon-software::after {
        font-size: 10px;
    }
    
    .product-title {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }
    
    .product-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* 平板端优化 */
@media (min-width: 768px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-item {
        padding: 25px;
    }
}

/* 横向按钮列表样式 */
.horizontal-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden !important;
    position: relative;
}

.horizontal-item {
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.horizontal-item-content {
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    z-index: 1;
    box-sizing: border-box;
    word-break: break-word;

.horizontal-item-content a {
    color: #1890ff;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horizontal-item-content:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.horizontal-item-content.active {
    background-color: #1890ff;
    box-shadow: 0 4px 8px rgba(24, 144, 255, 0.3);
}

.horizontal-item-content.active a {
    color: #ffffff;
}

/* 平板端优化 */
@media (min-width: 768px) and (max-width: 1199px) {
    .horizontal-container {
        gap: 8px;
        grid-template-columns: repeat(4, 1fr);
    }
    .horizontal-item-content {
        padding: 8px 12px;
    }
    .horizontal-item-content a {
        font-size: 13px;
    }
}

/* 手机端优化 - 强制4列布局 */
@media (max-width: 767px) {
    .horizontal-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin-bottom: 15px;
        width: 100%;
    }
    .horizontal-item-content {
        padding: 6px 8px;
    }
    .horizontal-item-content a {
        font-size: 11px;
        word-break: break-word;
    }
}

/* 极小屏幕优化 */
@media (max-width: 480px) {
    .horizontal-container {
        gap: 4px;
        grid-template-columns: repeat(4, 1fr);
    }
    .horizontal-item-content {
        padding: 5px 6px;
    }
    .horizontal-item-content a {
        font-size: 10px;
    }
}

/* 加载和错误状态样式 */
.loading {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 16px;
}

.error {
    text-align: center;
    padding: 40px 0;
    color: #ff4d4f;
    font-size: 16px;
}
.mt-0 {
  margin-top: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {  margin-left: 0px !important;}

/* 响应式优化样式 - 针对手机端显示 */
@media (max-width: 768px) {
    /* 优化服务理念卡片 */
    .service-details > div {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .service-details > div > div {
        padding: 15px !important;
        gap: 15px !important;
    }
    
    /* 优化服务理念区域 */
    .service-philosophy {
        margin: 30px 0 !important;
    }
    
    .service-philosophy > div {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .service-philosophy h2 {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .service-philosophy p {
        font-size: 14px !important;
    }
    
    /* 优化服务详情卡片 */
    .service-details {
        margin: 30px 0 !important;
    }
    
    .service-details > div {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .service-details > div > div {
        padding: 15px !important;
        gap: 15px !important;
    }
    
    .service-details h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    /* 图标大小调整 */
    .service-details i {
        font-size: 18px !important;
    }
    
    /* 图标背景调整 */
    .service-details > div > div > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    /* 优化触摸体验 */
    .service-details > div > div {
        min-height: 80px;
        touch-action: manipulation;
    }
    
    /* 进一步减小字体大小 */
    .service-details h4 {
        font-size: 15px !important;
    }
    
    /* 调整间距 */
    .content-main {
        padding: 20px 0 !important;
    }
}

/* 平板端优化 */
@media (min-width: 768px) and (max-width: 991px) {
    .service-details > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.m-1 {
  margin-top: 5px !important;
  margin-right: 5px !important;
  margin-bottom: 5px !important;
  margin-left: 5px !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mr-1 {
  margin-right: 5px !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.ml-1 {
  margin-left: 5px !important;
}
.mx-1 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.my-1 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-2 {
  margin-top: 10px !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
  margin-left: 10px !important;
}
.mt-2 {
  margin-top: 10px !important;
}
.mr-2 {
  margin-right: 10px !important;
}
.mb-2 {
  margin-bottom: 10px !important;
}
.ml-2 {
  margin-left: 10px !important;
}
.mx-2 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.my-2 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-3 {
  margin-top: 15px !important;
  margin-right: 15px !important;
  margin-bottom: 15px !important;
  margin-left: 15px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.mr-3 {
  margin-right: 15px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.ml-3 {
  margin-left: 15px !important;
}
.mx-3 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

/* 典型客户轮播样式 */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
}

#clients-carousel {
  display: flex;
  transition: transform 0.02s linear;
}

#clients-carousel > div {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  margin-right: 20px;
  border: 1px solid #eee;
  padding: 15px;
  box-sizing: border-box;
  vertical-align: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#clients-carousel > div .client-image {
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

#clients-carousel > div .client-image img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

#clients-carousel > div h4 {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

/* 蓝色按钮样式 */
.more-btn-container {
  text-align: center;
  margin: 20px 0;
}

.more-btn {
  display: inline-block;
  background-color: #1890ff;
  color: white;
  padding: 10px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background-color: #40a9ff;
  color: white;
}

/* 底部图片区块样式 */
.indexfooter {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.footer-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.footer-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 底部图片区块在小屏幕上的适配 */
@media (max-width: 767px) {
  .indexfooter {
    height: auto;
    min-height: 120px;
  }
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-content img {
    object-fit: contain;
    height: auto;
  }
}

@media (max-width: 480px) {
  .indexfooter {
    min-height: 100px;
  }
}

/* 统计数据样式 */
.stats-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: white;
  flex: 1;
  max-width: 200px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-text {
  font-size: 16px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-text {
  position: absolute;
  top: auto;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 20px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .stats-container {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
    gap: 20px;
    top: 45%;
  }
  
  .stat-item {
    max-width: calc(50% - 10px);
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .footer-text {
    bottom: 10px;
  }
  
  .footer-title {
    font-size: 20px;
  }
  
  .footer-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  
  .stats-container {
    flex-direction: column;
    gap: 15px;
    top: 40%;
  }
  
  .stat-item {
    max-width: 100%;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .stat-text {
    font-size: 12px;
  }
}

/* 文章详情页样式 */
.article-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-content:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.full-width-content {
  width: 100%;
}

.full-width-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.full-width-content p {
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
  font-size: 15px;
}

.full-width-content h1, 
.full-width-content h2, 
.full-width-content h3, 
.full-width-content h4, 
.full-width-content h5, 
.full-width-content h6 {
  margin: 25px 0 15px 0;
  font-weight: 600;
}

/* 上下篇导航样式 */
.article-navigation {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.article-navigation .prev-article,
.article-navigation .next-article {
  flex: 1;
  min-width: 200px;
  margin-bottom: 10px;
}

.article-navigation .prev-article {
  text-align: left;
}

.article-navigation .next-article {
  text-align: right;
}

.article-navigation span:first-child {
  color: #666;
  font-size: 14px;
  margin-right: 10px;
}

.article-navigation a {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  max-width: calc(100% - 60px);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.article-navigation a:hover {
  color: #007bff;
}

.article-navigation .no-more {
  color: #999;
  font-size: 14px;
}

/* 标题居中样式 */
.metas-title.text-center {
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #007bff;
  color: #333;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .article-content {
    padding: 20px 15px;
  }
  
  .metas-title.text-center {
    font-size: 24px;
  }
  
  .full-width-content p {
    font-size: 15px;
  }
  
  .article-navigation {
    flex-direction: column;
  }
  
  .article-navigation .prev-article,
  .article-navigation .next-article {
    text-align: left;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .article-content {
    padding: 15px 10px;
  }
  
  .metas-title.text-center {
    font-size: 20px;
  }
  
  .full-width-content p {
    font-size: 14px;
  }
}

/* 分隔区域样式 */
.section-divider {  
  height: 60px;  
  background: linear-gradient(135deg, #1890ff 0%, #3b7bde 100%);  
  margin: 40px 0;  
  border-radius: 4px;  
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2);  
  position: relative;  
  overflow: hidden;  
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

@media (max-width: 768px) {
  .section-divider {
    height: 40px;
    margin: 30px 0;
  }
}

/* 客户列表页内容样式 */
.content-main {
    padding: 20px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.company-advantages {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.advantage-item {
    display: flex;
    align-items: center;
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.advantage-icon img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.advantage-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.advantage-text p {
    color: #666;
    margin: 0;
}

.partners-section {
    margin: 60px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.partners-section p {
    color: #666;
    margin-bottom: 30px;
}

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

.partner-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.partner-item img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-philosophy {
    background: #f2f2f2;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.philosophy-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.philosophy-content p {
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .advantage-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-philosophy {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-icon img {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .advantage-text h3 {
        font-size: 18px;
    }
}

/* footer样式 */
#footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

#footer .footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1890ff;
}

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

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

#footer .footer-list a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

#footer .footer-list a:hover {
  color: #1890ff;
}

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

#footer .contact-list li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

#footer .contact-list li i {
  color: #1890ff;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

#footer .copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 767px) {
  #footer {
    padding: 30px 0 15px;
  }
  
  #footer .footer-inner > div {
    margin-bottom: 30px;
  }
  
  #footer .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }
  
  #footer .footer-list li,
  #footer .contact-list li {
    font-size: 13px;
  }
  
  #footer .copyright {
    font-size: 12px;
    padding: 15px 10px 0;
  }
}

@media (max-width: 480px) {
  #footer .contact-list li {
    font-size: 12px;
  }
}

.footer-title {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-desc {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.my-3 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.m-4 {
  margin-top: 20px !important;
  margin-right: 20px !important;
  margin-bottom: 20px !important;
  margin-left: 20px !important;
}
.mt-4 {
  margin-top: 20px !important;
}
.mr-4 {
  margin-right: 20px !important;
}
.mb-4 {
  margin-bottom: 20px !important;
}
.ml-4 {
  margin-left: 20px !important;
}
.mx-4 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-4 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.p-0 {
  padding-top: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.p-1 {
  padding-top: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 5px !important;
}
.pt-1 {
  padding-top: 5px !important;
}
.pr-1 {
  padding-right: 5px !important;
}
.pb-1 {
  padding-bottom: 5px !important;
}
.pl-1 {
  padding-left: 5px !important;
}
.px-1 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.py-1 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-2 {
  padding-top: 10px !important;
  padding-right: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px !important;
}
.pt-2 {
  padding-top: 10px !important;
}
.pr-2 {
  padding-right: 10px !important;
}
.pb-2 {
  padding-bottom: 10px !important;
}
.pl-2 {
  padding-left: 10px !important;
}
.px-2 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-2 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-3 {
  padding-top: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 15px !important;
  padding-left: 15px !important;
}
.pt-3 {
  padding-top: 15px !important;
}
.pr-3 {
  padding-right: 15px !important;
}
.pb-3 {
  padding-bottom: 15px !important;
}
.pl-3 {
  padding-left: 15px !important;
}
.px-3 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.py-3 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.p-4 {
  padding-top: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 20px !important;
}
.pt-4 {
  padding-top: 20px !important;
}
.pr-4 {
  padding-right: 20px !important;
}
.pb-4 {
  padding-bottom: 20px !important;
}
.pl-4 {
  padding-left: 20px !important;
}
.px-4 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-4 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
  font-weight: 400;
  background: #ffffff;
  font-size: 14px;
  color: #555;
}
body {
  padding-top: 70px;
}

/* 栏目图片banner样式 */
.banner-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.banner-container:hover {
  transform: scale(1.01);
}

.banner-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

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

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.banner-content .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.banner-content .breadcrumb li {
  color: rgba(255,255,255,0.8);
}

.banner-content .breadcrumb li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.banner-content .breadcrumb li a:hover {
  color: white;
  text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .banner-container {
    height: 300px;
    border-radius: 6px;
  }
  
  .banner-content {
    padding: 20px 30px;
  }
  
  .banner-content h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 250px;
    border-radius: 4px;
  }
  
  .banner-content {
    padding: 15px 20px;
  }
  
  .banner-content h1 {
    font-size: 20px;
  }
}

/* 新闻列表布局 */
.news-list-container {
  margin: 0 auto;
  max-width: 100%;
}

.news-list-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.news-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-list-item:hover {
  background-color: #f9f9f9;
}

.news-list-content {
  display: flex;
  align-items: center;
  position: relative;
}

.news-list-text {
  flex: 1;
  padding-right: 20px;
}

.news-list-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-list-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-list-title a:hover {
  color: #007bff;
}

.news-list-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.news-list-date {
  color: #999;
  margin-right: 15px;
}

.news-list-category a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-list-category a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.news-list-image {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.05);
}

/* 新闻4列网格布局 - 保留但优先使用列表布局 */
.news-grid-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.news-grid-item {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.news-grid-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
  position: relative;
  padding-top: 75%; /* 4:3 宽高比 */
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
}

.news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-info {
  text-align: left;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #007bff;
}

.news-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.news-category {
  font-size: 14px;
}

.news-category a {
  color: #007bff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.news-category a:hover {
  color: #0056b3;
}

.news-category i {
  margin-left: 5px;
  font-size: 12px;
}

/* 分页样式 */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* 响应式设计 */
@media (max-width: 767px) {
  .news-list-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .news-list-text {
    padding-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  
  .news-list-image {
    width: 100%;
    height: 180px;
  }
  
  .news-list-title {
    font-size: 16px;
  }
  
  .news-list-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .news-list-date {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* 公司介绍、新闻、中标信息样式 */
.news-list, .bidding-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 公司介绍区域样式 - 带重叠背景图片 */
.company-intro-section {
    position: relative;
    min-height: 450px;
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    /* background-color: #f8f9fa; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/gongsi.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.bg-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    background-image: url('../img/gongsi1.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 2;
}

.company-intro-content {
    position: relative;
    z-index: 3;
    color: #333;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #3b7bde;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}

.more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #3b7bde;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.more-btn:hover {
    background-color: #2a5fc9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 右侧新闻和中标信息面板间距 */
.col-md-6 .row .panel {
    margin-bottom: 15px;
}

.col-md-6 .row .panel:last-child {
    margin-bottom: 0;
}
.news-list li, .bidding-list li {
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
    position: relative;
}
.news-list li:last-child, .bidding-list li:last-child {
    border-bottom: none;
}
.news-list li a, .bidding-list li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding-left: 15px;
    transition: color 0.3s;
}
.news-list li a:before, .bidding-list li a:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3b7bde;
    font-size: 10px;
}
.news-list li a:hover, .bidding-list li a:hover {
    color: #3b7bde;
}

/* 产品体系样式 */
#product-center .panel-title span {
  font-size: 28px;
  font-weight: bold;
}

.product-category-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 335px;
  height: 440px;
  margin: 0 auto;
}

/* 手机端响应式样式 - 确保2行2列布局 */
@media (max-width: 767px) {
  .product-category-item {
    width: 100%;
    height: 300px;
    margin: 0;
  }
}

.product-category-item:hover {
  transform: translateY(-5px);
}

.category-link {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.category-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 40px 20px;
  color: white;
  font-size: 20px;
  text-align: center;
  transition: all 0.8s ease;
  z-index: 1;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(59, 123, 222, 0.7) 0%, rgba(12, 72, 153, 0) 100%);
  z-index: -1;
}

.product-category-item:hover .category-img {
  transform: scale(1.1);
}

.product-category-item:hover .category-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(59, 123, 222, 0.7) 0%, rgba(12, 72, 153, 0) 100%);
}

.product-category-item:hover .category-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 25px;
  border-radius: 5px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.8s ease;
  z-index: 1;
}

.product-category-item:hover .category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 5px;
}

/* 产品内容区域样式 */
.product-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 90px;
}

.product-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #fbfbfb;
    border-radius: 8px;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #898989;
    margin-bottom: 20px;
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
}

.learn-more-link {
    display: inline-block;
    font-size: 16px;
    color: #496ee8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #3a5bd8;
    text-decoration: underline;
}

.product-showcase {
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}

.product-image-container {
    text-align: center;
    width: 120px;
    height: 150px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-image-caption {
    font-size: 12px;
    color: #1f2329;
    margin-top: 16px;
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .product-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-info {
        width: 100%;
    }

    /* 调整为一行显示，缩小图片尺寸确保完整可见 */
    .product-showcase {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 5px;
        padding: 10px 0;
        justify-content: space-around;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .learn-more-link {
        font-size: 14px;
    }
    
    .product-image-container {
        flex: 0 0 calc(33.333% - 3px);
        min-width: calc(33.333% - 3px);
        width: auto;
        height: auto;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-image {
        width: 100%;
        max-width: 60px;
        height: auto;
        margin: 0 auto;
    }
    
    .product-image-caption {
        font-size: 10px;
        margin-top: 5px;
        word-break: break-word;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* 调整为一行显示，进一步缩小图片尺寸确保在小屏幕完整可见 */
    .product-showcase {
        gap: 3px;
        padding: 5px 0;
        flex-wrap: nowrap;
        overflow-x: visible;
        justify-content: space-around;
    }
    
    .product-image-container {
        flex: 0 0 calc(33.333% - 2px);
        min-width: calc(33.333% - 2px);
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-image {
        width: 100%;
        max-width: 50px;
        height: auto;
    }
    
    .product-image-caption {
        font-size: 10px;
        margin-top: 5px;
    }
}

/* 招标信息轮播图样式 */
.zhongbiaoinfo-carousel-container {
  overflow: hidden;
  position: relative;
}

.zhongbiaoinfo-carousel-container .carousel-inner {
  height: 100%;
}

.zhongbiaoinfo-carousel-container .item {
  height: 100%;
}

.zhongbiaoinfo-carousel-container .carousel-img {
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* 中标信息轮播图在小屏幕上的适配 */
@media (max-width: 767px) {
  .zhongbiaoinfo-carousel-container {
    height: 150px !important;
  }
  .zhongbiaoinfo-carousel-container .carousel-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
  }
}

.zhongbiaoinfo-carousel-container .carousel-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  width: 80%;
  background: transparent;
  padding: 20px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.zhongbiaoinfo-carousel-container .carousel-caption h3 {
  margin: 0;
  font-size: 2.5rem;
  font-family: 'Microsoft YaHei', 'Hiragino Sans GB', 'PingFang SC', 'STXihei', sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.zhongbiaoinfo-carousel-container .carousel-caption p {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
  max-width: 800px;
  margin: 10px auto 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
  .zhongbiaoinfo-carousel-container .carousel-caption {
    width: 90%;
    padding: 15px;
  }
  
  .zhongbiaoinfo-carousel-container .carousel-caption h3 {
    font-size: 1.8rem;
  }
  
  .zhongbiaoinfo-carousel-container .carousel-caption p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .zhongbiaoinfo-carousel-container .carousel-caption h3 {
    font-size: 2rem;
  }
}

/* 放大镜图标 */
.product-category-item::before {
  content: '🔍';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 40px;
  color: white;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3;
}

.product-category-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* 响应式调整 */
@media (max-width: 767px) {
  .product-category-item {
    width: 100%;
    height: 400px;
  }
  
  .product-category-item:hover .category-title {
    font-size: 20px;
    width: 90%;
  }
}

@media (max-width: 576px) {
  .product-category-item {
    height: 300px;
  }
}
a {
  color: #555;
}
a:hover,
a:focus {
  color: #007bff;
}
a.primary-link {
  color: #007bff;
}
.btn {
  font-size: 13px;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  color: #fff;
  background-color: #0062cc;
  border-color: #0062cc;
}
.btn-gray {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-gray:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light {
  color: #007bff;
  background: #b3d7ff;
  border-color: transparent;
}
.btn-light:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.label-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-lg {
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.form-control {
  font-size: 13px;
}
.wow {
  visibility: hidden;
}
.navbar-inverse .navbar-nav > li > a {
  color: #caced2;
}
.skin-white {
  padding-top: 80px;
}
.navbar-white {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}
.navbar-white .dropdown-menu {
  border-radius: 5px;
  -webkit-box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
  -moz-box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
  box-shadow: 0px 20px 30px rgba(83, 88, 93, 0.05), 0px 0px 30px rgba(83, 88, 93, 0.1);
}
@media (min-width: 768px) {
  .navbar-default .navbar-brand {
    height: 80px;
    line-height: 37px;
  }
  .navbar-default .navbar-nav > li > a {
    height: 80px;
    line-height: 37px; 
  }
  .navbar-white .navbar-nav > li > a {
    height: 80px;
    line-height: 37px;
    color: #555;
    font-size:16px;
  }
  .navbar-white .navbar-nav > li > a:hover,
  .navbar-white .navbar-nav > li > a:focus {
    color: #007bff;
  }
  .navbar-white .navbar-nav > .active > a,
  .navbar-white .navbar-nav > .active > a:hover,
  .navbar-white .navbar-nav > .active > a:focus {
    background-color: inherit;
    color: #007bff;
  }
}
@media (hover: hover) {
  .dropdown a:hover + .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.alert-paid {
  margin: 10px 0;
  text-align: center;
}
.alert-paid a {
  color: #f39c12;
}
.navbar-inverse .navbar-nav .dropdown:hover > a {
  color: #fff;
  background-color: transparent;
}
.dropdown-menu > li > a {
  font-size: 14px;
  padding: 5px 20px;
}
.dropdown-menu {
  border-radius: 2px;
  border: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 5px 0px;
}
.dropdown-menu li a {
  padding-top: 10px !important;
  padding-bottom: 10px;
}
.dropdown-menu > li > a {
  font-weight: 400;
  color: #444;
  padding: 5px 15px;
  padding-bottom: 10px;
  font-size: 14px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #777;
  background: rgba(0, 0, 0, 0.05);
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: -1px;
  -webkit-border-radius: 3px 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 3px 0 3px 3px;
  background-clip: padding-box;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 3px 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 3px 0 3px 3px;
  background-clip: padding-box;
}
.navbar-collapse.collapse.active .navbar-nav .dropdown-submenu .dropdown-menu > li > a {
  padding-left: 45px;
}
.navbar {
  border: none;
}
.navbar-nav li > a {
  font-size: 14px;
}
.navbar-nav li > a h5 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-nav > li > a {
  font-size: 14px;
}
.navbar-nav ul.dropdown-menu {
  border: none;
  border-radius: 4px;
}
.navbar-nav ul.dropdown-menu > li.active > a {
  color: #007bff;
  background-color: #f5f5f5;
}
.navbar-nav ul.dropdown-menu > li > a {
  padding: 8px 20px;
}
.navbar-brand {  padding: 5px 15px;  transition: all 0.3s ease;}.navbar-brand > img{  padding-top: 16.5px;  width: 150px;  height: 50px;  display: block;  transition: all 0.3s ease;}/* 滚动时的导航栏样式 */.navbar.scrolled {  background-color: rgba(255, 255, 255, 0.98);  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  padding-top: 0;  padding-bottom: 0;}/* 移动端滚动时的Logo缩小样式 */@media (max-width: 767px) {  .navbar.scrolled .navbar-brand {    padding: 3px 10px;  }  .navbar.scrolled .navbar-brand > img {    padding-top: 5px;    width: 100px;    height: 35px;  }}
.toast-top-center {
  top: 50px;
}
.toast-top-center > div {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/*修复nice-validator新版下的一处BUG*/
.nice-validator input,
.nice-validator select,
.nice-validator textarea,
.nice-validator [contenteditable] {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*修复nice-validator和summernote的编辑框冲突*/
.nice-validator .note-editor .note-editing-area .note-editable {
  display: inherit;
}
/*预览区域*/
.plupload-preview,
.faupload-preview {
  padding: 0 10px;
  margin-bottom: 0;
}
.plupload-preview li,
.faupload-preview li {
  margin-top: 5px;
  margin-bottom: 10px;
}
.plupload-preview .thumbnail,
.faupload-preview .thumbnail {
  margin-bottom: 10px;
}
.plupload-preview a,
.faupload-preview a {
  display: block;
}
.plupload-preview a:first-child,
.faupload-preview a:first-child {
  height: 90px;
}
.plupload-preview a img,
.faupload-preview a img {
  height: 80px;
  object-fit: cover;
}
#floatbtn {
  width: 50px;
  height: auto;
  position: fixed;
  top: auto;
  right: 20px;
  bottom: 10px;
  left: auto;
  z-index: 80;
  margin-right: 0;
}
#floatbtn.fixed {
  position: absolute;
  bottom: 279px;
  right: 20px;
}
#floatbtn > a,
#floatbtn .floatbtn-item {
  cursor: pointer;
  position: relative;
  z-index: 90;
  display: block;
  margin-top: 4px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: #d5d5d5;
  background-color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#floatbtn > a.hover:hover,
#floatbtn .floatbtn-item.hover:hover {
  -webkit-transition: background-color 400ms ease-out;
  -moz-transition: background-color 400ms ease-out;
  -o-transition: background-color 400ms ease-out;
  transition: background-color 400ms ease-out;
  background: #007bff;
  text-decoration: none;
  text-align: center;
  line-height: 20px;
  padding: 5px;
}
#floatbtn > a.hover:hover i,
#floatbtn .floatbtn-item.hover:hover i {
  display: none;
}
#floatbtn > a.hover:hover em,
#floatbtn .floatbtn-item.hover:hover em {
  display: block;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
}
#floatbtn > a em,
#floatbtn .floatbtn-item em {
  display: none;
}
#floatbtn > a:hover,
#floatbtn .floatbtn-item:hover {
  background: #007bff;
}
#floatbtn > a:hover i,
#floatbtn .floatbtn-item:hover i {
  color: #fff;
}
#floatbtn > a:hover .floatbtn-wrapper,
#floatbtn .floatbtn-item:hover .floatbtn-wrapper {
  display: block;
}
#floatbtn .iconfont {
  display: inline-block;
  font: normal normal normal 14px/1 iconfont;
  font-size: inherit;
}
.floatbtn-wrapper {
  position: absolute;
  right: 59px;
  top: -55px;
  z-index: 120;
  display: none;
  width: 190px;
  height: 212px;
  background-color: #fff;
  border: 1px solid #eee;
}
.floatbtn-wrapper:before {
  content: "";
  position: absolute;
  right: -12px;
  top: 0;
  height: 200px;
  width: 12px;
  background: transparent;
}
.floatbtn-wrapper:after {
  content: "";
  position: absolute;
  right: -6px;
  top: 73px;
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid #d5d5d5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.floatbtn-wrapper > .qrcode {
  margin-top: 20px;
  line-height: 1;
}
.floatbtn-wrapper > .qrcode > img {
  width: 128px;
  height: 128px;
}
.floatbtn-wrapper p {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
.floatbtn-wrapper p em {
  color: #dd3067;
}
.floatbtn-share .floatbtn-wrapper:after {
  top: 18px;
}
.floatbtn-share .floatbtn-wrapper .social-share .icon-wechat .wechat-qrcode p {
  font-size: 12px;
}
.text-primary,
.text-primary:hover {
  color: #444c69;
}
.text-success,
.text-success:hover {
  color: #18bc9c;
}
.text-danger,
.text-danger:hover {
  color: #f75444;
}
.text-warning,
.text-warning:hover {
  color: #f39c12;
}
.text-info,
.text-info:hover {
  color: #1688f1;
}
.well {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.responsive-container {
  position: relative;
  width: 100%;
  border: 1px solid #f8f8f8;
}
footer {
  padding: 0;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #007bff;
}
.nav-sidebar li.active a {
  text-decoration: none;
  background-color: #ecf0f1;
}
.navbar-toggle .icon-bar {
  width: 18px;
}
.footer-inner {
  padding: 2em 0;
}
.footer-inner .copyright {
  margin-bottom: 20px !important;
  line-height: 1.5;
}
.footer-inner .footer-logo a {
  padding: 15px 15px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 40px;
  font-weight: 700;
}
.footer-inner .footer-logo a:hover,
.footer-inner .footer-logo a:focus {
  text-decoration: none;
}
.footer-inner h3 {
  font-weight: 400;
  margin-bottom: 20px;
}
.footer-inner p {
  font-weight: 400;
}
.footer-inner p:last-child {
  margin-bottom: 0;
}
.footer-inner .links {
  padding: 0;
  margin: 0 0 20px 0;
}
.footer-inner .links li {
  list-style: none;
  padding: 5px 0;
}
.footer-inner .links li a:hover {
  text-decoration: underline;
}
.footer-inner .footer-social {
  text-align: right;
  margin-top: 0;
}
.footer-inner .footer-social a {
  margin-right: 15px;
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-inner .footer-social a:hover {
  text-decoration: none;
}
.article-list {
  padding: 0;
  background: #fff;
}
.article-list .embed-responsive-4by3,
.article-list .embed-responsive-square {
  border-radius: 5px;
}
.article-list .article-item {
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.article-list .article-item .content {
  margin-top: 15px;
  color: #919191;
}
.article-list .gallery-article {
  margin-top: 0;
}
.article-list .gallery-article .row {
  margin: 0 -10px;
}
.article-list .gallery-article .article-title {
  margin-bottom: 10px;
}
.article-list .gallery-article .article-title span.highlight {
  color: red;
}
.article-list .gallery-article .media .media-body {
  padding-left: 0;
}
.article-list .gallery-article .media .media-body .article-tag {
  position: relative;
  margin-top: 10px;
}
.article-list .article-title {
  margin: 0;
  font-size: 1.25em;
  line-height: 1.45;
  color: #000;
}
.article-list .article-title a {
  color: #444;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-list .article-title a span.highlight {
  color: red;
}
.article-list .article-title a:hover {
  color: #007bff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-list .article-title a .img-new {
  margin-left: 2px;
  margin-bottom: 2px;
  height: 16px;
}
.article-list .article-intro {
  height: 44px;
  line-height: 22px;
  color: #828a92;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.article-list .media {
  color: #919191;
}
.article-list .media .media-body {
  padding-left: 20px;
  line-height: 25px;
}
.article-list .media .media-left {
  overflow: hidden;
  padding: 0;
}
.article-list .media .media-left a {
  display: block;
  width: 160px;
}
.article-list .media-body {
  position: relative;
}
.article-list .media-body .article-tag {
  display: block;
  clear: both;
  position: absolute;
  bottom: 0;
  color: #aaa;
  font-size: 13px;
}
.article-list .media-body .article-tag span {
  margin: 0 8px;
}
.article-list .media-body .article-tag span a {
  color: #aaa;
}
.article-list .media-body .article-tag .pull-left {
  height: 34px;
  line-height: 34px;
  color: #919191;
}
.article-list .media-body .article-tag .pull-left a {
  color: #919191;
}
.article-list .pager {
  margin: 40px 0 20px 0;
}
.article-metas {
  overflow: hidden;
}
.article-metas .metas-title {
  margin: 0;
  font-size: 1.65em;
  line-height: 1.45;
  margin-bottom: 5px;
  color: #444;
}
.article-metas .metas-title a {
  color: #444;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-metas .metas-title a:hover {
  color: #007bff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-metas .metas-body {
  color: #999;
  margin: 0px auto;
}
.article-metas .metas-body span {
  margin-right: 10px;
}
.article-metas .metas-body span i {
  margin-right: 5px;
}
.article-metas .metas-body p {
  margin-bottom: 0;
  margin-top: 0px;
  font-size: 12px;
}
.article-text {
  line-height: 30px;
  margin-bottom: 15px;
}
.article-text img {
  margin: 10px auto;
  display: block;
  max-width: 100%;
  height: auto;
  cursor: zoom-in;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.article-text ul li {
  line-height: 30px;
}
.article-text a {
  text-decoration: none;
  color: #007bff;
  border-bottom: 1px solid #b3d7ff;
}
.article-text a img {
  cursor: pointer;
}
.article-action-btn {
  color: #999;
}
.article-action-btn a {
  color: #999;
}
.article-action-btn .bdshare-button-style0-16 .bds_more {
  float: none;
  padding: 0;
  height: inherit;
  line-height: inherit;
  font-size: inherit;
  background: none;
  color: #999;
}
.article-prevnext {
  color: #666;
}
.entry-meta ul {
  overflow: hidden;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #eeeeee;
}
.entry-meta ul li {
  line-height: 26px;
}
.related-article,
.gallery-article {
  margin-top: 10px;
}
.related-article .row,
.gallery-article .row {
  margin: 0 -5px;
}
.related-article .col-sm-3,
.gallery-article .col-sm-3 {
  padding: 0 10px;
}
.related-article .col-sm-3 a,
.gallery-article .col-sm-3 a {
  display: block;
}
.related-article .embed-responsive-4by3,
.gallery-article .embed-responsive-4by3 {
  border-radius: 5px;
}
@media (max-width: 480px) {
  .related-article .row,
  .gallery-article .row {
    margin: 0 -5px !important;
  }
  .related-article .col-sm-3,
  .gallery-article .col-sm-3 {
    padding: 0 5px 10px 5px;
  }
}
@media (max-width: 767px) {
  .article-list .row,
  .gallery-article .row {
    margin: 0 -5px !important;
  }
  .article-list .col-sm-3,
  .gallery-article .col-sm-3 {
    padding: 0 5px 10px 5px;
  }
}
@media (max-width: 1200px) {
  .article-list .media-body .article-tag {
    position: relative;
    bottom: inherit;
    margin-top: 5px;
  }
}
.related-page ul li.active a {
  color: #007bff;
}
.author-card {
  background: #fff none repeat scroll 0 0;
  /*border: 1px solid #e1e8ed;*/
  border-radius: 4px;
  padding-bottom: 15px;
}
.author-card .author-head {
  background-image: url("../img/author-head.jpeg");
  background-position: 0 50%;
  background-size: 100% auto;
  border-bottom: 1px solid #e1e8ed;
  border-radius: 4px 4px 0 0;
  height: 100px;
  width: 100%;
}
.author-card .author-avatar {
  text-align: center;
}
.author-card .author-avatar > a {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: -40px 5px 0 0;
  max-width: 100%;
  padding: 1px;
  vertical-align: bottom;
}
.author-card .author-avatar > a > img {
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  height: 80px;
  width: 80px;
}
.author-card .author-basic {
  clear: both;
  text-align: center;
  width: 100%;
  margin: 10px 0 10px 0;
}
.author-card .author-basic .author-nickname {
  margin-bottom: 5px;
}
.author-card .author-basic .author-nickname > a {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}
.author-card .author-statistics {
  padding: 5px 0;
  text-align: center;
  margin: 0;
}
.author-card .author-statistics .statistics-text {
  color: #777;
  margin-bottom: 5px;
}
.author-card .author-statistics .statistics-nums {
  font-size: 16px;
  font-weight: 600;
}
.panel-default {
  border: none;
  padding: 0 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.panel-default > .panel-heading {
  position: relative;
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.panel-default > .panel-heading .panel-title {
  font-size: 16px;
  /*color: @gray-dark;*/
}
.panel-default > .panel-heading .panel-title > i {
  display: none;
}
.panel-default > .panel-heading small {
  font-weight: normal;
  color: #999;
  font-size: 13px;
}
.panel-default > .panel-heading .more {
  position: absolute;
  top: 13px;
  right: 0;
  display: block;
  color: #919191;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 13px;
}
.panel-default > .panel-heading .more:hover {
  color: #616161;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.panel-default > .panel-heading div.more {
  top: 17px;
}
.panel-default > .panel-heading .panel-bar {
  position: absolute;
  top: 7px;
  right: 0;
  display: block;
}
.panel-default > .panel-footer {
  padding: 15px 0;
  background: none;
}
.panel-default > .panel-body {
  position: relative;
  padding: 15px 0;
}
.panel-primary > .panel-heading {
  background-color: #46c37b;
  color: #fff;
}
.panel-primary > .panel-body {
  background: #fafafa;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.panel-gray {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.panel-gray > .panel-heading {
  background-color: #f5f5f5;
  color: #919191;
}
.panel-gray > .panel-body {
  color: #919191;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.panel-page {
  padding: 45px 50px 50px;
  min-height: 500px;
}
.panel-page .panel-heading {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px 0;
  padding: 0;
}
.panel-page .panel-heading h2 {
  font-size: 25px;
  margin-top: 0;
}
.tabs-wrapper {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  background-color: #fff;
}
.tabs-wrapper .tabs-mark-group .title {
  width: 90px;
  margin-top: 3px;
  float: left;
}
.tabs-wrapper .tabs-mark-group .classify {
  margin-top: 3px;
}
.tabs-wrapper .tabs-mark-group .classify a,
.tabs-wrapper .tabs-mark-group .classify i {
  color: #919191;
}
.tabs-wrapper .tabs-mark-group .classify a:focus,
.tabs-wrapper .tabs-mark-group .classify a:hover {
  color: #43bc60;
}
.tabs-wrapper .tabs-mark-group .content {
  margin-left: 100px;
}
.tabs-wrapper .tabs-mark {
  margin: 0 4px;
}
.tabs-wrapper .tabs-mark a {
  border: 1px solid #e4ecf3;
  padding: 2px 5px;
  color: #919191;
}
.tabs-wrapper .tabs-mark i {
  font-size: 10px;
  margin-left: 5px;
}
.tabs-wrapper .tabs-mark.active a,
.tabs-wrapper .tabs-mark:focus a,
.tabs-wrapper .tabs-mark:hover a {
  color: #43bc60;
  border: 1px solid #43bc60;
}
.tabs-wrapper .tabs-group {
  position: relative;
  overflow-y: hidden;
}
.tabs-wrapper .tabs-group .title {
  float: left;
  padding: 10px 0;
  width: 80px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.tabs-wrapper .tabs-group .content {
  list-style: none;
  padding: 0;
  margin: 0 0 0 60px;
}
.tabs-wrapper .tabs-group .content > li {
  float: left;
  padding: 5px 12px;
}
.tabs-wrapper .tabs-group .content > li > a {
  display: block;
  padding: 5px 10px;
  border: none;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  color: #828a92;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tabs-wrapper .tabs-group .content > li.active > a,
.tabs-wrapper .tabs-group .content > li:focus > a,
.tabs-wrapper .tabs-group .content > li:hover > a {
  color: #007bff;
}
.tabs-wrapper .tabs-group .tabs-toggle {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.tabs-multiple .tabs-group .content > li > a {
  margin: 2px 0;
  display: block;
  padding: 3px 10px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.tabs-multiple .tabs-group .content > li.active > a {
  color: #007bff;
  background: #b3d7ff;
}
@media (max-width: 767px) {
  .tabs-wrapper .tabs-group .title {
    width: 100%;
    float: none;
  }
  .tabs-wrapper .tabs-group .content {
    margin: 0;
  }
  .tabs-wrapper .tabs-group .content > li {
    padding: 5px;
  }
  .tabs-wrapper .tabs-group + .tabs-group {
    border-top: none;
  }
}
h1 .breadcrumb {
  padding: 0 5px;
  margin-bottom: 5px;
  background: none;
}
h1 .breadcrumb li {
  font-size: 12px;
  font-weight: 400;
}
.fullscreen-carousel-container {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.carousel-focus .item .carousel-img {
  background-size: cover;
  width: 100%;
  height: 83vh;
  background-position: center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .carousel-focus .item .carousel-img {
    height: auto;
    min-height: 200px;
    background-size: cover;
  }
}
.carousel-focus:hover .carousel-img {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.carousel-focus .carousel-control.left,
.carousel-focus .carousel-control.right {
  background-image: none;
}
.carousel-focus .carousel-control.left span,
.carousel-focus .carousel-control.right span {
  display: none;
}
.carousel-focus .carousel-control.left:hover,
.carousel-focus .carousel-control.right:hover {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.carousel-focus .carousel-control.left:hover span,
.carousel-focus .carousel-control.right:hover span {
  display: block;
}
.panel-blockimg {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.panel-blockimg img {
  width: 100%;
}
.hot-tags .panel-body a span {
  margin-bottom: 10px;
}
.tags {
  margin: 0;
  display: inline-block;
}
.tags .tag {
  margin-bottom: 8px;
}
.tag {
  display: inline-block;
  padding: 0 8px;
  height: 24px;
  line-height: 24px;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #007bff;
  background: #e5f2ff;
  margin-right: 3px;
  border-radius: 2px;
}
.tag img {
  width: 16px;
  height: 16px;
  margin-top: -1px;
  margin-right: 3px;
}
.tag[href]:focus,
.tag[href]:hover {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
}
.tag-xs {
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
}
.tag-sm {
  padding: 0 6px;
  height: 22px;
  line-height: 22px;
  font-size: 13px;
}
.tag-lg {
  font-size: 16px;
  font-weight: 700;
  height: 30px;
  line-height: 28px;
}
.tag-link {
  background-color: transparent;
}
.tag-logo {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: 4px 2px;
  background-size: 16px 16px;
}
.tag-success {
  background-color: #dff0d8;
  color: #18bc9c;
}
.tag-info {
  background-color: #d9edf7;
  color: #3498db;
}
.tag-warning {
  background-color: #fcf8e3;
  color: #f39c12;
}
.tag-danger {
  background-color: #f2dede;
  color: #e74c3c;
}
.product-item .card {
  border-radius: 3px;
  position: relative;
  padding: 12px;
  margin: 0 auto 20px;
  -webkit-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 200ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  border: 1px solid #eee;
  min-height: 250px;
  overflow: hidden;
  background-color: #fff;
}
.product-item .card .thumb {
  position: relative;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  margin: -12px;
}
.product-item .card .thumb > .preview-link::before {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.product-item .card .thumb > .quickview-link {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  line-height: 40px;
  text-align: center;
  z-index: 10;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
}
.product-item .card .thumb:hover .preview-link::before {
  opacity: 1;
}
.product-item .card .thumb:hover .quickview-link {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
}
.product-item .card:hover {
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-item .card:hover .operate .pull-right {
  display: block;
}
.product-item .card .image {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  padding-bottom: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.product-item .card .title {
  padding-top: 10px;
}
.product-item .card h2 {
  color: #000;
  padding: 0;
  margin-bottom: 5px;
  height: 24px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}
.product-item .card .operate {
  height: 31px;
  overflow: hidden;
}
.product-item .card .operate .pull-right {
  display: none;
}
#content-container > h1 {
  margin-top: 0;
}
body {
  display: flex;
  flex-direction: column;
}
.main-content {
  flex-grow: 1;
}
footer {
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .main-content > .container {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .main-content > .container > .category-title {
    padding: 0 15px;
    font-size: 20px;
  }
  .navbar-inverse {
    height: 100vh;
    max-height: 100vh;
    padding-bottom: 50px;
  }
  .navbar-inverse ul.dropdown-menu {
    background: #333333;
  }
  .navbar-inverse ul.navbar-nav > li {
    margin-bottom: 1px;
  }
  .navbar-inverse ul.navbar-nav > li.open > a {
    background-color: #080808;
  }
  .navbar-white .navbar-nav .open .dropdown-menu {
    background: #eee;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .product-item .card .operate .pull-right {
    display: inherit;
  }
}
.lasest-update .panel-body {
  padding: 8px 0;
}
.lasest-update .panel-body ul {
  margin-bottom: 0;
}
.lasest-update .panel-body ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  height: 35px;
  line-height: 35px;
}
.channel-list .row .col-xs-12 {
  min-height: 315px;
}
.channel-list .row .col-xs-12 h3 {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  position: relative;
}
.channel-list .row .col-xs-12 h3 > a {
  font-size: 16px;
  position: relative;
  padding-left: 6px;
}
.channel-list .row .col-xs-12 h3 > a:before {
  position: absolute;
  top: 2px;
  left: 0px;
  content: ' ';
  width: 2px;
  height: 15px;
  background: #007bff;
  display: inline-block;
}
.channel-list .row .col-xs-12 h3 em {
  position: absolute;
  right: 5px;
  top: 2px;
  font-style: normal;
  font-weight: 400;
}
.channel-list .row .col-xs-12 h3 em a {
  font-size: 12px;
}
.channel-list .row .media {
  margin-bottom: 10px;
}
.channel-list .row .media .media-left a {
  width: 120px;
  display: block;
}
.channel-list .row .media .media-left a .embed-responsive-4by3 {
  border-radius: 5px;
}
.channel-list .row .media .media-body {
  font-size: 12px;
}
.channel-list .row .media .media-body p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-size: 14px;
  padding-right: 15px;
}
.channel-list .row ul.inner-list li {
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-right: 40px;
  height: 30px;
  line-height: 30px;
}
.channel-list .row ul.inner-list li a {
  color: #616161;
}
.channel-list .row ul.inner-list li span {
  position: absolute;
  right: 0;
}
#comment-container #commentlist dl {
  position: relative;
  border-bottom: 1px solid #eee;
  clear: both;
  padding: 10px 0;
  margin-bottom: 5px;
}
#comment-container #commentlist dl dt {
  float: left;
  margin-right: 10px;
  width: 44px;
  height: 44px;
  display: block;
  position: absolute;
}
#comment-container #commentlist dl dt img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#comment-container #commentlist dl dd {
  padding-left: 55px;
  float: left;
  width: 100%;
}
#comment-container #commentlist dl dd cite a {
  color: #007bff;
}
#comment-container #commentlist dl dd small {
  color: #999;
  margin: 0 0 0 3px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
}
#comment-container #commentlist dl dd small a {
  display: none;
}
#comment-container #commentlist dl dd dl {
  margin: 0px;
  border-top: 1px solid #eee;
  border-bottom: none;
  padding-top: 15px;
  padding-bottom: 0;
}
#comment-container #commentlist dl dd dl dd {
  width: 550px;
}
#comment-container #commentlist dl dd p {
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 24px;
}
#comment-container #commentlist dl dd p em {
  font-style: normal;
  display: inline-block;
  padding: 0 5px;
  height: 22px;
  line-height: 22px;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  color: #007bff;
  background: #e5f2ff;
  border-radius: 2px;
}
#comment-container #commentlist cite {
  font-style: normal;
}
#comment-container h3 {
  position: relative;
  font-size: 16px;
  padding: 15px 0;
  background: #fff;
}
#comment-container h3 a {
  display: none;
}
#comment-container #postcomment .form-group {
  margin-bottom: 10px;
}
#comment-container #postcomment label {
  font-weight: normal;
}
#comment-container #postcomment a small {
  display: inline !important;
}
#comment-container #postcomment textarea.form-control {
  border-radius: 2px;
  box-shadow: none;
  border-color: #eeeeee;
}
.fieldlist dd {
  display: block;
  margin: 5px 0;
}
.fieldlist dd input {
  display: inline-block;
  width: 300px;
}
.fieldlist dd input:first-child {
  width: 110px;
}
.fieldlist dd ins {
  width: 110px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
}
.text-gray {
  color: #d2d6de !important;
}
.no-padding {
  padding: 0 !important;
}
.no-border {
  border: none !important;
}
.pager .pagination {
  margin: 0;
}
.pager .pager {
  margin: 0;
}
.pager li {
  margin: 0 0.4em;
  display: inline-block;
}
.pager li:first-child > a,
.pager li:last-child > a,
.pager li:first-child > span,
.pager li:last-child > span {
  padding: 0.5em 1.2em;
}
.pager li > a,
.pager li > span {
  background: none;
  border: 1px solid #e6e6e6;
  border-radius: 0.25em;
  padding: 0.5em 0.93em;
  font-size: 14px;
}
.list-partner li {
  display: inline-block;
  margin: 0 12px 12px 0;
  width: 140px;
  text-align: center;
  border: 1px solid #efefef;
}
.list-partner li img {
  height: 50px;
}
.index-gallary h5,
.related-article h5 {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  font-weight: normal;
  height: 15px;
}
.index-focus {
  margin-bottom: 19px;
}
.article-content > .panel-heading {
  padding: 0;
  margin: 0 -15px;
}
.article-content > .panel-heading > .breadcrumb {
  background: #fff;
  font-size: 13px;
  margin-bottom: 0;
  padding: 15px;
}
.article-donate {
  padding: 10px 0;
  text-align: center;
}
.article-donate a {
  min-width: 120px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.category-title {
  /* margin-bottom: 20px; */
  font-size: 24px;
  /* color: #444; */
}
.category-title .breadcrumb li {
  font-size: 14px;
}
.category-order li > a.active {
  color: #007bff;
}
.img-zoom {
  overflow: hidden;
  display: inline-block;
}
.img-zoom img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.img-zoom:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.embed-responsive-square {
  padding-bottom: 100%;
}
.list-links a {
  margin-right: 5px;
}
.navbar-form {
  padding-top: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-header {
    width: 44px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .skin-white {
    padding-top: 70px;
  }
  ul.dropdown-menu {
    position: relative;
    width: 100%;
    background: #222;
  }
  ul.dropdown-menu .open > a,
  ul.dropdown-menu .open > a:hover,
  ul.dropdown-menu .open > a:focus {
    background: none;
    color: #9d9d9d;
  }
  ul.dropdown-menu > .dropdown-menu {
    position: relative;
    width: 100%;
    margin: 0;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px;
  }
  .navbar-nav .open .dropdown-menu {
    position: relative;
    width: 100%;
    margin: 0;
    left: 0;
    background: #404950;
  }
  .dropdown-submenu > a:after {
    display: none;
  }
  .panel-page {
    padding: 15px;
    min-height: 300px;
  }
  .article-list .media .media-left a {
    width: 110px;
  }
  .article-list .media .media-body .article-title {
    font-size: 1em;
  }
  .article-list .media-body .article-tag {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
  }
  .navbar-nav {
    margin: 8.25px 0;
  }
  .dropdown:not(.open):hover > .dropdown-menu {
    display: none;
  }
  .article-list .media-body .article-tag span {
    margin: 0 2px;
  }
  .article-pay a.btn {
    display: block;
    margin-top: 5px;
  }
  .navbar-form {
    margin: 0;
    border-top: none;
    border-bottom: none;
  }
  .navbar-userinfo {
    padding: 0;
  }
  .navbar-userinfo > a {
    height: 50px;
  }
  .focus-img {
    margin-top: 15px;
    padding: 0 15px;
  }
  .focus-img > .row {
    margin-left: 0;
  }
}
/* 全屏轮播图样式已移至.carousel-focus .item .carousel-img */
@media (min-width: 768px) {
  #channel-focus .item .carousel-img {
    height: 358px;
    width: 100%;
  }
}
@media (min-width: 990px) and (max-width: 1200px) {
  #channel-focus .item .carousel-img {
    height: 295px;
    width: 100%;
  }
}
@media (min-width: 979px) {
  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }
}
/* 全局轮播标题样式，不分屏幕大小 */
.carousel-caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  width: 80%;
  background: transparent;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-caption h3 {
  margin: 0;
  font-size: 2.5rem;
  font-family: 'Microsoft YaHei', 'Hiragino Sans GB', 'PingFang SC', 'STXihei', sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 1px;
}

.carousel-caption p {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .carousel-caption {
    width: 90%;
    padding: 15px;
  }
  
  .carousel-caption h3 {
    font-size: 1.8rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .carousel-caption h3 {
    font-size: 2rem;
  }
}

.carousel-indicators {
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  width: auto;
  left: inherit;
  opacity: 0.8;
}

.carousel-indicators li {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.carousel-indicators .active {
  width: 14px;
  height: 14px;
  background-color: #ffffff;
}
.carousel-control {
  text-shadow: none;
}
.carousel-control .fa {
  font: normal normal normal 30px/1 FontAwesome;
}
.carousel-control .icon-prev {
  left: 20px;
}
.carousel-control .icon-next {
  right: 20px;
}
.carousel-control .fa-chevron-left:before {
  content: "\f053";
}
.carousel-control .fa-chevron-right:before {
  content: "\f054";
}
.loadmore {
  width: 80%;
  margin: 1.5em auto;
  line-height: 1.6em;
  font-size: 14px;
  text-align: center;
  clear: both;
}
.loadmore-tips {
  display: inline-block;
  vertical-align: middle;
}
.loadmore-line {
  border-top: 1px solid #eeeeee;
  margin-top: 2.4em;
}
.loadmore-line .loadmore-tips {
  position: relative;
  top: -0.9em;
  padding: 0 0.55em;
  background-color: #FFFFFF;
  color: #808080;
}
.btn-loadmore {
  clear: both;
}
.download-list {
  margin: 0 -15px;
}
.download-list li {
  width: 95px;
  float: left;
  display: inline-block;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  position: relative;
  height: 170px;
}
.download-list li a {
  display: block;
}
.download-list li a p {
  word-break: keep-all;
  text-overflow: ellipsis;
  line-height: 25px;
  height: 25px;
  overflow: hidden;
}
.download-list li a img + span {
  display: block;
  overflow: hidden;
  height: 20px;
}
.download-list li:hover em {
  display: none;
}
.download-list li:hover a.btn {
  display: block;
  width: 80px;
  margin: 0 auto;
}
.download-list li a:hover {
  text-decoration: none;
}
.download-list img {
  width: 90px;
  height: 90px;
  margin-bottom: 8px;
}
.download-list em {
  display: block;
  color: #999;
  font-style: normal;
}
.download-list li > a.link {
  display: block;
  height: 120px;
  overflow: hidden;
  border-radius: 5px;
}
.download-list li > a.link img {
  border-radius: 5px;
}
.download-list a.btn {
  display: none;
}
.screenshots-box > h2,
.download-box > h2,
.intro-box > h2,
.history-box > h2 {
  font-size: 18px;
  color: #444;
}
@media (max-width: 991px) {
  .download-list li {
    margin: 0 10px;
  }
}
.focus-img > .row > div {
  padding: 0;
  padding-right: 15px;
  margin-bottom: 15px;
  height: 100%;
  display: block;
}
.focus-img > .row > div a > span {
  border-radius: 3px;
  overflow: hidden;
}
.focus-img .intro {
  position: absolute;
  bottom: 0;
  background: #000;
  padding: 0 5px 0 5px;
  width: 100%;
  opacity: 0.5;
  color: #fff;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.focus-img a {
  display: block;
}
.focus-img img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 992px) {
  .focus-img {
    margin-top: 15px;
  }
  .focus-img > .row {
    margin: 0 -10px;
  }
  .focus-img > .row > div {
    padding: 0 10px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .focus-img > .row > div .embed-responsive-16by9 {
    padding-bottom: 68.25%;
  }
}
.navbar .form-search input[type=search] {
  -webkit-appearance: textfield;
  font-family: inherit;
  font-size: 100%;
}
.navbar .form-search input::-webkit-search-decoration,
.navbar .form-search input::-webkit-search-cancel-button {
  display: none;
}
.navbar .form-search input[type=search] {
  background: url('../img/search.svg') no-repeat 10px center;
  background-size: 18px 18px;
  border-color: transparent;
  padding: 6px 10px;
  width: 35px;
  -webkit-border-radius: 10em;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 10em;
  -moz-background-clip: padding;
  border-radius: 10em;
  background-clip: padding-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  height: inherit;
  cursor: pointer;
  box-shadow: none;
  color: transparent;
}
.navbar .form-search input[type=search]:hover {
  background-color: #fff;
}
.navbar .form-search input[type=search]:focus {
  border-color: #007bff;
  width: 200px;
  padding-left: 32px;
  color: #000;
  background-color: #fff;
  cursor: auto;
  -webkit-box-shadow: 0 0 5px #99caff;
  -moz-box-shadow: 0 0 5px #99caff;
  box-shadow: 0 0 5px #99caff;
}
.navbar .form-search input[type=search]:focus::-moz-placeholder {
  color: #999;
}
.navbar .form-search input[type=search]:focus::-webkit-input-placeholder {
  color: #999;
}
.navbar .form-search input::-moz-placeholder {
  color: transparent;
}
.navbar .form-search input::-webkit-input-placeholder {
  color: transparent;
}
@media (min-width: 768px) {
  .navbar .navbar-header {
    position: relative;
    z-index: 9999;
  }
  .navbar .navbar-collapse {
    position: relative;
    z-index: 9998;
  }
  .navbar .navbar-collapse .navbar-nav {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    white-space: nowrap;
  }
  .navbar .navbar-collapse .navbar-right {
    position: absolute;
    right: 0;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .navbar .form-search input[type=search] {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
  }
  .navbar .form-search input[type=search]:focus {
    width: 100%;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    overflow: auto;
    z-index: 9999;
    background: #fff;
    box-shadow: 10px 0 10px rgba(0, 0, 0, 0.06);
    max-height: inherit;
    height: 100vh;
    transition: 0.5s;
    width: 250px;
    margin-left: -280px;
    margin-right: 0;
    display: flex;
  }
  .navbar .navbar-collapse > ul.navbar-nav {
    margin: 15px 0;
  }
  .navbar .navbar-collapse > ul.navbar-nav > li {
    margin-bottom: 5px;
    border-radius: 3px;
    overflow: hidden;
    background: #fbfbfb;
  }
  .navbar .navbar-collapse > ul.navbar-nav li > a b.caret {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -2px;
  }
  .navbar .navbar-collapse > ul.navbar-nav li ul.dropdown-menu {
    border-radius: 0;
  }
  .navbar .navbar-collapse > ul.navbar-nav:first-child {
    width: 100%;
  }
  .navbar .navbar-collapse > ul.navbar-nav.navbar-right {
    width: 100%;
    margin-bottom: 0;
  }
  .navbar .navbar-collapse.active {
    margin-left: -15px;
    flex-direction: column;
    flex: auto;
  }
  .navbar .navbar-collapse.active > ul {
    width: 100%;
  }
  .navbar .navbar-collapse.active .dropdown-submenu ul.dropdown-menu {
    display: block;
  }
  .navbar .navbar-collapse-bg {
    position: fixed;
    top: 0;
    overflow: hidden;
    z-index: 9998;
    background: transparent;
    height: 100vh;
    width: 100%;
    display: block;
  }
}
/* 搜索建议 */
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  position: absolute;
  display: none;
  z-index: 1036;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.autocomplete-suggestions .autocomplete-suggestion {
  padding: 6px 12px;
}
.autocomplete-suggestions .autocomplete-suggestion b {
  color: red;
}
.autocomplete-suggestions .autocomplete-suggestion:hover {
  background: #f0f0f0;
}
.layui-layer .layui-layer-confirm {
  width: 100%;
  height: 100%;
}
.layui-layer .layui-layer-confirm:focus {
  border: 1px solid #444c69;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.layui-layer .layui-layer-confirm:focus-visible {
  outline: 0;
}

/* 响应式容器宽度调整 */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px; /* 增加最大宽度值 */
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1480px; /* 超大屏幕宽度 */
  }
}

/* 300*50 横向排列元素样式 - 按照设计图样式 */
.horizontal-item {
    width: 300px;
    height: 50px;
    display: inline-block; /* 横向排列 */
    margin-right: 0; /* 去除默认间距 */
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* 内容居中显示 - 默认样式 */
.horizontal-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* 白色背景 */
    color: #333;
    font-size: 16px;
    border-radius: 0;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* 悬停效果 */
.horizontal-item-content:hover {
    background-color: #f5f5f5;
}

/* 选中状态样式 */
.horizontal-item-content.active {
    background-color: #1f87e8; /* 蓝色背景 */
    color: white; /* 白色文字 */
    border: none;
}

/* 横向排列容器 */
.horizontal-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0 -5px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
}

/* 移除链接下划线 */
.horizontal-item-content a {
    text-decoration: none !important;
    color: inherit;
    display: block;
    width: 100%;
    text-align: center;
    word-break: break-word;
}

/* 调整按钮间距和样式 - 电脑端1行5列 */
.horizontal-item {
    margin: 5px;
    flex: 0 0 calc(20% - 10px);
    min-width: 120px;
    box-sizing: border-box;
}

.horizontal-item + .horizontal-item {
    margin-left: 5px;
}

/* 响应式调整 - 平板端 */
@media (max-width: 1199px) and (min-width: 768px) {
    .horizontal-item {
        flex: 0 0 calc(25% - 10px);
        min-width: 140px;
    }
}

/* 响应式调整 - 手机端1行2列 */
@media (max-width: 767px) {
    .horizontal-container {
        gap: 8px;
        margin: 0 -4px;
        padding: 4px;
    }
    
    .horizontal-item {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
        margin: 4px;
        min-width: auto;
        height: 40px;
    }
    
    .horizontal-item-content {
        font-size: 13px;
        padding: 0 8px;
    }
    
    /* 移动端选中状态 */
    .horizontal-item-content.active {
        background-color: #1f87e8; /* 蓝色背景 */
        color: white;
    }
}

/* 极小屏幕调整 */
@media (max-width: 480px) {
    .horizontal-container {
        gap: 6px;
        margin: 0 -3px;
        padding: 3px;
    }
    
    .horizontal-item {
        flex: 0 0 calc(50% - 6px);
        width: calc(50% - 6px);
        margin: 3px;
        height: 36px;
    }
    
    .horizontal-item-content {
        font-size: 12px;
        padding: 0 6px;
    }
    
    /* 移动端蓝色按钮 */
    .horizontal-container .horizontal-item:first-child .horizontal-item-content {
        background-color: #1f87e8; /* 保持蓝色背景 */
        color: white;
    }
}

/* 产品标签样式 */
.product-tabs-container {
    margin: 20px 0;
    width: 100%;
}

.product-tabs-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
    gap: 0;
}

.product-tab-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-tab-item a {
    display: block;
    padding: 15px 20px;
    color: #09335b;
    text-decoration: none;
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
}

.product-tab-item.current a {
    color: #ffffff;
    background-color: #1f87e8;
    box-shadow: 0 3px 8px rgba(31, 135, 232, 0.3);
}

.product-tab-triangle {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1f87e8;
    z-index: 1;
}

/* 文章列表样式 */
.article-list-container {
    margin-top: 30px;
}

.article-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

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

.article-item:hover {
    background-color: #f9f9f9;
}

.article-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
}

.article-title a {
    color: #09335b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #1f87e8;
}

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.article-summary {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 移动端响应式调整 */
@media (max-width: 767px) {
    /* 移动端产品标签样式 */
    .product-tabs-container {
        margin: 15px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .product-tabs-container::-webkit-scrollbar {
        display: none;
    }
    
    .product-tabs-list {
        display: block;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .product-tab-item {
        display: inline-block;
        min-width: 120px;
        margin-right: 5px;
    }
    
    .product-tab-item a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* 移动端文章列表样式 */
    .article-list-container {
        margin-top: 20px;
    }
    
    .article-item {
        padding: 15px 0;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-meta {
        font-size: 12px;
    }
    
    .article-summary {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 480px) {
    /* 小屏幕设备进一步调整 */
    .product-tab-item {
        min-width: 100px;
    }
    
    .product-tab-item a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .article-title {
        font-size: 15px;
    }
}

/* 关于我们页面样式 */
/* 公司简介 */
.company-intro {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.company-intro .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.company-intro .intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* 企业文化 */
.company-culture {
    margin: 60px 0;
    padding: 40px;
}

.company-culture .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.company-culture .culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.company-culture .culture-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-culture .culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.company-culture .culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e6f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-culture .culture-icon i {
    font-size: 36px;
    color: #1890ff;
}

.company-culture .culture-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.company-culture .culture-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 发展历程 */
.company-history {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
}

.company-history .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.company-history .history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.company-history .history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #1890ff;
}

.company-history .timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.company-history .timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.company-history .timeline-year {
    width: 120px;
    padding: 10px;
    background-color: #1890ff;
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    position: relative;
}

.company-history .timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #1890ff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.company-history .timeline-item:nth-child(odd) .timeline-year::after {
    right: -10px;
}

.company-history .timeline-item:nth-child(even) .timeline-year::after {
    left: -10px;
}

.company-history .timeline-content {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    margin: 0 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-history .timeline-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.company-history .timeline-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 核心团队 */
.company-team {
    margin: 60px 0;
    padding: 40px;
}

.company-team .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.company-team .team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.company-team .team-member {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.company-team .member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #e6f7ff;
}

.company-team .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-team .team-member h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.company-team .member-position {
    font-size: 16px;
    color: #1890ff;
    margin-bottom: 15px;
}

.company-team .member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 荣誉资质 */
.company-achievements {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
}

.company-achievements .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.company-achievements .achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.company-achievements .achievement-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.company-achievements .achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.company-achievements .achievement-item img {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto 20px;
}

.company-achievements .achievement-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 合作伙伴 */
.company-partners {
    margin: 60px 0;
    padding: 40px;
}

.company-partners .section-title {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.company-partners .partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.company-partners .partner-item {
    padding: 20px;
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.company-partners .partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-partners .partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .company-culture .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-achievements .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-partners .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .company-intro, 
    .company-culture, 
    .company-history, 
    .company-team, 
    .company-achievements, 
    .company-partners {
        padding: 20px;
        margin: 30px 0;
    }
    
    .company-intro .section-title,
    .company-culture .section-title,
    .company-history .section-title,
    .company-team .section-title,
    .company-achievements .section-title,
    .company-partners .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .company-team .team-members {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-partners .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-history .history-timeline::before {
        left: 20px;
    }
    
    .company-history .timeline-item {
        flex-direction: column;
    }
    
    .company-history .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .company-history .timeline-year {
        width: 80px;
        margin-bottom: 20px;
    }
    
    .company-history .timeline-year::after {
        left: 20px;
        top: 100%;
        margin-top: 10px;
    }
    
    .company-history .timeline-item:nth-child(odd) .timeline-year::after,
    .company-history .timeline-item:nth-child(even) .timeline-year::after {
        left: 20px;
        top: 100%;
    }
    
    .company-history .timeline-content {
        margin: 0 0 0 50px;
    }
}

@media (max-width: 480px) {
    .company-culture .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .company-achievements .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .company-partners .partners-grid {
        grid-template-columns: 1fr;
    }
}
