.pink-body, .pink-html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pink-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 0;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.pink-logo {
    margin-right: 30px;
}

.pink-logo img {
    width: 80px; /* 调整Logo大小 */
    height: 80px;
    border-radius: 80%;
}

.pink-title {
    font-size: 1.2em;
    color: #b17e94;
    margin: 0 10px;
}

.pink-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 120px); /* 减去头部高度 */
    background-color: #f8f8f8;
    width: 90%; /* 调整宽度，留出适当的边距 */
    max-width: 600px; /* 最大宽度限制，保证在大屏幕上也能良好显示 */
    margin: 0 auto; /* 自动居中 */
}

.pink-btn {
    background-color: #b17e94;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    margin: 10px 0;
    text-decoration: none;
    width: 200px;
    text-align: center;
}

.pink-btn:hover {
    background-color: #b17e94;
}