body,html{
    font-size: 14px;
    background-color: #1b171c;
    overflow-x: hidden; /* 隐藏横向滚动条 */
}
@media (min-width: 1080px) {
    .index {
        width: 1080px;
        margin: 0 auto;
    }
}
@media (max-width: 1080px) {
    .index {
        width: 100%; /* 或者其他你想要的百分比值 */
        margin: 0 auto;
    }
}
.search{
    margin-top: 10px;
    padding: 0px 20px;
}
.input_search{
    width: 94%;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 16px;
    background-color: #2f2b2f;
    border: 0;
    border-radius: 20px;
    padding: 0px 25px;
    margin: 0 auto;
}
.input_search::-webkit-input-placeholder {
    color: #aaa;
    font-size: 14px;
}
.nav{
    width: 100%;
    margin-top: 15px;
}
.nav li{
    float: left;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 20%;
    cursor: pointer;
}
.nav li a{
    color: #aaa;
}
.title_actor{
    width: 100%;
    margin-top: 15px;
    margin-left: 15px;
}
.title_actor li{
    float: left;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 18%;
    cursor: pointer;
    background-color: #272328;
    border-radius: 10px;
    margin: 20px 0px 0px 10px;
}
.title_actor li a{
    color: #FFF;
}
.taglist{
    width: 100%;
    margin-top: 15px;
    margin-left: 15px;
}
.taglist li{
    float: left;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 15%;
    cursor: pointer;
    background-color: #ff65651a;
    border-radius: 10px;
    margin: 10px 0px 0px 10px;
}
.taglist li a{
    color: #FF6565;
}
.column{
    margin: 15px 10px 5px 10px;
    width: 100%;
}
.columnname, .more{
    height: 20px;
    line-height: 20px;
}
.columnname{
    color:#fff;
    padding-left: 10px;
    border-left: 5px solid #ff5974;
    border-radius: 5px;
}
.columnname a{
    color:#fff;
}
.more{
    margin-right: 20px;
}
.more a{
    color:#aaa;
}
.actor {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* 当元素多于一行时换行 */
    justify-content: space-between; /* 在每一行上平均分布子元素 */
    margin-top: 20px;
    text-align: center;
}
.actorpic {
    flex: 1 0 24%; /* 设置每个 li 元素为两个元素的宽度的 24%，以确保同一行显示两个元素 */
    margin-bottom: 18px; /* 设置 li 之间的垂直间距 */
}
.actorpic img {
    width: 80px; /* 图片宽度为父元素 li 的百分比 */
    height: 80px;  /*保持宽高比 */
    border-radius: 50%;
    margin: 0 auto;
}
.actorpic a{
    color: #FFF;
}
.item {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* 当元素多于一行时换行 */
    justify-content: space-between; /* 在每一行上平均分布子元素 */
    margin-top: 20px;
}
.itempic {
    flex: 1 0 48%; /* 设置每个 li 元素为两个元素的宽度的 48%，以确保同一行显示两个元素 */
    margin-bottom: 5px; /* 设置 li 之间的垂直间距 */
}
.itempic:nth-child(odd)  {
    margin-right: 5px;
}
.itempic:nth-child(even)  {
    margin-left: 5px;
}
.itempic img {
    width: 100%; /* 图片宽度为父元素 li 的百分比 */
    /*height: 294px;  保持宽高比 */
    border-radius: 10px;
}
.itempic a{
    color: #eaf1ff;
}
.page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 10px 50px 10px;
    list-style: none;
    display: flex;
}
.page1{
    border-radius: 5px;
    margin-left: 10px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #FFF;
    width: 30%;
}
.page2{
    border-radius: 5px;
    margin-left: 10px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 55%;
}
.pagen{
    text-align: center;
    height: 30px;
    border-radius: 5px;
    width: 40%;
    vertical-align: top;
}
.page2 button{
    color: #FFF;
    background-color: #ff5974;
    height: 30px;
    border-radius: 5px;
    margin-left: 10px;
    width: 40%;
    vertical-align: top;
}

.page li a {
    color: #000;
}
.bottom {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1b171c;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    gap: 20px; /* 两个按钮之间的间距 */
}

.bottom_index {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40vw;  /* 整个屏幕宽度的45% */
    height: 100%;
    text-decoration: none;
    /* color: #333; */
}
.bottom a{
    color: #FFF;
}

.img_b {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.img_b img {
    width: 100%;
    height: 100%;
}

.bottom_index span {
    font-size: 12px;
}
.artplayer-app {
    width: 96%;
    height: 540px;
    margin: 0 auto;
    margin-top: 15px;
}
.title{
    color: #FFF;
    font-size: 16px;
    margin: 10px 0px 30px 30px;
}
#main {
    height: calc(100vh - 88px);
    display: flex;
    justify-content: center;
    align-items: center;
}
#player {
    width: 100%;
    height: auto;
    max-height: 100%;
}
#buttons {
    height: 40px;
    padding: 10px;
    margin: 10px auto;
    text-align: center;
}
#switch,#next,#f {
    background: #FFF;
    background: linear-gradient(to bottom, #FF2,#FB0);
    color: #AF2E08;
    font-size: 16px;
    font-weight: bold;
    height: 40px;
    padding: 0px 20px;
    margin: 0px 35px;
    border-radius: 20px;
}
#f a{
    color: red;
    font-size: 16px;
    font-weight: bold;
}
/* 遮罩层样式 */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);  /* 半透明黑色 */
    z-index: 999;  /* 遮罩层的z-index，确保其在其他元素之上 */
}
/* 设置div在页面中央展示 */
#topDiv {
    position: fixed;
    top: 0;  /* 固定在页面顶部 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 通过transform来实现居中 */
    width: 80%;
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    text-align: center;
    box-sizing: border-box; /* 包括padding在内计算宽度 */
    z-index: 1000;  /* 确保div显示在其他元素之上 */
    border-radius: 15px;
}
/* 按钮样式 */
#closeButton {
    width: 55%;
    height: 40px;
    padding: 5px 10px;
    margin-left: 20px;
    background-color: #721c24;
    color: white;
    border: none;
    cursor: pointer;
}
.user_container_ul{
    text-align: center;
    width: 95%;
    max-width: 1080px;
    position: fixed;
    bottom: 0;
    background-color: #110f11;
    border-radius: 10px;
    padding: 10px 0px;
  }
.user_container_ul li{
    margin: 10px 0;
}
.user_container_ul h1{
    color: #fff;
    font-size: 25px;
    text-align: left;
    margin: 10px 40px;
}
.user_container_ul input{
    width: 90%;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    background-color: #1d1c1d;
    margin: 5px;
}
.user_container_ul input::placeholder {
    color: #9399a5;
  }
.user_container_ul input[type="submit"]{
    margin: 55px 0px 15px 0px;
    color: #fff3f3;
    background-color: #ff6565;
    font-size: 16px;
    cursor: pointer;
}
.user_container_ul li a{
    color: #d65757;
    font-size: 16px;
}
.user_container_ul img{
    display: inline-block;
    margin: 10px 0px 20px 0px;
}
.user_container_ul li span{
    margin: 66px;
}

