/**
 * @Description: 样式表
 * @Author: medivh byfs1990@163.com
 * @Date: 2026-05-07 10:17:03
 * @LastEditors: medivh byfs1990@163.com
 * @LastEditTime: 2026-05-07 11:05:41
 * 去没人的岛，摸鲨鱼的角。
 */
/*  首页样式 */
/* 产品与服务 */
.icon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-container:after {
  content: '';
  position: absolute;
  bottom: -25px;
  width: 100%;
  height: 2px;
  background: #E6E6E6;
}
.icon-container:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  width: 3px;
  height: 8px;
  background: #E6E6E6;
}
/* 产品与服务 选中状态 */
.icon-active:after {
  background: #4478f0;
}
.icon-active:before {
  background: #4478f0;
}
.icon-active p {
  color: #4478f0;
  font-weight: 700;
}
/* 程序主界面展示  */
.menu-item-active {
  border-radius: 10px;
  background: linear-gradient(-90deg, #02a7ff 0%, #007aff 100%);
}
.menu-item-active span {
  color: #ffffff;
}

/* 分页 */
#laypage-container {
  display: block;
  margin-top: 20px;
  color: #505050;
  text-align: center;
}
#laypage-container .pagination {
  display: flex;
  text-align: center;
	gap: 3px;
}
#laypage-container .pagination .active {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
  color: #fff;
  vertical-align: middle;
  background-color: #358cf1;
  border-radius: 3px;
  opacity: 1;
}

#laypage-container .pagination li {
	vertical-align: middle;
	cursor: pointer;
}

#laypage-container .pagination a,#laypage-container .pagination .disabled {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
  color: #505050;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  border-radius: 3px;
}
#laypage-container .pagination li:hover {
  color: #438ece;
  text-decoration: none;
  background-color: #efefef;
}

/*# sourceMappingURL=style.css.map */