<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* è¡¨çŽ°å±‚ */
:root {
  --marquee-duration: 68s;    /* åŠ¨ç”»æ—¶é•¿ */
  --link-hover: #fe5b82;      /* æ‚¬åœé¢œè‰² */
  --safe-margin: 10px;        /* å®‰å…¨è¾¹è· */
}
/* å¤–éƒ¨å®¹å™¨ï¼Œé™åˆ¶å­—å¹•çš„æ˜¾ç¤ºåŒºåŸŸ */
.marquee-container {
    max-width: 1340px;
    overflow: hidden;      /* éšè—è¶…å‡ºçš„æ–‡å­— */
    white-space: nowrap;   /* ç¦æ­¢æ¢è¡Œ */
    border-top: 2px solid #555; /* å¢žåŠ&nbsp;é¡¶éƒ¨è¾¹æ¡† */
    margin: 0 auto;
    padding: 5px 0;        /* ä¸Šä¸‹å†…è¾¹è· */
}

.marquee-container {
  position: relative;
  overflow: hidden;
  contain: content;  /* é™åˆ¶æ¸²æŸ“è¾¹ç•Œ */
  will-change: contents;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  transform: translate3d(0,0,0); /* GPUåŠ&nbsp;é€Ÿ */
  backface-visibility: hidden;
  color: #fff;
  /* å“åº”å¼åŠ¨ç”»æŽ§åˆ¶ */
  animation: scroll-left var(--marquee-duration) cubic-bezier(0.2,0.6,0.3,1) infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(calc(-100% - var(--safe-margin))); }
}

/* æ—&nbsp;éšœç¢æ”¯æŒ */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
    white-space: normal;
  }
}

/* äº¤äº’ä¼˜åŒ– */
.marquee:hover {
  animation-play-state: paused;
}

.marquee a {
  font: 700 14px/1.5 system-ui;
  color: #fff;
  padding: 8px 10px;
  transition: color 0.3s, transform 0.2s;
}

.marquee a:hover {
  color: var(--link-hover);
  transform: scale(1.05);
}

/* ç§»åŠ¨ç«¯é€‚é… */
@media (max-width: 768px) {
  .marquee {
    animation-duration: calc(var(--marquee-duration) * 1.5);
  }
}
.logo-img {
    width: 200px;
    height: 60px;
}
.mobile-nav {
    margin-top: 18px;
    width: 9rem;
}
.pc-nav {
    margin-top: 18px;
}
.items-nav {
    text-align: center;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
footer {
    margin: 20px 0 100px;
}
footer .business {
    color: #fff;
}
footer .copyright {
    color: #3b82f680;
    text-align: center;
    flex: 1;
}
@media(max-width:768px){
.vedio-title{margin-bottom: 30px;}
}



/*é¡¶éƒ¨å¹¿å‘Š*/
.topIframe {
    width: 100%;
    height: 1000px;
    border: none;
    overflow: hidden;
}
/*åº•æ¨ªå¹…*/
.dbannnrIframe {
    width: 100%;
    height: 550px;
    border: none;
    overflow: hidden;
}
.yxfIframe {
    width: 72px;
    height: 380px;
    border: none;
    overflow: hidden;
}
.dxfIframe {
    width: 1280px;     /* å¤§å±åŠ&nbsp;å®½ */
    height: 80px;
    border: none;
    overflow: hidden;
}
/*å³æ‚¬æµ®*/
#yxofal {
    position: fixed;
    bottom: 25%;
    z-index: 19999 !important;
    right: 2px;
}

/*åº•æ‚¬æµ®*/
#dxofal {
    position: fixed;
    bottom: 0;        /* è·ç¦»åº•éƒ¨é—´è· */
    left: 50%;           /* æ°´å¹³å±…ä¸­åŸºå‡† */
    transform: translateX(-50%);
    z-index: 19999 !important;
    width: 100%;
    height: 80px;
    max-width: 1280px;
}

@media (max-width: 768px) {
  .topIframe {
      height: 1000px;
  }
  .dbannnrIframe {
      height: 380px;
  }
  #dxofal {
      height: 60px;
  }
  .dxfIframe {
    width: 100vw;      /* ç§»åŠ¨ç«¯å®½åº¦é€‚é… */
    height: 60px;
  }
}</pre></body></html>