.fhx-box,
.fhx-box * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fhx-panel {
  width: 100%;
  max-width:800px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  word-break: break-all;
  overflow-wrap: break-word;
  font-family: "微软雅黑", Arial, sans-serif;
  border: 3px solid #d60000;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #7a0000 0%, #e60012 42%, #ff3b2f 55%, #7a0000 100%);
  box-shadow:
    0 6px 16px rgba(120, 0, 0, .32),
    inset 0 0 0 2px rgba(255, 215, 80, .72);
  margin: 0;
}

.fhx-panel td {
  text-align: center;
  padding: 8px 4px;
}

.fhx-title {
  position: relative;
  height: 42px;
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, .26), transparent 44%),
    linear-gradient(90deg, #8b0000 0%, #ff2a2a 36%, #ffcc33 50%, #ff2a2a 64%, #8b0000 100%);
  border-bottom: 2px solid #ffd86a;
}

.fhx-title::before,
.fhx-title::after {
  content: "◇";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff176;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(255, 255, 255, .9);
}

.fhx-title::before {
  left: 10px;
}

.fhx-title::after {
  right: 10px;
}

.fhx-title-text {
  margin: 0;
  font-size: 16pt;
  font-weight: 800;
  color: #fffbe0;
  letter-spacing: .5px;
  text-shadow:
    1px 1px 0 #650000,
    0 0 9px rgba(255, 244, 130, .9);
}

.fhx-body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, .95), rgba(255, 244, 215, .96) 45%, rgba(255, 226, 164, .96));
  border-left: 1px solid #ffd86a;
  border-right: 1px solid #ffd86a;
}

.fhx-card {
  display: inline-block;
  width: 96%;
  max-width: 640px;
  padding: 8px 4px 9px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 248, 225, .96));
  border: 1px solid rgba(214, 0, 0, .36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 3px 8px rgba(160, 0, 0, .13);
}

.fhx-line {
  font-size: 16pt;
  font-weight: 800;
  line-height: 1.72;
  color: #4a2100;
}

.fhx-name {
  color: #004cff;
  padding: 0 4px;
  text-shadow: 0 1px 0 #ffffff;
}

.fhx-icon {
  max-width: 100%;
  vertical-align: middle;
  margin: 0 3px;
  border: 0;
}

.fhx-label {
  display: inline-block;
  min-width: 88px;
  padding: 2px 10px;
  margin: 2px 4px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #ff3a2f 0%, #d60000 48%, #9e0000 100%);
  border: 1px solid #ffd36a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 2px 5px rgba(150, 0, 0, .25);
}

.fhx-num {
  display: inline-block;
  padding: 2px 12px;
  margin: 2px 4px;
  font-size: 18pt;
  color: #ff0000;
  background: linear-gradient(180deg, #fffdf1, #fff2b6);
  border: 2px solid #ffcc33;
  border-radius: 9px;
  box-shadow:
    inset 0 0 7px rgba(255, 210, 0, .46),
    0 2px 6px rgba(115, 0, 0, .12);
}

.fhx-num a {
  color: #ff0000;
  text-decoration: none;
}

.fhx-hit {
  background: #ffff00;
  padding: 0 2px;
}

.fhx-cta {
  position: relative;
  overflow: hidden;
  padding: 10px 6px 12px !important;
  background: #210031;
  border-top: 2px solid #ffe36a;
  border-bottom: 2px solid #ffe36a;
}

.fhx-cta::before {
  content: "";
  position: absolute;
  inset: -130%;
  background:
    conic-gradient(from 0deg,
      #ff004c,
      #ffb300,
      #fff600,
      #00e5ff,
      #7c4dff,
      #ff00e6,
      #ff004c);
  animation: fhx-spin 6s linear infinite;
  opacity: .92;
}

.fhx-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .82), transparent 8%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, .65), transparent 9%),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, .55), transparent 10%),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .42));
  pointer-events: none;
}

.fhx-cta-inner {
  position: relative;
  z-index: 1;
  width: 96%;
  max-width: 640px;
  margin: 0 auto;
  padding: 9px 8px 10px;
  border-radius: 18px;
  background: rgba(30, 0, 45, .64);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .34),
    0 0 12px rgba(255, 255, 255, .54),
    0 0 22px rgba(255, 0, 214, .45);
}

.fhx-title-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 10px;
  justify-content: center;
  margin: 0 0 8px;
}

.fhx-cta-title {
  width: calc(33.333% - 6px);
  margin: 0;
  padding: 9px 4px;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  font-size: 13pt;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(90deg, rgba(255, 0, 76, .92), rgba(255, 179, 0, .92), rgba(0, 229, 255, .92), rgba(255, 0, 230, .92));
  border: 1px solid rgba(255, 255, 255, .86);
  text-shadow:
    0 1px 1px rgba(0, 0, 0, .58),
    0 0 6px rgba(255, 255, 255, .62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .44),
    0 4px 10px rgba(0, 0, 0, .36),
    0 0 11px rgba(255, 255, 255, .52);
  white-space: nowrap;
}

