/*-----------------------------reset開始-------------------------------------*/
@charset "utf-8";
html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
	line-height: 1;
	font-size: 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
nav ul {
	list-style: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
/* change colours to suit your needs */
ins {
	background-color: #fff;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
div {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
i {
	font-style: normal;
}
ul {
	list-style: none;
}
/*-----------------------------天地開始-------------------------------------*/
body>.taishinLogo {
	width: 100%;
	height: 65px;
	border-bottom: 5px solid #b21d23;
	padding-top: 15px;
	background-color: #eeeeee;
	position: relative;
	z-index: 99999;
}
.taishinContain {
	width:70%;
	margin:0 auto;
	text-indent:-9999px;
}
.taishinContain a {
	display: block;
	width: 140px;
	height: 32px;
	background-image: url(../images/taishin/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 57px;
}
body>footer {
	width: 100%;
	height: 50px;
	background-image: url(../images/taishin/footer.gif);
	background-size: cover;
	background-position: center center;
	padding-top: 18px;
	position: relative;
	z-index: 99999;
}
body>footer p {
	color: #fff;
	font-size: 13px;
	margin-left:10px;
}
/* 天地結束 */


/*選單開始*/
.hamburger {
  width: 60px;
  height: 100%;
  position: relative;
  display: none;
  margin-left: -10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.hamburger::before, .hamburger::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  top: 47%;
  left: 20px;
  background-color: white;
  -webkit-box-shadow: 0 8px 0 white, 0 -8px 0 white;
          box-shadow: 0 8px 0 white, 0 -8px 0 white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hamburger::after {
  display: none;
}

header {
  display: block;
  position: fixed;
  height: 60px;
  width: 100%;
  top: 0;
  background: #d70c18;
  z-index: 100;
  /*box-shadow: 0px 5px 0px 0px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px 5px 0px 0px rgb(0 0 0 / 12%);*/
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  max-width: 1200px!important;
  margin: auto;
  padding-left: 0px;
  padding-right: 40px;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

header .logo {
  width: 155px;
  height: 40px;
  position: relative;
  background-image: url("../images/taishin/taishinLogo.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

header .mainMenu {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

header .mainMenu .mask {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(109, 153, 152, 0.6);
  display: none;
  z-index: 50;
}

header .mainMenu ul {
  top: 0;
  z-index: 51;
}

header .mainMenu li {
  margin-left: 8px;
  margin-right: 8px;
  display: inline;
  white-space: nowrap;
}

header .mainMenu li a {
  padding: 1em 0;
  color: white;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

header .mainMenu li.hide {
  display: none;
}


@media (max-width: 1300px) {
	header .logo {
	  margin: 0 40px;
	}
}
@media (max-width: 1024px) {
	header .logo {
		width: 131px;
	}
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .recomBrowser,
  .copyright {
    display: none;
  }
  header .logo {
    margin: 0px;
  }
  header .mainMenu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    z-index: 101;
    display: none;
  }
  header .mainMenu ul {
    width: 100%;
    height: auto;
    position: absolute;
    display: none;
  }
  header .mainMenu li {
    display: block;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    background-color: #2d3945;
  }
  header .mainMenu li a {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    color: #fff;
	font-weight: bold;
  }
  header .mainMenu li.hide {
    display: block;
  }
	header .mainMenu li::after{
		content: "";
	}
  header.on .hamburger {
    /*background-color: white;*/
  }
  header.on .hamburger::before, header.on .hamburger::after {
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header.on .hamburger::after {
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header.on .mainMenu {
    display: block;
  }
  header.on .mainMenu .mask,
  header.on .mainMenu ul {
    display: block;
  }
  footer .left span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  header .logo {
    width: 116px;
    height: 30px;
  }
  header .headerTitle {
    font-size: 14px;
  }
  footer .left span:nth-child(2) {
    display: none;
  }
}
/*選單結束*/

/*-----------------------------內容區開始-------------------------------------*/
html{
	font-size: 18px;
}
body{
	background-color: #FFF;
	color: #434343;
	font-size: 22px!important;
	line-height: 1.5 !important;
}
img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
/*	margin-top: -5%;*/
}
.wrapper{
	overflow: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 400;
}
section{
	padding-top: -1px;
	padding-bottom: -1px;
}
a{
	color: rgba(200,37,37,1);
	text-decoration: none!important;
}
a:hover{
	text-decoration: none!important;
	color: rgba(200,37,37,.7);
}
.red{
	color: #d40707;
}
.green{
	color: #d70c18;
}
.blue{
	color: #008cd6;
}
.yellow{
	color: #fcce56;
}
.white{
	color: #ffffff;
}
.medium{
	font-weight: 500;
}
.bold{
	font-weight: 700;
}
.black{
	font-weight: 900;
}
.small{
	font-size: .9rem;
}
.large{
	font-size: 1.5rem;
}
.block{
	display: block;
}
.hightlight span{
	
/*	background-image: linear-gradient(transparent 50%, #ffdc64 50%);*/
    /* 下面是做一些偏移，依每人需求而定 */
    margin: 0rem 0.25rem;
    padding: 0rem 0.25rem;
}
.section-title-1 span{
	color: #d70c18;
}
.btn.focus, .btn:focus{
	box-shadow: 0 0 0 0rem rgba(0,123,255,0)!important;
}

.nav-download {
    background-color: #f04553;
    color: #fff;
    border-radius: 20px;
	padding-left: 1rem!important;
	padding-right: 1rem!important;
	padding: 8px 20px;
}
.btn-main{
	background-color: #d70c18;
/*	border: 5px solid #434343;*/
	border-radius:55px;
	padding: 20px 30px;
	text-align: center;
	color: #fff;
	font-size: 1.7rem;
	width: 85%;
	margin: 0 auto;
	letter-spacing: 2px;
}
.btn-custom{
	background-color: #d40707;
	border: #ffa8a8 4px solid;
	display: inline-block;
	color: #fff;
	padding: 15px 42px;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 2px;
	border-radius: 50px;
	transition: .6s;
	margin-top: 30px;
}
.btn-custom:hover{
	background: #c20a0a;
	border: #8a1414 4px solid;
	color: #fff;
	transition: .6s;
}
.section-title-box{
	text-align: center;
	margin: 20px auto 40px;
}
.date{
	font-size: 18px;
	margin-top: 9%;
}
.section-title-pic{
    width: 90%;
    margin: auto;
	margin-top: 2%;
	margin-bottom: 2%;
}
 .yy{
	width: 70%;
}
.section-title{
	margin-bottom: 20px;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 700;
}
.ss{
	font-size: 1rem;
	font-weight: 500;
}
.section-title-1{
	margin-top: 60px;
}
.section-title-box p{
	
}
.section-subtitle{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #c82525;
	font-weight: 600;
	letter-spacing: 2px;
}
.text-center span{
	color: #d70c18;
}
.text-ps{
	color: #757575;
	font-size: .85rem;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: 400;
}

.header-kv{
	background-image: url("../images/kv.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 42%;
}

.kv-title-box{
	position: absolute;
	text-align: center;
	z-index: 99;
	right: 18%;
	top: 30%;
}


.carousel-caption {
    position: absolute;
    top: 25%;
    left: 20%;
	right: auto;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: center;
	width: 25%;
}
.bb{
	margin-top: 10%;
}
.cc{
	margin-top: 14%;
}
.dd{
	margin-top: 8%;
}
.carousel-caption img{
	width: 100%;
}

.carousel-item{
	padding-top: 40%;
	background-repeat: no-repeat;
	background-size: cover;
}
.carousel-item-1{
	background-image: url("../images/kv-bg-1.jpg");
}
.carousel-item-2{
	background-image: url("../images/kv-bg-2.jpg");
}
.carousel-item-3{
	background-image: url("../images/kv-bg-3.jpg");
}
.carousel-item-4{
	background-image: url("../images/kv-bg-4.jpg");
}
.aa{
/*	margin-bottom: 2%;*/
}
#btn-main-group{
	margin-top: -50px;
	z-index: 999;
	position: relative;
}

#event-detail{
	background-color: #ffffda;
	padding: 100px 0;
}

.detail-content{
	font-size: 1.3rem;
	line-height: 1.8;
}
.event-detail .detail-content{
	padding: 0 20px;
}
.section-scroll,.section-scroll:hover{
	text-decoration: none!important;
}
.activity-item{
	width: 300px;
	height: 270px;
	padding: 30px;
	border-radius: 25px;
	border: 5px solid #333333;
	line-height: 1.5;
	width: 99%;
	margin: 80px auto;
}
.activity-item-1{
	background-color: #9cd5ef;
}
.activity-item-2{
	background-color: #ffe0dd;
}
.activity-item-3{
	background-color: #eaffdf;
}
.activity-item-4{
	background-color: #ffbc5c;
}
.flag{
	width: 110%;
/*	max-width: 240px;*/
    margin: auto;
	margin-left: -5%;
	margin-top: 2%;
}

.activity-item p{
	font-size: 24px;
    color: #333333;
    font-weight: 700;
    padding-top: 13%;
}

.arrow{
	margin-top: 20px;
	animation: arrow 1s infinite;
}
.arrow img{
	width: 26px;
	height: 26px;
}
	.pp{
		margin-top: -3%;
		font-size: 18px;
		line-height: 1.6;
	}





.page-title{
	font-size: 2.4rem;
	font-weight: 500;
}
.page-title::after {
    content: "";
    display: block;
    width: 77px;
    height: 5px;
    border-radius: 10px;
    background-color: rgba(200,37,37,1);
    margin: 30px auto;
}



.activity-1{
	padding: 0px;
	background-color: #c0e4f9;
}

.activity-box{
	display: flex;
	align-items: center;
}

.activity-title{
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
}
.activity-box p{
	font-size: 1.2rem;
	letter-spacing: 1px;
	line-height: 1.5;
	margin-bottom: 20px;
}

#taishin-line{
	padding: 0px;
/*	background-image: url("../images/bg-green.png");*/
	background-color: #cde8cd;
}
.line-gift{
	margin-bottom: 65px;
}
.gift-box{
	border: solid 5px #30be30;
	background-color: #fff;
/*	box-shadow: 0px 0px 13px rgba(144,127,104,.35);*/
	border-radius: 40px;
	padding: 40px 50px;
	margin: 10px auto;
	line-height: 1.5;
}

.gift-box p{
	height: 70px;
}
.gift-title{
	color: #2a902a;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0px auto 5px;
}

.gift-box img{
	margin: 20px auto;
}

.plus{
	font-size: 2.8rem;
	font-weight: 700;
	color: #333333;
	align-items: center;	
}

.btn-submenu,#pills-tab-tpchange .nav-link{
	border: 5px solid rgba(0,140,214,1);
	background-color: rgba(255,255,255,1);
	border-radius: 50px;
	color: #008cd6;
	transition: .6s;
	font-size: 1.4rem;
	font-weight: 600;
	width: 350px;
	padding: 1rem;
	box-shadow: 4px 6px 0px rgba(87,166,222,.6);
	margin: 0 auto;
}
.step-name{
	font-size: 1rem;
	display: block;
	margin-bottom: 10px;
}
#tp-change .nav{
	justify-content: center;
} 
.dropdown-toggle::after {
    vertical-align: 0.1em;
	border-top: 0.5em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
}
#pills-tab-tpchange .nav-link.active{
	border: 5px solid rgba(171,232,255,1);
	background-color: rgba(0,140,214,1);
	color: #fff;
	box-shadow: none;
}
#pills-tab-tpchange .nav-link:hover{
	border: 5px solid rgba(171,232,255,1);
}

.step-tab-all .nav-pills .nav-link{
	margin-bottom: 10px;
}


.step-tab-all .nav{
	display: block;
/*	margin-top: -12%;*/
}
.nav-pills2{
	margin-top: -12%;
}
#activity-1 .step-tab-all{
	align-items: center;
	margin: 100px auto 100px;
}

#taishin-line .step-tab-all{
	align-items: center;
	margin: 60px auto 100px;
}
.ff{
	margin-top: -40px;
}
#gift{
	background-color: #f8ced5;
	padding: 60px 0;
}
.gift{
	margin-bottom: -5%;
}
.date2{
	margin-top: 3%;
}
.date3{
	margin-top: 7%;
}

.gift-table-all{
	position: relative;
}
.gift-table{
	margin-top: 30px;
	margin-bottom: 80px;
}
.gift-table th,.gift-table td{
	border-radius: 30px;
	border: 10px solid #f8ced5;
	padding: 30px 20px;
	border-collapse:separate;
	vertical-align: middle;
}
.gift-table thead th{
	background-color: #f2aeaa;
	color: #333333;
	font-weight: 500;
	letter-spacing: 1px;
	width: 50%;
}
.gift-table tbody td{
	background-color: #fff;
	letter-spacing: 1px;
}
.gift-table-pic{
	position: absolute;
	animation: arrow 1.5s infinite; 
}
.gift-table-pic-1{
	top: -100px;
	left: -100px;
}
.gift-table-pic-2{
	bottom: -30px;
	right: -150px;
}

.step-tab-all .nav-pills .nav-link{
	background-color: #fff;
	padding: 1.7rem 1.5rem;
	color: #333333;
	border-radius: 20px;
	width: 95%;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.5;
}

.line-tab .nav-pills .nav-link{
	width: 100%;
}
.step-tab-all .nav-pills .active{
	background-color: #f44a6e;
	color: #fff;
	font-weight: 500;
}
.step-tab-all .tab-pane{
	text-align: right;
}
.step-img{
	width: 85%!important;
	margin-right: 20px;
}
.line-tab .step-title{
	font-size: 1rem;
	margin: 20px auto;
}

.line-tab .owl-dot,.modal .owl-dot,#other-activity .owl-dot{
	width: 14px;
	height: 14px;
	border-radius: 10px;
	margin: 10px 8px 0px;
	background: rgba(255,255,255,1) !important;
	border: 2px solid #30be30 !important;
}
.line-tab .owl-dot.active,.modal .owl-dot.active,#other-activity .owl-dot.active{
	background: #30be30 !important;
}

