

.ai-normal-component {
    color: #fff;
}
.ai-normal-component .page-title {
    margin: 0 .5rem .4375rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid #fff0f030;
}
.ai-normal-component .top {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}
.ai-normal-component .title {
    flex: 1;
    font-size: .875rem;
}
.ai-normal-component .record {
    color: var(--primary-text-color);
    font-size: .75rem;
}

.ai-normal-component .list-box .list-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    column-gap: .4rem;
    row-gap: .625rem;
}
.ai-normal-component .list-box .card {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    gap: .3125rem;
}
.ai-normal-component .list-box .card .image-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}
.ai-normal-component .list-box img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}
.ai-normal-component .play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3rem;
    transform: translate(-50%, -50%);
    background-image: url(../../__base/images/ai/img/play-icon.webp);
    background-size: cover;
    aspect-ratio: 1;
    z-index: 2;
    cursor: pointer;
}
.ai-normal-component .list-box .card > span {
    font-size: .875rem;
    color: #959595;
}

.ai-normal-component .badge {
    position: absolute;
    top: 0.5rem;
    left: 0;
    padding: 0.2rem 0.4rem;
    border-radius: 3rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 0.65rem;
    font-weight: 500;
    background-image: linear-gradient(to left, #f79004, #ff3131);
}


.ai-normal-component .form-item {
    display: block;
    padding: .4375rem 0 .3125rem;
    color: #959595;
    font-size: .875rem;
    line-height: 1.25rem;
}

.ai-normal-component .choose-item-card .play-icon {
    display: none;
    width: 3.75rem;
}
.ai-normal-component .choose-item-card{
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    margin-bottom: .8125rem;
}
.ai-normal-component .choose-item-card img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.3rem;
    object-fit: contain;
} 

.ai-normal-component .choose-item-card img:not(.loading) {
    object-fit: contain;
}

.ai-normal-component .create-box {
    display: none;
}
.ai-normal-component .form-item{
    display: block;
    padding: .4375rem 0 .3125rem;
    color: #959595;
    font-size: .875rem;
    line-height: 1.25rem;
}
.ai-normal-component .upload-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1px dashed rgba(255, 240, 240, 0.3);
    border-radius: .375rem;
    background-color: #151515;
    height: 8rem;
}
.ai-normal-component .upload-box > .van-uploader {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ai-normal-component .upload-box .van-uploader__input-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    /* padding: 2rem 0; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ai-normal-component .upload-box .van-uploader__preview {
    margin-right: 0;
    margin-bottom: 0;
    height: 100%;
}
.ai-normal-component .upload-box .van-uploader__preview-image {
    width: 100%;
    height: 100%;
    display: block;
}
.ai-normal-component .upload-box  .van-uploader__wrapper {
    justify-content: center;
    height: 100%;
}
.ai-normal-component .upload-box .van-uploader__preview-image img {
    border-radius: 8px;
}
.ai-normal-component .upload-box .van-uploader input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.ai-normal-component .upload-icon-tip{
    width: 3rem;
    height: 3rem;
}
.ai-normal-component .upload-text-tip{
    font-size: .75rem;
    color: #959595;
}
.ai-normal-component .notice-part{
    margin-top: 1.25rem;
    line-height: 1.0625rem;
    font-size: .75rem;
    color: #959595;
}
.ai-normal-component .notice-part .title {
    font-size: 0.7rem;
    line-height: 1.25rem;
    padding-bottom: .3125rem;
    color: #959595;
}
.ai-normal-component .notices {
    display: flex;
    color: #959595;
    padding: 1.25rem 2.1875rem 0;
    justify-content: space-between;
    white-space: nowrap;
}
.ai-normal-component .notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ai-normal-component .notice img {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
}
.ai-normal-component .notice span{
    margin-top: 0.3rem;
    font-size: .75rem;
}
.ai-normal-component .start-button{
    width: 100%;
    line-height: 2.25rem;
    font-size: .875rem;
    color: #000;
    font-weight: 600;
    background-color: #f79004;
    text-align: center;
    border-radius: .375rem;
    margin-top: 2.1875rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .ai-normal-component .page-title {
        font-size: 1.5rem;
        margin: 0 1.3rem .875rem;
        padding-top: 1.3rem;
    }
    .ai-normal-component .list-box .card {
        gap: .625rem;
    }
    .ai-normal-component .badge {
        font-size: .75rem;
        padding: 0.3rem 0.52rem;
        top: .625rem;
    }
    .ai-normal-component .title {
        font-size: 1.2rem;
    }
    .ai-normal-component .record {
        font-size: 1rem;
    }
    .ai-normal-component .form-item {
        font-size: 1rem;
        padding: .875rem 0 .625rem;
    }
    .ai-normal-component .choose-item-card {
        aspect-ratio: 1;
    }
    .ai-normal-component .choose-item-card .play-icon {
        width: 4rem;
    }
    .ai-normal-component .form-item{
        font-size: 1rem;
        padding: .875rem 0 .625rem;
    }
    .ai-normal-component .notices {
        padding-left: 0;
        gap: 3.375rem;
        font-size: .875rem;
        justify-content: flex-start;
    }
    .ai-normal-component .list-box .card > span{
        font-size: .875rem
    }
    .ai-normal-component .notice-part{
        margin-top: 1.25rem;
        line-height: 1.25rem;
        font-size: .875rem;
        color: #959595;
    }
    .ai-normal-component .notice-part .title{
        font-size: 1rem;
        padding-bottom: .625rem;
    }
    .ai-normal-component .upload-icon-tip{
        width: 2.5rem;
        height: 2.5rem;
    }
    .ai-normal-component .upload-box{
        /* padding: 2.5rem 0; */
        height: 12.625rem;
    }
    .ai-normal-component .top{
        padding-bottom: 1rem;
    }
    .ai-normal-component .list-box .card{
        gap: .625rem;
    }
    .ai-normal-component .list-box{
        column-gap: .625rem;
        row-gap: 1rem;
    }
}



