@media (min-width: 768px) {
  .metalink {
    padding-top: 6px;
    padding-left: 22px;
    margin-top: 8px;
    margin-bottom: 8px;
    /* Flashy Design */
    display: flex;
    align-items: center;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .metalink a {
    color: #57606f;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    padding: 2px 5px;
  }

  .metalink a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(90deg, #ff4757, #5352ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .metalink a:hover {
    color: #2f3542;
    transform: translateY(-2px);
  }

  .metalink a:hover::before {
    transform: scaleX(1);
  }

  .metalink .jt {
    margin: 0 5px;
    color: #a4b0be;
    font-size: 10px;
    font-weight: bold;
    opacity: 0.6;
  }

  .metalink span:last-child,
  .metalink span:last-child a {
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0px 5px 15px rgba(255, 107, 107, 0.25);
    pointer-events: none;
    cursor: default;
    padding: 2px 5px;
  }
  
  .metalink span:last-child a::before {
    display: none;
  }

  .container.event-none * {
    pointer-events: none;
  }

  .play_box {
    display: flex;
    flex-wrap: wrap;
    /* 允许内容换行 */
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .play_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 0px 40px;
  }

  .play_item_box {
    width: 19%;
    overflow: hidden;
  }

  .play_item {
    display: flex;
    flex-direction: column;
  }

  .play_img {
    aspect-ratio: 7 / 4.6;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 0 0 5px 5px;
  }

  .play_name {
    width: 100%;
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }

  .play_describe {
    color: #444;
    opacity: 0.7;
    font-size: 12px !important;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 显示三行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 2px;
    display: none;
  }

  .play_button {
    padding: 6px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(to bottom, #308ED7, #5860D3);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
  }
}

@media (max-width: 960px) {

  .main {
    box-sizing: border-box;
    width: 100%;
    /* min-height: 100%; */
  }

  .header .search {
    /* display: none; */
  }

  .header {
    /* padding: 16rem 14rem !important; */
  }

  .header .right {
    width: 24px !important;
    display: block;
  }

  .header .left {
    /* width: calc(100% - 26.5rem); */
  }

  .header .left img,
  .right img {
    width: 100%;
    height: 100%;
  }

  .header .left .list_name {
    margin: 0 auto;
    padding-left: 9rem;
    font-size: 16rem;
    font-weight: bold;
    color: #ffffff;
  }

  .header .right {
    width: 18rem;
  }

  .container.event-none * {
    pointer-events: none;
  }

  /* #endregion */
  .container {
    box-sizing: border-box;
    width: 100%;
    /* background-color: #F6F6F6; */
  }

  .play_box {
    padding: 0 10rem;
  }

  .container .play_list {
    width: 100%;
  }

  .container .play_list .play_item_box {
    margin-bottom: 10rem;
    box-sizing: border-box;
    padding: 5rem;
    width: calc(97% / 2);
    margin-right: 3px;
  }

  .logo_img_src {
    height: 26px !important;
    width: auto !important;
  }

  .logo_img_icon {
    /* height: 22px !important;
    width: auto !important;
    margin-top: 2px !important; */
    /* margin-left: 10px; */
  }

  .container .play_list .play_item_box .play_item .play_img {
    width: 100%;
    height: calc((92vw - 100rem) / 2);
    /* border-radius: 10px; */
    overflow: hidden;
    background: #ffffff;
    position: relative;
  }

  .container .play_list .play_item_box .play_item .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* .container .play_list .play_item_box .play_item .play_name {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  } */

  .container .play_list .play_item_box .play_item .play_button {
    padding: 6px 30px;
    background: linear-gradient(to bottom, #308ED7, #5860D3);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .footer {
    padding-top: 0px !important;
  }

  .play_name {
    width: 100%;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: none;
  }

  .play_describe {
    color: #444;
    opacity: 0.7;
    font-size: 12px !important;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 显示三行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 2px;
    display: none;
  }

  /* White Theme Mobile Override - PC Style Sync */
  .metalink {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
    margin-left: 10px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
  }

  .metalink a {
    color: #57606f; /* PC 端普通链接颜色 */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .metalink a:active {
    color: #2f3542; /* PC 端 hover 颜色 */
  }

  .metalink .jt {
    margin: 0 8px;
    color: #a4b0be; /* PC 端分隔符颜色 */
    font-size: 11px;
    font-weight: 900;
    opacity: 0.6;
  }
  
  .metalink span:last-child,
  .metalink span:last-child a {
    background: linear-gradient(90deg, #ff6b6b, #feca57); /* PC 端当前页渐变色 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 14px; /* 移动端字号适配 */
    text-shadow: 0px 5px 15px rgba(255, 107, 107, 0.25);
    letter-spacing: 0px;
  }
}

@media (min-width: 1980px) {

  .play_item_box {
    width: 329px;
    overflow: hidden;
  }

  .play_img {
    width: 329px;
    height: 205px;
    aspect-ratio: 7 / 4.6;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container.event-none * {
    pointer-events: none;
  }

  .metalink {
    padding-left: 490px !important;
  }

  .play_list {
    max-width: 2020px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    gap: 24px;
  }

  .play_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
    /* padding: 0px 40px; */
  }

  .play_name {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }
}