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;
}

.video-lists {
    background-color: rgb(255, 255, 255);
    align-items: flex-start; 
}


.movie-item {
    background-color:#F1F3F4;
    display: flex;
    margin: 20px 15px;
    border-radius: 20px;
 
}
.movie-item img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 10px;
}
.movie-item-details {
    flex: 1;
    padding-top: 10px;
    width: 200px;
}
.movie-item h5 {
    margin: 0 0 5px 0 ;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

 }

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

}

    
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;
}