﻿
/* layui-layer 弹窗样式 */
.layui-layer-border {
    border-radius: 10px;
}

.layui-layer-setwin i {
    font-size: 20px;
    font-weight: bold
}

.layui-layer-title {
    font-size: 16px;
    font-weight: bold
}

.layui-layer-title {
    border-bottom: 0px solid #f0f0f0;
}

.layui-layer-content {
    position: relative;
}


/* 宽度小于768px 的屏幕使用该样式 */
@media screen and (max-width: 768px) {
    .recordList {
        width: 99%
    }

    .historyList {
        width: 99%
    }

    .softwareList {
        width: 99%
    }

    .lacolList {
        width: 99%
    }

    .laContainer {
        width: 98%;
        margin-left: 2%
    }
}
}


@media screen and (min-width: 768px) and (max-width: 992px) {
    .recordList {
        width: 42%
    }

    .historyList {
        width: 99%
    }
    .softwareList {
        width: 99%
    }
    .lacolList {
        width: 49%
    }
    .laContainer {
        width: 90%;
        margin-left: 5%
    }
}


@media screen and (min-width: 992px) and (max-width: 1200px) {
    .recordList {
        width: 45%
    }

    .historyList {
        width: 49%
    }
    .softwareList {
        width: 32%
    }
    .lacolList {
        width: 49%
    }

    .laContainer {
        width: 80%;
        margin-left: 10%
    }
}

/* 宽度大于 1001px 的屏幕使用该样式 */
@media screen and (min-width: 1200px) {
    .recordList {
        width: 22%
    }

    .historyList {
        width: 49%
    }
    .softwareList {
        width: 32%
    }

    .lacolList {
        width: 49%
    }

    .laContainer {
        width: 60%;
        margin-left: 20%
    }
}


/* 垂直方向强制捕捉 滚动 */
.scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 50vh;
}
/* 隐藏 滚动条 */
.scroll-container {
    scrollbar-width: none;
}



/*	----------------加载动画样式------------------*/
.spinner-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* 基础旋转圆环 */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f8f8f8;
    border-radius: 50%;
    border-top: 4px solid #fd4e55;
    animation: spin 1.2s linear infinite;
}

/* 动画定义 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*layui-layer  弹窗定位 下方 按扭 */
.pop-up {
    padding-top: 15px;
    padding-right: 10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #fff;
    width: 100%;
    padding-bottom: 20px
}



/*AI生成 按钮动画*/
.loading {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* AI生成 动画 开始和结束时完全不透明 */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.blink-text {
    animation: blink 1s infinite;
}




/*	----------------下载进度---样式---------------*/
.progress-containerV2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.progress-boxV2 {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px;
    width: 110px;
    height: 110px;
    color: #ffffff;
}

    .progress-boxV2 .text {
        margin-bottom: 10px;
    }





.loading {
    height: 20px;
    width: 20px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*	----------------下载进度---样式---结尾------------*/