html{
	scrollbar-width: none;
	-ms-overflow-style: none;
}
body{
    height: 100vh;
    margin: 0 auto;
	background:
      radial-gradient(circle at 50% 0,
        rgba(255,232,216,.4),
        rgba(255,232,216,0) 70.71%),
      radial-gradient(circle at 6.7% 75%,
        rgba(216,255,216,.4),
        rgba(216,255,216,0) 70.71%),
      radial-gradient(circle at 93.3% 75%,
        rgba(216,232,255,.4),
        rgba(216,232,255,0) 70.71%) #fff;
    background-attachment: fixed;
    font-family: consolas, "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
}
body::-webkit-scrollbar{
    display: none;
}
#body{
    margin: 0 auto;
    margin-bottom: 50px;
    justify-content : center;
}
.container, textarea, input[type=button], input[type=submit]{
    width:90%;
    margin:8px auto;
    padding:10px;
    background:#ffffff;
    border-radius:8px;
    font-size:16px;
}
textarea{
    resize: none;
    font-size:15px;
    font-family: consolas, "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
}
textarea, input[type=button], input[type=submit]{
    display: block;
    outline: none;
    border:none;
}
#title{
    padding: 5px 10px 5px 10px;
    height: 28px;
    font-size: 20px;
    font-weight: bold;
}
select{
    width: 200px;
    background: #ffffff;
    border: solid 1px #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    outline: none;
}
label{
    margin-right: 3.5%;
    word-break: keep-all;
}
#context{
    height: 180px;
}
#button{
    background:#0bf;
    color:#fff;
    padding:6px 0;
    border:1px solid #0af;
    border-radius:15px;
    font-weight:bold;
    font-size:16px;
    max-width: 360px;
    margin-bottom: 30px;
}
#button:hover{
    background:#08c;
}
.copyright{
    position: fixed;
    bottom: 5px;
    z-index: -1;
    width: 100%;
    font-size: 15px;
    color: #aaa;
    text-align: center;
}
#form{
    width: calc(100% - 20px);
    max-height: calc(100vh - 10px);
    display: block;
    margin: 5px 10px;
    overflow: auto;
}
#list{
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding-bottom: 30px;
}
@media (any-hover: hover) {
    #form::-webkit-scrollbar, #list::-webkit-scrollbar {
        width: 10px;
        background-color: transparent;
    }
    #form::-webkit-scrollbar-thumb, #list::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.1);
        border-radius: 5px;
    }
    #list .singlelink:hover{
        transform: scale(0.98);
        background: #f0f8ff;
        border: solid 3px #fff;
    }
}
#list a{
    color: #0af;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
#list .singlelink{
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
	width: 90%;
	padding: 10px;
    line-height:1.8;
	border-radius: 8px;
    border: solid 3px transparent;
    background: #fff;
    transition: transform 0.2s;
    transform: translateZ(0);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

#list .singlelink:active{
    transform: scale(0.98);
}
.singlelink b{
    color: #00bbff;
}

.up_image {
	background: rgba(255, 255, 255, 0.1);
	width: 100px;
	height: 100px;
	margin: 20px auto;
	border-radius: 4px;
	border: dashed 2px #aaa;
}

.up_image #image {
    position: relative;
    top: -22px;
    outline: none;
    border: none;
	opacity: 0;
	width: 100px;
	height: 100px;
}

.up_image:hover {
	border: dashed 2px #0bf;
}

.up_image:active {
	background: rgba(128, 128, 128, 0.1);
	border: dashed 2px #0bf;
}

.up_image::before {
    display: inline-block;
    z-index: 1;
	content: '';
	position: relative;
	left: 25px;
	top: 35px;
	width: 50px;
	border-top: solid 2px #aaa;
}

.up_image::after {
    display: inline-block;
    z-index: 1;
	content: '';
	position: relative;
	left: 50px;
	top: -95px;
	height: 50px;
	border-left: solid 2px #aaa;
}

.up_image:hover::before,
.up_image:active::before {
	border-top: solid 2px #0bf;
}

.up_image:hover::after,
.up_image:active::after {
	border-left: solid 2px #0bf;
}

.preview {
    display: none;
    margin: 20px;
    text-align: center;
    height: 200px;
}

.preview img {
    height: 100%;
    max-width: 400px;
}