.fhx-btn-wrap {
  display: flex;
  gap: 8px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.fhx-btn {
  width: calc(33.333% - 6px);
  position: relative;
  display: inline-block;
  min-width: 0;
  padding: 9px 4px;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 13pt;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .86);
  text-shadow:
    0 1px 1px rgba(0, 0, 0, .58),
    0 0 6px rgba(255, 255, 255, .62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .44),
    0 4px 10px rgba(0, 0, 0, .36),
    0 0 11px rgba(255, 255, 255, .52);
  animation: fhx-pulse 1.8s ease-in-out infinite;
}

.fhx-btn::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 36%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
  transform: rotate(25deg);
  animation: fhx-shine 2.35s ease-in-out infinite;
}

.fhx-btn span {
  position: relative;
  z-index: 1;
}

.fhx-btn-1 {
  background: linear-gradient(135deg, #ff1744 0%, #ff8a00 48%, #ffe600 100%);
}

.fhx-btn-2 {
  background: linear-gradient(135deg, #00c853 0%, #00e5ff 48%, #2962ff 100%);
  animation-delay: .15s;
}

.fhx-btn-3 {
  background: linear-gradient(135deg, #7c4dff 0%, #ff00d4 48%, #ff1744 100%);
  animation-delay: .3s;
}

.fhx-btn-icon {
  display: inline-block;
  font-style: normal;
  margin-right: 2px;
  color: #fff9c4;
  text-shadow: 0 0 7px rgba(255, 255, 255, .95);
}

.fhx-footer {
  background: linear-gradient(90deg, #6f0000 0%, #d60000 48%, #ff2a2a 52%, #6f0000 100%);
  border-top: 2px solid #ffd86a;
  font-weight: 800;
  color: #fff;
}

.fhx-footer-text {
  font-size: 10pt;
  color: #fff3b0;
}

.fhx-footer-site {
  color: #ffffff;
  text-shadow: 1px 1px 0 #5b0000;
}

.fhx-footer-dot {
  color: #66e6ff;
}

@keyframes fhx-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fhx-shine {
  0% {
    left: -48%;
    opacity: 0;
  }
  22% {
    opacity: .95;
  }
  54% {
    left: 118%;
    opacity: 0;
  }
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes fhx-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-1px) scale(1.025);
    filter: brightness(1.12);
  }
}

@media (max-width: 480px) {
  .fhx-panel {
    border-radius: 12px;
    border-width: 2px;
  }

  .fhx-title-text {
    font-size: 14pt;
  }

  .fhx-line {
    font-size: 14pt;
    line-height: 1.65;
  }

  .fhx-label {
    min-width: 78px;
    padding: 2px 8px;
    margin: 2px;
  }

  .fhx-num {
    font-size: 15pt;
    padding: 2px 8px;
    margin: 2px;
  }

  .fhx-cta-inner {
    width: 98%;
    padding: 8px 5px 9px;
  }

  .fhx-title-wrap {
    gap: 5px;
    row-gap: 8px;
  }
  .fhx-cta-title {
    width: calc(33.333% - 4px);
    font-size: 11pt;
    padding: 8px 2px;
  }

  .fhx-btn-wrap {
    gap: 5px;
    row-gap: 8px;
  }

  .fhx-btn {
    width: calc(33.333% - 4px);
    font-size: 11pt;
    padding: 8px 2px;
  }
}



/*进入直播间*/

.btn-lingqunmex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 800px;
    max-width: 100%;
    height: 50px;
    margin: 4px auto 0;

    background: #f00;
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
}

.btn-textnmex {
    color: #ffff00;
    font-size: 46px;
    font-weight: 900;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1;

    text-shadow:
        0 3px 0 #b30000,
        0 5px 0 #990000,
        2px 2px 0 #cc0000;

    animation: textFlashnmex .4s infinite;
}

@keyframes textFlashnmex {
    0%, 100% {
        color: #ffff00;
    }

    50% {
        color: #ffffff;
    }
}
.hankdnmex {
    font-size: 48px;
    line-height: 1;
    transform: rotate(-20deg);
    animation: handShakenmex .4s infinite;
}

@keyframes textFlashnmex {
    0%, 100% {
        color: #ffff00;
        transform: scale(1);
        opacity: 1;
    }

    50% {
        color: #ffffff;
        transform: scale(1.04);
        opacity: .85;
    }
}

@keyframes handShakenmex {
    0%, 100% {
        transform: rotate(-20deg) translate(0, 0);
    }

    50% {
        transform: rotate(-10deg) translate(4px, 2px);
    }
}

@media screen and (max-width: 509px) {
    .btn-lingqunmex {
        width: 100%;
        height: 55px;
        border-radius: 12px 12px 12px 12px;
    }

    .btn-textnmex {
        font-size: 28px;
    }

    .handnmex {
        font-size: 32px;
    }
}