/*-----------------------------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: 20px;
}
body{
	/*background-color: #f6f6f6!important;*/
	background-image: url("../images/bg.png");
	color: #2d3945;
	font-size: 22px!important;
	line-height: 1.7!important;
	letter-spacing: 0.5px;
}
img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.wrapper{
	overflow: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 400;
}
section{
	padding-top: -1px;
	padding-bottom: -1px;
}
a{
	color: #fff;
}
a:hover{
	text-decoration: none!important;
}
.red{
	color: #f95b70;
}
.green{
	color: #32b388;
}
.yellow{
	color: #ffe850;
}
.white{
	color: #ffffff;
}
.purple{
	color: #874fff;
}
.f-black{
	color: #373741;
}
.medium{
	font-weight: 500;
}
.bold{
	font-weight: 700;
}
.black{
	font-weight: 900;
}
.block{
	display: block;
}
.small{
	font-size: .8rem;
}
.large{
	font-size: 1.2rem;
}
.line{
	width: 100%;
	margin: 20px auto 10px;
	height: 2px;
	background-color: #e6e6e6;
}
.text-left{
	text-align: left;
}
.text-center{
	text-align: center;
}

.nav-download {
    background-color: #f04553;
    color: #fff;
    border-radius: 20px;
	padding-left: 1rem!important;
	padding-right: 1rem!important;
	padding: 8px 20px;
}
.btn-custom{
	background-color: #ffe850;
	display: inline-block;
	color: #534c4d;
	padding: 15px 80px;
	letter-spacing: 2px;
	border-radius: 20px;
	transition: .6s;
	margin-top: 30px;
	font-weight: 700;
	font-size: 1.3rem;
	cursor: pointer;
}
.btn-custom:hover{
	background-color: #d9c95e;
	transition: .6s;
}
.activity .btn-custom,.tab-content-box .btn-custom{
	background-color: #f3455c;
	color: #fff;
}
.activity .btn-custom:hover,.tab-content-box .btn-custom:hover{
	background-color: #ca2138;
}
.activity-box .btn-custom,.tab-content-box .btn-custom{
	background-color: #f3455c;
	color: #fff;
	font-size: 1rem;
	padding: 10px 40px;
	margin-top: 10px;
}
.section-title-box{
	text-align: center;
	margin: 0 auto 30px;
}

.section-title{
	font-size: 2.1rem;
	line-height: 1.3;
	margin: 10px auto 20px;
	color: #f3455c;
	font-weight: 800;
}
.activity-box .section-title{
	font-size: 1.7rem;
	margin: 10px auto 0px;
}
.section-subtitle{
	font-size: 1.4rem;
	line-height: 1.5;
	color: #3d3d3d;
}
.text-ps{
	font-size: .8rem;
	opacity: .9;
	font-weight: 300;
	letter-spacing: 1px;
}
.step-ps a{
	margin: 5px 0;
	font-weight: 500;
}
.step-btn{
}
.header-kv{
	background-image: url("../images/kv.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 35%;
	margin-top: 46px;
}
.modal-dialog{
	max-width: 600px;
}

#stepModalToggle{
	font-size: .9rem;
}
#stepModalToggle .modal-content{
	border: 3px solid #f3455c;
	border-radius: 20px;
}
#stepModalToggle table .table-date{
	width: 40%;
}
#stepModalToggle table{
	border-bottom: 2px solid #f3455c;
}
#stepModalToggle table caption{
	font-size: 1.1rem;
	margin-bottom: 5px;
}
#stepModalToggle table tr{
	border-bottom: 1px solid #f3455c;
}
#stepModalToggle table tr th{
	color: #f3455c;
	font-weight: 500;
	border-bottom: 2px solid #f3455c;
	vertical-align: middle;
}
#stepModalToggle .modal-header,#stepModalToggle .modal-footer{
	border: none;
}
#stepModalToggle .modal-header{
	background-color: #f3455c;
	color: #fff;
	text-align: center;
}
#stepModalToggle .modal-header .modal-title{
	margin: 0 auto;
}
#stepModalToggle .btn-close{
    background-color: #f3455c;
	color: #fff;
    opacity: .5;
}
#stepModalToggle .btn-close:hover {
    background-color: #f3455c;
    opacity: .7;
}
.btn-close {
    bs-btn-close-color: #fff!important;
}
.modal-footer{
	text-align: center;
	padding-top: 0;
	padding-bottom: 40px;
}
.modal-footer .btn-custom{
	margin: 0 auto;
	font-size: 1rem;
}
.how-pic-m{
		display: none;
	}


