  #browser-modal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    color: #303233;
    position: fixed;
    z-index: 9999;
    display: none;
  }

  #browser-modal .browser-modal-cover {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #111;
    opacity: .9;
    z-index: -1;
  }

  #browser-modal .browser-content {
    width: 700px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    padding-top: 30px;
    background-color: #fff;
    border-radius: 5px;
  }

  #browser-modal .browser-content .browser-dpc-logo img {
    height: 62px;
    margin: 45px auto 30px;
  }

  #browser-modal .browser-content .browser-text-title {
    text-transform: uppercase;
    font-size: 24px;
  }

  #browser-modal .browser-content .browser-text-desc {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 14px;
  }

  #browser-modal .browser-content .browser-list {
    width: 600px;
    margin: 40px auto;
    height: 130px;
  }

  #browser-modal .browser-content .browser-item {
    float: left;
    width: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  #browser-modal .browser-content .browser-item .iconfont {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 30px;
  }

  #browser-modal .browser-content .browser-item a {
    color: #921041;
    cursor: pointer;
    display: block;
  }

  #browser-modal .browser-content .browser-item a img {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    width: 100px;
    height: 100px;
  }

  #browser-modal .browser-content .browser-item a h4 {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
  }

  .fixedok .banner {
    opacity: 0;
  }

  #browser-modal .browser-content .browser-item .iconchrome {
    background: url(/system/_owners/qfnuxq70/_webprj/images/bro.png) no-repeat 0 0;
  }

  #browser-modal .browser-content .browser-item .iconfirefox {
    background: url(/system/_owners/qfnuxq70/_webprj/images/bro.png) no-repeat 0 -100px;
  }

  #browser-modal .browser-content .browser-item .iconopera {
    background: url(/system/_owners/qfnuxq70/_webprj/images/bro.png) no-repeat 0 -200px;
  }

  #browser-modal .browser-content .browser-item .iconEdge {
    background: url(/system/_owners/qfnuxq70/_webprj/images/bro.png) no-repeat 0 -300px;
  }

  /**倒计时**/
.banner_p {
    position: relative;
}
  .container {
    width: 100%;
    height: 100%;

    flex-direction: column;
    align-items: center;
    justify-content: center;
   position: absolute;
    left: 50px;
    top: 50%;
  }

  .countdown-section {
    position: absolute;

    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .target-date {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .countdown-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .countdown-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .countdown-number {
    font-size: 64px;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: heartbeat 2s ease-in-out infinite;
  }

  .countdown-unit {
    font-size: 30px;
    color: white;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  /* 心脏跳动动画 */
  @keyframes heartbeat {
    0% {
      transform: scale(1);
    }

    14% {
      transform: scale(1.1);
    }

    28% {
      transform: scale(1);
    }

    42% {
      transform: scale(1.1);
    }

    70% {
      transform: scale(1);
    }

    100% {
      transform: scale(1);
    }
  }

  /* 响应式设计 */
  @media (max-width: 900px) {
.container{
left:3%;
}
.countdown-title {
    font-size: 20px;
}
    .target-date {
      font-size: 24px;
    }

    .countdown-circle {
      width: 120px;
      height: 120px;
    }

    .countdown-number {
      font-size: 48px;
    }

    .countdown-unit {
      font-size: 18px;
    }
.target-date {
    margin-bottom: 15px;

}
  }

  @media (max-width: 480px) {
    .target-date {
      font-size: 20px;
    margin-bottom: 15px;
    }

    .countdown-circle {
      width: 100px;
      height: 100px;
    }

    .countdown-number {
      font-size: 36px;
    }

    .countdown-unit {
      font-size: 16px;
    }
  }