﻿
/* 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%
    }
}


@media screen and (min-width: 768px) and (max-width: 1120px) {
    .recordList {
        width: 49%
    }

    .historyList {
        width: 99%
    }
    .softwareList {
        width: 99%
    }
    .lacolList {
        width: 49%
    }
}


@media screen and (min-width: 1120px) and (max-width: 1400px) {
    .recordList {
        width: 32%
    }

    .historyList {
        width: 49%
    }
    .softwareList {
        width: 32%
    }
    .lacolList {
        width: 49%
    }
}

/* 宽度大于 1001px 的屏幕使用该样式 */
@media screen and (min-width: 1400px) {
    .recordList {
        width: 24%
    }

    .historyList {
        width:32%
    }
    .softwareList {
        width: 32%
    }

    .lacolList {
        width: 49%
    }
}


/* 垂直方向强制捕捉 滚动 */
.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 #667eea;
    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;
}