:root {
  --main-color: #FF4D00;
}
@font-face {
	font-family: "Monotype";
	src: url('../font/Monotype  - Helvetica Now Display Black.otf');
}
*{
	font-family: 'Noto Sans TC', sans-serif;
	color: #FF4D00;
}
#app{
	background-color: black;
	min-height: 100vh;
	position: relative;
	font-size: 0;
	/*overflow: hidden;*/
}

select{
	width: 100%;
	background-color: inherit;
	color: #fff;
	font-size: 20px;
	padding: 5px 10px;
	border: 3px solid var(--main-color);
}
canvas{
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	top: 0;
}
.canvasWrap{
	position: relative;
}
#noedit {
	width: 100%;
	height: 100%;
	position: absolute;
	padding-top: 20px;
	box-sizing: border-box;
	z-index: 2;
}
#noedit  > h6{
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}
#noedit  .token{
	border: 1px solid #fff;
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%) scale(0.6);
}
#noedit  .token label{
	color: #fff;
	font-size: 12px;
	line-height: 1.8;
	border-bottom: 1px solid #fff;
	font-family: 'Taipei Sans TC';
	padding: 0 5px;
	display: block;
}
#noedit  .token p{
	font-family: "Monotype";
	letter-spacing: 0.1em;
	font-size: 18px;
	margin-bottom: 0;
	line-height: 1.5;
	padding: 0 5px;
	display: block;
	text-align: center;
}
#noedit .countdown {
	  position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 13%;
    text-align: center;
    z-index: 2;
}
#noedit .countdown label{
	font-size: 12px;
	color: #fff;
  transform: scale(0.8);
  display: block;
  letter-spacing: 0.1em;
}
#noedit  .countdown p{
    font-family: "Monotype";
    font-size: 23px;
    margin-bottom: 0;
}
#noedit  ul{
	position: absolute;
	bottom: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	padding: 1em 0;
}
#noedit  ul li{
	font-size: 14px;
	line-height: 1;
	margin-bottom: 0;
	width: 33.3%;
	text-align: center;
}
#noedit  ul li:nth-of-type(2){
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
.select{
	font-size: 20px;
	margin-bottom: 1.5em;
	position: relative;
	font-size: 
}

/* Arrow */
.select::after {
  content: "";
  width: 14px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  background-color: var(--main-color);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  display: inline-block;
  transform: translateY( -50%);
}
/* Transition */
.select:hover::after {
  
}
section h1{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 2em;
}
section h4{
	font-size: 18px;
	color: #fff;
}
section p, section ul li{
	color: #fff;
	font-size: 16px;
	margin-bottom: 1em;
	line-height: 1.8;
}
.intro{
	padding: 40px 20px 180px;
}
section ul {
	font-size: 16px;
	padding-left: 2em;
	list-style-type: disc;
list-style-position: outside;
}
section ul li{
	margin-bottom: 1em;
}
.intro, .edit{
	padding: 40px 20px 180px;
}
.intro h1{
	text-align: center;
}
.intro p:nth-last-of-type(1){
	margin-bottom: 50px;
}
.check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 50px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
/* Hide the browser's default checkbox */
.check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check input:checked ~ .checkmark {
  background-color: var(--main-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.intro button, .edit button{
	width: 269px;
	line-height: 2.5;
	border-radius: 100px;
	color: black;
	font-weight: bold;
	font-size: 18px;
	border: 2px solid #fff;
	margin: 0 auto;
	display: block;
	cursor: pointer;
}
.edit button.disable{
	background-color: inherit;
	color: rgba(255, 255, 255, .5);
	border-color: rgba(255, 255, 255, .5);
	cursor: inherit;
}
.edit{
	max-width: 334px;
	margin: 0 auto;
}
.edit .canvasWrap {
	border: 1px solid #fff;
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	margin-bottom: 40px;
}
.edit #empty img{
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.edit h4{
	margin-bottom: 2em;
}
.edit h4 span{
	color: #fff;
}
.edit .rule p:nth-last-of-type(1){
	margin-bottom: 50px;
}
.form p, .form span, .form label {
	color: var(--main-color);
	font-size: 16px;
	font-weight: bold;
}
.form label{
	margin-bottom: 20px;
	display: block;
}
.form input, .form textarea{
	border: 3px solid var(--main-color);
	background-color: inherit;
	font-size: 16px;
	line-height: 1.8;
	outline: none;
	padding: 5px;
	box-sizing: border-box;
	width: 100%;
	color: #fff;
	resize: none;
}
.form .select{
	  display: inline-block;
    width: 107px;
    margin-right: 40px;
}
.form .inputWrap, .form textarea{
	margin-bottom: 20px;
}
.form .synonym input{
	width: 144px;
	margin: 0 10px 10px 0;
}
.form .inputWrap ul {
	padding-left: 1em;
}
.form .inputWrap ul li{
	color: var(--main-color);
}
.edit button{
	margin-top: 40px;
}
@media(min-width: 900px){
	.edit{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 820px;
	}
	.edit h4{
		margin-bottom: 1.5em;
	}
	p.deadline, p.deadline span{
		font-size: 22px;
	}
	.select{
		margin-bottom: 0.8em;
	}
	.edit .canvasWrap{
		width: 54%;
		align-self: flex-start;
		padding-bottom: 54%;
	}
	.formContainer{
		width: 42%;
	}
	.form textarea{
		height: 100px;
	}
	#noedit  > h6{
		font-size: 13px;
		margin-bottom: 40px;
	}
	#noedit  .token{
		transform: translateX(-50%) scale(0.8);
	}
	#noedit  .countdown{
		bottom: 13%;
	}
	#noedit  ul li{
		font-size: 16px;
	}
	#noedit  .countdown label{
		  transform: scale(1);
	}
	#noedit  .countdown p{
		font-size: 26px;
	}
}
@media(min-width: 1200px){
	section h1{
		font-size: 32px;
	}
	.edit{
		max-width: 1129px;
	}
	.edit .canvasWrap{
		width: 56.9%;
		padding-bottom: 56.9%;
	}
	.formContainer{
		max-width: 420px;
	}
	.form .synonym input{
		width: 97px;
		margin: 0 10px 0 0;
	}
	.form .synonym input:nth-last-of-type(1){
		margin: 0;
	}
	#noedit {
		padding-top: 30px;
	}
	#noedit  > h6{
		font-size: 19px;
		margin-bottom: 65px;
	}
	#noedit  .token{
		transform: translateX(-50%) scale(1);
	}

	#noedit  ul li{
		font-size: 22px;
	}
	#noedit  .countdown label{
		  transform: scale(1);
		  font-size: 12px;
	}
	#noedit  .countdown p{
		font-size: 26px;
	}
}