#how{
	padding: 100px 0;
}
.how-tab{
	margin-top: 40px;
}
.tab-content{
	border: solid 3px #f3455c;
	border-radius: 0 0 10px 10px;
	background-color: #fff;
	padding: 40px 60px;
}
.tab-content-box{
	align-items: center;
}
.nav-tabs{
	border: none;
}
.nav-link{
	width: 50%;
	border-radius: 20px 20px 0 0!important;
	border: none!important;
	background-color: #ffc2c2;
	color: #a16363;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: #dee2e6 #dee2e6 #fff;
	background-color: #f3455c;
	color: #fff;
	font-weight: 700;
}
.nav-link:focus, .nav-link:hover {
    color: inherit;
	opacity: .8;
}
.step-list{
	line-height: 1.8;
	margin-top: 15px;
}
.step{
	background-color: #ffe850;
	font-size: .85rem;
	padding: 2px 10px;
	margin-right: 10px;
}
.step-btn{
	cursor: pointer;
}
.how a:hover,.activity a:hover,.activity-box a:hover{
	color: rgba(252,61,61,.7);
	text-decoration: underline!important;
}

#atm{
	background-image: url("../images/bg-atm.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
}
#atm .section-title,#atm .section-subtitle{
	color: #fff;
}
.gift-box{
	border: 5px solid #ffc21e;
	background-color: #fff;
	border-radius: 30px;
	padding: 0px 50px 30px;
	margin: 70px auto 20px;
}
.col-12 .gift-box{
	width: 97%;
	}
.gift-box-title{
	background-color: #ffe850;
	color: #534c4d;
	padding: 10px;
	margin-top: -30px;
	margin-bottom: 10px;
	border-radius: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 1.3rem;
}
.gift-box img{
	width: 130px;
	margin: 20px auto;
}
.gift-name{
	font-size: 1.4rem;
	font-weight: 700;
}


#activity{
	padding: 100px 0;
}
.coupon-10000{
	margin: 40px auto 20px;
}
.other-coupon{
	margin-top: 70px;
	margin-bottom: 100px;
}
.coupon-box{
	margin: 30px auto 20px;
}
.activity-box{
	align-items: center;
	text-align: left;
}
.activity-box img{
	width: 80%;
}
.activity-box-2{
	margin-top: 60px;
}
.activity-item{
	display: inline-block;
	background-color: #ffe850;
	font-size: .85rem;
	padding: 0px 10px;
	margin-right: 10px;
}
.activity-title{
	background-color: #874fff;
	color: #fff;
	padding: 8px 20px;
	display: inline-block;
	margin-bottom: 20px;
}
.activity-box p{
	font-size: .9rem;
}
.activity-box a{
	color: #f3455c;
	text-decoration: underline;
}
.activity-box .text-ps{
	margin-top: 20px;
	line-height: 1.5;
}
.text-ps{
	font-size: .7rem;
}
.text-ps a:hover{
	color: rgba(252,61,61,.7);
	text-decoration: underline!important;
}

.owl-carousel{
	margin-top: 20px;
	margin-bottom: 20px;
}
.owl-carousel .owl-item img{
	width: 95%;
}
.step-title{
	font-size: .82rem;
	margin-top: 20px;
	letter-spacing: 2px;
}
.owl-carousel button.owl-dot{
	background-color: #C7C7C7;
	width: 8px;
	height: 8px;
	border-radius: 30px;
	margin: 0 5px;
}
.owl-carousel button.active{
	width: 30px;
	height: 8px;
	border-radius: 30px;
	background-color: #f3455c;
}
.owl-nav{
	display: none;
}
.owl-dots{
	display: none;
}
/*.owl-nav span {
    font-size: 30px;
    line-height: 1;
    opacity: .8;
    color: #fff;
    background-color: #1e1e1e;
    border-radius: 50px;
    padding: 0px 20px 5px;
}
.owl-prev{
	position: absolute;
	left: 0%;
    top: 45%;
}
.owl-next{
	position: absolute;
	right: 0%;
    top: 45%;
}
.owl-carousel.owl-drag .owl-item{
	padding: 0 20px;
}*/