.owl-nav{
	display: none;
}
.owl-nav span{
	font-size: 50px;
	line-height: 1;
	opacity: .6;
	color: #f0594c;
	width: 20px;
}
.owl-prev{
	position: absolute;
	left: 25%;
    top: 45%;
}
.owl-next{
	position: absolute;
	right: 25%;
    top: 45%;
}

.line-tab .carousel-img img{
	width: 60%;
}

#other-activity .owl-dot{
	display: none;
}

.notice-contentbox{
/*	background-color: #61c14f;*/
	background-color:#fff;
	color: #333333;
	font-size: 1rem;
	padding: 30px 40px;
	border: solid 5px #61c14f;
	border-radius: 20px;
	text-align: left;
	line-height: 1.8;
	margin: 30px auto 65px;
}
.notice-contentbox .row{
	display: flex;
	align-items: center;
}


.accordion{
	margin-top: 30px;
}
.accordion-item{
	background-color: #cde8cd;
	margin: 20px auto;
	border: none;
}
.accordion-button{
	border: 1px solid #888888;
	background-color: #fff;
	border-radius: 20px!important;
	color: #434343;
}
.accordion-button::after{
	background-image: url("../images/qa-1.svg");
}
.accordion-button:not(.collapsed){
	color: #434343;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-body {
    padding: 1.8rem 1.25rem;
	font-size: 1rem;
	line-height: 1.8;
}

