.it-title{
	text-align: center;
    margin: 32px 0;
    color: #000000;	
}
.it-sub {
  font-size: 12px;
  color: #666;
  margin-left: 8px;
  font-weight: 400;
}
.it-item{
    margin: 5px 0;
}

.pull-right{
    float: right !important;
    margin-right: 10px;
}

/* 产品卡片容器 */
.product-item {
  padding: 16px 2px;
  display: block;
  text-align: left;
  width: 164px;
  min-height: 124px;
  border: 2px solid transparent;
  border-radius: 8px; /* 新增圆角 */
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease;
  text-decoration: none !important; /* 移除默认链接下划线 */
}

/* 悬停状态 */
.product-item:hover {
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* 图片容器 */
.product-image {
  margin: auto;
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.5s ease; /* 图片动效 */
}

.product-item:hover .product-image {
  transform: scale(1.05) rotate(360deg); /* 缩放+旋转 */
}

/* 产品名称 */
.product-name {
  text-align: center;
  min-height: 20px;
  margin: 8px 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  color: #333;
}

/* 辅助说明文字 */
.product-remark {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #666;
  transition: color 0.2s ease;
}

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

.ws-footer {
	padding: 30px 15px;
    line-height: 30px;
    text-align: center;
    color: #777;
    margin: 4px 0;		
}