/* ==========================================================================
 * /message — 反馈与支持
 * ========================================================================== */

.msg-page {
  --msg-accent: #ff5745;
  --msg-accent-2: #0f766e;
  --msg-ink: #15202b;
  --msg-muted: #667085;
  --msg-line: rgba(21, 32, 43, 0.08);
  --msg-surface: #ffffff;
  --msg-surface-2: #f3f6f8;
  --msg-canvas: #eef3f6;
  --msg-radius: 18px;
  --msg-ease: cubic-bezier(0.22, 0.8, 0.28, 1);
  --msg-header-offset: 56px;
  color: var(--msg-ink);
  background:
    radial-gradient(1200px 480px at 12% -10%, rgba(15, 118, 110, 0.12), transparent 55%),
    radial-gradient(900px 420px at 92% 8%, rgba(255, 87, 69, 0.1), transparent 50%),
    linear-gradient(180deg, #f7fafb 0%, var(--msg-canvas) 42%, #f4f7f9 100%);
  min-height: 70vh;
  padding-bottom: 3.5rem;
}

.nice-dark-mode .msg-page {
  --msg-ink: #f2f4f7;
  --msg-muted: #a8b0bd;
  --msg-line: rgba(255, 255, 255, 0.1);
  --msg-surface: #23272e;
  --msg-surface-2: #2c313a;
  --msg-canvas: #171a1f;
  background:
    radial-gradient(1000px 420px at 10% -8%, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(800px 380px at 90% 0%, rgba(255, 87, 69, 0.14), transparent 52%),
    linear-gradient(180deg, #14171c 0%, #171a1f 100%);
}

/* 与本页 header 共用 Bootstrap .container 宽度，勿再压成 1280 */
.msg-page > .container,
.msg-page .msg-shell {
  width: 100%;
}

/* —— Hero —— */
.msg-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(125deg, #0b2a30 0%, #164852 42%, #2a1c1a 100%);
}

.msg-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 87, 69, 0.34), transparent 36%),
    radial-gradient(circle at 18% 78%, rgba(45, 212, 191, 0.28), transparent 40%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22) 100%),
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 14px
    );
  transform: scale(1.04);
  animation: msgHeroDrift 18s var(--msg-ease) infinite alternate;
}

.msg-hero-inner {
  position: relative;
  z-index: 1;
  /* 只调上下；左右显式保留 container gutter，避免被其它规则清零 */
  padding-top: calc(var(--msg-header-offset) + 1.25rem);
  padding-bottom: 1.75rem;
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

@media (min-width: 768px) {
  .msg-hero-inner {
    padding-top: calc(var(--msg-header-offset) + 2.5rem);
    padding-bottom: 3.25rem;
  }
}

@keyframes msgHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, 1%, 0); }
}

.msg-hero h1 {
  margin: 0;
  font-family: "OPPOSans", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  animation: msgRise 0.7s var(--msg-ease) both;
}

.msg-hero p {
  margin: 0.65rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
  animation: msgRise 0.7s 0.08s var(--msg-ease) both;
}

.msg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
  animation: msgRise 0.7s 0.16s var(--msg-ease) both;
}

@media (max-width: 575.98px) {
  .msg-page {
    --msg-header-offset: 48px;
  }

  .msg-hero {
    margin-bottom: 1rem;
  }

  .msg-hero-inner {
    padding-top: calc(var(--msg-header-offset) + 1rem);
    padding-bottom: 1.35rem;
  }

  .msg-hero h1 {
    font-size: 1.4rem;
  }

  .msg-hero p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .msg-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .msg-hero-actions .msg-btn {
    width: 100%;
  }
}

@keyframes msgRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.55rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s var(--msg-ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.msg-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.msg-btn-primary {
  color: #fff;
  background: var(--msg-accent);
  box-shadow: 0 10px 24px rgba(255, 87, 69, 0.28);
}

.msg-btn-primary:hover {
  color: #fff;
  background: #ff6a5a;
}

.msg-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.msg-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.msg-btn-soft {
  color: var(--msg-ink);
  border-color: var(--msg-line);
  background: var(--msg-surface-2);
}

.msg-btn-soft:hover {
  color: var(--msg-ink);
  border-color: rgba(15, 118, 110, 0.28);
  background: var(--msg-surface);
}

.msg-btn-solid {
  color: #fff;
  background: var(--msg-ink);
}

.nice-dark-mode .msg-btn-solid {
  background: #f3f4f6;
  color: #171a1f;
}

.msg-btn-solid:hover {
  color: #fff;
  filter: brightness(1.08);
}

.nice-dark-mode .msg-btn-solid:hover {
  color: #171a1f;
}

.msg-btn[disabled],
.msg-btn.is-loading {
  pointer-events: none;
  opacity: 0.72;
}

/* —— Layout —— */
.msg-shell {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .msg-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.15rem;
    align-items: start;
  }

  .msg-main-col {
    grid-column: 1;
    display: grid;
    gap: 1rem;
  }

  .msg-side-col {
    grid-column: 2;
    display: grid;
    gap: 1rem;
    position: sticky;
    top: calc(var(--msg-header-offset) + 0.75rem);
  }
}

