/* 全局样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
   font-family: "zsft-443";
   src: url('https://static.zeoseven.com/zsft/443/main.woff2') format('woff2'),
       url('https://static-host.zeoseven.com/zsft/443/main.woff2') format('woff2');
   font-display: swap;
}

body {
    font-family: "zsft-443";
    font-weight: normal;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
    color: #ff6b6b;
    /* 可选：为标题添加颜色以突出显示 */
}

button {
    cursor: pointer;
    outline: none;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
}

button:hover,
button:focus {
    opacity: 0.8;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* 额外的全局样式 */
a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #ff4747;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    margin-bottom: 1rem;
}

ul li,
ol li {
    margin-bottom: 0.5rem;
}