#other-activity{
	background-color: #f7d7f9;
	padding: 60px 0;
}

.modal-header{
	background-color: #f04553;
	color: #fff;
	font-weight: bold;
	align-items: center;
	border-radius: 10px 10px 0px 0px;
}
.modal-footer{
	justify-content: center;
	border-top: none;
	padding-bottom: 30px;
}
.modal-header .close{
	padding: 0;
	margin: 0;
	margin-top: -10px;
	background-color: rgba(255,255,255,0);
	cursor: pointer;
}
.close {
    color: #fff;
	font-size: 1.5rem;
}
.close:hover{
	color: #fff;
}

.btn-close:hover{
	color: #fff;
}
.modal-body{
	line-height: 1.5;
	text-align: justify;
	padding: 30px 30px 0;
}
.modal-open .modal{
	padding: 0 20px;
}
.modal-dialog {
    margin: 8rem auto;
}
.modal-dialog-centered{
	min-height: 300px;
}
.step-item{
	margin: 40px auto 0;
}
.step-item img{
	width: 40%;
}
.step-text{
	margin: 20px auto 10px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5;
}
.step-text span{
	width: 30px;
	height: 30px;
	background-color: #32b388;
	color: #fff;
	padding: 2px 9px;
	border-radius: 50%;
	font-weight: bold;
	margin-right: 10px;
}
#Modal-member-type-2 .step-text span{
	border-radius: 20px;
}

