:root {
    --main-color: rgb(255, 204, 255);
    --bg-color: rgba(121, 145, 142, 0.4);
    --text-color: #ffffff;
    --link-border: 2px;
}

/* 按钮容器样式 */
.button-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background: url("http://srcbs.cn/cyapi.php") no-repeat center center fixed;
    background-size: cover;
    overflow-y: auto;
    min-height: 100vh;
    animation: pageFade 1s ease-out; /* 保留动画，但优化效果 */
}

body {
    display: block;
    flex-direction: column;
    justify-content: space-between;
}

..links {
    padding: 0;
    margin: 0;
    list-style: none;
}
.links ul#urllist li {
    display: flex;        /* 启用 Flex 布局 */
    align-items: center;  /* 垂直居中 */
    gap: 10px;            /* 元素间距 */
    margin-bottom: 8px;   /* 列表项之间的间距 */
    padding: 5px 0;       /* 项内边距 */
}
.links ul#urllist li a {
    text-decoration: none; /* 移除链接下划线 */
    color: var(--text-color);           /* 链接颜色 */
    flex-grow: 1;          /* 让链接占据剩余空间 */
}
.links .layui-btn {
    margin: 0 !important;  /* 覆盖 LayUI 的默认外边距 */
    flex-shrink: 0;        /* 防止按钮被压缩 */
}
/* 保留原有容器样式 */
.container {
    border: none;
    border-radius: 20px;
    padding: 20px 10px;
    margin: 0 2px;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    background-color: transparent;
    box-shadow: none;
}

.avatar {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform 1s;
}

.avatar:hover {
    transform: rotate(360deg);
}

.main-link {
    display: block;
    border: var(--link-border) solid var(--main-color);
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--text-color);
    text-decoration: none;
    margin: 3px 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.sub-link {
    display: block;
    border: var(--link-border) dashed var(--main-color);
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--text-color);
    text-decoration: none;
    margin: 3px 2px;
    font-size: 0.9em;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.2);
}

.links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(255, 204, 255, 0.5);
}

.snowflake {
    position: fixed;
    color: #fff;
    font-size: 1.2em;
    pointer-events: none;
    animation: fall linear infinite;
    text-shadow: 0 0 5px var(--main-color);
    z-index: 0;
}

#output {
    font-size: 15px;
    width: 97%; /* 或者调整为更小的百分比 */
    height: 120px;
    color: #fff;
    margin: 10px 7px 10px 7px;
    text-shadow: 0 0 10px rgba(255, 204, 255, 0.8);
    font-family: "Microsoft JhengHei", "新細明體", sans-serif;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    box-sizing: border-box; /* 重要的调整 */
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    margin-top: 15px;
}

.main-content {
    width: 98%;
    display: flex;
    flex-direction: column; /* 设置为垂直排列 */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px); /* 设置背景模糊效果 */
    border-radius: 10px; /* 可选：添加圆角 */
    border: 2px solid rgba(255, 255, 255, 0.5); /* 可选：添加边框 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 可选：添加阴影 */
    position: static !important; /* 强制设置为静态 */
}

#urllist {
    list-style: none; /* 去掉项目符号 */
    padding: 0; /* 去掉默认的缩进 */
}
#urllist li {
    display: block; /* 将<li>设置为块级元素 */
}

/* 底栏样式 */
.footer-content {
    width: 98%;
    display: flex;
    flex-direction: column; /* 设置为垂直排列 */
    background-color: rgba(200, 200, 200, 0.5); /* 半透明浅灰色背景 */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px); /* 设置背景模糊效果 */
    border-radius: 10px; /* 可选：添加圆角 */
    border: 2px solid rgba(255, 255, 255, 0.5); /* 可选：添加边框 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 可选：添加阴影 */
    position: static !important; /* 强制设置为静态 */
     color: #002a54;
     text-decoration: none;
     font-weight: bold;
}

.beian-link{
     color: #002a54;
     text-decoration: none;
     font-weight: bold;
}

.time-container, .beian-container {
    text-align: center;
}

@keyframes fall {
    0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0.3; }
}

@keyframes containerGlow {
    0%, 100% { box-shadow: 0 0 30px var(--main-color); }
    50% { box-shadow: 0 0 50px var(--main-color); }
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* 测速按钮样式 */
/* 基础按钮样式 */
.layui-btn {
    display: inline-block; /* 按钮以行内块的形式显示 */
    vertical-align: middle; /* 垂直居中对齐 */
    height: 38px; /* 按钮高度 */
    line-height: 38px; /* 行高与按钮高度一致，确保文字垂直居中 */
    padding: 0 18px; /* 按钮左右内边距 */
    background-color: rgba(22, 186, 170, 0.5); /* 半透明背景，颜色为 #16baaa，透明度为 0.5 */
    color: #fff; /* 按钮文字颜色 */
    border: none; /* 无边框 */
    border-radius: 2px; /* 圆角边框 */
    cursor: pointer; /* 鼠标悬停时显示为手型 */
    -webkit-user-select: none; /* 禁止用户选择文本（针对 Webkit 浏览器） */
    -moz-user-select: none; /* 禁止用户选择文本（针对 Firefox 浏览器） */
    -ms-user-select: none; /* 禁止用户选择文本（针对 IE 浏览器） */
}

/* 鼠标悬停时的样式 */
.layui-btn:hover {
    opacity: 0.8; /* 按钮整体透明度变为 0.8 */
}

/* 按钮被点击时的样式 */
.layui-btn:active {
    opacity: 1; /* 按钮整体透明度变为 1 */
}

/* 小尺寸按钮样式 */
.layui-btn.layui-btn-sm {
    height: 30px; /* 小按钮高度 */
    line-height: 30px; /* 小按钮行高 */
    padding: 0 10px; /* 小按钮左右内边距 */
    font-size: 12px; /* 小按钮文字大小 */
}

/* 主按钮样式（无背景色，有边框） */
.layui-btn.layui-btn-primary {
    border-color: #d2d2d2; /* 边框颜色 */
    background: none; /* 无背景色 */
    color: #002a54; /* 文字颜色 */
}

/* 主按钮鼠标悬停时的样式 */
.layui-btn.layui-btn-primary:hover {
    border-color: #16baaa; /* 边框颜色变为 #16baaa */
    color: #333; /* 文字颜色变为深灰色 */
}

/* 带边框的按钮样式 */
.layui-btn.layui-border {
    border-width: 1px; /* 边框宽度 */
    border-style: solid; /* 边框样式为实线 */
    border-color: #eee; /* 边框颜色 */
}

.layui-border-red{
    border-width:1px;
    border-style:solid;
    border-color:# ff5722!important;
    color: #ff5722!important
    }

.layui-border-green {
    border-width:1px;
    border-style:solid;
    border-color:# ff5722!important;
    color: #16baaa!important
}

        /* 星星基础样式 */
        .star {
            position: absolute;
            pointer-events: none; /* 防止星星遮挡鼠标操作 */
            background: #fff;
            border-radius: 50%;
            mix-blend-mode: screen; /* 混合模式增强视觉效果 */
            animation: starMove 1s ease-out forwards;
            z-index: 9999; /* 新增层级设置，需大于内容容器 */
        }

        /* 星星动画效果 */
        @keyframes starMove {
            0% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
            100% {
                opacity: 0;
                transform: scale(0.2) translateY(-100px);
            }
        }
