*{padding:0;margin: 0;list-style:none;}


/* 信息提示框 start */
.s-message-container {
    z-index: 6000;
    width: 100%;
    position: fixed;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s-message{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    transition: .3s;
    margin: 4px 0;
    padding: 10px 20px;
    border-radius: 3px;
    flex-wrap: nowrap;
    overflow: hidden;
    width: max-content;
    max-width: 720px;
    color: rgb(51,54,57);
    background-color: #fff;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05);
    opacity: 0;
    transform: scale(0);
}

.s-message.show{
    opacity: 1;
    transform: scale(1);
}

.s-message .s-message_icon{
    position: relative;
    margin: 0 10px 0 0;
    height: 18px;
    width: 18px;
    flex-shrink: 0;
}

.s-message .s-message_icon img{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.s-message .s-message_content{
    display: inline-block;
    font-size: 14px;
}
/* 信息提示框 end */



/* 模态框 start */
.s-modal-container{
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    z-index: 6000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}
.s-modal-container.show{
    display: flex;
}

.s-modal-mask{
    position: absolute;
    z-index: 15;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: .3s;
}
.s-modal-mask.show{
    background-color: rgba(0, 0, 0, 0.4);
}



.s-modal-main{
    z-index: 20;
    background: #fff;
    max-height: 95vh;
    overflow-y: scroll;
    margin: auto;
    padding: 20px;
    border-radius: 3px;
    color: rgb(51,54,57);
    box-shadow: 0 1px 2px -2px rgba(0, 0, 0, .08), 0 3px 6px 0 rgba(0, 0, 0, .06), 0 5px 12px 4px rgba(0, 0, 0, .04);
    box-sizing: border-box;
    transition: .3s;
    opacity: 0;
    transform: scale(0);
    scrollbar-color: #8b8b8b #fcfcfc; /* 设置滚动条滑块和轨道的颜色 */
    scrollbar-width: thin; /* 设置滚动条的宽度（可以设置为'auto', 'thin', 或 'none'） */
}

.s-modal-main.show{
    opacity: 1;
    transform: scale(1);
}

/* 模态框 end */

