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

.player {
     width: 100%;
     height:350px ;
}

.player #banner .swiper-slide {
    overflow: hidden;
 }
 .player #banner .swiper-slide img {
    width: 100%;
    height: 350px;
 }
 .player .thumb-list {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 5%;
 }
 .player .thumb {
    width: 20%;
    margin-left: 4%;
    float: left;
 }
 .player .thumb .swiper-slide img {
    width: 100%;
    display: block;
 }

 
.m-category {
    display: flex;
    background-color: rgb(255, 255, 255);
    justify-content: space-between;;
    margin: 10px 10px 10px 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid   rgb(223, 223, 223);

}

.m-category .iconfont{
    font-size: 20px;
    margin-right: 10px;
  }
  .m-category .m-category-a {
      font-size: 18px;
      font-weight: bolder;
  }

.category-info{
  width: 250px;
  text-align: right;
  font-size: 12px;
  font-weight: bolder;
  padding-top: 5px;
}

.episodes{
    display: flex;
    flex-flow:column wrap;

}

.episodes-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(129, 127, 127);
    border-radius: 10px;
    margin: 5px 20px 0px 20px;
    height: 20px;
    padding: 20px;
    margin-bottom: 10px;
}
.episodes-item span{
  font-size: 16px;
  font-weight:bolder;

}
.episodes-item .episodes-title{
    display:inline-block;
    width: 150px;
    margin: 0px 10px 0 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

 
}
.episodes-item  .iconfont{
    font-size: 22px;
    margin: 5px;

}
.drama-info{
    margin-top: 10px;
}
.drama-info p{
  padding:0 20px;
  line-height: 1.5;
  font-size: 16px;
}


.show-tag .tag-info{
    display: flex;
    flex-flow:row wrap;
    margin-top: 10px;
  
}
 
.tag-info span{
   font-size: 16px;
   border: 1px solid rgb(234, 231, 231);
   border-radius: 20px;
   padding: 5px 20px;
   margin: 5px 10px;
}


.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: 5px;
}
.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);
}


  