.msg-section {
  background: var(--msg-surface);
  border: 1px solid var(--msg-line);
  border-radius: var(--msg-radius);
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(21, 32, 43, 0.04);
  animation: msgRise 0.65s var(--msg-ease) both;
}

.msg-section:nth-child(2) { animation-delay: 0.05s; }
.msg-section:nth-child(3) { animation-delay: 0.1s; }
.msg-section:nth-child(4) { animation-delay: 0.15s; }

.msg-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.msg-section-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.msg-count-badge {
  font-weight: 500;
  color: var(--msg-muted);
  font-size: 0.9em;
}

.msg-section-head p,
.msg-muted {
  margin: 0;
  color: var(--msg-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* —— Quick links —— */
.msg-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 576px) {
  .msg-quick {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.msg-quick a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 4.4rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--msg-line);
  background: var(--msg-surface-2);
  color: var(--msg-ink);
  text-decoration: none;
  transition: transform 0.2s var(--msg-ease), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.msg-quick a:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.28);
  background: var(--msg-surface);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.08);
  color: var(--msg-ink);
  text-decoration: none;
}

.msg-quick i {
  font-size: 1.15rem;
  color: var(--msg-accent-2);
  line-height: 1;
}

.nice-dark-mode .msg-quick i {
  color: #5eead4;
}

.msg-quick span {
  font-size: 0.88rem;
  font-weight: 600;
}

/* —— FAQ accordion —— */
.msg-faq-list {
  display: grid;
  gap: 0.55rem;
}

.msg-faq-item {
  border: 1px solid var(--msg-line);
  border-radius: 14px;
  background: var(--msg-surface-2);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.msg-faq-item.is-open {
  border-color: rgba(15, 118, 110, 0.28);
  background: var(--msg-surface);
}

.msg-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: var(--msg-ink);
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.msg-faq-trigger:focus-visible {
  outline: 2px solid rgba(255, 87, 69, 0.45);
  outline-offset: -2px;
}

.msg-faq-icon {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 118, 110, 0.12);
  color: var(--msg-accent-2);
  transition: transform 0.25s var(--msg-ease), background 0.2s ease;
}

.msg-faq-item.is-open .msg-faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 87, 69, 0.14);
  color: var(--msg-accent);
}

.msg-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--msg-ease);
}

.msg-faq-item.is-open .msg-faq-panel {
  grid-template-rows: 1fr;
}

.msg-faq-panel-inner {
  overflow: hidden;
}

.msg-faq-panel-inner > div {
  padding: 0 1rem 0.95rem;
  color: var(--msg-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.msg-faq-panel-inner a {
  color: var(--msg-accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nice-dark-mode .msg-faq-panel-inner a {
  color: #5eead4;
}

/* —— Contact —— */
.msg-contact-grid {
  display: grid;
  gap: 0.85rem;
}

.msg-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.msg-contact-row i {
  margin-top: 0.15rem;
  color: var(--msg-accent-2);
  font-size: 1.05rem;
}

.msg-contact-row strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.msg-contact-row span,
.msg-contact-row a {
  color: var(--msg-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  word-break: break-all;
}

.msg-contact-row a:hover {
  color: var(--msg-accent);
}

.msg-qr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.msg-qr figure {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.msg-qr img {
  display: block;
  width: 100%;
  max-width: 148px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--msg-line);
  background: #fff;
  padding: 0.35rem;
  box-sizing: border-box;
  transition: transform 0.25s var(--msg-ease), box-shadow 0.25s ease;
}

.msg-qr img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(21, 32, 43, 0.12);
}

.msg-qr figcaption {
  margin: 0;
  font-size: 0.78rem;
  color: var(--msg-muted);
}

@media (max-width: 575.98px) {
  .msg-qr {
    gap: 0.65rem;
  }

  .msg-qr img {
    max-width: 100%;
    width: min(100%, 156px);
    padding: 0.45rem;
  }

  .msg-section {
    padding: 1rem 0.95rem 1.05rem;
  }

  .msg-quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msg-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msg-contact-row a {
    word-break: break-all;
  }
}

/* —— Feedback form extras —— */
.msg-field {
  display: grid;
  gap: 0.45rem;
}

.msg-field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--msg-muted);
}

.msg-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

@media (min-width: 576px) {
  .msg-type-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.msg-type-chip {
  position: relative;
  cursor: pointer;
}

.msg-type-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.msg-type-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--msg-line);
  background: var(--msg-surface-2);
  font-size: 0.84rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s var(--msg-ease);
}

.msg-type-chip input:checked + span {
  border-color: rgba(15, 118, 110, 0.45);
  background: rgba(15, 118, 110, 0.12);
  color: var(--msg-accent-2);
  transform: translateY(-1px);
}

.nice-dark-mode .msg-type-chip input:checked + span {
  color: #5eead4;
}

.msg-rating {
  display: inline-flex;
  gap: 0.2rem;
  min-height: 2rem;
  align-items: center;
}

.msg-star {
  position: relative;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem;
}

.msg-star input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.msg-star span {
  display: block;
  font-size: 1.45rem;
  color: #d0d5dd;
  transition: color 0.15s ease, transform 0.15s var(--msg-ease);
}

.msg-star.is-on span,
.msg-star:hover span {
  color: #f5a524;
  transform: scale(1.08);
}

.msg-empty p {
  margin: 0;
  max-width: 18rem;
}

.msg-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--msg-muted);
  cursor: pointer;
  user-select: none;
}

