@media (min-width: 768px) {

  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  .other_play_list_item button {
    display: block;
  }


  .header {
    position: fixed;
    /* 让 header 固定 */
    box-sizing: border-box;
    width: 100%;
    z-index: 5;
    /* 确保 header 处于最前层 */
    top: 0;
    left: 0;
    background: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 55px;
    display: none;
  }

  .container4 {
    display: none;
  }

  .left-content {
    flex: 1;
    display: flex;
    align-items: center;
    /* 让子元素垂直居中 */
  }

  .sidebar_browse {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .top-home-link {
    display: flex;
    padding: 8px 20px;
    align-items: center;
    gap: 12px;
  }

  .top-home-link img {
    width: 18px;
    height: 18px;
  }

  .top-home-link,
  .sidebar_browse_group {
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  /* 选中态样式 */
  .selected {
    background-color: #8a939940;
    font-weight: bold;
  }

  .websiteDesc .websiteDescTitle .til {
    padding: 5px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .websiteDesc .websiteDescTitle .til img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }


  .top-home-link a {
    color: #41495A;
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logodate {
    font-size: 16px;
    font-weight: 700;
    max-width: 280px;
    display: inline-block;
    vertical-align: super;
    align-self: center;
    color: #41495a;
  }

  .logo_img {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .logo_img a {
    display: flex;
    align-items: center;
    justify-items: center;
  }

  .section-header {
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sidebar_browse_group {
    padding: 8px 20px;
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
  }

  .sidebar_browse_group:hover {
    background-color: rgba(138, 147, 153, 0.25);
    cursor: pointer;
  }

  .sidebar_browse_group.selected {
    background-color: rgba(138, 147, 153, 0.25);
    font-weight: bold;
  }

  .sidebar_browse_group img {
    width: 18px;
    height: 18px;
  }

  .sidebar_browse_group a {
    color: #41495A;
  }

  .sidebar_browse_group h2 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 0px !important;
  }

  .sidebar_browse_group .browse_filters {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    display: none;
  }

  .sidebar_browse_group .browse_filters a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 4px;
    padding: 3px 10px;
    min-height: 27px;
    width: 50%;
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分用 ... 表示 */
  }

  .Category {
    display: none;
  }

  /* .right-content {
    flex: 1;
    display: flex;
    align-items: center;
  } */

  .logo_img .logo_img_icon {
    height: 28px;
    width: auto;
  }

  .logo_img .logo_img_src {
    height: 26px;
    width: auto;
  }

  .header .flex-start {
    margin-right: 20px;
  }


  .header .right {
    height: 12px;
    padding: 0 0 0 24px;
    margin-right: 20px;
    display: none;
  }

  .header .right img {
    width: 100%;
    height: 100%;
  }

  .search {
    display: none;
  }

  .search_pc {
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .search_pc .search_box {
    border-radius: 2rem;
    background-color: #F4F4F4;
  }

  .search_pc .search_box .search_icon {
    width: 4rem;
    height: auto;
    padding: 3rem 2rem;
  }

  .search_pc .search_box .search_icon img {
    width: 100%;
    height: 100%;
  }

  .search_pc .search_box .search_input {
    width: calc(100% - 0rem);
    height: 4rem;
    position: relative;
    /* padding-right: 70px; */
    flex: 1;
    display: flex;
    align-items: center;
    /* 确保内容垂直居中 */
    ;
  }

  .search_pc .search_box .search_input input {
    height: 100%;
    width: 100%;
    border: 0;
    background: transparent;
    line-height: normal;
    padding: 0 10px;
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 隐藏超出部分 */
    text-overflow: ellipsis;
    /* 显示省略号 */
  }

  .search_input input::placeholder {
    font-size: 14px;
    color: #757575;
    line-height: normal;
  }

  .search_pc .search_box .search_input input:focus-visible {
    outline: none;
  }

  .search_pc .search_box .search_input .clear_icon {
    z-index: 2;
    position: absolute;
    right: 4rem;
    width: 5rem;
    height: 5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .search_pc .search_box .search_input .clear_icon img {
    width: 100%;
    height: 100%;
  }

  .Privacy {
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Privacy:hover {
    background-color: rgba(138, 147, 153, 0.25);
    cursor: pointer;
  }

  .privacy-icon {
    width: 18px;
    height: 18px;
  }

  .Privacy a {
    color: #41495A;
  }

  .Contact {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    height: 24px;
    background-image: linear-gradient(180deg, #2e92d8, #5a5ed3);
    background-origin: border-box;
    border: 2px solid transparent;
    padding: 3px;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }

  .main-container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    display: none;
  }

  .header1 {
    background: linear-gradient(90deg, #485766, #485766);
    width: 100%;
    color: white;
    padding: 20px;
    background: linear-gradient(to right, #495867, rgba(73, 88, 103, 0.8) 60%, rgba(162, 135, 192, 0.4)), url(../image/app-banner.png) 100% 0 no-repeat, linear-gradient(to right, #343f49, #8866ae);
  }

  .header1 .font {
    font-size: 16px;
  }

  .content1 {
    background-color: #000;
    width: 100%;

    background-size: cover;
    background-position: center;
  }

  .content-box1 {
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-color: #000;
    background-image: url('../image/kRjrs4.png');
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    max-width: 1000px;
    margin: 0 auto;
  }

  .content-box1 .h11 {
    text-align: center;
    font-weight: 900;
    font-size: 26px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: #fff;
  }

  .images1 {
    display: flex;
    justify-content: center;
    /* 水平居中对齐 */
    align-items: center;
    /* 垂直居中对齐（如果有高度限制） */
    margin: 20px auto;
    border: 3px solid #A097A6;
    width: 500px;
    /* 计算总宽度：6个图片宽度 + 5个间距 */
  }

  .images1 img {
    height: 100px;
    width: 500px;
  }

  .OFFER {
    font-size: 14px;
    color: #fff;
  }

  .The {
    font-size: 14px;
    color: #fff;
  }

  .button1 {
    border: 2px solid white;
    background: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
  }

  .button1:hover {
    background-color: white;
    color: black;
  }

  .footer1 {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 12px;
    color: #fff;
  }

  .footer {
    display: none;
  }

  /* #endregion */
  .container {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #fff;
    /* background-image: url(../image/background.jpg); */
    background-position: top !important;
    background-repeat: no-repeat !important;
    background-size: auto auto !important;
    background-size: initial !important;
  }

  .container.event-none * {
    pointer-events: none;
  }

  .container .header_flex {
    margin: 0 auto;
    width: 80%;
  }

  .container .main {
    box-sizing: border-box;
    margin: 0 auto;
    /* margin-top: 45px; */
    display: flex;
    height: calc(100vh - 5px);
    overflow: hidden;
  }

  .container .main .swiper_box {
    height: 35px;
  }

  .container .main .swiper_box .swiper {
    display: none;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide {
    color: #fff;
    font-size: 20rem;
    height: 90vw;
    line-height: 150rem;
    text-align: center;
    background-color: #444444;
    position: relative;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_icon {
    width: 100%;
    height: 100%;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_icon img {
    width: 100%;
    height: 100%;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_button {
    width: 78rem;
    height: 38rem;
    line-height: 38rem;
    text-align: center;
    font-size: 16rem;
    font-weight: 400;
    color: #ffffff;
    background: #ff0084;
    border-radius: 20rem;
    position: absolute;
    left: 20rem;
    bottom: 18rem;
  }

  .container .main .swiper_box .swiper .swiper-pagination {
    box-sizing: border-box;
    text-align: right;
    padding-right: 20rem;
  }

  .container .main .swiper_box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 29rem;
    height: 7rem;
    background: #ff0084;
    border-radius: 4rem;
  }

  .container .main .img_play {
    width: 100%;
    padding: 0px 20px;
  }

  .container .main .img_play .play {
    background-color: #292C37;
    height: 150px;
  }

  .container_img {
    display: none;
  }

  .container .main .img_play .play .play_img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }

  .container .main .hot_play {
    display: none;
    box-sizing: border-box;
    padding: 6rem 20rem 0rem 20rem;
  }

  .container .main .hot_play .sub_title,
  .container .main .other_play_list_item .sub_title {
    margin-bottom: 15rem;
    font-weight: 400;
  }

  .container .main .hot_play .sub_title .left,
  .container .main .other_play_list_item .sub_title .left {
    font-weight: 800;
    font-size: 5rem;
    color: #000000;
  }

  .container .main .hot_play .sub_title .right,
  .container .main .other_play_list_item .sub_title .right {
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
  }

  .container .main .hot_play .sub_title .right a,
  .container .main .other_play_list_item .sub_title .right a {
    color: #c0c0c0;
  }

  .container .main .hot_play .play_list {
    /* padding: 1rem 30rem; */
  }

  .play_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .play_text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }


  .container .main .hot_play .play_list .play_item {
    box-sizing: border-box;
    width: 100%;
    border-radius: 10rem;
    font-weight: bold;
    /* width: calc((100% - 5rem) / 2); */
    font-size: 14rem;
    color: #ffffff;
    margin-bottom: 10rem;
  }

  .container .main .hot_play .play_list .play_item .play_info {
    background-size: 100% 100%;
    border-radius: 20rem;
    padding: 4rem;
    align-items: center;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_icon {
    height: 40rem;
    margin-right: 5rem;
    width: 40rem;
    background: #ffffff;
    border-radius: 3rem;
    overflow: hidden;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_icon img {
    width: 100%;
    height: 100%;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_name {
    width: 100%;
    margin-top: 4rem;
    box-sizing: border-box;
    text-align: center;
    color: #0b0817a6;
    font-size: 7rem;
  }

  .play_describe {
    color: #666;
    font-size: 14px;
  }

  .other_play_info {
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .flex3 .play_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0px !important;
  }

  .flex3 .play_content .play_name {
    margin-top: 10px;
  }

  .other_play_list_type .play_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 4px 0px 0px 0px;
    display: none;
  }

  .play_content>div {
    min-width: 0;
    max-width: 100%;
    flex: 1;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon .play_content>div {
    min-width: 0;
    max-width: 100%;
    flex: 1;
    padding: 10px;
  }

  .play_info_box {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .left-column {
    flex-shrink: 0;
    /* background: #f5f5f5; */
    overflow-y: auto;
    height: 100%;
    /* 滚动条美化 */
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
    padding: 20px 20px;
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1), 0 17px 24px rgba(0, 0, 0, .07);
  }

  .right-column {
    flex: 1;
    overflow-y: auto;
    height: 100%;
    padding: 0px 0px 0px 0px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .container2 {
    margin: 0px 40px;
    margin-top: 30px;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    display: none;
  }

  .container1 {
    background-color: #fff;
    border-radius: 3px;
    padding: 15px;
    display: flex;
    align-items: center;
    max-width: 100%;
    border: 1px solid #cdcdcd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .left-section {
    flex: 1;
    display: flex;
    align-items: center;
    /* 水平居中 */
    justify-content: center;
    /* 垂直居中 */
    text-align: center;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    height: 100%;
    /* 确保父容器有高度 */
  }

  .ph3 {
    margin-right: 20px !important;
  }

  .left-section img {
    transform: scale(1.1);
    padding: 11px;
  }

  .right-section {
    flex: 2;
    display: flex;
    gap: 15px;
  }

  .card {
    background-color: #F4F4F4;
    border-radius: 3px;
    padding: 20px;
    color: white;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .card img {
    width: 50px;
    flex-shrink: 0;
    transform: scale(2.2);
    margin-right: 20px !important;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .card-content .hh {
    font-size: 16px;
    font-weight: 600;
    color: #444;
  }

  .card-content .pp {
    color: #444;
    font-size: 16px;
    font-weight: 400;
  }

  .button {
    padding: 4px 26px;
    color: #FF2449;
    border: 1px solid #FF2449;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
  }

  .play_btn {
    padding: 8px 20px;
    color: #FF2449;
    background-color: #fff;
    border: 1px solid #FF2449;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 10px;
  }


  .container .main .hot_play .play_list .play_item .play_describe {
    font-size: 4rem;
    font-weight: 400;
    height: 50rem;
    margin-top: 5rem;
    color: #0b0817a6;
    overflow-y: auto;
  }

  .container .main .other_play_list_item .sub_title {
    width: 68rem;
    height: 16rem;
    margin: 0 auto;
    background-color: #024F7B;
    border-radius: 2rem;
  }

  .container .main .other_play_list_item .sub_title .flex_box {
    color: #fff;
    /* font-size: 5rem; */
    font-weight: bold;
    margin: 0 auto;
  }

  .container .main .other_play_list_item .other_play_item {
    margin-bottom: 3rem;
    margin: 2rem 2rem;
  }

  .play_title {
    color: #21ce86;
    font-size: 5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding-bottom: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info {
    justify-content: center;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon {
    width: 180px;
    box-sizing: border-box;
    aspect-ratio: 7 / 4.6;
    margin: 0 auto;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon .play_content {
    padding: 20px !important;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon .play_info_box {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .play_icon .play_info_box .play_name {
    width: 80%;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 400;
    padding-left: 8px;
    color: #fff;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    background: #f7f7f7;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_name {
    width: 100%;
    /* margin-top: 2rem; */
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_sub {
    color: #444;
    opacity: 0.7;
    font-size: 12px;
    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;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate {
    text-align: center;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .rate_num {
    font-size: 16rem;
    font-weight: 400;
    color: #333333;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .star_box {
    text-align: center;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .star_box .star {
    width: 3rem;
    height: 3rem;
  }

  .container .main .other_play_list_type .other_play_list_item {
    box-sizing: border-box;
    /* margin: 0 40px; */
    margin-top: 4px;
    padding: 0 40px;
    display: flex;
  }

  .sb_title {
    display: inline-block;
    /* 或者 inline-flex 也可 */
  }

  .sb_title .flex_box {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 96px;
    width: 300px;
    margin-top: 8px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
  }

  .sb_title .flex_box a {
    position: absolute;
    bottom: 20px;
    left: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }

  .sb_title .flex_box .button {
    padding: 2px 9px;
    color: #FF2449;
    border: 1px solid #FF2449;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
    margin-left: 20px;
  }

  .container .main .other_play_list_type:last-child .other_play_list_item {
    border-bottom: 0;
  }

  .container .main .flex3 .other_play_list_item .other_play_item_box {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    /* 横向排列 */
    scroll-behavior: smooth;
    position: relative;
    scrollbar-width: none;
    /* Firefox */
  }

  .other_play_list_type .other_play_item_box {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    position: relative;
    scrollbar-width: none;
  }

  .other_play_list_type .other_play_item_box .other_play_item {
    flex: 0 0 auto;
    /* width: 200px; */
    background-color: #f0f0f0;
    border-radius: 8px;
  }

  .container .main .flex3 .other_play_list_item .other_play_item_box::-webkit-scrollbar {
    display: none;
  }

  .flex {
    justify-content: flex-start !important;
  }

  .banner-box {
    margin: 30px 40px;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-container {
    display: flex;
    gap: 20px;
    padding: 0 40px;
  }

  .banner {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    height: 160px;
    color: #fff;
    box-sizing: border-box;
    transition: transform 0.2s ease;
  }

  .banner:hover {
    transform: translateY(-2px);
  }

  .banner-text {
    position: relative;
    z-index: 2;
    font-weight: bold;
  }

  .banner-text h3 {
    font-size: 26px;
    margin: 0 0 12px;
  }

  .banner-text p {
    font-size: 18px;
    margin: 0;
  }

  .banner .time {
    font-weight: normal;
  }

  .banner img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    z-index: 1;
    object-fit: cover;

    /* 渐变只作用在左边一点点区域 */
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .banner1 {
    border: 2px solid #00a3e0;
    color: #00a3e0;
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 80%);
  }

  .banner2 {
    border: 2px solid #00c48c;
    color: #00c48c;
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 80%);
  }

  .container .main .flex3 .other_play_list_item .other_play_item {
    flex: 0 0 auto;
    /* 不换行，宽度固定 */
    width: 180px;
    /* 可自定义宽度 */
  }

  .container .main .flex3 .other_play_list_item .other_play_item .other_play_info {
    justify-content: center;
  }

  .container .main .flex3 .other_play_list_item .other_play_item .other_play_info .play_icon {
    width: 100%;
    box-sizing: border-box;
    aspect-ratio: 7 / 4.6;
    margin: 0 auto;
  }

  .search_data_box.show {
    margin-top: 20rem;
    margin-left: 20rem;
  }

  .search_data_box .data_item {
    margin-bottom: 15rem;
  }

  .search_data_box .data_item .left .play_game_img {
    width: 30rem;
    height: 30rem;
    overflow: hidden;
    border-radius: 4rem;
    background: #f1f1f1;
    margin-left: 150px;
  }

  .search_data_box .data_item .left img {
    width: 100%;
    height: 100%;
  }

  .search_data_box .data_item .right {
    width: calc(100% - 150rem);
    padding-left: 10rem;
    box-sizing: border-box;
  }

  .search_data_box .data_item .right .data_paly_game_name {
    font-size: 6rem;
    color: #fff;
  }

  .search_data_box .data_item .right .rate_box {
    margin: 2rem 0;
  }

  .search_data_box .data_item .right .star_box .star {
    width: 5rem;
    height: 5rem;
  }

  .search_data_box .data_item .right .data_paly_game_desc {
    font-size: 4rem;
    color: #fff;
  }

  .websiteDesc {
    /* padding: 10px; */
    /* background-color: #F4F4F4; */
    max-width: 1680px;
    margin: 30px 40px;
    border-radius: 16px;
  }

  .websiteDesc .websiteDescText {
    text-indent: 6em;
    font-size: 16px;
    color: #444;
    margin: 15px 20px;
  }

  .websiteDesc .websiteDescTitle {
    /* text-indent: 2em; */
    font-size: 22px;
    color: #fff;
    margin: 20px 0px;
    font-weight: 700;
  }

  .card .qwe {
    transform: scale(1.6);
  }

  .container311 {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
  }

  .container3111 {
    padding: 0 40px;
  }

  .container31 {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f7f7f7;
    padding: 0px 40px;
    margin-top: 20px;
    border-radius: 16px;
  }

  .container3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 0px;
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
  }

  .container32 img {
    width: 82px;
    height: 82px;
  }

  .other_play {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }

  .title2 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
  }



  .tag {
    background-color: #fff;
    /* 深灰色按钮 */
    padding: 8px 15px;
    border-radius: 20px;
    color: #000;
    display: flex;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.15);
  }

  .tag:hover {
    border: 1px solid #DA2C49;
  }

  .container4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background-color: #292C37;
    margin: 0px 40px;
    border-radius: 2rem;
    margin-bottom: 30px;
    display: none;
  }

  .card2 {
    background-color: #161920;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
  }

  .card2 img {
    margin-bottom: 10px;
  }

}

@media (max-width: 960px) {

  /* #region top header */
  .header {
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 10;
    padding: 8rem 14rem;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .other_play_list_item button {
    display: none !important;
  }

  .left-column {
    display: none;
  }

  .container_img {
    padding: 0px 20px 20px 20px;
    display: inline-block;
    /* 让容器大小随内容调整 */
  }

  .container.event-none * {
    pointer-events: none;
  }

  .container_img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .header .left-content {
    display: flex;
    align-items: center;
  }

  .header .right-content {
    display: none;
  }

  .left-column .search_pc {
    display: none;
  }

  .selected {
    background-color: #8a939940;
    font-weight: bold;
  }

  .top-home-link,
  .sidebar_browse_group {
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .top-home-link {
    display: flex;
    padding: 8px 20px;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .top-home-link img {
    width: 18px;
    height: 18px;
  }

  .top-home-link a {
    color: #41495A;
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .sidebar_browse_group {
    padding: 8px 20px;
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
  }

  .section-header {
    font-size: 15px;
    color: #41495A;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
  }

  .sidebar_browse_group img {
    width: 18px;
    height: 18px;
  }

  .sidebar_browse_group a {
    color: #41495A;
  }

  .sidebar_browse_group .browse_filters {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    display: none;
  }

  .sidebar_browse_group .browse_filters a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 4px;
    padding: 3px 10px;
    min-height: 27px;
    width: 50%;
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sidebar_browse {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .logo_img {
    display: flex;
    align-items: center;
    /* margin-bottom: 20px; */
  }

  .swiper_box {
    display: none;
  }

  .logo_img_icon {
    height: 24px;
    width: auto;
    margin-top: 2px;
  }

  .logo_img_src {
    height: 26px;
    width: auto;
  }

  .logo_img {
    width: 100px;
    display: flex;
    margin: 0 auto;
  }


  .header .right {
    width: 45px;
    margin-right: 10px;
  }

  .header .right img {
    width: 100%;
    height: auto;
    /* 让图片按比例缩放 */
    display: block;
  }

  .search_pc {
    display: none;
  }

  .search {
    box-sizing: border-box;
    width: calc(100%);
    height: 40rem;
    padding: 6rem 10rem;
    margin-left: 62px;
  }

  .search .search_box {
    border-radius: 6px;
    background-color: #F4F4F4;
  }

  .search .search_box .search_icon {
    width: 14rem;
    height: 14rem;
  }

  .search .search_box .search_icon img {
    width: 100%;
    height: 100%;
  }

  .search .search_box .search_input {
    width: calc(100% - 45rem);
    height: 30rem;
    line-height: 28rem;
    position: relative;
  }

  .search .search_box .search_input input {
    height: 93%;
    width: 90%;
    border: 0;
    background: transparent;
  }

  .search .search_box .search_input input:focus-visible {
    outline: none;
  }

  .search .search_box .search_input .clear_icon {
    z-index: 2;
    position: absolute;
    right: 4rem;
    width: 17rem;
    height: 17rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .search .search_box .search_input input {
    color: #8a8a8a;
  }

  .search .search_box .search_input input::placeholder {
    color: #AAAAAA !important;
  }

  .search .search_box .search_input .clear_icon img {
    width: 100%;
    height: 100%;
  }

  .container {
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    background-size: contain;
    background-position: center;
    background-size: cover;
    padding-top: 60rem;
    overflow: hidden;
  }

  .container .main {
    box-sizing: border-box;
    color: #ffffff;
  }

  .container .main .swiper_box .swiper {
    position: relative;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide {
    color: #fff;
    font-size: 20rem;
    height: 90vw;
    line-height: 150rem;
    text-align: center;
    background-color: #444444;
    position: relative;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_icon {
    width: 100%;
    height: 100%;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_icon img {
    width: 100%;
    height: 100%;
  }

  .container .main .swiper_box .swiper .swiper-wrapper .swiper-slide .play_button {
    width: 78rem;
    height: 38rem;
    line-height: 38rem;
    text-align: center;
    font-size: 16rem;
    font-weight: 400;
    color: #ffffff;
    background: #ff0084;
    border-radius: 20rem;
    position: absolute;
    left: 20rem;
    bottom: 18rem;
  }

  .container .main .swiper_box .swiper .swiper-pagination {
    box-sizing: border-box;
    text-align: right;
    padding-right: 20rem;
  }

  .container .main .swiper_box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 29rem;
    height: 7rem;
    background: #ff0084;
    border-radius: 4rem;
  }

  .container .main .img_play {
    width: 1000px;
    height: 70px;
    margin-top: 20rem;
    margin-bottom: 20rem;
    background-color: #292C37;
  }

  .container .main .img_play .play {
    padding: 0rem 14rem;
  }

  .container .main .img_play .play .play_img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }

  .container .main .hot_play {
    box-sizing: border-box;
    padding: 20px 20px 0px 20px;
  }

  .container .main .hot_play .sub_title,
  .container .main .other_play_list_item .sub_title {
    margin-bottom: 15rem;
    font-weight: 400;
  }

  .container .main .hot_play .sub_title .right a,
  .container .main .other_play_list_item .sub_title .right a {
    color: #c0c0c0;
  }

  .container .main .hot_play .play_list .play_item {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    /* padding: 10rem 8rem; */
    font-size: 14rem;
    color: #ffffff;
    margin-bottom: 14rem;

  }

  .container .main .hot_play .play_list .play_item .play_info .play_icon {
    width: 120rem;
    height: 120rem;
    flex-shrink: 0;
    margin-right: 20rem;
    border-radius: 3rem;
    overflow: hidden;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_icon img {
    width: 100%;
    height: 100%;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_box {
    display: flex;
    flex-direction: column;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
  }

  .container .main .hot_play .play_list .play_item .play_info .play_describe {
    font-size: 12rem;
    margin-top: 10rem;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
  }

  .container .main .other_play_list_item .sb_title .flex_box {
    color: #FFF !important;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 135.69px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
  }

  .container .main .other_play_list_item .sb_title .flex_box a {
    color: #FFF !important;
    padding: 0px 20px;
  }

  .container .main .other_play_list_item .sb_title .flex_box .button {
    color: #FF2449 !important;
    border: 1px solid #FF2449;
    width: 80px !important;
    padding: 3px 8px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    border-radius: 1px !important;
  }


  .container .main .other_play_list_item .sub_title {
    margin-bottom: 15rem;
    font-weight: 400;
  }

  .container .main .hot_play .sub_title .left,
  .container .main .other_play_list_item .sub_title .left {
    font-weight: 800;
    font-size: 20rem;
    color: #000000;
  }

  .container .main .hot_play .sub_title .right,
  .container .main .other_play_list_item .sub_title .right {
    font-size: 16rem;
    font-weight: 400;
    color: #ffffff;
  }

  .container .main .other_play_list_item .sub_title .flex_box {
    color: #fff;
    padding: 15rem;
    font-size: 16rem;
    font-weight: bold;
    margin: 0 auto;
  }

  .container .main .other_play_list_item .other_play_item {
    width: calc((100% - 16rem) / 2);
    margin-bottom: 14rem;
    border-radius: 6rem;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info {
    justify-content: center;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_icon img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_name {
    color: #000;
    font-size: 14rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    display: none;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_sub {
    color: #444;
    opacity: 0.7;
    font-size: 12px;
    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;
  }

  .header1 {
    background: linear-gradient(90deg, #485766, #485766);
    width: 100%;
    color: white;
    padding: 10px;
    background: linear-gradient(to right, #495867, rgba(73, 88, 103, 0.8) 60%, rgba(162, 135, 192, 0.4)), url(../image/app-banner.png) 100% 0 no-repeat, linear-gradient(to right, #343f49, #8866ae);
  }

  .header1 .font {
    font-size: 16px;
  }

  .content1 {
    background-color: #000;
    width: 100%;

    background-size: cover;
    background-position: center;
  }

  .content-box1 {
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-color: #000;
    background-image: url('../image/kRjrs4.png');
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    max-width: 1000px;
    margin: 0 auto;
  }

  .content-box1 .h11 {
    text-align: center;
    font-weight: 900;
    font-size: 26px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: #fff;
  }

  .images1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border: 3px solid #A097A6;
    width: 350px;
  }

  .images1 img {
    height: 80px;
    width: 350px;
    object-fit: cover
  }

  .OFFER {
    font-size: 14px;
    color: #fff;
  }

  .The {
    font-size: 14px;
    color: #fff;
  }

  .button1 {
    border: 2px solid white;
    background: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
  }

  .button1:hover {
    background-color: white;
    color: black;
  }

  .footer1 {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 12px;
    color: #fff;
  }

  .play_btn {
    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: 2px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate {
    text-align: left;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box {
    padding-bottom: 3rem;
    margin: 0 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .rate_num {
    font-size: 16rem;
    font-weight: 400;
    color: #333333;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .star_box .star {
    width: 12rem;
    height: 12rem;
  }

  .container .main .other_play_list_type .other_play_list_item {
    box-sizing: border-box;
    padding: 0px 20px;
    margin-top: 10px;
  }

  .container .main .other_play_list_type .other_play_list_item .other_play_item_box {
    justify-content: space-between;
    padding: 2px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: none;
  }

  .container .main .other_play_list_type:last-child .other_play_list_item {
    border-bottom: 0;
  }

  .container .main .flex3 .other_play_list_item .other_play_item_box {
    justify-content: space-between;
    padding: 6rem;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: none;
  }

  .banner-box {
    margin: 15px 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-container {
    padding: 0 20px;
  }

  .container32 {
    display: none;
  }

  .banner {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    height: 200px;
    color: #fff;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
  }

  .banner:hover {
    transform: translateY(-2px);
  }

  .banner-text {
    position: relative;
    z-index: 2;
    font-weight: bold;
  }

  .banner-text h3 {
    font-size: 26px;
    margin: 0 0 12px;
  }

  .banner-text p {
    font-size: 18px;
    margin: 0;
  }

  .banner .time {
    font-weight: normal;
  }

  .banner img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    z-index: 1;
    object-fit: cover;

    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .logodate {
    display: none;
  }

  .banner1 {
    border: 2px solid #00a3e0;
    color: #FFF;
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 80%);
  }

  .banner2 {
    border: 2px solid #00c48c;
    color: #FFF;
    background: linear-gradient(to right, white 40%, rgba(255, 255, 255, 0) 80%);
  }


  .play_title {
    color: #000000;
    font-size: 14rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding-bottom: 3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .container .main .flex3 .other_play_list_item .other_play_item .other_play_info {
    justify-content: center;
  }

  .container .main .flex3 .other_play_list_item .other_play_item .other_play_info .play_icon {
    width: 100%;
    height: calc((100% - 50rem) / 2);
    box-sizing: border-box;
  }

  .container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: none;
  }

  .container1 {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #cdcdcd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .left-section {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }

  .ph3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-right: 40px;
  }

  .left-section img {
    transform: scale(1.2);
    padding-top: 10px;
  }

  /* right-section 部分 */
  .right-section {
    display: flex;
    flex-direction: column;
  }

  /* card 样式 */
  .card {
    display: flex;
    align-items: center;
    background-color: #F4F4F4;
    padding: 20px;
    border-radius: 12px;
    max-width: 100%;
    max-height: 270px;
    position: relative;
  }

  .card img {
    width: 50px;
    flex-shrink: 0;
    transform: scale(2.2);
    margin-right: 20px !important;
    padding-left: 16px;
  }

  .card .qwe {
    transform: scale(1.6);
  }

  .card-content {
    display: flex;
    flex-direction: column;
    color: #444;
    padding-left: 24px;
    text-align: center;
  }

  .container4 {
    padding: 10px;
    background-color: #f4f4f4;
    margin: 0px 20px;
    border-radius: 2rem;
    margin-bottom: 22px;
    display: grid;
    /* grid-template-rows: repeat(2, auto); */
    grid-auto-flow: column;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    scroll-snap-type: x mandatory;
    display: none;
  }

  .card2 {
    background-color: #fff;
    width: 104px;
    height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #444;
    font-family: Arial, sans-serif;
    font-size: 16px;
    scroll-snap-align: start;
  }

  .card2 img {
    margin-bottom: 10px;
  }

  .hh {
    font-size: 16px;
    font-weight: bold;
  }

  .pp {
    color: #444;
    font-size: 16px;
    font-weight: 400;
  }

  /* 按钮样式 */
  .button {
    padding: 8px 18px;
    color: #FF2449;
    border: 1px solid #FF2449;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    text-align: center;
    width: 90px;
    margin: 0 auto;
  }

  .container3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 0px 20px 20px 20px;
  }

  .title2 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
  }

  .tag {
    background-color: #F4F4F4;
    /* 深灰色按钮 */
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .tag:hover {
    border: 1px solid #EC54A0;
  }

  .search_data_box {
    padding: 15rem;
    box-sizing: border-box;
  }

  .search_data_box .data_item {
    margin-bottom: 15rem;
    display: flex;
    justify-content: center;
  }

  .search_data_box .data_item .left {
    width: 80rem;
  }

  .search_data_box .data_item .left .play_game_img {
    width: 80rem;
    height: 80rem;
    overflow: hidden;
    border-radius: 4rem;
    background: #f1f1f1;
  }

  .search_data_box .data_item .left img {
    width: 100%;
    height: 100%;
  }

  .search_data_box .data_item .right {
    width: calc(100% - 110rem);
    padding-left: 10rem;
    box-sizing: border-box;
  }

  .search_data_box .data_item .right .data_paly_game_name {
    font-size: 16rem;
    color: #000;
  }

  .search_data_box .data_item .right .rate_box {
    margin: 8rem 0;
  }

  .search_data_box .data_item .right .star_box .star {
    width: 14rem;
    height: 14rem;
  }

  .search_data_box .data_item .right .data_paly_game_desc {
    font-size: 10rem;
    color: #444;
  }

  .AdAAnchor_Bot {
    bottom: 0;
    position: fixed;
    width: 100%;
    padding: 2px 0;
  }

  .AdAAnchor_Bot #AdAAnchorBtn {
    top: -16px;
    position: absolute;
    padding: 1px 12px;
    font-family: sans-serif;
    font-size: 6px;
    border-radius: 3px 3px 0 0;
  }

  .AdAAnchor_Top {
    top: 0;
    position: fixed;
    width: 100%;
    padding: 2px 0;
  }

  .AdAAnchor_Top #AdAAnchorBtn {
    bottom: -16px;
    position: absolute;
    padding: 1px 12px;
    font-family: sans-serif;
    font-size: 6px;
    border-radius: 0 0 3px 3px;
  }

  #AdAAnchor,
  #AdAAnchorBtn {
    z-index: 999;
    background: #eee;
    border: 0px solid #eee;
    left: 0;
  }

  #AdAAnchorAd {
    width: -moz-max-content;
    width: max-content;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
  }

  #AdAAnchorBtn>i {
    border: solid #666;
    border-width: 0 2.5px 2.5px 0;
    display: inline-block;
    padding: 4px;
    position: relative;
    z-index: 999;
  }

  .AdA_bottomUp,
  .AdA_topDown {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    vertical-align: super;
    bottom: -6px;
  }

  .AdA_bottomDown,
  .AdA_topUp {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    vertical-align: super;
    bottom: 0px;
  }

  .websiteDesc {
    margin: 0px 10px;
    border-radius: 6em;
    /* background-color: #F4F4F4; */
    color: #000;
    margin-bottom: 20px;
  }

  .websiteDesc .websiteDescTitle {
    font-size: 18px;
    color: #000 !important;
    font-weight: 600;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .websiteDesc .websiteDescTitle .til {
    padding: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .websiteDesc .websiteDescTitle .til img {
    width: 40px;
    height: 40px;
  }

  .websiteDesc .websiteDescTitle .til a {
    display: inline-block;
    color: #000 !important;
    /* margin-top: 15px; */
    text-align: center;
    /* padding-left: 30px; */
  }

  .websiteDescDom {
    padding: 0px 10px 10px 10px;
  }

  .websiteDesc .websiteDescText {
    /* text-indent: 2em; */
    font-size: 14px;
    color: #444;
    margin: 8px;
  }

  /* .footer {
    padding-top: 15px;
  } */

  .container5 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    display: none;
  }

  .container51 {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .text-box {
    width: 100%;
    /* 占满父容器宽度 */
    max-width: 500px;
    /* 限制最大宽度 */
  }

  .text-box .title-box {
    font-size: 16px;
    font-weight: bold;
    color: #FF2449;
    margin-bottom: 10px;
  }

  .text-box .description-box {
    font-size: 14px;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .text-box .description-box p {
    margin: 5px 0;
    word-break: break-all;
  }

  .text-box .description-box .highlight-box {
    color: #FF2449;
    font-weight: bold;
  }

  .image-box {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .sidebar_browse {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sidebar_browse_group h2 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 0px !important;
  }

  .sidebar_browse_group .browse_filters {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    display: none;
  }

  .sidebar_browse_group {
    margin-top: 10px;
  }

  .sidebar_browse_group .browse_filters a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 4px;
    padding: 3px 10px;
    min-height: 27px;
    width: 50%;
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出部分用 ... 表示 */
  }

  .Privacy {
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .privacy-icon {
    width: 18px;
    height: 18px;
  }

  .Privacy a {
    color: #41495A;
  }

  .Category {
    color: #000 !important;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0rem 18rem;
    display: none;
  }
}

@media (min-width: 1980px) {

  .container.event-none * {
    pointer-events: none;
  }

  .container .main .flex3 .other_play_list_item .other_play_item {
    width: calc((100% - 30rem) / 7);
  }

  .header .left .logo_img .logo_img_icon {
    height: 28px;
    width: auto;
  }

  .banner-container {
    display: flex;
    gap: 20px;
    padding: 0px;
  }

  .container3111 {
    padding: 0;
  }

  .container4 {
    display: none;
  }

  .sb_title .flex_box {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 96px;
    width: 300px;
    margin-top: 13px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
  }


  .Category {
    display: none;
  }

  .search_pc {
    box-sizing: border-box;
  }

  .search_pc .search_box {
    border-radius: 5px;
    /* background-color: #3B3E4B; */
  }

  .search_pc .search_box .search_icon {
    width: 20px;
    height: 18px;
    padding: 12px;
  }

  .websiteDesc {
    padding: 10px;
    background-color: #F4F4F4;
    max-width: 1664px;
    margin-left: auto;
    margin-right: auto;
  }


  .search_pc .search_box .search_icon img {
    width: 100%;
    height: 100%;
  }

  .search_pc .search_box .search_input {
    width: calc(100% - 0rem);
    height: 4rem;
    position: relative;
  }

  .search_pc .search_box .search_input input {
    height: 93%;
    width: 90%;
    border: 0;
    background: transparent;
  }

  .search_pc .search_box .search_input input:focus-visible {
    outline: none;
  }

  .container .main .other_play_list_type .other_play_list_item {
    box-sizing: border-box;
    /* margin: 0 40px; */
    margin-top: 5px;
    padding: 0;
  }


  .search_pc .search_box .search_input .clear_icon {
    z-index: 2;
    position: absolute;
    right: 4rem;
    width: 5rem;
    height: 5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .search_pc .search_box .search_input .clear_icon img {
    width: 100%;
    height: 100%;
  }

  .header .right {
    /* width: 7rem; */
    height: 14px;
    padding: 0 0 0 24px;
    margin-right: 20px;
  }

  .header .right img {
    width: 100%;
    height: 100%;
  }

  .container .main .other_play_list_item .other_play_item {
    width: 12.4%;
    margin-bottom: 3rem;
    /* background-color: #292C37; */
    border-radius: 5px;
    margin: 2rem 2rem;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_rate .rate_box .star_box .star {
    width: 15px;
    height: 15px;
  }

  .container .main .other_play_list_item .other_play_item .other_play_info .play_name {
    width: 100%;
    /* margin-top: 10px; */
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
  }

  .play_btn {
    padding: 8px 22px;
    color: #FF2449;
    background-color: #fff;
    border: 1px solid #FF2449;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 10px;
    font-size: 18px;
  }
}