body {
    background-color: #E7F8E6;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 300px;
}

.header {
    background-color: #C0F0B1;
    height: 150px;
}

.nav {
    display: flex;
    height: 150px;
    background-color: #ddd; 
    /* 使用十六进制表示法以保持一致性 */
}

button {
    border: 2px solid #000;
    width: 100px; /* 增加宽度 */
    height: 40px; /* 如果需要增加高度，也可以调整这里 */
    font-size: 20px;
    display: flex;
    align-items: center; /* 垂直居中文本 */
    justify-content: center; /* 水平居中文本 */
    border-radius: 6%;
}
