/* 565455标准页用css */
/* 2025.06版本 */
/* 2025.08版本 */

*{
    margin: 0;
    padding: 0;
}
.container{
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto;
}
.container > *{
    margin: 12px 0;
}
h1, h2, h3{
    font-weight: bold;
}
.box > *{
    display: block;
    margin: 6px 0;
}
.box.inline > *{
    display: inline-block;
}
a{
    color: rgb(0, 68, 255);
    width: fit-content;
}
a:visited{
    color: rgb(162, 0, 255);
}
img{
    max-width: 100%;
    display: block;
    margin: 12px auto !important;
}
video{
    max-width: 100%;
    display: block;
    margin: 12px auto !important;
}
.icon{
    font-family: iconfont0;
}
input[type=text]{
    height: 2em;
    box-sizing: border-box;
    width: 200px;
    border-radius: 2px;
    border: 1px solid black;
}
.box input[type=text]{
    width: min(100%, 500px);
}
.box input[type=button], .box input[type=submit]{
    margin: 6px 0;
}
input[type=button], input[type=submit], button{
    box-sizing: border-box;
    height: 2em;
    border-radius: 2px;
    border: 1px solid black;
    background-color: white;
    cursor: pointer;
    margin: 6px 0;
    padding: 2px 5px;
}
input[type=button]:hover, input[type=submit]:hover, button:hover{
    background-color: rgb(238, 238, 238);
}
.red{
    color: red;
}
.gray{
    color: gray;
}
.green{
    color: green;
}
.blue{
    color: blue;
}
ul{
    box-sizing: border-box;
    padding: 0 20px;
}