.msg-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--msg-accent-2);
}

.msg-feedback-list {
  display: grid;
  gap: 0.7rem;
}

.msg-fb-item {
  border: 1px solid var(--msg-line);
  border-radius: 14px;
  background: var(--msg-surface-2);
  padding: 0.95rem 1rem;
  transition: transform 0.2s var(--msg-ease), border-color 0.2s ease, background 0.2s ease;
}

.msg-fb-item:hover,
.msg-fb-item.is-new {
  background: var(--msg-surface);
  border-color: rgba(15, 118, 110, 0.22);
}

.msg-fb-item.is-new {
  animation: msgRise 0.45s var(--msg-ease) both;
}

.msg-fb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}

.msg-fb-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--msg-accent-2);
}

.nice-dark-mode .msg-fb-type {
  color: #5eead4;
}

.msg-fb-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.12);
  color: var(--msg-muted);
}

.msg-fb-status.is-pending {
  background: rgba(245, 165, 36, 0.14);
  color: #b7791f;
}

.msg-fb-status.is-processing {
  background: rgba(15, 118, 110, 0.14);
  color: var(--msg-accent-2);
}

.msg-fb-status.is-resolved {
  background: rgba(52, 150, 142, 0.16);
  color: #2f855a;
}

.msg-fb-message {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.msg-fb-time {
  display: block;
  margin-top: 0.45rem;
  color: var(--msg-muted);
  font-size: 0.75rem;
}

.msg-fb-reply {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.msg-fb-reply strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--msg-accent-2);
}

.msg-fb-reply p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--msg-ink);
}

.msg-fb-reply time {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  color: var(--msg-muted);
}

.msg-fb-wait {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #b7791f;
}

button.msg-btn {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.msg-composer {
  display: grid;
  gap: 0.7rem;
}

.msg-composer textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid var(--msg-line);
  border-radius: 14px;
  background: var(--msg-surface-2);
  color: var(--msg-ink);
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.msg-composer textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.45);
  background: var(--msg-surface);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.msg-composer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.msg-char {
  font-size: 0.78rem;
  color: var(--msg-muted);
}

.msg-char.is-warn {
  color: var(--msg-accent);
}

.msg-login-gate {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.6rem 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(15, 118, 110, 0.28);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.06), transparent 70%),
    var(--msg-surface-2);
}

.msg-login-gate p {
  margin: 0;
  color: var(--msg-muted);
  font-size: 0.9rem;
}

/* —— Feedback list —— */
.msg-list-wrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--msg-line);
}

.msg-list-wrap .comment-list,
.msg-list-wrap ul.comment-area {
  list-style: none;
  margin: 0;
  padding: 0;
}

.msg-list-wrap .comment-list > li,
.msg-list-wrap .comment-item {
  border: 1px solid var(--msg-line);
  border-radius: 14px;
  background: var(--msg-surface-2);
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  transition: transform 0.2s var(--msg-ease), border-color 0.2s ease, background 0.2s ease;
}

.msg-list-wrap .comment-list > li:hover,
.msg-list-wrap .comment-item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.22);
  background: var(--msg-surface);
}

.msg-empty {
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: 2rem 1rem;
  color: var(--msg-muted);
  text-align: center;
}

.msg-empty i {
  font-size: 2rem;
  opacity: 0.55;
}

.msg-pagination {
  margin-top: 0.85rem;
}

.msg-pagination .nav-links,
.msg-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  align-items: center;
}

.msg-pagination .page-numbers,
.msg-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--msg-line);
  background: var(--msg-surface);
  color: var(--msg-ink);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.msg-pagination .page-numbers:hover,
.msg-pagination .page-link:hover {
  border-color: rgba(15, 118, 110, 0.35);
  color: var(--msg-accent-2);
}

.msg-pagination .page-numbers.current,
.msg-pagination .page-item.active .page-link {
  background: var(--msg-ink);
  border-color: var(--msg-ink);
  color: #fff;
}

.nice-dark-mode .msg-pagination .page-numbers.current,
.nice-dark-mode .msg-pagination .page-item.active .page-link {
  background: #f3f4f6;
  border-color: #f3f4f6;
  color: #171a1f;
}

/* —— Toast —— */
.msg-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1080;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(21, 32, 43, 0.92);
  color: #fff;
  font-size: 0.86rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s var(--msg-ease), opacity 0.28s ease;
}

.msg-toast.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 991.98px) {
  .msg-side-col {
    display: grid;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msg-hero-bg,
  .msg-hero h1,
  .msg-hero p,
  .msg-hero-actions,
  .msg-section,
  .msg-faq-panel,
  .msg-faq-icon,
  .msg-btn,
  .msg-quick a {
    animation: none !important;
    transition: none !important;
  }
}
