.form-select {
    background-color: #fff0da;
    color: #333;
    border: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    min-width: 16ch; /* 设置最小宽度 */
    border-radius: 0; /* 去掉圆角 */
    box-shadow: none;
}
.form-control {
    border-radius: 0;
    width: 80vw;
    max-width: 800px;
    padding-left: 1rem;
}
.btn-primary {
    border-radius: 0;
}
.image{
    height: 280px;
    margin-bottom: 1rem;
}
.col a p {
    display: inline-block;    /* 使其成为可设置宽高的块级元素 */
    margin: 0.5rem 0;           /* 上下外边距 1rem */
    padding: 0.5rem 0.5rem;     /* 按钮的内边距 */
    background-color: #E4DCE0;/* 按钮背景色 */
    color: black;             /* 文字颜色 */
    border-radius: 0.25rem;   /* 圆角边框 */
    text-decoration: none;    /* 去掉下划线 */
    font-weight: bold;        /* 加粗文字 */
    cursor: pointer;         /* 鼠标变成手形 */
    text-align: center;       /* 文字居中对齐 */
    width: 200px;
}

.col a p:hover {
    background-color: #828282; /* 鼠标悬停时背景色变化 */
    color: white;             /* 文字颜色 */
}