.action-box{
	position: fixed;
	z-index: 9999;
	right: 10px;
	top: 20vh;
	text-align: center;
	line-height: 1.5;
	font-weight: 500;
	font-size: .9rem;
	display: none;
}
.action-box-img{
	margin-bottom: 20px;
	width: 90%;
}

.action-box-m{
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #f44a6e;
	z-index: 998;
	text-align: center;
	display: none;
	box-shadow: -9px 0px 10px rgba(0,0,0,.3);
}
.action-box-m a{
	display: inline-block;
	width: 50%;
	float: left;
	padding: 16px 0;
	color: #fff!important;
}

/*.action-box-img{
	position: absolute;
	z-index: -1;
	top: -65px;
	right: 0px;
	width: 100px;
}
.apply{
	background-color: #FCCE56;
	padding: 16px 10px 12px;
	border-radius: 10px 10px 0px 0px;
}
.download{
	background-color: #FCCE56;
	padding: 12px 10px 16px;
	border-radius: 0px 0px 10px 10px;
}
.download::before{
	content: "";
	background-color: #2d3945;
	height: 1px;
	width: 80%;
	display: block;
	position: absolute;
	bottom: 49%;
}
*/
#gotop{
	position:fixed;
	z-index:90;
	right:1%;
	bottom:60px;
	display:none;
	width:50px;
	height:50px;
	color:#fff;
	opacity: .3;
	background:rgba(100,100,100,1);
	line-height:50px;
	border-radius:50%;
	text-align: center;
}
#gotop:hover{
	background:rgba(50,50,50,1);
}
#gotop img{
	margin-top: 30%;
}

