*{
    margin: 0;
    padding: 0;
    transition: height 0.2s, filter 0.1s;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
::selection {
    background: rgba(0,64,128,0.05);
}
html{
	scrollbar-width: none;
}
body{
	width: 100%;
	height: 100%;
	font-family: "fusion-pixel","Consolas","Microsoft Yahei";
    background-attachment: fixed;
    -ms-overflow-style: none;
}
@font-face{
    font-family: "fusion-pixel";
    src: url("/assets/FusionPixelMonoPatched.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
#bgm{
    display:none;
}
.dark {
    background: #202020;
}
.dark::after {
	content: '';
	position: fixed;
    z-index: 99999;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.ic_bgm{
    z-index: 99999;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 36px;
    animation: changeRight 3s linear infinite;
    pointer-events: auto;
}
@-webkit-keyframes changeRight{       
	0%{-webkit-transform:rotate(0deg);}
	50%{-webkit-transform:rotate(180deg);}
    100%{-webkit-transform:rotate(360deg);}
}
.bg_video{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bg_brightness{
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: url(/assets/img/brightness.png) no-repeat right top;
	animation: opacity_scale 10s infinite linear;
}
@keyframes opacity_scale {
    0% {
        opacity: .4;
        transform: translateY(0)
    }

    50% {
        opacity: 0;
        transform: translateY(-30px) scale(1.1)
    }

    100% {
        opacity: .4;
        transform: translateY(0)
    }
}
/*body::before{
    content: "";
    position: fixed;
    z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #edf 0%, #def 100%);
    animation: move 8s infinite linear;
}*/
@keyframes move {
    0% {
        filter: unset;
    }

    100% {
        filter: hue-rotate(360deg);
    }
}
body::-webkit-scrollbar{
    display: none;
}
a{
	color: #0af;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
	text-decoration:none;
}
h1{
    font-weight:bold;
	line-height: 1.3;
	font-size: 26px;
}
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	font-weight: bold
}
p{
    text-indent: 2em;
    margin: 5px 0;
}
.header{
    z-index: 999;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.2s;
    background: rgba(255,255,255,0.6);
    transform: translateZ(0);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
.site_title{
    line-height: 60px;
    font-size: 1.5rem;
    color: #0bf;
    text-decoration: none;
    margin-left: 6vw;
}
.title{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 170%;
}
.logo{
    height: 48px;
    margin: 6px;
    border-radius: 6px;
    vertical-align: top;
    animation: changeRight 60s linear infinite;
}
.logo:hover{
    animation: changeRight 0.3s linear infinite;
}

.link a{
    display: inline-block;
	height: 60px;
	line-height: 60px;
}
.desktop{
    float: right;
    margin-right: 10%;
    font-size: 18px
}
.desktop .menu_btn{
    display: none;
}
.desktop a{
    padding: 0 15px;
	transition: border-bottom 0.2s;
}
.mobile{
    display: block;
    float: right;
    width: 100%;
	height: 60px;
	margin-top: -60px;
	line-height: 60px;
    font-size:18px;
    text-align: center;
    overflow: hidden;
}
.mobile .menu_btn{
    float: right;
    margin-right: 10%;
    display: inline-block;
    cursor: pointer;
}
.mobile a{
    background: rgba(248,252,255,0.85);
    width: 100%;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
.container{
    overflow: hidden;
}
.feedback{
    height: calc(100vh - 60px);
    overflow: auto;
    float: left;
	scrollbar-width: none;
    -ms-overflow-style: none;
}
.main{
    padding-top: 60px;
    height: calc(100vh - 60px);
    overflow: auto;
    float: left;
	scrollbar-width: none;
    -ms-overflow-style: none;
}
.video{
    height: calc(100vh - 60px);
    overflow: auto;
    float: right;
	scrollbar-width: none;
    -ms-overflow-style: none;
}
@media (any-hover: hover) {
    /*定义滚动条*/
    .main::-webkit-scrollbar,.feedback::-webkit-scrollbar,.video::-webkit-scrollbar {
        width: 10px;
        background-color: transparent;
    }
    /*定义滚动条滑块*/
    .main::-webkit-scrollbar-thumb,.feedback::-webkit-scrollbar-thumb,.video::-webkit-scrollbar-thumb{
        background: rgba(0,0,0,0.1);
        border-radius: 4px;
    }
}
.size1 .block,.size2 .block{
    overflow: auto;
}
.size1 .main{
    padding-top: 60px;
    width: 50vw;
}
.size2 .main{
    padding: 0 20vw;
    padding-top: 60px;
    width: 60vw;
}
.size3 .main{
    padding: 0 10vw;
    padding-top: 60px;
    width: 80vw;
}
.size4 .main{
    padding-top: 60px;
    width: 100vw;
    height: 100vh;
}
.size1 .feedback{
    width: 30vw;
}
.size1 .video{
    width: 20vw;
}
.size2 .feedback{
    width: 50vw;
}
.size2 .video{
    width: 50vw;
}
.size3 .feedback,.size3 .video{
    padding: 0 10vw;
    width: 80vw;
}
.size4 .feedback,.size4 .video{
    width: 100vw;
    height: 100vh;
}
.size1 .feedback,.size1 .video{
    padding-top: 60px;
}
.cover{
    display: block;
    border-radius: 12px;
    margin: 2% auto;
}
.size1 .cover,.size2 .cover,.size3 .cover{
    width: 80%;
}
.size4 .cover{
    width: 96%;
}
.block{
    width: calc(100% - 40px);
    margin: 10px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(248,252,255,0.7);
}
.block img{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 8px;
}
.list {
    color: #233;
    margin: 10px;
    line-height: 170%;
    font-size: 15px;
}
.footer{
    background: #1A1C26;
    text-align: center;
}
.footer_inner{
    display: inline-block;
    padding: 30px 10px;
    line-height: 24px;
    font-size: 14px;
    color:#fff
}
.corner_button {
    z-index: 999;
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: default;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: solid 1px #fff;
    border-radius: 12px;
    background: rgba(255,255,255,0.4);
    transition: background 0.1s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#theme {
    bottom: 55px;
}
#theme img {
    width: 60%;
    margin: 20%;
}
#downloadbar{
    z-index: 99999;
	position: fixed;
	bottom: 0;
    display: none;
	justify-content: space-between;
	height: 60px;
	width: 100%;
	border-top: 1px solid #eee;
	background: rgba(255,255,255,0.85);
	transform: translateZ(0);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}
.down_title,.down_close{
    margin: auto 0;
}
.down_btn{
    margin: auto 0;
    height: 30px;
    border: none;
    background: #0bf;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    padding: 2px 12px;
}
.down_close{
    font-size: 20px;
    margin-right: 3%;
    background: transparent;
    border: none;
}
.side_title{
    color:#0bf;
    text-align:center;
    line-height:1.5;
    margin-top: 10px;
    font-size:20px;
    font-weight:bold;
}
._btn{
    width:120px;
    height: 36px;
    background-image: url(/assets/img/btn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin: 4px auto;
    transition:.2s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight:bold;
}
._btn:after{
    position:absolute;
    width:0;
    height:0;
    overflow:hidden;
    z-index:-1;
    content:'';
    background-image:url(/assets/img/btn-hvr.png)
}

b{
	font-weight: bold;
	color: #a0a;
}
.block a{
    padding: 3px 5px;
    border-radius: 6px;
    text-decoration: none;
}

.aspect-ratio {
    width: calc(100% - 20px);
    margin: 10px;
    border-radius:8px;
    transition: transform 0.2s;
    position: relative;
}
.aspect-ratio img {
    border-radius:8px;
    width: 100%;
}
.aspect-ratio p {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: calc(100% - 6px);
    margin: 0;
    padding: 3px;
    line-height: 14px;
    font-size: 14px;
    text-indent: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#feedbackTop,#feedback{
    width: calc(100% - 20px);
    margin: 5px 10px;
}
.singlelink{
    display: block;
    margin-bottom: 5px;
	border-radius: 8px;
	padding: 10px;
    line-height:1.8;
    transition: transform 0.2s, filter 0.1s;
    border: solid 3px transparent;
    background: rgba(248,252,255,0.7);
}
.singlelink b{
    color: #00bbff;
}
.btn_menu{
    position: absolute;
    z-index: 999;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 3px 1px rgba(64, 64, 64, 0.1);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
@media (any-hover: hover) {
    ._btn:hover{
        background-image:url(/assets/img/btn-hvr.png);
    }
    .desktop a:hover{
        color: #0db;
    	background: rgba(192,224,255,0.4);
    	border-bottom: solid 3px #0db;
    }
    .mobile a:hover{
        color: #0db;
    	background: rgba(192,224,255,0.95);
    	border-bottom: solid 3px #0db;
    }
    .block a:hover{
        background: rgba(64,128,248,0.05);
    }
    .aspect-ratio:hover {
        transform: scale(0.98);
    }
    .down_btn:hover{
        background: #08d;
        color: #ddd;
    }
    .corner_button:hover {
        background: rgba(255,255,255,0.6);
    }
    .singlelink:hover{
        transform: scale(0.98);
        background: rgba(240,244,248,0.7);
        border: solid 3px #fff;
    }
}
.desktop a:active{
    color: #f66;
	background: rgba(128,192,255,0.4);
	border-bottom: solid 3px #f66;
}
.mobile a:active{
    color: #f66;
	background: rgba(128,192,255,0.95);
	border-bottom: solid 3px #f66;
}
.block a:active{
    background: rgba(64,128,248,0.1);
}
.corner_button:active {
    background: rgba(224,224,224,0.5);
}
.singlelink:active{
    transform: scale(0.98);
}