/* 支付弹窗 start */
/* 支付提示、弹框 */
.ai-pay {
}
.ai-pay .pay-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    -webkit-backdrop-filter: blur(0.25rem);
    backdrop-filter: blur(0.25rem);
    background-color: #000;
    z-index: 99;
}
.ai-pay .content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 22.25rem;
    z-index: 99;
    height: 15.93rem;
    border-radius: 0.625rem;
    background-color: #151515;
    overflow: hidden;
}
.ai-pay .content .close {
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
    cursor: pointer;
}
.ai-pay .content .title {
    margin-top: 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.ai-pay .content .msg {
    margin-top: 0.625rem;
    margin-bottom: 3.125rem;
    font-size: 1rem;
    text-align: center;
    color: #959595;
}
.ai-pay .content .butns {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}
.ai-pay .content .butns .butn {
    width: 9.56rem;
    height: 3.125rem;
    line-height: 3.125rem;
    text-align: center;
    border-radius: 0.375rem;
    border: solid 0.0625rem #ff9000;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f79004;
    box-sizing: border-box;
}
.ai-pay .content .butns .butn.act {
    background-color: #ff9000;
    color: #000;
}
.ai-pay-cash .content {
    height: 20.5rem;
}
.ai-pay-cash .content .detail {
    margin: 1.875rem 0;
}
.ai-pay-cash .content .detail .item {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0.5625rem 0.625rem;
    width: 17.8125rem;
    border-radius: 0.375rem;
    border: solid 0.03125rem #373737;
    background-color: #212121;
}
.ai-pay-cash .content .detail .item + .item{
    margin-top: 0.9375rem;
}
.ai-pay-cash .content .detail .name {
    font-size: 1rem;
    color: #959595;
}
.ai-pay-cash .content .detail .num {
    font-size: 1rem;
    color: #fff;
}
.ai-pay-cash .content .detail .butn {
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
    color: #f3951a;
    cursor: pointer;
}
.ai-pay-cash .content .go-pay {
    margin: 0 auto;
    width: 17.8125rem;
    height: 3.125rem;
    line-height: 3.125rem;
    text-align: center;
    border-radius: 0.375rem;
    background-color: #ff9000;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

/* 桌面样式 */
@media (min-width: 768px) {
    .ai-pay .content {
        width: 30rem;
    }
    .ai-pay .content .butns .butn {
        width: 10.1875rem;
    }

    .ai-pay-cash .content .detail .item {
        width: 24.9375rem;
    }
    .ai-pay-cash .content .go-pay {
        width: 24.9375rem;
    }
}

/* 支付弹窗 end */

.modal-container-dplayer{
    width: 60rem !important;
    height: 60vh !important;
}

/* 移动端 */
@media (max-width: 620px) {
    .modal-container-dplayer {
        height: 30rem !important;
    }
}