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

.introduce{
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 0 5px 0 10px;
}
.introduce h5{
   font-size: 14px;
   margin: 0 0 10px 0;
   padding: 0;
}
.introduce samp{
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: bolder;

}



.search{
    margin-top: 20px;
    text-align: center;
    }

    .search-input {

            flex: 1; /* 让输入框占据剩余空间 */
            padding-left:10px;
            border-radius: 20px 0 0 20px;
            font-size: 14px;
            border: none; /* 去掉边框线 */
            background-color: rgb(241, 240, 240);
            height: 30px;
            width: 75%;
        }
    
        .search-button {
            border: none; /* 去掉边框线 */
            border-radius: 0  20px 20px   0px;
            background-color: #007bff;
            color: white;
            font-size: 16px;
            width: 50px;
            height: 30px;
        }
   .hot {
        display: flex;
        justify-content: space-around;
        background-color: rgb(255, 255, 255);
        border-radius: 5px;
        padding: 5px ;
        margin: 5px;

    }
    .hot 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: 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;
}