body {
    font-family: Arial, sans-serif;
    margin: 0px auto;
    padding: 0;
    background-color: #000;
    max-width: 600px;
}

header {


}
.title{
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 5px 10px;
    align-items: center;
}

.title img{
    height: 6vh;
    display: block;
}

.type-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    /* 自动计算行高 */
    grid-gap: 10px;
    /* 间隔 */
    box-sizing: border-box;
    padding: 15px;
   
}

.type-select a {
    text-decoration: none;
    background-color: #1B1B28;
    border-radius: 10px;
    padding: 12px 10px;
}

.type-select img {
    width: 20px;
    height: 20px;
}
.type-select P {
    color: #FFFFFF;
    margin: 0px;
    font-size: 1rem;
    font-weight: bold;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    /* background-color: #f8f8f8; */
    text-align: center;
    background-color: #000;
}

.footitem {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px;
}

.footitem a {
    font-size: 0.7em;
    color: #666;
    text-decoration: none;
}

.footitem a:hover {
    text-decoration: underline;
}

footer .copy{
    font-size: 0.8em;
    color: #666;

}

.web_desc {
    margin: 1rem;
    color: antiquewhite;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #888888;
}

.web_desc img {
    width: 100%;
}

.web-404 {
    margin: 1rem;
    color: #060b16;
}