
      .ad-container {
        background: linear-gradient(135deg, #1a2a6c, #2a3990, #4a6dcc);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .ad-wrapper {
        max-width: 1200px;
        margin: 0 auto;
      }

      .ad-slogan {
        font-size: 26px;
        margin: 10px 0;
        padding: 2px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
      }

      .ad-slogan:hover {
        transform: scale(1.02);
        background: rgba(255, 255, 255, 0.15);
      }

      .ad-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        line-height: 1.8;
        padding: 3px 0;
      }

      .ad-link {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
        font-weight: 700;
        position: relative;
        transition: all 0.3s;
      }

      .ad-link::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ffcc00;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s;
      }

      .ad-link:hover {
        color: #ffcc00;
      }

      .ad-link:hover::after {
        transform: scaleX(1);
      }

      .highlight {
        font-weight: 500;
      }

      .platform {
        font-size: 28px;
        color: #ffdd77;
        text-shadow: 0 0 10px rgba(255, 221, 119, 0.6);
      }

      .address {
        font-size: 1.6rem;
        background: rgba(255, 204, 0, 0.2);
        padding: 5px 10px;
        border-radius: 25px;
        color: #ffdd77;
        height: 45px;
        line-height: 34px;
      }

      .toolbox {
        font-size: 28px;
        color: #85e0ff;
        text-shadow: 0 0 10px rgba(133, 224, 255, 0.6);
      }

      .fun-text {
        color: #00ffb3;
        font-weight: 600;
        font-style: italic;
      }

      /* 动画 */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      @keyframes glow {
        0% {
          box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
        }
        50% {
          box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
        }
        100% {
          box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
        }
      }

      @keyframes swing {
        0%,
        100% {
          transform: rotate(0deg);
        }
        25% {
          transform: rotate(3deg);
        }
        75% {
          transform: rotate(-3deg);
        }
      }

      .pulse {
        animation: pulse 2s infinite;
      }

      .glow {
        animation: glow 2s infinite;
      }

      .swing {
        animation: swing 1.5s infinite;
        display: inline-block;
      }

      /* 自适应*/
      @media (max-width: 768px) {
        .ad-slogan {
          font-size: 1.6rem;
          padding: 15px;
        }

        .platform {
          font-size: 1.8rem;
        }

        .address {
          font-size: 1.4rem;
          padding: 3px 10px;
        }

        .toolbox {
          font-size: 1.7rem;
        }
      }

.hidden {
  display: none !important;  
}

.feedbackBox{
  position: absolute;
  right:23%;
  margin-top: 5px;
  background-color: #fff;
  z-index: 90;
  padding: 0 20px;
}
.feedback-label{
  font-size: 12px;
  color: #000;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  line-height: 18px;
  margin-right: 10px;
}
.feedback-label-text{
  font-size: 16px;
  margin-left: 2px;
  font-weight: 500;
}
.feedback-label-info{
  font-size: 12px;
  color: #797676;
}
.feedback-content{
  height:60px;
  width: 430px;
  border-radius: 5px !important;
 font-size: 12px;
 line-height: 1.4;
 padding-bottom: 15px;
}

.feedback-content::placeholder {
      font-size: 12px;
      color: #999;
      opacity: 1;
}
.feedback-content:focus {
  /* 获取焦点时的样式 */
  border-color: #fddb77;
  outline: none; 
  box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.3);
}
.char-count{
 position: absolute;
 right: 130px;
 top: 35px;
 color: #999;
 font-size: 12px;
  background-color: #fff;
  height:24px;
}
.submit-btnFeedback{
  margin-left: 20px !important;
  margin-top: 15px;
  width: 94px;
  height: 30px;
  line-height: 26px;
  border: 1px solid #409eff;
  border-radius: 3px !important;
  background-color: #409eff;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.feedback-form{
  display: flex;
  flex-direction: row;

}