.btn-watch {
	display: inline-block;
	padding: 2px 15px;
	background-color: #e67700;
	/* 红色背景 */
	color: white;
	text-decoration: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
}
.sven_match__item {
	padding: 3px;
	border-bottom: 1px solid gray !important;
	margin: 3px 0px;
}
 @media screen and (max-width: 1200px) {
.sven_match__item {
	font-size: 14px;
	padding: 10px 0px;
	border-bottom: 1px solid gray !important;
	margin: 10px 0px;
}
}
 @keyframes spring-animation {
 0% {
 transform: scale(1);
}
 50% {
 transform: scale(1.1);
}
 100% {
 transform: scale(1);
}
}

.match_filter>li>a {
	display: inline-block;
	padding: 6px 8px;
	border-radius: 6px;
	color: #000;
}
.match_filter>.active {
	background: #6502a7;
}
.match_filter>.active>a {
	color: #fff;
}

.carousel {
	position: relative;
	/* width: 80%; */
	margin: 0 auto;
	overflow: hidden;
}
.carousel-inner {
	display: flex;
	transition: transform 0.5s ease-in-out;
}
.carousel-item {
	min-width: 100%;
	box-sizing: border-box;
}
.carousel-item img {
	width: 100%;
	display: block;
}
.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}
.carousel-control.prev {
	left: 0;
}
.carousel-control.next {
	right: 0;
}

  @media screen and (min-width: 1200px){
      .sven_header{
          padding: 24px 0;
      }
  }
  .sven_header .dv-spo-search {
    margin-top: -15px;
    position: relative;
}
.sven_header .dv-spo-search ul{
    overflow: hidden;
    height: 36px;
    display: block;
}
.sven_header .dv-spo-search li {
    float: left;
    font-size: 14px;
    position: relative;
    height: 36px;
    line-height: 36px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    border-radius: 4px 4px 0px 0px;
}
.sven_header .dv-spo-search li.on {
    background: rgba(137, 8, 151, 0.98);
    color: #fff!important;
}
.sven_header .dv-spo-search .dv-spo-txt {
    width: 330px;
    height: 40px;
    padding: 0 50px 0 20px;
    border: 2px solid rgba(240, 81, 0, 0.56);
    background-color: #fff;
}
.sven_header .dv-spo-search .dv-spo-submit {
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 100px;
    height: 40px;
    background: rgba(137, 8, 151, 0.98) url('/template/pc//ycnh/images/ss.png') no-repeat center/22px;
    cursor: pointer;
    border: 0;
}
@media screen and (max-width: 1200px){
  .search-box{
    display: none;
  }
  .gameItem{
      margin: 2vw !important;
      width: 15vw !important;
  }
  .gameItem img{
      height: 15vw !important;
  }
  .sven_aside{
      padding-right: 0 !important;
  }
}
.overflow-hidden {  
  width: 100%;          /* 设置容器宽度 */  
  overflow: hidden;     /* 隐藏溢出内容 */  
  white-space: nowrap;  /* 不换行 */  
  text-overflow: ellipsis; /* 溢出时显示省略号 */  
}


/* 核心：PC端默认隐藏导航 */
.mobile-nav, .nav-list, .overlay {
  display: none;
}

/* 移动端（屏幕宽度 ≤ 768px）显示导航 */
@media (max-width: 768px) {
  .mobile-nav, .nav-list, .overlay {
    display: block;
  }

  /* 导航栏容器 */
  .mobile-nav {
 position: fixed; /* 关键：固定定位，脱离文档流贴紧顶部 */
top: 0; /* 固定在屏幕最顶部 */
left: 0; /* 左右贴满屏幕 */
right: 0;
background-color: #6502a7;
padding: 0 15px;
height: 40px;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 9999; /* 关键：提高层级，避免被其他内容遮挡 */
  }

  /* 网站Logo */
  .nav-logo {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  
      .nav-logo img {
  height:40px;
  }

  /* 汉堡菜单按钮 */
  .menu-btn {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 10;
    cursor: pointer;
  }

  /* 汉堡菜单线条 */
  .menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
  }
  .menu-btn span:nth-child(1) { top: 5px; }
  .menu-btn span:nth-child(2) { top: 14px; }
  .menu-btn span:nth-child(3) { bottom: 5px; }

  /* 菜单展开时的按钮动画 */
  .menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* 导航菜单列表 */
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background-color: #2c2c2c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: width 0.3s ease;
    z-index: 99999;
    overflow: hidden;
  }

  /* 菜单展开状态 */
  .nav-list.active {
    width: 80%;
    max-width: 300px;
	 z-index: 999999;
  }

  /* 导航链接样式 */
  .nav-list a {
    color: #fff;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  .nav-list a:hover {
    background-color: #444;
  }

  /* 遮罩层 */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
	z-index:99999;
  }
  .overlay.active {
    opacity: 1;
    pointer-events: auto;
	
  }
}