@charset "utf-8";
/* CSS Document */

/*--------reset----------*/
html {
  box-sizing: border-box;
  background-color: #c0dee0
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

ol, ul {
  /*list-style: none;*/
	padding-left: 30px;
}

img {
  	vertical-align: bottom;
	border: 0;
}

body{
	/* background: url("images/bg.jpg"); */
	background-attachment: fixed;
	background-size:cover;
}

h2 {
	font-size: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	color: #fff;
}
.note{
	background-color: rgb(108, 139, 139);
	padding: 1rem;
	color: #fff;
	font-size: 15px;
}
.note strong{
	margin-top: 16px;
	font-size: 18px;
}
.note li{
	padding: 0.2rem 0;
	letter-spacing: 0.5px;
	line-height:1.7;
}
.event-table {
    width: 100%;
    border-collapse: collapse;
	margin: 8px 0;
}

.event-table th,
.event-table td {
    border: 2px solid #136760;
    padding: 4px;
    text-align: center;
}
.sub-item{
	display:flex;
	align-items:baseline;
	gap:0.2em;
	margin-top:0.5em;
	margin-left: 0.2rem;
}

.sub-item .label{
	min-width:1em;     /* 控制 A. 占的寬度 */
	font-weight:500;
}

.sub-item .text{
	line-height:1.5;
}
.note a{
	text-decoration: underline;
	color: #80ede9;
	cursor: pointer;
}
.note a:hover{
	font-weight: bold;
	color: aqua;
}
.wrapper{width: 840px;margin: 0 auto;}
.content {width: 840px; margin: 0 auto;}
.blank {background: url("images/bg-03.png");background-repeat: no-repeat;height: 350px;}
.footer{
	clear: both;
	padding: 20px 0;
	text-align: center;
	line-height: 1.5;
	font-size: 14px;
	/* background: #c40018; */
	/* color: #FFF; */
}
.gotop {
	width: 60px;
	height: 60px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	opacity: 80%;
	background-image: linear-gradient(#f1ab41, #ee9035);
	cursor: pointer;
	position:fixed;
	right: 1rem;
	bottom: 1rem;
	display: none;
}
.gotop::before, .gotop::after {
	width: 28px;
	height: 6px;
	border-radius: 6px;
	background: #fff;
	position: absolute;
	content: "";
}
.gotop::before {
	transform: rotate(-50deg) translate(0, -90%);
	left: 12px;
}
.gotop::after {
	transform: rotate(50deg) translate(0, -90%);
	right: 12px;
}
.gotop:focus {outline: none;}