:root {
	--grey: #8e8a8a;
	--grey-tint: #00000054;
	--grey-light: #aeac9c;
	--white: white;
	--black: black;
}
html {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	align-items: center;
	color: var(--black);
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	justify-content: center;
	height: 100vh;
	margin: 0;
	padding: 0;
	transition: background-color 0.3s;
}

#footer {
	font-size: small;
	text-align: left;
}

.connected #footer {
	display: none;
}

#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer li {
	margin: 4px 0;
}

#main {
	display: flex;
	align-items: center;
	flex-flow: column;
	/*justify-content: space-between;
		box-shadow: 0px 0px 75px 0px var(--grey-tint);
	background: var(--purple);
		padding: 1em 0;
	border: 4px solid transparent;
	box-sizing: border-box;

*/
	overflow: auto;
	text-align: center;
}

.connected #main {
	justify-content: space-between;
	transition: all 1s;
}

.highlight #main {
	background-color: var(--highlight);
	border: 4px dashed var(--white);
}

#prompt {
	display: flex;
	align-items: center;
	flex-flow: column;
}

#prompt input {
	margin: 4px;
}

.connected #prompt p,
.dialling #prompt p {
	display: none;
}

#info {
	margin: 16px 8px;
	font-size: 18px;
	padding: 8px 0;
	text-align: center;
}

.connected #info {
	display: none;
}

#top {
	display: none;
}

.connected #top {
	display: unset;
}

#filepicker {
	display: none;
}

#filepicker-wrap {
	display: inline-block;
}

#transfers {
	display: none;
	list-style-type: none;
	padding-left: 0;
	margin: 0 auto;
	width: 95%;
	max-width: 500px;
}

.connected #transfers,
.dialling #transfers {
	display: block;
}

#transfers li {
	border-color: #e0e0e0;
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
	margin: 12px 0;
	padding: 10px 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	color: #333;
	font-size: 15px;
    line-height: 1.5;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    background-color: #ffffff;
	/* 允许长单词拆分换行 */
	word-wrap: break-word;
	/* 兼容旧浏览器 */
	word-break: break-all;
}

#transfers li:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	border-color: #d0d0d0;
	transform: translateY(-2px);
}

#transfers li.upload {
	list-style-type: none;
	padding-left: 30px;
}
#transfers li.upload span {
	color:rgb(41, 113, 255);
	font-size:10px;
	padding-left: 10px;
}
#transfers li.download span {
	color:rgb(41, 113, 255);
	font-size:10px;
	padding-left: 10px;

}
#transfers li.upload::before {
	content: "↑";
	position: absolute;
	left: 12px;
	font-size: 18px;
	color: #4CAF50;
	font-weight: bold;
}

#transfers li.download {
	list-style-type: none;
	padding-left: 30px;
}

#transfers li.download::before {
	content: "↓";
	position: absolute;
	left: 12px;
	font-size: 18px;
	color: #2196F3;
	font-weight: bold;
}

#transfers li.pending {
	list-style-type: none;
	padding-left: 30px;
}

#transfers li.pending::before {
	content: "...";
	position: absolute;
	left: 12px;
	font-size: 18px;
	color: #FFC107;
	font-weight: bold;
}

#qr {
	margin: 4px;
	border: 2px solid;
	width: 256px;
	height: 256px;
	display: none;
}

.dialling #qr[src] {
	display: unset;
}

#magiccode {
	/*color: var(--yellow);
	background: var(--yellow-tint);
	border: 2px solid var(--yellow);
	font-weight: bold;
	*/
	border-radius: 10px;
	margin: 5px;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
	height: 40px;
}

.connected #magiccode {
	opacity: 0.2;
}

.error #magiccode {
	display: none;
}

#dial {
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 10px;
    background-color: #4a6fa5;
    color: white;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

#dial:hover:not(:disabled) {
    background-color: #5a7fb5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#dial:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#dial:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
    opacity: 0.7;
}

#hashCode {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.connected #dial,
.error #dial {
	display: none;
}

#autocomplete {
	height: 1em;
	opacity: 0.5;
}

.connected #autocomplete,
.dialling #autocomplete {
	display: none;
}

.button {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 10px;
	border: none;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	margin: 5px;
	height: auto;
	padding: 12px 18px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	background-color: #4a6fa5;
	color: white;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.button:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background-color: #5a7fb5;
	transform: translateY(-1px);
}

.button:active {
	transform: translateY(1px);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.button:disabled,
.button:disabled:hover {
	background: var(--grey);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	color: var(--grey-light);
	cursor: not-allowed;
	transform: none;
	opacity: 0.7;
	transition: all 0.2s ease;
}

#filepicker-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

#textpicker-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	.stateHeader {
		flex-direction: column;
		align-items: flex-start;
		padding: 8px 0;
	}
	
	#state {
		font-size: 18px;
		margin-bottom: 10px;
		width: 100%;
		text-align: center;
	}
	
	.fileDiv {
		width: 100%;
		justify-content: center;
		margin-top: 5px;
	}
	
	.button {
		font-size: 16px;
		padding: 14px 20px;
		min-width: 100px;
		max-width: 150px;
	}
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
	.button {
		font-size: 15px;
		padding: 12px 16px;
	}
	
	#state {
		font-size: 16px;
	}
}
#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 20px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 15px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}

/* 响应式设计优化 */
@media only screen and (max-width: 600px) {
	#transfers {
		width: 100%;
	}
	
	#transfers li {
		font-size: 16px;
		padding: 10px 15px;
		margin: 14px 0;
		border-radius: 8px;
	}
	
	#transfers li.upload::before,
	#transfers li.download::before,
	#transfers li.pending::before {
		font-size: 20px;
		left: 10px;
	}
}

a {
	text-decoration: none;
	color: var(--yellow);
}

a:link,
a:visited {
	border-bottom: 1px dotted;
}

a:link:hover,
a:visited:hover {
	border-bottom: 1px solid;
}


#main {
	height: min-content;
	min-height: 100vh;
	min-width: 450px;
}

@media only screen and (min-width: 700px) {
	#main {
		width: min-content;
		min-width: 450px;
		height: 100%;
	}
	#info {
		margin-top: 10vh;
	}
}