.page {
    width: 378px;
    margin: auto;
}
div#title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#title p {
    margin: 20px;
    
    width: 100%;
    font-size: x-large;
    font-weight: bold;
}
body {
    margin: 0;
}
button {
    height: 30px;
    min-width: 40px;
    margin-top: 8px;
    margin-bottom: 3px;
    background-color: #424d51;
    border: none;
    color: white;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 700;
}
button.next {
    width: 120px;
    margin: 8px 3px;
    white-space: nowrap;
    transition: background-color 0.1s ease, color 0.3s ease;
}
button.menupage2{
    transition: background-color 0.1s ease, color 0.3s ease;
}
button.menupage2:hover {
    background-color: #FB7299; /* 指向时的背景颜色 */
    color: #FFF; /* 指向时的文本颜色 */
}
button.next:hover {
    background-color: #FB7299; /* 指向时的背景颜色 */
    color: #FFF; /* 指向时的文本颜色 */
}
button#backtohomepage {
    margin: 0;
}
.menupage {
    display: none; /* 默认隐藏 */
}
div#selector {
    display: flex;
    flex-wrap: wrap;
}
div#menutab {
    display: flex;
    flex-direction: column;
}
div#debugOutput {
    color: #1064e5;
    font-size: 18px;
    line-height: 2;
}
h1{
    font-weight: 700;
}
#title h1 {
    font-size: 22px;
    line-height: 10px;
    color: #212121;
    font-weight: 700;
    text-align: center;
        width: 100%;
}
h2 {
    font-size: 18px;
    line-height: 18px;
    color: #b50d0d;
    font-weight: 700;
    margin-block: 8px;
}
h3 {
    font-size: 15px;
    line-height: 18px;
    color: #212121;
    font-weight: 500;
    margin-block: 5px;
}
hr {
    margin: 15px 0px 5px 0px;
    border-top: 0.1em solid #cfd0d2;
}
#copyMessage {
    position: fixed;
    top: 0;
    background-color: #fb72998f;
    color: #fff;
    padding: 3px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    width: 378px;
    text-align: center;
}
#seo {
    height: 80px; /* 设置固定高度 */
    resize: none; /* 禁止调整尺寸 */
}
.link_button {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 8px 0;
}
.linked {
    min-width: 50px;
    text-align: center;
    border-radius: 5px;
    background-color: #7da2af;
    text-decoration: blink;
    color: #fff;
    font-size: small;
    padding: 3px 6px;
}
.link_button a {
    text-decoration: none;
}