
/* 通用 */
.page {
    width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  a{ text-decoration: none;color: #333; cursor: pointer;}
a:hover{ text-decoration:none;color:#1d79cc!important; }
/* 选项卡列表 */
.listitem{
    width: 970px;
    padding-left: 0px !important;
    text-align: left !important;
    margin-bottom: 0px;
}
.listitem:hover .tu{
    transform: scale(1.06); /* 设置图像放大比例为原来的1.06倍 */
}
.listitem .tu{
    width: 240px !important;
    height: 135px !important;
    border-radius: 6px;
    transition: transform 0.3s ease; /* 添加动画效果 */
}
.listitemright{
    width: 500px;
    height: 100px;
    height: 195px;
    box-sizing: border-box;
    padding: 20px 0px;
    cursor: pointer;
}
h4{
    width: 500px;
    white-space: nowrap; /* 不自动换行 */
    overflow: hidden; /* 超出部分进行隐藏 */
    text-overflow: ellipsis; /* 显示省略号 */
    margin-bottom: 20px;
}
.listitemright p{
    color: #888;
    height: 96px;
    overflow: hidden;
}

/* 选项卡列表 结束 */

/* 查看更多 */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color:#1d79cc; /* 背景色 */
    color: white;
    text-align: center;
    border-radius: 3px;
    cursor: pointer; 
    margin-top: 50px;
    margin-left: 480px;
}

.button:hover {
    transition: all 0.10s ease; /* 添加过渡效果 */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* 鼠标悬停时的阴影效果 */
  
    
    
    
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2) rotate(-9deg); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.pulse-animation {
    animation: pulse 1s infinite alternate; /* 应用关键帧动画 */
}
/* 查看更多  /*/
.neirong .right-list .tit a{
    padding-bottom: 10px;
    padding-right: 10px;
    border-bottom: 2px solid #1d79cc;
}