
/*設定視窗邊界為0*/
*{
	/*border: 1px solid red;*/
}

/*設定字型及捲軸*/
body {
	background-color:#3080A5;
	font-family: 'Noto Sans TC','Arial';
	overflow-y: scroll;
	overflow-x: hidden;
}
/*
*{
	border: 1px solid red;
}
*/
/*設定整體的固定背景圖*/
.container {
		width: 100%;
		height: auto;
		/* background-image:url(./images/pic_bg.png); */
		background-repeat: no-repeat;
		background-position: top center;
		background-attachment: fixed;
		background-size: 60%;
		z-index: -10;
}

.andrew{
	width: 80px;
	height: 80px;
	background: yellow;
	border-radius: 5px;
	opacity: .8;
	box-shadow: 0px 5px 0px rgba(183, 213, 240, 0.8);
	position: absolute;
	right: 20px;
	bottom: 20px;
}

/*紫色透明的主要區塊*/
.main {
	width: 100%;
	height: auto;
	background-color: rgba(183, 213, 240, 0.8);
	margin: 0 auto;
	padding: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.bgimg{
	width: 75%;
	height: auto;
	position: fixed;
	top: 0%;
	left: 50%;
  	/* bring your own prefixes */
  	transform: translate(-50%, -0%);
	  z-index: -999;
}

.bgtitle{
	width: 75%;
	height: auto;
	position: fixed;
	top: 0%;
	left: 50%;
  	/* bring your own prefixes */
  	transform: translate(-50%, -0%);
	  z-index: -99;
}

.emptydiv {
	width: 100%;
	height: 90vh;
}

.responsive {
	width: 100%;
	height: auto;
}



.andrew{

}


p {
	margin: 0;
}

h6 {
	margin: 2rem 0 0 0;
}

/*小標*/
.smalltitle {
	width: 62%;
	font-size: 1.8rem;
	color: #003D74;
	line-height: 180%;
	font-weight: 800;
	padding: 1.5rem;
}

video{
	width: 80%;
}



.smalltitlew {
	width: 62%;
	font-size: 1.8rem;
	color: #FAE6FF;
	line-height: 180%;
	font-weight: 500;
	margin-top: 3.5rem;
}
.info {
	margin-bottom:20px ;
	font-size: 1.5rem;
	color: #003D74;
	line-height: 180%;
	font-weight: 500;
}

/*大標*/
.bigtitle {
	font-size: 2rem;
	color: #FFF;
	line-height: 180%;
	font-weight: 700;
	margin-top: 3rem;
}

/*小圖標*/
.smallimg {
	margin-top: 2rem;
	margin-bottom: 2rem;
	width: 30%;
}

/*三圖標*/
.threeimg {
	width: calc(100%/3);
}

/*兩圖標*/
.twoimg {
	width: calc(100%/2);
}

/*margin 5%*/
.mr5per {
	padding-top: 5%;
	padding-bottom: 2%;
}
.my5per {
	padding: 0% 5%;
}

.wbg {
	padding: 10px;
	background:#FFF;
	border-radius: 10px;
}

/*padding 25%*/
.pd25per {
	padding: 5% 25%;
}

/*margin10px*/
.mr10px {
	margin: 10px;
}

/*自訂義表格*/
.mytable {
	width: 60%;
	margin: 0 auto;
}
.titiletd {
	font-size: 2rem;
	color:#003D74;
	line-height: 180%;
	font-weight: 700;
	text-align: left;
}




.myform {
	width: 100%;
}



.myButton {
	background-color:#003D74;
	border-radius:9px;
	border:0px solid;
	display:inline-block;
	cursor:pointer;
	color:white;
	font-weight: 700;
	font-size: 2rem;
	padding:16px 31px;
	text-decoration:none;
	
}

.myButton:hover {
	background-color:#8888A8;
}

.myButton:active {
	position:relative;
	top:1px;
}

/*v background*/
.vbg {
	background-color: rgb(0, 61, 116);
	background-image:url(images/v_logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.nickname {
	font-size: 1.8rem;
	color: #FFF;
	line-height: 150%;
	font-weight: 700;
}
.msgtext {
	font-size: 1.5rem;
	color: #FFF;
	line-height: 150%;
	font-weight: 500;
}

.ept {
	width:100%; 
	height: 1000px;
}

.hline {
	width: 50%;
	border-bottom: 2px solid #003D74;
}

/* 放置所有col的容器 */
.myrow {
    /* flex讓第一層元素預設橫向橫列 */
    display: flex;
    /* 此設定可以依據我所設定的col寬度做設定，不會自己全部縮到一排 */
    flex-wrap: wrap;
}

/* 一張卡片所在的容器 */
/* 33.333%表示分割三分之一 */
.mycol {
    /* width: 33.333%; */
    /* clac是計算函數的意思 */
    width: calc(100% / 3);
    /* margin對外留白  padding對內留白 */
    /* 留白：上下 左右/ 一個值=同時設定四邊同值 / */
   padding: 1.5rem 1rem;
}

.card {
	padding: 0rem;
	height: 250px;
}

.cardtext {
	padding: 2rem;
}

.footer {
	color: #FFF;
}

/*往下箭頭的CSS*/
.mycontainer {
	margin: 0 auto;
	margin-top:0%;
	margin-bottom:100px;
	display: flex;
  position: relative;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}


@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
  
}

.myh1 {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 100px;
}

.sicon {
	margin: 10px; font-size: 90px; color: white;
}
.text-white {
	font-size: 9px;
}

	.msgtitle {
		font-size: 1.8rem;
		margin: 10px 0px;
		color: #FFF;
	}
/* Responsive Web Design 響應式網頁設計 */
/* CSS -> Media Query */
/* @media小括號裡寫的是視窗大小的條件 */
/* 手機版寬度大多設定 <= 767, <=576 */
@media (max-width:767px) {
    /* 以下的選擇器只在視窗寬度<= 767px才有效 */
    .mycol{
        width: 100%;
		padding: 0.5rem;
    }
	
	.container {
			background-size: 100%;
			background-image:url();
	}

	.container:before {
	  content: ' ';
	  position: fixed;
	  z-index: -1;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
		background-repeat: no-repeat;
	background-image:url(images/main_logo.png);
	  background-size: 100%;
	}

	.ept {
		width:100%; 
		height: 350px;
	}
	.main {
		padding: 1rem;
	}
	.smalltitle {
		width: 100%;
		font-size: 1.2rem;
		padding: 1rem;
	}

	







	.smalltitlew {
		width: 100%;
		font-size: 1.2rem;
		margin-top: 2.5rem;
	}
	.smalltitlew2 {
		font-size: 0.9rem;
	}
	.smallimg {
		margin-top: 1rem;
		margin-bottom: 1rem;
		width: 70%;
	}
	.threeimg {
		width: 100%;
		margin-bottom: 1rem;
	}
	/*
	.twoimg {
		width: 100%;
		margin-bottom: 1rem;
	}*/
	.mr5per {
		padding-top: 8%;
		padding-bottom: 5%;
	}
	.pd25per {
		padding: 5%;
	}
	.mytable {
		width: 100%;
	}
	.titiletd {
		font-size: 1.3rem;
	}
	.myButton {
		font-size: 1.2rem;
		padding:15px 25px;
	}
	.my5per {
		margin-top: 8%;
		margin-bottom: 5%;
	}
	.nickname {
		font-size: 1.5rem;
	}
	.msgtitle {
		font-size: 1.5rem;
		margin: 10px 0px;
	}
	.msgtext {
		font-size: 1.2rem;
	}
	.footer {
		font-size: 0.5rem;
	}
	.cardtext {
		padding: 1rem;
	}
	
	.bgimg{
		width: 100%;
	}

	.bgtitle{
		width: 95%;
	}
		
	.emptydiv {
		height: 50vh;
	}
	.info {
		font-size: 1rem;
	}
	
	.myh1 {
		font-size: 1.5rem;
		font-weight: 700;
		margin: 50px 0px  20px 0px;
	}
	
	.sicon {
		margin: 10px; font-size: 45px; color: white;
	}
}
.smallfont {
	font-size: 9pt;
	font-weight: 300;
}
/* @media (min-width: 577px)代表只要視窗寬度大於577都能起到作用 */
/* 如果要從小到大的話要這樣，表以下選擇器只在視窗寬度577-990之間有效 */
@media (min-width: 577px) and (max-width: 990px)  {
    .mycol{
        width: 50%;
    }
	.mytable {
		width: 80%;
	}
}

/*淡入動畫*/

.bgimg {
	opacity: 0;
	animation: fadeIn 2s ease-in both;
}

.bgtitle {
	opacity: 0;
	animation: fadeIn 2s ease-in both;
	animation-delay: 2s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		/*transform: translate3d(0, -20%, 0);*/
	}

	to {
		opacity: 1;
		/*transform: translate3d(0, 0, 0);*/
	}
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}