#detail-title {
    font-size: 24px; 
    margin-top: 30px; 
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}


button {
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    background-color: #4c61af;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}


.btn {
    display: inline-block;
    padding: 6px 10px;
    background-color: #b9afaf; /* 按钮背景色 */
    color: rgb(255, 255, 255); /* 字体颜色 */
    text-decoration: none; /* 去掉下划线 */
    border-radius: 5px; /* 圆角边框 */
    border: 2px solid #8f8b8b; /* 边框颜色 */
    transition: background-color 0.3s, color 0.3s; /* 动画效果 */
}

.btn:hover {
    background-color: white; /* 悬停时背景色 */
    color: #002244; /* 悬停时字体颜色 */
}


.button-container {
    text-align: center; /* 使按钮居中 */
}
