/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    min-width: 1440px;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body {
    scrollbar-color: #888 #f1f1f1; /* 第一个值是滑块颜色，第二个值是轨道颜色 */
    scrollbar-width: thin; /* 滚动条宽度，可选值：auto、thin、none */
    -ms-overflow-style: -ms-autohiding-scrollbar; /* 自动隐藏滚动条，当鼠标悬停时显示 */
}
::-webkit-scrollbar {
    width: 10px; /* 滚动条宽度 */
    height: 10px; /* 滚动条高度（适用于水平滚动条） */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道背景颜色 */
    border-radius: 5px; /* 轨道圆角 */
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #888; /* 滑块背景颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

/* 滑块悬停状态 */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* 悬停时滑块背景颜色 */
}

/* 滚动条两端的箭头 */
::-webkit-scrollbar-button {
    display: none; /* 隐藏箭头 */
}
input{
    padding-left: 10px;
}

/* 统一弹出提醒框样式 */
.alert-modal {
    display: none;
    position: fixed;
    top: -25px;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.4);*/
    z-index: 1002;
    justify-content: center;
}

.alert-content {
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin-top: 100px;
    color: #fff;
    width: 330px;
    height: 80px;
}

.alert-content.success {
	/* #ECFFF8 */
    background: #99CCCC;
}

.alert-content.error {
    /* background: rgb(80,80,80); */
    background: rgb(233 60 60 / 50%);
}

.close-alert-btn {
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer;
    font-size: 18px;
}