body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.hengfu {
    background-color: #545c64;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hengfu span:first-child {
    font-size: 20px;
    font-weight: bold;
}

.el-table {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.el-table .el-input {
    margin-bottom: 15px;
    width: 250px;
}

.el-table .el-input input {
    border-radius: 16px;
    border: 1px solid #ccc;
    padding: 8px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.el-table .el-input input:focus {
    border-color: #409EFF;
    box-shadow: 0 0 8px rgba(64, 158, 255, 0.2);
}

.el-button {
    border-radius: 16px;
    font-size: 12px;
    padding: 6px 15px;
}

.el-button--info {
    background-color: #67C23A;
    border-color: #67C23A;
    color: white;
}

.el-button--info:hover {
    background-color: #5AA72D;
    border-color: #5AA72D;
}

.el-button--danger {
    background-color: #F56C6C;
    border-color: #F56C6C;
    color: white;
}

.el-button--danger:hover {
    background-color: #DD4C4C;
    border-color: #DD4C4C;
}

.searchInput {
    float: right;
    width: 150px;
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    margin-bottom: 5px;
}

.searchInput input {
    border-radius: 20px;
}
.minibutton {
    margin-left: 10px;
}

/* 悬浮在屏幕上 */
.addOrderButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px;
    zoom: 1.5;
    border-radius: 50px;
}