#notice{
	background-color: #505050;
	color: #fff;
	padding: 80px 0;
	
}
#notice h5{
	font-size: 1rem;
	margin-left: -20px;
}
#notice ol li{
	font-size: 16px;
	margin: 10px 0;
	font-weight: 300;
}

.action-box{
	position: fixed;
	z-index: 99;
	right: 13px;
	bottom: 20vh;
	text-align: center;
	line-height: 1.5;
	font-weight: 500;
	font-size: .9rem;
}
.action-box img{
	width: 60px;
	z-index: 333;
	margin-bottom: 3px;
}
.action-box span{
	background-color: #343740;
	color: #fff;
	padding: 3px 12px;
	border-radius: 30px;
	margin-top: 5px;
	font-size: .75rem;
	font-weight: 400;
}
.action-box-m{
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #feac5e;
	z-index: 998;
	text-align: center;
	display: none;
	box-shadow: -9px 0px 10px rgba(0,0,0,.3);
	margin-bottom: 42px;
}
.action-box-m a{
	display: inline-block;
	width: 50%;
	float: left;
	padding: 12px 0;
	color: #1e1e1e;
}
.action-box-m img{
	height: 20px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: -3px
}


@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, 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 arrow {
            0% {
                -webkit-transform: translate(0px, -2px);
                   -moz-transform: translate(0px, -2px);
                    -ms-transform: translate(0px, -2px);
                     -o-transform: translate(0px, -2px);
                        transform: translate(0px, -2px);
            }
			50% {
                -webkit-transform: translate(5px, -2px);
                   -moz-transform: translate(5px, -2px);
                    -ms-transform: translate(5px, -2px);
                     -o-transform: translate(5px, -2px);
                        transform: translate(5px, -2px);
            }
			100% {
                -webkit-transform: translate(0px, -2px);
                   -moz-transform: translate(0px, -2px);
                    -ms-transform: translate(0px, -2px);
                     -o-transform: translate(0px, -2px);
                        transform: translate(0px, -2px);
            }
        }

@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,.pcAppLinkBox2,.pcAppLinkBox3,.pcAppLinkBox4,.pcAppLinkBox5,.pcAppLinkBox6{
	width: 300px;
	height: 330px;
	background-color: #fff;
	border: 3px solid #f3455c;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	border-radius: 10px;
	padding-bottom: 20px;
}
.pcAppLinkBox>h1,.pcAppLinkBox2>h1,.pcAppLinkBox3>h1,.pcAppLinkBox4>h1,.pcAppLinkBox5>h1,.pcAppLinkBox6>h1{
	font-size: 20px;
	line-height: 50px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	background-color: #f3455c;
	border-radius: 6px 6px 0 0;
}
.pcAppLinkBox>div,.pcAppLinkBox2>div,.pcAppLinkBox3>div,.pcAppLinkBox4>div,.pcAppLinkBox5>div,.pcAppLinkBox6>div{
	width: 100%;
	background:#fff;
	padding-top: 15px;
	text-align: center;
}
.pcAppLinkBox>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,.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,.modal-footer .btn-custom{
	font-size: 16px;
	line-height: 32px;
	color: #FFF;
	background-color: #343740;
	border-radius: 50px;
	cursor: pointer;
	margin: 0 auto;	
	transition: .6s;
	text-align: center;
	letter-spacing: 2px;
	padding: 5px 30px;
}
.pcAppClose{
	display: inline-block;
}
.btn-close:hover{
	color: #fff;
}
.pcAppClose:hover,.noticeClose:hover,.btn-close:hover{
	background-color: #343740;	
	opacity: .8;
}



/*footer*/
.img-c {
    display: inherit;
}


/* 警語-開始 */
.warning-wrap {background:#f2f2f2; color: #333; padding: 24px; box-sizing: border-box;}
.warning {width: 940px;margin: auto;}
.warning >h6 {font-size: 20px;margin-bottom: 16px;}
.warning p {line-height: 1.5;font-size: 0.8rem;}
@media screen and (max-width: 990px) {
  .warning {width: 100%; padding: 0 20px;}
}
