<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'shadows-into-light';
  src: url(/fonts/thankyou.woff) format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
	box-sizing:border-box;
}

body {
	background-image: url(../imgs/background.jpg);
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	/* 背景图垂直、水平均居中 */
	background-position: center center;
	/* 背景图不平铺 */
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	min-height:100%;
}

html{
	height:100%;
	min-height:100%;
}

 
.imgs {
	display: block;
	text-align: center;
	margin: auto;
	width: auto;
	height : auto;
	max-height: 100%;
	max-width: 100%;
}
#logo {
	display: block;
	position: absolute;
	top: 15%;
	left: 0;
	right: 0;
	margin: auto;
}

#slogan {
	display: block;
	position: absolute;
	top: 60%;
	left: 0;
	right: 0;
	margin: auto;
}

.modal-footer {
	text-align: center;
}
#showcredit {
	display: block;
	position: absolute;
	top: 80%;
	left: 0;
	right: 0;
	margin: auto;
	cursor: pointer;
}
.sourcetip {
	position:fixed;
	right:5px;
	top:5px;
	width: 180px;
}
#githublogo {
	display:inline-block;
	width:32px;
	margin-left: -32px;
	position:relative;
	vertical-align:middle;
}
.tip-container {
	border: 1px hidden;
	border-color:#CCC;
	border-radius:16px;
	background-color:white;
	width: 32px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
	transition: width 0.5s, opacity 0.5s ease;
}

.tip-container:hover {
	width: 162px;
	opacity: 1;
	filter: alpha(opacity=100);
}

#sourcelabel {
	position:relative;
	display:inline-block;
	vertical-align:middle;
	opacity:1;
	overflow:hidden;
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 32px 0 0;
	color:gray;
}
.curl {
	position:fixed;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 100px;
}

#curlbg {
	position:absolute;
	bottom: 0;
	right :0;
	width: 100px;
	height: 100px;
	background-image:url(../imgs/curl_bg.png);
	background-repeat:no-repeat;
	background-size:cover;
	z-index: 20;
	
	transition: transform 0.25s ease;
	transform-origin: right bottom;
}

#curlcup {
	position:absolute;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background-image:url(../imgs/cup.png);
	background-repeat:no-repeat;
	background-size:cover;
	z-index: 21;
	cursor:pointer;
	
}

#curltop {
	position:absolute;
	bottom: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background-image:url(../imgs/curl-top.png);
	background-repeat:no-repeat;
	background-size:cover;
	z-index: 22;
	
	transition: transform 0.25s ease;
	transform-origin: right bottom;
}

.uncurl {
	transform: scale(1.4);
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
}

.payment-panel {
	display: none;
    position: fixed;
    bottom: 10px;
	right: 80px;
    z-index: 99999;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 3px 4px 31px -8px rgba(0, 0, 0, 0.8);
}

.payment-tabs {
	display: inline-block;
	vertical-align:top;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
	margin-top: 0;
	margin-left: 0;
    margin-bottom: 10px;
	padding: 0;
	line-height: 1.42857;
    color: #333333;
	-webkit-tap-highlight-color: transparent;
}

.payment-item {
	list-style: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.payment-item.active {
	background-color: #e6e6e6;
}

.payment-title {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.payment-title p {
		font-family: 'shadows-into-light', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.payment-content{
	display: inline-block;
    position: relative;
    width: 250px;
    height: 250px;
}

.flexvisible {
	display: block;
	animation-name: imgAnimation;
	animation: imgAnimation 0.7s;
	-webkit-animation: imgAnimation 0.7s;
	-moz-animation: imgAnimation 0.7s;
}

.flexFadeOut {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	/* IE 5-7 */
	filter: alpha(opacity=0);
	display: block;
	animation-name: fadeOut;
	animation: fadeOut 0.5s;
}

@-webkit-keyframes imgAnimation{
    0%{ opacity: 0; right: 0}
    100%{ opacity: 1; right: 80px}
 }
 
 @-moz-keyframes imgAnimation{
    0%{ opacity: 0; right: 0}
    100%{ opacity: 1; right: 80px}
 }
 
 @keyframes imgAnimation{
    0%{ opacity: 0; right: 30px}
    100%{ opacity: 1; right: 80px}
 }
 
@keyframes fadeOut{
	0%{ opacity: 1; right: 80px}
	100%{ opacity: 0; right: 50px}
}
@-moz-keyframes fadeOut{
	0%{ opacity: 1; right: 80px}
	100%{ opacity: 0; right: 50px}
}
@-webkit-keyframes fadeOut{
	0%{ opacity: 1; right: 80px}
	100%{ opacity: 0; right: 50px}
}
 
 
</pre></body></html>