*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body {
    color: #171717;
    font-family: LXGW WenKai Screen,Arial,Helvetica,sans-serif;
    overflow-y: auto;
    scrollbar-width: none;
    line-height: 1.6;
    font-size: 16px;
}
li{
    margin-left:20px;
}
code {
    font-family: JetBrains Mono,LXGW WenKai Screen,monospace;
    border-radius: 6px;
}
hr{
    border:none;
    border-top:solid 1px #e7e7e7;
}
table, th, td {
    border: solid 1px #d9d9d9;
    border-collapse: collapse;
}
th, td {
    padding: 8px;
}
thead{
    background-color: #f0f0f0;
    white-space: nowrap;
}
tbody tr:hover{
    background-color: #f3f4f6;
}
a{
    color:#00bcd4;
    text-decoration: none;
}
input,textarea{
    height: 32px;
    border: solid 1px #dadada;
    border-radius: 6px;
    padding: 0 10px;
}

textarea{
    padding:5px;
    height: auto;
}

.container{
    width:860px;
    max-width: 100%;
    margin: 0 auto;
}
.text-center{
    text-align: center;
}
.text-ellipsis{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.button{
    all: unset;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    border:solid 1px #d1d5db;
    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;
}

.flex-center{
    justify-content: center;
}

.badges{
    display: flex;
    flex-wrap: wrap;
    gap:5px;
}

.badge{
    display: inline-block;
    font-size: 14px;
    padding:2px 8px;
    border-radius: 3px;
    background-color: #f2f2f2;
    color:#666;
}

.badge-success{
    background-color: #00a65a;
    color: #fff;
}

.badge-danger{
    background-color: #FF8C00;
    color: #fff;
}

.badge-dark{
    background-color: #d40031;
    color: #fff;
}

.card-tab{
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 10%);
    border:solid 1px #d1d5db;
    overflow: hidden;
}

.card-tab a{
    display: inline-block;
    padding:3px 9px;
    color:#666;
}
.card-tab a.active{
    background-color: #00BCD4;
    color: #fff;
}
.card-tab a + a{
    border-left:solid 1px #d1d5db;
}
.head{
    text-align: center;
    padding: 0px 0;
    padding-top: 80px;
}
.head h1{
    font-size: 36px;
}
.head .sub{
    font-size: 18px;
    margin-top: 10px;
}
.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{
    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;
}

.copyright p {
  margin-top: 5px; /* 上边距 */
  margin-bottom: 5px; /* 下边距 */
}

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