:root{overflow-y:auto;overflow-x:hidden;--t0:transparent;--theme:#249ffd;--theme-success:#85f58f;--theme-danger:#f7abab;--theme-info:#9ed0ff;--theme-wrning:#ffdd98;--border-color:#dcdee0}
@media (max-width:500px){:root{font-size:.9rem}}
@media (max-width:380px){:root{font-size:.7rem}}
@media (max-width:320px){:root{font-size:.6rem}}
::-webkit-scrollbar-thumb {
    background-color: #249ffd;
    background-color: var(--theme);
}
::-webkit-scrollbar {
    width: .5rem;
    height: .625rem;
}
*{-webkit-tap-highlight-color: transparent;}
body, html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
	font-family: Source Sans Pro,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    word-spacing: .0625rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
	margin: 0;
	width: 100vw;
	min-height: 100%;
    overflow: hidden;
    background-color: #000;
}
a {
    background-color: transparent;
}
a {
    color: #333;
    word-break: break-all;
    text-decoration: none;
    cursor: alias;
}
h1 {
    font-size: 1.8em;
}
.main {
	display: block;
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
    box-sizing: border-box;
    padding: .75rem .75rem;
	
}
.navbar {
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.navbar .title {
    display: flex;
    align-items: center;
    text-shadow: 0.0625rem 0.0625rem 0.0625rem rgb(0 0 0 / 15%);
	
}
.navbar .title, .navbar .title a {
    color: var(--t1);
    cursor: pointer;
}
.container {
    position: relative;
    padding: 1.5rem 1.3rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0.5rem 0.875rem 2.375rem rgb(39 44 49 / 6%), 0.0625rem 0.1875rem 0.5rem rgb(39 44 49 / 3%);
    background-color: #fff;
    border: none;
    border-radius: .5rem;
}
.container .title {
    position: absolute;
    left: 1.875rem;
    top: -1.125rem;
    padding: .5rem .9375rem;
    font-weight: 700;
    font-size: 0;
    background-color: #333333;
    color: #fff;

    border-radius: .5rem;
}
.container .title span {
    font-size: 1.0625rem;
    line-height: 1.25rem;
    vertical-align: middle;
}
.container .list {
    margin-left: 0;
    padding-left: 1.25rem;
}
.container .list li {
    margin: .9rem 0;
}
.container .list span {
    color: red;
	font-weight:bold;
}
.list-btn {
	display: inline-block;
    position: relative;
    margin: .2rem;
	padding: .4rem .8rem;
    width: calc(50% - .7rem);
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s ease;
    background-color: transparent;
    font-size: 1rem;
	font-weight: 700;
	letter-spacing: .05rem;
	border: .0625rem solid var(--border-color);
    border-radius: .25rem;
	color: var(--t1);
	cursor: pointer;
	outline: 0;
}
.list-btn:after {
    content: "";
    position: absolute;
    top: .3125rem;
    left: .3125rem;
    color: #fff;
    font-weight: lighter;
    text-shadow: 0.0625rem 0.0625rem 0.0625rem rgb(0 0 0 / 20%);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
	background-color: var(--theme-danger);
}
.footer {
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 10px;
}
.footer a {
    font-size: 1.125rem;
    font-weight: bold;
}

@media (max-width: 767px) {
.list-btn {
    width: calc(100% - .35rem);
}
}