/*注意事項收合內容*/
#information-n,#information-n1{
  display: none;
}

/*收合內容*/
.information{
  text-align: left;
  line-height: 18px;
  font-size: 15px;
  margin-top: 40px;
}
td {
  padding: 5px 0;
}
/*收合按鈕*/
.btn-notice,.btn-notice1{
  display: inline-block;
  margin: 20px auto 0;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  color: #434343;
}
.ww{
	margin-bottom: 6%;
}
.btn-notice b,.btn-notice1 b{
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #434343 transparent transparent transparent;
  margin-left: 8px;
}
.btn-notice i,.btn-notice1 i{
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #434343 transparent;
  margin-left: 8px;
}
.btn-notice:hover,.btn-notice1:hover{
  color: #434343;
}
.btn-notice:hover b,.btn-notice1:hover b{
  border-color: #434343 transparent transparent transparent;
}
.btn-notice:hover i,.btn-notice1:hover i{
  border-color: transparent transparent #434343 transparent;
}
.less {
  display: none;
}

.notice-content{
	font-size: 0.9rem;
	line-height: 1.8;
	padding-top: 30px;
	font-weight: 300;
	margin-bottom: 5%;
}
 .kk{
	margin-bottom: 6%;
}
@keyframes move1 {
            0% {
                -webkit-transform: translate(-10px, 0px);
                   -moz-transform: translate(-10px, 0px);
                    -ms-transform: translate(-10px, 0px);
                     -o-transform: translate(-10px, 0px);
                        transform: translate(-10px, 0px);
            }
			50% {
                -webkit-transform: translate(10px, 0px);
                   -moz-transform: translate(10px, 0px);
                    -ms-transform: translate(10px, 0px);
                     -o-transform: translate(10px, 0px);
                        transform: translate(10px, 0px);
            }
			100% {
                -webkit-transform: translate(-10px, 0px);
                   -moz-transform: translate(-10px, 0px);
                    -ms-transform: translate(-10px, 0px);
                     -o-transform: translate(-10px, 0px);
                        transform: translate(-10px, 0px);
            }
        }

