@charset "UTF-8";
/* 以上是 聲明 css編碼 */

/* 以下是 圖示文字 的 CSS */
@import url('/webeip/HT00100/peggy/fonticons/css/style.css');
@import url('/webeip/HT00100/Peggy/fonticons/media/css/style.css');

@import url('https://fonts.googleapis.com/css2?family=Rajdhani&display=swap');
/* 以下是 animate 的 CSS */
@import url('/webeip/HT00100/becky/css/animate.css');
/* 以下是 reset 的 CSS */
@import url('/webeip/HT00100/becky/css/reset.css');

/* 表頭 */
	header{
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	    background-color: #fff;
		box-shadow: 0 0 5px rgb(0 0 0 / 10%);
	}
	.toplogo{
		margin: 5px;
		display: flex;
		justify-content: center;
		align-items: baseline;
		width: 100%;
		max-width: 210px;
	}
	.toplogo img{
		width: 100px;
	}
	.topwrap{
			width: 100%;
			box-sizing: border-box;
			background-color: #fff;
			display: flex;
			justify-content: center;
			align-items: center;
		}
	/* 導覽列 */
		.topnav > ul{ display: flex; }
		.topnav ul li{
			position: relative;
			box-sizing: border-box;
			display: block;
			text-align: center;
			padding: 0;
		}
		.topnav ul li a{
			color: #444;
			font-weight: bold;
			display: inline-block;
			position: relative;
			margin: 0.5rem;
			font-size: 1.15rem;
		}
		.topnav ul li a:before{
			content: '';
		    position: absolute;
		    height: 3px;
		    width: 3px;
		    bottom: -5px;
		    display: block;
		    background-color: #444;
		    opacity: 0;
		    transition: all .3s ease;
		}
		.topnav ul li:hover a:before{
			opacity: 1;
			width: 50%;
		}
		.topnav ul li > .subnav{
			display: none;
			position: absolute;
			width: 150%;
		    border: 2px solid #444;
		    background-color: #fff;
		    border-radius: 0 5px 5px 5px;
		    opacity: 0;
			top: 100%;
			left: 0;
		}
		.topnav ul li > .subnav:before{
			position: absolute;
			content: '';
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 20px 0 0 20px;
			border-color: transparent transparent transparent #444;
			top: 2px;
			left: -12px;
	    	transform: rotate(45deg);
	    	display: none;
		}
		.topnav ul li:hover .subnav{ display: block; opacity: 1;}
		.topnav ul li > .subnav li a{
			margin: 0;
		    display: block;
		    text-align: center;
		    padding: 10px;
		    box-sizing: border-box;
		    transition: all .3s ease;
		    color: #444;
		}
		.topnav ul li > .subnav li:hover a{
			background-color: #444;
			color: #fff;
		}
		.topnav ul li > .subnav li a:before{ display: none; }
/*表尾*/
	footer{
		width: 100%;
		background-color: #444;
		color: #ddd;
		position: relative;
	}
	.underwrap{
		width: 100%;
	    max-width: 1200px;
	    margin: 0 auto;
	    padding: 10px 0;
	    display: flex;
	    justify-content: space-around;
	    align-items: center;
	}
	.underwrap_box{
		width: 100%;
		max-width: 300px;
	}
	.underwrap_box h2{
		font-weight: 500;
    	font-size: 1.25rem;
    	margin-bottom: 10px;
	}
	.underwrap_box h2 span{
		margin-left: 0.25rem;
		font-family: 'Rajdhani', sans-serif;
	}
	.underwrap_box p{
		font-size: 0.95rem;
		padding: 0.25rem 0;
		box-sizing: border-box;
	}
	.underwrap_box p a{ color: #ddd; }
	.underwrap_box p span{ margin-right: 0.25rem; }
	.underwrap_box_img{ text-align: center; }
	.underwrap_box_img > img{
		width: 80px;
		border-radius: 20px;
		vertical-align: text-bottom;
	}
/* 可樂 */
	.header_cola,
	.footer_cola{
		width: 810px;
    	max-width: 810px;
    	margin: 0 auto;
	}

