/* EA668 气氛播报 */
.ea668-atmo-bar{
  width:100%;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 22px rgba(15,23,42,.12);
  z-index:80;
}
.ea668-atmo-bar-inner{
  max-width:1180px;
  margin:0 auto;
  min-height:38px;
  padding:0 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-sizing:border-box;
}
.ea668-atmo-label{
  flex:none;
  display:inline-flex;
  align-items:center;
  height:24px;
  padding:0 9px;
  border-radius:999px;
  background:#facc15;
  color:#111827;
  font-size:12px;
  font-weight:800;
}
.ea668-atmo-marquee{
  overflow:hidden;
  flex:1;
  min-width:0;
}
.ea668-atmo-marquee-track{
  display:inline-flex;
  align-items:center;
  gap:34px;
  white-space:nowrap;
  animation:ea668AtmoMarquee 38s linear infinite;
}
.ea668-atmo-marquee:hover .ea668-atmo-marquee-track{
  animation-play-state:paused;
}
.ea668-atmo-line{
  color:#e5e7eb;
  font-size:13px;
}
.ea668-atmo-line b{
  color:#93c5fd;
  margin-right:6px;
}
@keyframes ea668AtmoMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.ea668-atmo-float{
  position:fixed;
  right:20px;
  bottom:108px;
  width:292px;
  min-height:92px;
  border-radius:18px;
  background:rgba(15,23,42,.96);
  color:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.28);
  z-index:90;
  padding:16px 42px 16px 16px;
  box-sizing:border-box;
  transform:translateY(10px);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  border:1px solid rgba(255,255,255,.08);
}
.ea668-atmo-float.is-show{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}
.ea668-atmo-close{
  position:absolute;
  right:10px;
  top:8px;
  width:26px;
  height:26px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  font-size:18px;
  line-height:24px;
}
.ea668-atmo-close:hover{
  background:rgba(255,255,255,.22);
}
.ea668-atmo-float-tag{
  display:inline-flex;
  align-items:center;
  height:22px;
  padding:0 8px;
  border-radius:999px;
  background:#2563eb;
  color:#fff;
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}
.ea668-atmo-float-text{
  color:#e5e7eb;
  font-size:14px;
  line-height:1.65;
}
.ea668-atmo-type-agent .ea668-atmo-float-tag{background:#16a34a}
.ea668-atmo-type-consignment .ea668-atmo-float-tag{background:#d97706}
.ea668-atmo-type-product .ea668-atmo-float-tag{background:#2563eb}
.ea668-atmo-type-risk .ea668-atmo-float-tag{background:#dc2626}
@media(max-width:720px){
  .ea668-atmo-bar-inner{padding:0 12px;min-height:34px}
  .ea668-atmo-label{display:none}
  .ea668-atmo-line{font-size:12px}
  .ea668-atmo-float{
    right:12px;
    left:12px;
    bottom:92px;
    width:auto;
    min-height:82px;
  }
}
