﻿@charset "utf-8";
/* CSS Document */
*{ margin: 0; padding: 0; word-break: break-all; word-wrap: break-word;}

.lun {
  display: inline-block;
  font-size: 13pt;
  font-weight: bold;
  color: white;
  background: linear-gradient(270deg, #ff00cc, #3333ff, #00ffff, #ffcc00, #ff00cc);
  background-size: 1000% 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.6), 0 0 25px rgba(0, 255, 255, 0.4);
  animation: moveBg 25s ease infinite;
}

@keyframes moveBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

 .lingqu {
    display: inline-block;
    font-size: 13pt;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(270deg, #ff0000, #ffffff, #00d2ff, #8c00ff);
    background-size: 800% 800%;
    border-radius: 10px 10px;
    box-shadow: 0 0 0 rgba(255, 0, 87, 0.7), 0 0 20px rgba(255, 187, 0, 0.5);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s ease;
    transform: skew(-10deg);
    animation: gradientMove 4s ease infinite;
    position: relative;
    overflow: hidden;
    margin-bottom: -5px;
}
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .lingqu:hover {
    transform: scale(1.1) skew(-10deg);
    box-shadow:
      0 0 15px rgba(255, 0, 87, 0.9),
      0 0 30px rgba(255, 187, 0, 0.7),
      0 0 40px rgba(140, 0, 255, 0.8);
    background-position: 100% 50%;
    text-shadow: 0 0 5px #fff;
  }
  .lingqu:active {
    transform: scale(0.95) skew(-10deg);
    box-shadow: 0 0 8px rgba(255, 0, 87, 0.7);
  }


 .banner-mid {
    display: inline-block;
    font-size: 13pt;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #ff0000, #00ffd2);
    border-radius: 15px;
    box-shadow: 0 0 12px rgba(255, 105, 135, 0.5), 0 4px 20px rgba(0, 0, 0, 0.2);
}


@keyframes glowLoop {
  0% {
    box-shadow: 0 0 8px rgba(255, 105, 135, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
  }
  100% {
    box-shadow: 0 0 16px rgba(255, 105, 135, 0.6), 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
}