<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.troggle-btn-area{
    display: flex;
    box-sizing: border-box;
    padding-left: 10px;
    margin: 10px 0;
}

.troggle-btn-area .troggle-btn{
    width: 110px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    filter: grayscale(100%);
    transition: .3s;
    margin: 10px 5px;
    color: #6b6464;
    border: 1px solid #cec6c6;
    font-size: 16px;
}

.troggle-btn-area .active{
    background-color: var(--match-header-active);
    filter: initial;
    color: #fff;
    font-weight: bold;
}

.stream-game-item{
    display: flex;
    justify-content: space-around;
    width: 95%;
    height: 70px;
    margin: 0 auto;
    border-top: 1px dashed #c6c6c6;
    border-bottom: 1px dashed #c6c6c6;
}

.stream-game-item .time{
    display: flex;
    align-items: center;
    width: 30%;
}

.stream-game-item .league{
    display: flex;
    align-items: center;
    width: 40%;
}

.behind-part{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.team-info-content{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
}

.team-info-content .team {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.team-info-content .team .home{
    display: inline-block;
    width: 100px;
    text-align: right;
    margin: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-info-content .team .away{
    display: inline-block;
    width: 100px;
    text-align: left;
    margin: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-info-content .team img{
    width: 30px;
    height: 30px;
}

.stream-play{
    flex:1;
    display: flex;
}

.stream-play-link{
    display: inline-block;
    color: var(--match-signal-end-color);
    background-color: var(--match-signal-end-bg-color);
    border: var(--match-signal-end-bg-border);
    box-sizing: border-box;
    padding: 12px;
    width: 96%;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

.friendly-area{
    width: 100%;
    background-color: var(--friendly-bg-color);
    color:#fff;
}

.friendly-area .friendly-area-content{
    padding: 20px;
}

.friendly-area .friendly-area-content a{
    margin:0 5px 0 5px;
    text-decoration: none;
    line-height: 1.8em;
}

#main{
    background-color: #fff;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
}

/* ä¸»æ&nbsp;‡é¢˜æ&nbsp;·å¼ */
.section-title {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto 5px auto;
    box-sizing: border-box;
    padding: 10px 0 0 0;
}

.section-title h2 {
    font-size: 1rem; /* å¤§å­—ä½“ */
    color: var(--news-text-color); /* ä½¿ç”¨é²œè‰³çš„é¢œè‰²å¸å¼•æ³¨æ„ï¼Œä¾‹å¦‚ç•ªèŒ„çº¢ */
    display: inline-block;
    padding: 0px 15px;
    text-transform: uppercase; /* å¤§å†™å­—æ¯ */
    letter-spacing: 2px; /* å¢žåŠ&nbsp;å­—æ¯é—´è· */
    position: relative; 
    margin-left: 20px;
}

/* æ&nbsp;‡é¢˜ä¸‹é¢çš„å°è£…é¥°æ¡ */
.section-title h2:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--news-text-before-bg-color); /* ä¸Žæ&nbsp;‡é¢˜æ–‡å­—ç›¸åŒçš„é¢œè‰² */
    bottom: 0; /* æ”¾ç½®åœ¨æ&nbsp;‡é¢˜çš„åº•éƒ¨ */
    left: 0;
    transform: translateX(-50%); /* ä½¿ä¸‹åˆ’çº¿å±…ä¸­ */
    border-radius: 2px;
}

.news-area{
    background-color: #e8e7e7;
    width: 100%;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    width: 92%; /* é»˜è®¤æœ€å¤§å®½åº¦ */
    padding: 10px 0 30px 0;
  }

  .news-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .news-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
  }

  .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .news-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2; /* é™åˆ¶æœ€å¤šæ˜¾ç¤º 2 è¡Œ */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-summary {
    font-size: 12px;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* é™åˆ¶æœ€å¤šæ˜¾ç¤º 2 è¡Œ */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-tag {
    display: inline-block;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 4px;
    margin-right: 6px;
  }

  /* --- å“åº”å¼è®¾è®¡ --- */
  @media (min-width: 768px) {
    .news-list {
      max-width: 300px; /* ä¸­å±å¹•å¢žå¤§åˆ—è¡¨å®½åº¦ */
      width: 84%; 
    }

    .news-image {
      height: 120px; /* å›¾ç‰‡é«˜åº¦å¢žåŠ&nbsp; */
    }

    .news-summary {
      font-size: 14px; /* å†…å®¹å­—ä½“å¢žå¤§ */
    }
  }

  @media (min-width: 1024px) {
    .news-list {
      max-width: 600px; /* å¤§å±å¹•æ”¹ä¸ºåŒåˆ—å¸ƒå±€ */
      display: grid;
      gap: 10px;
    }

    .news-item {
      align-items: center;
    }

    .news-image {
      height: 100px;
    }

    .news-content {
      flex: 1;
    }

    .news-summary {
      font-size: 16px; /* å†…å®¹å­—ä½“æ›´å¤§ */
    }
  }


/* å“åº”å¼è°ƒæ•´ */
@media (max-width: 1024px) {
    .streamer-container {
        grid-template-columns: repeat(3, 1fr); /* è°ƒæ•´ä¸º3åˆ— */
    }
}

@media (max-width: 768px) {
    .streamer-container {
        grid-template-columns: repeat(2, 1fr); /* è°ƒæ•´ä¸º2åˆ— */
    }
    #main{
        display: block;
    }
}

@media (max-width: 480px) {
    .streamer-container {
        grid-template-columns: 1fr; /* å•åˆ—å¸ƒå±€ */
    }
}

@media screen and (max-width:768px) {
    .team-info-content{
        display: block;
    }

    .stream-game-item .time{
       text-align: center;
       margin-right: 10px;
    }

    .team-info-content .team {
        margin: 10px 10px;
    }

    .team-info-content .team img{
        width: 25px;
        height: 25px;
    }

    .team-info-content .team:nth-child(n+2){
        flex-direction: row-reverse;
    }

    .team-info-content .team .away{
        text-align: right;
    }

    .stream-game-item .league{
        width: 50px;
    }

    .stream-game-item .league a,.stream-game-item .league span{
        width: 50px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vs{
        display: none;
    }

    .stream-play{
        display: flex;
        justify-content: center;
        max-width: 64px;
    }

    .stream-play-link{
        padding: 12px;
        width: 100%;
        max-width: 64px;
    }

    .section-title {
      padding: 15px 0 0 0;
    }

    .section-title h2{
        margin-left: 20px;
    }

    .marquee-container{
      transform: translateY(5px);
    }
}

@media screen and (max-width:400px) {
    .team-info-content .team .home{
        width: 110px;
    }
    
    .team-info-content .team .away{
        display: inline-block;
        width: 110px;
    }
}

.marquee-container {
    background-color: #fff;
    position: relative;
    width: 88%; /* ä½&nbsp;æƒ³è¦çš„å¯¬åº¦ */
    height: 24px; /* å®¹å™¨é«˜åº¦ï¼šåªé¡¯ç¤ºä¸€è¡Œ */
    overflow: hidden;
    margin: 10px auto 0 auto;
    border-radius: 8px;
  }
  
  /* å…±åŒæ¨£å¼ */
  .line {
    position: absolute;
    width: 100%;
    height: 24px;
    line-height: 24px;
    color: red;
    font-weight: bold;
    text-align: center;
    display: block;
    font-size:12px;
  }
  
  /* ä¸‰è¡Œåˆå§‹ä½ç½® (top)ï¼Œä¸€è¡ŒæŽ¥è‘—ä¸€è¡Œ */
  #line0 {
    top: 0; /* ç¬¬ä¸€è¡Œé¡¯ç¤º */
  }
  #line1 {
    top: 24px; /* ç¬¬äºŒè¡Œåœ¨å®¹å™¨ä¸‹æ–¹ */
  }
  #line2 {
    top: 48px; /* ç¬¬ä¸‰è¡Œæ›´ä¸‹æ–¹ */
  }
  
  /* å®šç¾©ä¸‰å€‹ keyframesï¼š 
     åˆ†åˆ¥å°æ‡‰ line0, line1, line2 å¾žç•¶å‰ä½ç½®ã€Œå¾€ä¸Šæ»‘ 24pxã€*/
  @keyframes slideUp0 {
    0% {
      top: 0;
    }
    100% {
      top: -24px;
    }
  }
  @keyframes slideUp1 {
    0% {
      top: 24px;
    }
    100% {
      top: 0px;
    }
  }
  @keyframes slideUp2 {
    0% {
      top: 48px;
    }
    100% {
      top: 24px;
    }
  }
  
  /* æ’­æ”¾ä¸€æ¬¡å‹•ç•«ï¼ŒçµæŸå¾Œåœç•™åœ¨çµ‚é»ž (forwards) */
  .slideUp0 {
    animation: slideUp0 0.5s forwards;
  }
  .slideUp1 {
    animation: slideUp1 0.5s forwards;
  }
  .slideUp2 {
    animation: slideUp2 0.5s forwards;
  }

  .title-block{
    width: 95%;
    margin: 0 auto;
    margin-top: 15px;
    max-width: 1280px;
  }

  .title-block img{
    width:100%;
  }
  
  .streamer-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; /* å¦‚æžœå¡ç‰‡å¤ªå¤šï¼Œæœƒè‡ªå‹•æ›è¡Œ */
    gap: 15px; /* å¡ç‰‡ä¹‹é–“çš„é–“è· */
    padding: 16px;
    margin: 0 auto;
    max-width: 1280px;
  }
  
  /* å–®å¼µå¡ç‰‡ */
  .streamer-card {
    /* card å¤–è§€è¨­å®š */
    display: flex; /* è®“é&nbsp;­åƒèˆ‡æ–‡å­—ä¸¦æŽ’ */
    align-items: center; /* åž‚ç›´ç½®ä¸­ */
    width: 22%; /* å›ºå®šæˆ–æœ€å°å¯¬åº¦ï¼Œå¯èª¿æ•´ 200~300px ä¹‹é–“ */
    padding: 8px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  .streamer-card:hover {
    transform: scale(1.03);
  }
  
  /* ç›´æ’­ä¸»é&nbsp;­åƒ */
  .streamer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* åœ“å½¢é&nbsp;­åƒ */
    object-fit: cover; /* å¦‚æžœé&nbsp;­åƒæ¯”ä¾‹ä¸åŒï¼Œæœƒè‡ªå‹•è£åˆ‡ */
    margin-right: 12px;
  }
  
  /* ç›´æ’­ä¸»æ–‡å­—å€ */
  .streamer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  .streamer-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .streamer-desc {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* RWD è¨­å®šï¼šå°èž¢å¹•æ™‚çš„èª¿æ•´ï¼Œå¯è‡ªè¡Œèª¿æ•´æ–·é»ž */
  @media (max-width: 500px) {
    .streamer-card, .streamer-cards {
      display: none;
    }

    .title-block{
      display: none;
    }
  }
  </pre></body></html>