* {
    box-sizing: border-box;
}
html{
	width:100%;
}
body {
	font-family: Helvetica, Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
	min-height:100vh;
	display:grid;
	grid-template-rows:auto 1fr auto;
}

header {
    padding: 0.5rem 0;
    box-shadow: #666 0px 2px 3px;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-selection {
    display: flex;
    gap: 1rem;
}

.lang-btn {
    cursor: pointer;
    font-size: 14px;
}

main {
    padding: 2rem 0;
}

footer {
    padding: 25px 0;
    border-top: 2px solid #9e0109;
    background: linear-gradient(#ffffff, #e0e0e0);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}



.logo {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width:640px){
	.logo{
		gap:0.5rem;
		font-size:16px;
	}
	.lang-selection {
		gap: 0.5rem;
	}
}

.content_title {
    line-height: 45px;
    font-size: 1.5rem;
    font-weight: bold;
    border-left: 3px solid #C20F17;
    padding-left: 16px;
    margin-bottom: 20px;
    color: #C20F17;
}

#disclaimer_asset {
	display:none;
    padding: 1rem;
}

.disclaim_btn {
    cursor: pointer;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    margin: 0 0.25rem;
    padding: 0.375rem 0.75rem;
    min-width: 80px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.disclaim_btn.agree {
    background-color: hsl(134, 61%, 41%);
}

.disclaim_btn.agree:hover {
    background-color: hsl(134, 61%, 46%);
}

.disclaim_btn.disagree {
    background-color: hsl(354, 70%, 54%);
}

.disclaim_btn.disagree:hover {
    background-color: hsl(354, 70%, 59%);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
	gap:8px;
	font-size: 14px;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
flex-wrap:wrap;
}

.footer-nav a {
	display:block;
    text-decoration: none;
    color: #222;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #c80f17;
}