*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body {
    color: #171717;
    font-family: LXGW WenKai,Arial,Helvetica,sans-serif;
    overflow-y: auto;
    scrollbar-width: none;
    line-height: 1.6;
    font-size: 16px;
}

code {
    font-family: JetBrains Mono,LXGW WenKai,monospace;
    border-radius: 6px;
}

a{
    color:#333;
    text-decoration: none;
}

a:hover {
    color: #00BBCC;
    text-decoration: none;
}

li{
    margin-left:20px;
}

.container{
    width:960px;
    max-width: 100%;
    margin: 0 auto;
}

.button{
    all: unset;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    border:solid 1px #333;
    padding:6px 15px;
    white-space: nowrap;
    transition: all .2s;
    cursor: pointer;
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 10%);
}

.button:hover{
    background-color: #f3f4f6;
}

.button svg{
    width: 1em;
    height: 1em;
    margin-right: 5px;
}

.main{
    padding-top: 70px;
}

.card{
    margin:30px 0;
    box-shadow: 0 0 4px #0000003b;
    border-radius: 12px;
}

.card-head{
    padding:25px;
    padding-bottom: 0;
    display: flex;
    gap:20px;
    justify-content: space-between;
    align-items: center;
}

.card-head h3{
    font-size: 24px;
}

.card-head .sub{
    color:rgb(75, 85, 99);
}

.card-content{
    margin-top: -10px;
    padding: 25px;
    color:rgb(55, 65, 81);
}

.statistics{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}

.statistics li{
    background-color: #f3f4f6;
    border-radius: 6px;
    list-style: none;
    margin-left: 0;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statistics li span{
    background-color: #e5e7eb;
    border-radius: 3px;
    float: right;
    font-size: 14px;
    padding:2px 6px;
}

.copy-code svg.success{
    display: none;
}

.copy-code.good svg.copy{
    display: none;
}

.copy-code.good svg.success{
    display: inline-block;
}

.copyright{
    text-align: center;
    padding: 40px 0;
}

/* 下载按钮样式 */
.down_button {
    display: inline-block;
    padding: 4px 10px;
    background-color: #00BBCC; /* 主色调 */
    color: white;
    border: none;
    border-radius: 6px; /* 圆角 */
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease; /* 平滑过渡效果 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 添加深度感 */
}

/* 悬停效果 */
.down_button:hover {
    color: white;
    background-color: #009CAA; /* 加深背景色 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* 阴影增强 */
}

/* 点击效果 */
.down_button:active {
    transform: translateY(1px); /* 按下效果 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.2); /* 阴影减弱 */
}

/* 聚焦状态 */
.down_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,156,170,0.3); /* 蓝色发光效果 */
}

/* 验证码容器样式 */
.captcha-container {
    display: flex;
    align-items: center; /* 垂直居中 */
    gap: 10px; /* 输入框和验证码图片之间的间距 */
}

/* 验证码输入框样式 */
.captcha-container input {
    flex: 1; /* 输入框占据剩余空间 */
}

/* 验证码图片样式 */
.captcha-container img {
    cursor: pointer;
    height: 40px; /* 设置验证码图片高度 */
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width:960px){
    .container{
        padding: 0 20px;
    }
}

@media (max-width:600px){
    .statistics{
        grid-template-columns: repeat(1,1fr);
    }
}