body{
   background: #f3f4f7 !important;
   font-family: 14px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
        "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;   
    
}

.typetitle{
    font-size: 16px;
    font-weight: 600;
}

.iconwrap{
  text-align:center;   
  height:310px;
}

.iconwrap .thumbnail{
   margin-bottom:5px;
}

.indexiconwrap .thumbnail img{
   height:250px; 
}

.iconwrap a{
    font-size: 18px;
    font-weight: 600;  
    color: #000;
}

.submenu{
    padding-left:0; 
    list-style:none; 
    font-size:14px; 
    margin-right:20px;
    background: #f7f7f7;
    text-align:center;
}

.submenu .fnode{
    background: #333;
    color: #fff;
    padding: 10px;
    font-size: 20px; 
}

.submenu .listnode{
    cursor: pointer;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid #e7e7e7;
}

.submenu li.active{
   background:#d74747  
}

.submenu li.active a{
   color:#fff;   
}

.lightbulltable table {
    width: 100%;
}

.lightbulltable table td, .lightbulltable table th {
    min-width: 40px;
    height: 30px;
    border: 1px solid #ccc;
    vertical-align: top;
    padding: 2px 4px;
    text-align: left;
    box-sizing: border-box;
}
   
   .clientlogo{height:180px; font-size:14px;}
   
/* 定义下拉按钮样式 */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
 
/* 容器 <div> - 滚动容器 */
.dropdown {
  position: relative;
  display: inline-block;
}
 
/* 下拉内容 (默认隐藏) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
 
/* 鼠标悬停时显示下拉内容 */
.dropdown:hover .dropdown-content {
  display: block;
}
 
/* 链接样式 */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
 
/* 链接悬停样式 */
.dropdown-content a:hover {background-color: #f1f1f1;}








.contact-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: #fff;
    padding: 15px 10px;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 联系项通用样式 */
.contact-item {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    cursor: pointer;
}

/* 最后一个项去掉底部间距 */
.contact-item:last-child {
    margin-bottom: 0;
}

/* 图标样式 */
.contact-item i {
    font-size: 36px;
    color: #ff0000;
    transition: all 0.3s;
}

/* 微信二维码样式 */
.wechat-qrcode {
    position: absolute;
    left: -160px; /* 二维码出现在左侧 */
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

/* 鼠标悬停显示二维码 */
.contact-item:hover .wechat-qrcode {
    opacity: 1;
    visibility: visible;
}

/* 电话号码提示 */
.phone-number {
    position: absolute;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.contact-item:hover .phone-number {
    opacity: 1;
    visibility: visible;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-bar {
        padding: 10px 5px;
    }
    .contact-item i {
        font-size: 20px;
    }
    .wechat-qrcode,
    .phone-number {
        left: -100px;
    }
}

/* 在原图标样式中添加 */
.contact-item i {
    font-size: 24px;
    transition: all 0.3s;
    /* 新增动画配置 */
    animation: pulse 2s infinite; 
}

/* 新增脉冲动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 悬停时暂停动画 */
.contact-item:hover i {
    animation-play-state: paused;
    color: #007bff; /* 悬停时变色 */
}