@font-face
{
    font-family: 'CustomeFont';
    src: url('https://imghub.ed-builder.top/file/cebbyQUX.woff2') format('woff2');
}
body /* 主体样式 */
{
    background: #181a20;
    background-size: cover;
    font-size: 20px;
    line-height: 1.5;
    color: #929292;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'CustomeFont';
}
a /* 链接样式 */
{
    color: #4fc3f7;
    text-decoration: none;
    position: relative;
}
a::after
{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4fc3f7;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
a:hover::after
{
    transform: scaleX(1);
    transform-origin: bottom left;
}

hidden
{
    display: none;
}

s /* 删除线 */
{
    color: #888;
    font-size: smaller;
}
h1 /* 一级标题 */
{
    /* 深色背景下的暗色渐变 */
    background-image: linear-gradient(to right,#b03a48,#b07a2c,#b0a856,#2c8e7a,#2c6ab0,#6a4fb0);
    background-clip: text;
    color: transparent;
}
rainbow /* 彩虹字 */
{
    background-image: linear-gradient(to right,#b03a48,#b07a2c,#b0a856,#2c8e7a,#2c6ab0,#6a4fb0);
    background-clip: text;
    color: transparent;
}
hr /* 分割线 */
{
    background-image: linear-gradient(to right, #b03a48, #b07a2c, #b0a856, #2c8e7a, #2c6ab0, #6a4fb0);
    height: 3px;
    width: 100%;
    margin: 20px 0;
    border: none;
}
.center
{
    text-align: center;
}

red
{
    color: #c62839;
}
green
{
    color: #2e8b6f;
}
gold
{
    color: #bfa22d;
}
blue
{
    color: #1976a3;
}

trans /* 翻译文字 */
{
    font-size:10px;
    color:#888
}

footer /* 页脚 */
{
    background-color: rgba(30, 32, 40, 0.85);
    text-align: center;
    border-radius: 10px;
    color: #b0b0b0;
}

tip /* 提示 */
{
    border: 2px solid;
    border-color:#929292;
    background: #23242a;
    color: #929292;
}
achi
{
    display: none;
}
#popup /* 弹窗 */
{
    background-color: #23242a;
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    border-radius: 5px;
    max-width: 300px;
    display: none;
    border-color: #444;
    border: 6px solid;
    color: #929292;
    box-shadow: 0 4px 24px 0 #000a;
}
#popup type
{
    margin-top:0;
    font-size:18px;
    display: block;
    color: #ffe156;
}
#popup text
{
    margin: 5px 0;
    font-size: 16px;
    display: block;
    color: #929292;
}
#popup intro
{
    margin:5px 0;
    font-size:small;
    display: block;
    color:#888;
}
@keyframes slideIn
{
    from{transform: translateX(-200%);}
    to{transform: translateX(0);}
}
@keyframes slideOut
{
    from{transform: translateX(0);}
    to{transform: translateX(-200%);}
}

/*
按钮样式
From: https://getcssscan.com/css-buttons-examples Button 57
*/
button
{
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
    color: #929292;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    padding: 15px 50px;
    text-decoration: none;
    cursor: pointer;
    background: #23242a;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    transition: background 0.2s, color 0.2s;
}
button span:first-child
{
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}
button span:last-child
{
    color: #23242a;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 66%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
}
button:after
{
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffe156;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}
button:hover:after
{
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}
button:hover span:last-child
{
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}
button:hover
{
    background: #35363c;
    color: #ffe156;
}

/* 全局 div 样式 */
div
{
    background-color: rgba(30, 32, 40, 0.85);
    margin: 10px;
    padding: 10px;
    border: 1px solid #23242a;
    border-radius: 10px;
    color: #929292;
}

/* 滚动条样式 */
#main::-webkit-scrollbar
{
	width: 10px;
}
#main::-webkit-scrollbar-track
{
	background-color: #23242a;
}
#main::-webkit-scrollbar-thumb
{
	background-color: #35363c;
	border-radius: 6px;
	border: 2px solid #23242a;
	background-clip: content-box;
}
#main::-webkit-scrollbar-thumb:hover
{
	background-color: #4fc3f7;
}