@charset "UTF-8";
/* CSS Document */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
b {
  font-weight: bold !important;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}
a img {
  border: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
a {
  text-decoration: none;
}
a img {
  outline: none;
}
a:focus,
input:focus,
button:focus {
  outline: none;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* 避免滾動條 */
  background-color: #b3d9fc;
  /*	font-family: Arial, "微軟正黑體", "繁黑體", 'Microsoft JhengHei', 'Microsoft YaHei', 'Heiti TC', 'LiHei Pro', sans-serif, "新細明體", PMingLiU;*/
  font-family: "Noto Sans TC", serif;
}

/**第一card**/
.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/card1_bg.png);
  background-size: cover;
}

/* Logo：左上角固定 */
.logo {
  position: absolute;
  top: 3vw;
  left: 3vw;
  width: 200px;
}

.logo img {
  width: 100%;
  height: auto;
}

/* 主視覺：背景圖 + 文案 */
.hero {
  position: absolute;
  right: 0;
  width: 96%;
  bottom: 5vw;
}

.hero .bg {
  width: 100%;
}

/* CTA 按鈕：右下角 */
.cta {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}

.cta button {
  display: block;
  border: none;
  background: none;
  width: 500px;
}

.cta button img {
  width: 100%;
}

.cta button:active {
  opacity: 0.8;
}

/**第二card**/
.select_sec {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/card2_bg.png);
  background-size: cover;
}

.select_wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card2_slogan {
  width: 60%;
}
.select_btn_wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.select_btn_wrap img {
  width: 30%;
}

/**第三card**/

.next_sec {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/card3_bg.png);
  background-size: cover;
}

.next_sec_wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card3_slogan {
  width: 70%;
}
.next_count_down {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 77px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 18.868px 16.401px 70px rgba(224, 139, 156, 0.44);
}

/**第四card**/

.result_sec {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/card4_bg.png);
  background-size: cover;
}

.result_sec_wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  gap: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card4_slogan {
  width: 70%;
}

#returnBtn {
  border: none;
  background: none;
  display: block;
  width: 500px;
}

#returnBtn img {
  width: 100%;
}

#returnBtn:active {
  opacity: 0.8;
}

.card4_hint {
  position: absolute;
  bottom: 2vw;
  width: 200px;
  left: 50%;
  margin-left: -100px;
}

/* 橫式 iPad (min-width: 1024px) */
@media screen and (min-width: 1024px) {
}

.spanBox {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin: 10px;
  border-left: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0px;
}