@keyframes move2 {
            0% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
			50% {
                -webkit-transform: translate(0px, 15px);
                   -moz-transform: translate(0px, 15px);
                    -ms-transform: translate(0px, 15px);
                     -o-transform: translate(0px, 15px);
                        transform: translate(0px, 15px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }

@keyframes arrow {
            0% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
            50% {
                -webkit-transform: translate(0px, 10px);
                   -moz-transform: translate(0px, 10px);
                    -ms-transform: translate(0px, 10px);
                     -o-transform: translate(0px, 10px);
                        transform: translate(0px, 10px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }


@keyframes rotate1 {
			from {
                -webkit-transform:rotate(0deg);
                   -moz-transform:rotate(0deg);
                    -ms-transform:rotate(0deg);
                     -o-transform:rotate(0deg);
                        transform:rotate(0deg);
            }
			to {
                -webkit-transform:rotate(360deg);
                   -moz-transform:rotate(360deg);
                    -ms-transform:rotate(360deg);
                     -o-transform:rotate(360deg);
                        transform:rotate(360deg);
            }
        }

@keyframes fall1 {
            0% {
                -webkit-transform: translate(0px, -50px);
                   -moz-transform: translate(0px, -50px);
                    -ms-transform: translate(0px, -50px);
                     -o-transform: translate(0px, -50px);
                        transform: translate(0px, -50px);
            }
			100% {
                -webkit-transform: translate(0px, 0px);
                   -moz-transform: translate(0px, 0px);
                    -ms-transform: translate(0px, 0px);
                     -o-transform: translate(0px, 0px);
                        transform: translate(0px, 0px);
            }
        }


#action {
    position: fixed;
    z-index: 90;
    display: none;
    right: 1%;
    bottom: 22vh;
    width: 6vw;
    max-width: 130px;
}

/*裝置判斷*/
.mask-qr{
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5000;
    display: none;
}
.pcAppLinkBox,.pcAppLinkBox1,.pcAppLinkBox2,.pcAppLinkBox3,.pcAppLinkBox4,.pcAppLinkBox5,.pcAppLinkBox6{
	width: 300px;
	height: 320px;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	border-radius: 20px;
	padding-bottom: 20px;
	border: 5px solid #434343;
}
.pcAppLinkBox>h1,.pcAppLinkBox1>h1,.pcAppLinkBox2>h1,.pcAppLinkBox3>h1,.pcAppLinkBox4>h1,.pcAppLinkBox5>h1,.pcAppLinkBox6>h1{
	font-size: 20px;
	line-height: 50px;
	font-weight: 900;
	color: #FFF;
	text-align: center;
	background-color: #f44a6e;
	border-radius: 15px 15px 0 0;
}
.pcAppLinkBox>div,.pcAppLinkBox1>div,.pcAppLinkBox2>div,.pcAppLinkBox3>div,.pcAppLinkBox4>div,.pcAppLinkBox5>div,.pcAppLinkBox6>div{
	width: 100%;
	background:#fff;
	padding-top: 15px;
	text-align: center;
}
.pcAppLinkBox>div>img,.pcAppLinkBox1>div>img,.pcAppLinkBox2>div>img,.pcAppLinkBox3>div>img,.pcAppLinkBox4>div>img,.pcAppLinkBox5>div>img,.pcAppLinkBox6>div>img{
	width: 50%;
	margin-bottom: 10px;
}
.pcAppLinkBox>div>p,.pcAppLinkBox1>div>p,.pcAppLinkBox2>div>p,.pcAppLinkBox3>div>p,.pcAppLinkBox4>div>p,.pcAppLinkBox5>div>p,.pcAppLinkBox6>div>p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 10px;
	color: #333;
}
.pcAppClose,.noticeClose,.btn-close{
	width: 100px;
	font-size: 16px;
	line-height: 32px;
	font-weight: 900;
	color: #FFF;
	background-color: #2d3945;
	border-radius: 50px;
	cursor: pointer;
	margin: 0 auto;	
	transition: .6s;
	text-align: center;
	letter-spacing: 2px;
}
.pcAppClose:hover,.noticeClose:hover{
	background-color: #2d3945;	
	opacity: .8;
}

#action {
    position: fixed;
    z-index: 90;
    right: 1%;
    bottom: 60vh;
    max-width: 130px;
}
#action img:first-child{
	margin-bottom: 20px;
}
/*
.owl-carousel{
	overflow:hidden !important;
	max-height: 800px;
}

.carousel-img{
	overflow:hidden !important;
	max-height: 676px;
}
*/



/*footer*/
.img-c {
    display: inherit;
}


/* 警語-開始 */
.warning-wrap {background:#f2f2f2; color: #333; padding: 24px; box-sizing: border-box;}
.warning {width: 95%;max-width: 1180px; margin: auto;}
.warning >h6 {font-size: 20px;margin-bottom: 10px;}
.warning p {font-size: 16px; line-height: 1.5;}
@media screen and (max-width: 990px) {
  .warning {width: 100%; padding: 0 20px;}
}
