body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background-color: rgb(255, 255, 255);
}
a{
    text-decoration: none;
    color: inherit;
}

header{
  display: flex;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(234, 231, 231);
}
header .iconfont{
  margin-top: 13px;
  margin-left: 5px;
  font-size: 18px;

}
header samp{
  height: 30px;
  width: 50px;
 }
.header-title{
   flex: 1;
   height: 30px;
   padding-top: 10px;
   text-align: center;
   font-size: 16px;
   font-weight: bolder;
}

.group {
  display: flex;
  justify-content: space-around;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  padding: 5px ;
  margin: 5 px;

}
.group  span{
  font-size: 16px;
  padding: 5px 20px;
}
.group-default{
     border: 2px solid rgb(234, 231, 231);
}
.group a {

  color: rgb(11, 11, 11);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.video-lists {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  margin: 5px;
  padding: 0 5px 5px 5px;
  align-items: flex-start; 
}


.movie-item {
  display: flex;
  margin-top: 5px;
  margin-bottom: 10px;
}
.movie-item img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 10px;
}
.movie-item-details {
  flex: 1;
  width: 200px;
}
.movie-item h5 {
  margin: 0 0 5px 0 ;
  font-size: 16px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.video-lists .tag span{
  border: 1px solid rgb(234, 231, 231);
  border-radius: 5px;
  padding:  0 5px 0 5px;
  font-weight: bolder;
  font-size: 12px;

}
.movie-item p {

  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: bolder;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em; /* 根据需要设置行高 */
  max-height: 3em; /* 行高乘以行数，这里限制为两行 */

}
.movie-item .message{
  margin-top: 5px;
  font-size: 9px;
  color:  rgb(163, 159, 159);
 }
    
footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  
}
footer span{
     margin-left: 50px;
     margin-right: 50px;
     padding: 10px 20px;
     font-size: 14px;
    background-color:#7EAB51;
    color: #fff;
    border-radius: 5px;

}
footer span a{
  text-decoration: none;
  color: inherit;

}

.disabled {
    background-color: #ccc;
}