body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 100px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
}

h1 {
    color: #007acc;
    font-size: 32px;
}

p {
    color: #333;
}

.clickable-title {
    display: inline-block;
    font-family: 'Consolas', sans-serif;
    font-size: 32px;
    color: #007acc;
    font-weight: bold;
    cursor: pointer; /* 鼠标变为点击手势 */
}

.clickable-title:hover {
    color: #00cc92;
    text-decoration: underline;
}

.coming-soon {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 88px;
    font-weight: bold;
    color: #666;
}

.icp-info {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #999;
}