/* ==============================
PC 端样式
============================== */
.pro-wrap {
  padding: 20px 0;
}

.pro-position {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 8px 0 8px 25px;
  background: url(../images/logo_03.png) no-repeat 0 center;
}

/* 产品分类 */
.pro-category {
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 25px;
}
.pro-category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pro-category li a {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.pro-category li a:hover,
.pro-category li a.active {
  background: #077ee3;
  color: #fff;
  border-color: #077ee3;
}

/* 产品列表外层容器 固定高度 防止塌陷 */
.pro-list-box {
  position: relative;
  min-height: 600px;
}
/* 无产品提示样式 */
.no-pro-tip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: none;
}
.no-pro-tip p {
  font-size: 16px;
  color: #999;
  padding: 30px;
  border: 1px dashed #eee;
  display: inline-block;
  border-radius: 6px;
  background: #fff;
}

/* 产品列表 一行4个 */
.pro-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
  list-style: none;
  padding: 0;
}
.pro-list li {
  width: 23%;
  margin: 0 1% 25px;
  display: block;
}
.pro-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}
.pro-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 正方形产品图 */
.pro-pic {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.pro-pic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* 产品信息 + 虚线分隔 */
.pro-info {
  padding: 12px;
  text-align: center;
  border-top: 1px dashed #e0e0e0;
  background: #fff;
}
.pro-info h4 {
  font-size: 15px;
  margin: 0 0 3px;
  overflow: hidden;
  white-space: nowrap;
}
.pro-info h4 a {
  color: #333;
  text-decoration: none;
}
.pro-info h4 a:hover {
  color: #077ee3;
}

/* 产品型号样式（紧凑间距） */
.pro-xinghao {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 纯橘色按钮（删除流光特效） */
.pro-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pro-btn {
  display: block;
  line-height: 36px;
  padding: 0 15px;
  background: #f4c81e; /* 主色：黄色 */
  border-radius: 3px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 12px;
  border: none;
}
/* 按钮悬浮效果（深橘色） */
.pro-btn:hover{
  background: #e66f00;
  color: #fff;
}

/* 分页居中 */
.pages{
  text-align: center;
}
.pagination{
  display: inline-block;
}

/* 分页样式 */
.pagination p{ margin:0; cursor:pointer }
.pagination{ height:40px; padding:20px 0px; }
.pagination a{ display:block; float:left; margin-right:10px; padding:2px 12px; height:24px; border:1px #cccccc solid; background:#fff; text-decoration:none; color:#808080; font-size:12px; line-height:24px; }
.pagination a:hover{ color:#077ee3; background: white; border:1px #077ee3 solid; }
.pagination a.cur{ border:none; background:#077ee3; color:#fff; }
.pagination p{ float:left; padding:2px 12px; font-size:12px; height:24px; line-height:24px; color:#bbb; border:1px #ccc solid; background:#fcfcfc; margin-right:8px; }
.pagination p.pageRemark{ border-style:none; background:none; margin-right:0px; padding:4px 0px; color:#666; }
.pagination p.pageRemark b{ color:red; }
.pagination p.pageEllipsis{ border-style:none; background:none; padding:4px 0px; color:#808080; }

/* ==============================
移动端自适应 → 统一一行2个产品
============================== */
@media only screen and (max-width:768px){
  .pro-wrap{padding:15px 10px;}
  .pro-list li{width:48%;margin:0 1% 15px;}
  .pro-category{padding:10px;}
  .pro-category li a{padding:5px 10px;font-size:13px;}
  .pro-info h4{font-size:14px; margin: 0 0 2px;}
  .pro-xinghao{font-size: 12px; margin-bottom: 6px;}
  .pro-btn{line-height:30px;padding:0 10px;}
  .pro-list-box{min-height: 400px;}
}
@media only screen and (max-width:414px){
  .pro-list li{width:48%;margin:0 1% 15px;} /* 改为一行2个 */
  .pro-list-box{min-height: 300px;}
}