html,
body
{
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-family: -apple-system-font, "Helvetica Neue", sans-serif;
}

*
{
	box-sizing: border-box;
}

*:focus
{
	outline: none;
}

.user-title 
{
    height: 100px;
    background: cornflowerblue;
    font-size: 1.8rem;
    line-height: 100px;
    text-align: center;
    color: #ffffff;
}
/* 提示窗口 */
.tips-win
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.tips-content
{
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 3px;
    min-width: 200px;
    max-width: 300px;
    font-size: 12px;
    text-align: center;
    min-height: 24px;
    line-height: 24px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
}
/* loading */
#sdl-loading 
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    z-index: 99999;
}

.loading-dot,
.loading-dot-container
{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.loading-dot
{
    height: 100%;
}

.loading-dot-container
{
    position: relative;
    top: -5%;
    width: 108px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
}

.loading-dot-container:after
{
    content: "正在加载";
    margin-left: 10px;
    color: #FFFFFF;
    font-size: 12px;
}

.loading-dot-wheel
{
    position: relative;
    width: 22px;
    height: 22px;
}

.loading-dot-wheel > div
{
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 4px;
    width: 4px;
    border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    animation-name: loading-dot-animation;
    -o-animation-name: loading-dot-animation;
    -ms-animation-name: loading-dot-animation;
    -webkit-animation-name: loading-dot-animation;
    -moz-animation-name: loading-dot-animation;
    animation-duration: 0.832s;
    -o-animation-duration: 0.832s;
    -ms-animation-duration: 0.832s;
    -webkit-animation-duration: 0.832s;
    -moz-animation-duration: 0.832s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

.loading-dot-wheel > div:nth-child(1)
{
    left: 0;
    top: 9px;
    animation-delay: 0.3095s;
    -o-animation-delay: 0.3095s;
    -ms-animation-delay: 0.3095s;
    -webkit-animation-delay: 0.3095s;
    -moz-animation-delay: 0.3095s;
}

.loading-dot-wheel > div:nth-child(2)
{
    left: 3px;
    top: 3px;
    animation-delay: 0.416s;
    -o-animation-delay: 0.416s;
    -ms-animation-delay: 0.416s;
    -webkit-animation-delay: 0.416s;
    -moz-animation-delay: 0.416s;
}

.loading-dot-wheel > div:nth-child(3)
{
    left: 9px;
    top: 0;
    animation-delay: 0.5225s;
    -o-animation-delay: 0.5225s;
    -ms-animation-delay: 0.5225s;
    -webkit-animation-delay: 0.5225s;
    -moz-animation-delay: 0.5225s;
}

.loading-dot-wheel > div:nth-child(4)
{
    right: 3px;
    top: 3px;
    animation-delay: 0.619s;
    -o-animation-delay: 0.619s;
    -ms-animation-delay: 0.619s;
    -webkit-animation-delay: 0.619s;
    -moz-animation-delay: 0.619s;
}

.loading-dot-wheel > div:nth-child(5)
{
    right: 0;
    top: 9px;
    animation-delay: 0.7255s;
    -o-animation-delay: 0.7255s;
    -ms-animation-delay: 0.7255s;
    -webkit-animation-delay: 0.7255s;
    -moz-animation-delay: 0.7255s;
}

.loading-dot-wheel > div:nth-child(6)
{
    right: 3px;
    bottom: 3px;
    animation-delay: 0.832s;
    -o-animation-delay: 0.832s;
    -ms-animation-delay: 0.832s;
    -webkit-animation-delay: 0.832s;
    -moz-animation-delay: 0.832s;
}

.loading-dot-wheel > div:nth-child(7)
{
    left: 9px;
    bottom: 0;
    animation-delay: 0.9385s;
    -o-animation-delay: 0.9385s;
    -ms-animation-delay: 0.9385s;
    -webkit-animation-delay: 0.9385s;
    -moz-animation-delay: 0.9385s;
}

.loading-dot-wheel > div:nth-child(8)
{
    left: 3px;
    bottom: 3px;
    animation-delay: 1.035s;
    -o-animation-delay: 1.035s;
    -ms-animation-delay: 1.035s;
    -webkit-animation-delay: 1.035s;
    -moz-animation-delay: 1.035s;
}

@keyframes loading-dot-animation
{
    0%
    {
        background-color: rgb(99, 99, 99);
    }
    100%
    {
        background-color: rgb(255, 255, 255);
    }
}

@-o-keyframes loading-dot-animation
{
    0%
    {
        background-color: rgb(99, 99, 99);
    }
    100%
    {
        background-color: rgb(255, 255, 255);
    }
}

@-ms-keyframes loading-dot-animation
{
    0%
    {
        background-color: rgb(99, 99, 99);
    }
    100%
    {
        background-color: rgb(255, 255, 255);
    }
}

@-webkit-keyframes loading-dot-animation
{
    0%
    {
        background-color: rgb(99, 99, 99);
    }
    100%
    {
        background-color: rgb(255, 255, 255);
    }
}

@-moz-keyframes loading-dot-animation
{
    0%
    {
        background-color: rgb(99, 99, 99);
    }
    100%
    {
        background-color: rgb(255, 255, 255);
    }
}

/***/
.sdl-overdue-list:empty,
.sdl-illegal-list:empty,
.book-list:empty
{
	color: #dcdcdc;
    font-size: 12px;
    text-align: center;
    padding: 20px 0;
}

.sdl-overdue-list:empty:before,
.sdl-illegal-list:empty:before,
.book-list:empty:before
{
    content: '暂无数据';
}