/* 首页模块懒加载占位 */
.home-lazy-placeholder {
  min-height: 100px;
  margin: 8px 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eee 25%, #f8f8f8 50%, #eee 75%);
  background-size: 200% 100%;
  animation: home-lazy-shimmer 1.4s ease-in-out infinite;
}
.home-lazy-error {
  animation: none;
  background: #fff3f3;
  min-height: 48px;
}
@keyframes home-lazy-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.jhzx-am-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 4px;
  vertical-align: middle;
  background: #c00;
  border-radius: 50%;
  color: #ff0;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
}
.jhzx-am-icon::before { content: '澳'; }
