﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
body {
	font-family: 'Noto Sans TC', sans-serif;
	overflow-x: hidden;
}
html {
	overflow-x: hidden;
	width: 100%;
	position: relative;
}
html, body {
	height: 100%;
	margin: 0;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
main {
	flex: 1;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none; /* 移除背景 */
	padding: 10px; /* 添加內邊距以提升點擊區域 */
	border: 1px solid #ccc; /* 添加邊框 */
}
img {
	max-width: 100%;
	height: auto;
}
div:focus {
	outline: none;
}
a {
	text-decoration: none;
	color: #3b5658;
}
a:hover {
	color: #1e919a;
}
textarea {
	resize: none;
}
.gotop {
	position: fixed;
	right: 10px;
	bottom: 25%;
	z-index: 9999;
	width: 60px;
	text-align: center;
}
.img {
	width: 100%;
	aspect-ratio: 1 / 1; /* 保持比例 */
	position: relative;
	overflow: hidden; /* 限制內部內容超出範圍 */
	background-color: #fff;
}
.img::before {
 content: "";
 position: absolute;
 inset: 0;
 background-image: inherit;
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 transition: transform 0.6s ease-out;
}
.img:hover::before, a:hover .img::before {
 transform: scale(1.1); /* 放大但不超出邊框 */
}
.carousel-control-prev, .carousel-control-next {
	opacity: 1;
}
.carousel-control-prev img, .carousel-control-next img {
	width: 55px; /* 自訂大小 */
	height: auto;
}
.carousel-control-next, .carousel-control-prev {
	position: absolute;
	top: 400px;
	width: 15%;
	height: 50px;
}
.carousel-control-next {
	right: -10px;
}
.carousel-control-prev {
	left: -10px;
}
/*--------------------------------------------------------------
# font-size
--------------------------------------------------------------*/
.fs_6 {
 --min-size: 14;
 --max-size: 17;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_5 {
 --min-size: 16;
 --max-size: 20;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_4 {
 --min-size: 17;
 --max-size: 24;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_3 {
 --min-size: 25;
 --max-size: 32;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_2 {
 --min-size: 30;
 --max-size: 40;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_1 {
 --min-size: 35;
 --max-size: 50;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
.fs_small {
 --min-size: 12;
 --max-size: 14;
 --font-size: calc((var(--min-size) * 1px) + (var(--max-size) - var(--min-size)) * ((100cqw - 320px) / (1920 - 320)));
 font-size: clamp(var(--min-size) * 1px, var(--font-size), var(--max-size) * 1px);
}
/*--------------------------------------------------------------
# form style
--------------------------------------------------------------*/
.form-label {
	color: #000;
}
.form-control {
	line-height: 28px;
	border-radius: 10px;
	background-color: transparent;
	color: #263346;
	border: 1px solid #263346;
	padding: 10px 15px;
}
.form-control::placeholder {
 color: #263346;
}
.form-control:focus {
	border-color: #263346;
	box-shadow: 0 0 0 0 transparent;
	color: #263346;
	background-color: transparent;
	border: 1px solid #263346;
	padding: 10px 15px;
}
.form-select {
	line-height: 28px;
	border-radius: 0px;
	background-color: transparent;
	color: #263346;
	border: 1px solid #263346;
	padding: 10px 15px;
}
.form-select:focus {
	border-color: #263346;
	box-shadow: 0 0 0 0 transparent;
	color: #263346;
	background-color: transparent;
	border: 1px solid #263346;
	padding: 10px 15px;
}
.form-check-input {
	border: 1px solid #263346;
	background-color: transparent;
	padding-top: 8px;
	padding-right: 8px;
	padding-left: 8px;
	padding-bottom: 8px;
}
.form-check-label {
	color: #263346;
}
.form-check-input:checked {
	background-color: #263346;
	border-color: #263346;
}
/*btn*/
.btn:focus {
	box-shadow: 0 0 0 0rem rgba(0, 140, 255, 1.00);
	-webkit-box-shadow: 0 0 0 0rem rgba(0, 140, 255, 1.00);
}
.main_btn {
	color: #fff;
	background-color: #222529;
	padding: 11px 13px;
	position: relative;
	border: 1px solid #222529;
	border-radius: 4px;
}
.main_btn:hover, a:hover.main_btn {
	border: 1px solid #222529;
	border-radius: 4px;
	background-color: transparent;
}
/*--------------------------------------------------------------
# color
--------------------------------------------------------------*/
.f_bg_color {
	background-color: #172439;
}
.main_bg_color {
	background-image: -webkit-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: -moz-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: -o-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: linear-gradient(180deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	position: relative;
	z-index: 0;
}
.main_bg_color::before {
 background-image: url("../images/main_bg_before.png");
 background-repeat: repeat-x;
 background-position: top right;
 height: 150px;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 content: '';
 z-index: -1;
}
.red_color {
	color: #c43826;
}
.f_logo_bg {
	background-color: #fff;
	margin-bottom: 8px;
	position: relative;
	z-index: 0;
}
.f_logo_bg::before {
 background-image: url("../images/footer_before.jpg");
 background-position: center center;
 width: 100px;
 height: 72px;
 background-repeat: no-repeat;
 background-size: 100%;
 position: absolute;
 top: 0;
 right: -98px;
 content: '';
 z-index: -1;
}
.f_logo_bg svg {
	position: relative;
	z-index: 5;
}
/*--------------------------------------------------------------
# table
--------------------------------------------------------------*/
table th,
table td {
	border: 1px solid #fff;
	padding: 6px 8px;
}
.table-responsive > .table > tbody > tr > td, .table-responsive > .table > thead > tr > th {
	white-space: nowrap;
	margin-bottom: 0;
}
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.table_style tr {
	border-bottom: 1px solid #fff;
}
.table_style tr:nth-child(odd) {
 background-color: rgba(255, 255, 255, 0.4);
}
.table_style td {
	padding: 10px 10px;
	border-bottom: 0;
	border-left: 1px solid #fff;
}
/*--------------------------------------------------------------
# tab
--------------------------------------------------------------*/
.nav-tabs {
	border-bottom: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	background-color: transparent;
	border-color: 0;
}
.nav-tabs .nav-link {
	border: none;
	background: transparent;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}
.tab-img {
	width: 250px; /* 按鈕圖片大小，可依需求調整 */
	height: 100px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	border: 2px solid transparent;
}
.tab-label {
	display: block;
 font-size: .85rem;
 margin-top: .25rem;
	text-align: center;
	color: #333;
}
.nav-image-tabs {
	gap: 1rem;
}
/* 每個分頁的圖片（正常狀態） */
#home-tab .tab-img {
	background-image: url('../images/tab1.png');
	color: #0a3993;
}
#profile-tab .tab-img {
	background-image: url('../images/tab2.png');
	color: #0a3993;
}
#contact-tab .tab-img {
	background-image: url('../images/tab3.png');
}
/* 每個分頁的圖片（選中狀態） */
#home-tab.active .tab-img {
	background-image: url('../images/tab1_h.png');
	color: #fff;
}
#profile-tab.active .tab-img {
	background-image: url('../images/tab2_h.png');
	color: #fff;
}
#contact-tab.active .tab-img {
	background-image: url('../images/tab3_h.png');
}
.nav-tabs .nav-link.active .tab-img {
	transform: translateY(-4px) scale(1.03);
}
.tab_text {
	margin-top: 10px;
	font-weight: 700;
}
.tab_text h5 {
	font-size: 25px;
}
.tab_text p {
	font-size: 15px;
}
/*--------------------------------------------------------------
# stab
--------------------------------------------------------------*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	background-color: transparent
}
.stab-img1 {
	width: 100px; /* 按鈕圖片大小，可依需求調整 */
	height: 22px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/tab_s1.png');
}
.stab-img2 {
	width: 100px; /* 按鈕圖片大小，可依需求調整 */
	height: 22px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/tab_s2.png');
}
.stab-img3 {
	width: 80px; /* 按鈕圖片大小，可依需求調整 */
	height: 22px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/tab_s3.png');
}
.stab-img4 {
	width: 75px; /* 按鈕圖片大小，可依需求調整 */
	height: 22px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/tab_s4.png');
}
.stab-img5 {
	width: 75px; /* 按鈕圖片大小，可依需求調整 */
	height: 22px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/tab_s5.png');
}
/* 每個分頁的圖片（選中狀態） */
#stab1-tab.active .stab-img1, #stab1_2-tab.active .stab-img1, #stab1_3-tab.active .stab-img1 {
	background-image: url('../images/tab_s1h.png');
}
#stab2-tab.active .stab-img2, #stab2_2-tab.active .stab-img2, #stab2_3-tab.active .stab-img2 {
	background-image: url('../images/tab_s2h.png');
}
#stab3-tab.active .stab-img3, #stab3_2-tab.active .stab-img3, #stab3_3-tab.active .stab-img3 {
	background-image: url('../images/tab_s3h.png');
}
#stab4-tab.active .stab-img4, #stab4_2-tab.active .stab-img4, #stab4_3-tab.active .stab-img4 {
	background-image: url('../images/tab_s4h.png');
}
#stab5-tab.active .stab-img5, #stab5_2-tab.active .stab-img5, #stab5_3-tab.active .stab-img5 {
	background-image: url('../images/tab_s5h.png');
}
/* mobile */
#step1-tab.active .stab-img1, #step1-tab2.active .stab-img1, #stab1_3-tab.active .stab-img1 {
	background-image: url('../images/tab_s1h.png');
}
#step2-tab.active .stab-img2, #step2-tab2.active .stab-img2, #stab1_3-tab.active .stab-img2 {
	background-image: url('../images/tab_s2h.png');
}
#step3-tab.active .stab-img3, #step3-tab2.active .stab-img3, #stab1_3-tab.active .stab-img3 {
	background-image: url('../images/tab_s3h.png');
}
#sub1-tab.active .stab-img4, #sub1-tab2.active .stab-img4, #sub1-tab3.active .stab-img4 {
	background-image: url('../images/tab_s4h.png');
}
#sub2-tab.active .stab-img5, #sub2-tab2.active .stab-img5, #sub2-tab3.active .stab-img5 {
	background-image: url('../images/tab_s5h.png');
}
/*--------------------------------------------------------------
# app
--------------------------------------------------------------*/
.app-img1 {
	width: 170px; /* 按鈕圖片大小，可依需求調整 */
	height: 65px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/app_btn1.png');
}
.app-img2 {
	width: 195px; /* 按鈕圖片大小，可依需求調整 */
	height: 65px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/app_btn2.png');
}
.app-img3 {
	width: 225px; /* 按鈕圖片大小，可依需求調整 */
	height: 65px;
	background-size: cover;
	background-position: center;
 transition: transform .12s ease, box-shadow .12s ease;
	background-image: url('../images/app_btn3.png');
}
#app1-tab.active .app-img1 {
	background-image: url('../images/app_btn1_h.png');
}
#app2-tab.active .app-img2 {
	background-image: url('../images/app_btn2_h.png');
}
#app3-tab.active .app-img3 {
	background-image: url('../images/app_btn3_h.png');
}
/*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
.box_bg {
	background-image: url("../images/m_bg_tab.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	height: 650px;
	position: relative;
	z-index: 0;
	max-width: 370px;
	margin: auto;
}
.box_bg h1 {
	font-size: 28px;
	font-weight: 700;
	color: #f4deb7;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.box_bg h1::before {
 content: attr(data-text); /* 複製原文字內容 */
 position: absolute;
 left: 10.5%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px); /* 模糊邊緣，柔化描邊 */
 opacity: 0.9; /* 略淡一點更自然 */
}
.box_bg h3 {
	font-size: 28px;
	font-weight: 700;
	color: #f4deb7;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.box_bg h3::before {
 content: attr(data-text); /* 複製原文字內容 */
 position: absolute;
 left: 24%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px); /* 模糊邊緣，柔化描邊 */
 opacity: 0.9; /* 略淡一點更自然 */
}
.box_bg h4 {
	color: #011957;
	font-size: 16px;
	line-height: 25px;
	font-weight: 700;
	margin-bottom: 0px;
}
.box_bg h5 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.box_bg h5::before {
 content: attr(data-text);
 position: absolute;
 left: 22.5%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px);
 opacity: 0.9;
}
.t1 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.t1::before {
 content: attr(data-text); /* 複製原文字內容 */
 position: absolute;
 left: 17%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px); /* 模糊邊緣，柔化描邊 */
 opacity: 0.9; /* 略淡一點更自然 */
}
.t2 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.t2::before {
 content: attr(data-text);
 position: absolute;
 left: 3.5%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px);
 opacity: 0.9;
}
.t5 {
	font-size: 28px;
	font-weight: 700;
	color: #f4deb7;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.t5::before {
 content: attr(data-text);
 position: absolute;
 left: 15%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px);
 opacity: 0.9;
}
.t6 {
	font-size: 28px;
	font-weight: 700;
	color: #f4deb7;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.t6::before {
 content: attr(data-text);
 position: absolute;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px);
 opacity: 0.9;
}
.t7 {
	font-size: 16px;
	font-weight: 700;
	color: #f4deb7;
	position: relative;
	z-index: 1;
	margin-bottom: 0px;
}
.t7::before {
 content: attr(data-text);
 position: absolute;
 left: 38%;
 top: 0;
 z-index: -1;
 color: transparent;
 -webkit-text-stroke: 6px #021d5e;
 filter: blur(0.5px);
 opacity: 0.9;
}
.star1 {
	position: absolute;
	top: 125px;
	right: 10px;
	width: 50px;
}
.star2 {
	position: absolute;
	bottom: 45px;
	left: 20px;
	width: 40px;
}
.star3 {
	position: absolute;
	top: 105px;
	right: 15px;
	width: 60px;
}
.star4 {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	max-width: 130px;
}
.check_btn {
	background-color: #0a3993;
	color: #fff;
	border-radius: 50px;
	padding: 10px 50px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	font-size: 20px;
}
.check_btn::before {
 position: absolute;
 top: 5px;
 left: 5px;
 background-color: transparent;
 border: 1px solid #fff;
 font-size: 20px;
 padding: 10px 30px;
 content: '';
 z-index: 9;
 width: 93%;
 border-radius: 50px;
 height: 40px;
}
.check_btn:hover {
	color: #fff;
}
.open_btn {
	background-color: #c53826;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	font-size: 20px;
}
.open_btn::before {
 position: absolute;
 top: 5px;
 left: 5px;
 background-color: transparent;
 border: 1px solid #fff;
 font-size: 20px;
 padding: 8px 25px;
 content: '';
 z-index: 9;
 width: 93%;
 border-radius: 50px;
 height: 35px;
}
.open_btn:hover {
	color: #fff;
}
.open_btn1 {
	background-color: #daa360;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	font-size: 20px;
}
.open_btn1::before {
 position: absolute;
 top: 5px;
 left: 5px;
 background-color: transparent;
 border: 1px solid #fff;
 font-size: 20px;
 padding: 8px 25px;
 content: '';
 z-index: 9;
 width: 93%;
 border-radius: 50px;
 height: 35px;
}
.open_btn1:hover {
	color: #fff;
}
.open_btn_m {
	background-color: #c53826;
	color: #fff;
	border-radius: 50px;
	padding: 8px 11px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	font-size: 13px;
}
.open_btn_m::before {
 position: absolute;
 top: 3px;
 left: 3px;
 background-color: transparent;
 border: 1px solid #fff;
 font-size: 20px;
 padding: 8px 25px;
 content: '';
 z-index: 9;
 width: 93%;
 border-radius: 50px;
 height: 28px;
}
.open_btn_m:hover {
	color: #fff;
}
.open_btn1_m {
	background-color: #daa360;
	border-radius: 50px;
	padding: 8px 11px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	font-size: 13px;
	color: #fff;
}
.open_btn1_m::before {
 position: absolute;
 top: 3px;
 left: 3px;
 background-color: transparent;
 border: 1px solid #fff;
 font-size: 20px;
 padding: 8px 25px;
 content: '';
 z-index: 9;
 width: 93%;
 border-radius: 50px;
 height: 28px;
}
.open_btn1_m:hover {
	color: #fff;
}
.btn_box {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	padding: 10px;
	-webkit-box-shadow: -5px 7px 5px rgba(0, 0, 0, 0.3);
	box-shadow: -5px 7px 5px rgba(0, 0, 0, 0.3);
}
.t3 {
	font-size: 8.5px;
	font-weight: 600;
	color: #000;
}
.t4 {
	color: #175ccd;
	opacity: 0.25;
	font-size: 40px;
	font-style: italic;
	font-weight: 800;
	line-height: 55px;
}
.box_bg1 {
	background-image: url("../images/m_bg_tab1.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	height: 650px;
	position: relative;
	z-index: 0;
	max-width: 370px;
	margin: auto;
}
.box_btn {
	position: absolute;
	left: 15%;
	bottom: 29%;
	width: 70%;
	z-index: 99;
}
.box_btn_area {
	position: absolute;
	left: 5%;
	bottom: 22%;
	width: 90%;
	z-index: 99;
}
.m_tab_btn {
	position: absolute;
	z-index: 99;
	background-image: url(../images/m_tab1_h.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 285px 130px;
	width: 100%;
	height: 130px;
	left: 0%;
	top: 3%;
}
.m_tab_text {
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 199;
	margin-top: 15px;
}
.m_tab_text h5 {
	font-size: 36px;
	font-weight: 700;
}
.m_tab_text p {
	font-size: 20px;
	font-weight: 700;
}
.m_tab_btn2 {
	position: absolute;
	z-index: 99;
	background-image: url(../images/m_tab1_h.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 285px 130px;
	width: 100%;
	height: 130px;
	left: 0%;
	top: 3%;
}
.m_tab_text2 {
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 199;
	margin-top: 15px;
}
.m_tab_text2 h5 {
	font-size: 36px;
	font-weight: 700;
}
.m_tab_text2 p {
	font-size: 20px;
	font-weight: 700;
}
/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/
.accordion-button {
	justify-content: center; /* 水平置中 */
	text-align: center;
	display: block;
	position: relative;
	z-index: 0;
}
.accordion-button:not(.collapsed) {
 color: #172439;
 background-color: #fff;
 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
 border-radius: 0px;
}
.accordion-button:focus {
	box-shadow: 0 0 0 0 transparent;
	background-color: transparent;
}
.accordion-button::after {
 background-image: url("../images/faq_down.png"); /* 你的箭頭圖片 */
 background-size: 30px;
 width: 30px;
 height: 30px;
 z-index: 3;
 position: absolute;
 top: 13px;
 right: 10px;
}
/* 展開時 (預設會旋轉)，這裡可換另一張圖 */
.accordion-button:not(.collapsed)::after {
 background-image: url("../images/faq_up.png"); /* 展開時的箭頭 */
 transform: rotate(0deg);
}
.accordion-item {
	border: 0;
}
.accordion-body {
	background-image: -webkit-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: -moz-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: -o-linear-gradient(270deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	background-image: linear-gradient(180deg, rgba(249, 249, 249, 1.00) 0%, rgba(185, 201, 229, 1.00) 100%);
	padding: 1rem 0.5rem;
}
.tab_line {
	background-image: url("../images/line_bg.png");
	background-size: 100px;
	background-position: center center;
	background-repeat: repeat-x;
	width: 100%;
	height: 8px;
}
/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/
.login_box {
	background-color: #fff;
	border-radius: 20px;
	padding: 15px;
	width: 100%;
	margin: auto;
}
.fixed_btn {
	display: none;
}
.fixed_btn_m {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 99;
	width: 100%;
}
.f_padding {
	margin-bottom: 52px;
}
.iframe_box_top {
	background-image: url(../images/t1_top.png);
	width: 100%;
	height: 30px;
	background-position: center bottom;
	background-size: 100%;
	background-repeat: no-repeat;
}
.iframe_box_center {
	background-image: url(../images/t1_center.png);
	width: 100%;
	background-position: center center;
	background-size: 100%;
	background-repeat: repeat-y;
}
.iframe_box_bottom {
	background-image: url(../images/t1_bottom.png);
	width: 100%;
	height: 30px;
	background-position: center top;
	background-size: 100%;
	background-repeat: no-repeat;
}
@media (min-width:375px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 670px;
}
 .box_bg1 {
 height: 670px;
}
 .box_bg h1::before {
 left: 12.5%;
}
 .box_bg h3::before {
 left: 25%;
}
 .t1::before {
 left: 18.5%;
}
 .t2::before {
 left: 5.5%;
}
 .t5::before {
 left: 16.5%;
}
 .t6::before {
 left: 10%;
}
 .t7::before {
 left: 39%;
}
 .box_bg h5::before {
 left: 23.5%;
}
}
@media (min-width:384px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 690px;
}
 .box_bg1 {
 height: 690px;
}
 .box_bg h5::before {
 left: 24.5%;
}
 .box_bg h1::before {
 left: 14%;
}
 .box_bg h3::before {
 left: 26%;
}
 .t1::before {
 left: 20%;
}
 .t2::before {
 left: 7.5%;
}
 .t5::before {
 left: 18%;
}
 .t6::before {
 left: 12%;
}
}
@media (min-width:393px) {
 .box_bg {
 height: 710px;
}
 .box_bg1 {
 height: 710px;
}
 .box_bg h5::before {
 left: 25%;
}
 .box_bg h1::before {
 left: 14.5%;
}
 .box_bg h3::before {
 left: 26%;
}
 .t1::before {
 left: 20%;
}
 .t2::before {
 left: 7.5%;
}
 .t5::before {
 left: 18.5%;
}
 .t6::before {
 left: 12%;
}
}
@media (min-width:412px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 720px;
}
 .box_bg1 {
 height: 720px;
}
 .stab-img1 {
 width: 115px; /* 按鈕圖片大小，可依需求調整 */
 height: 30px;
}
 .stab-img2 {
 width: 115px; /* 按鈕圖片大小，可依需求調整 */
 height: 30px;
}
 .stab-img3 {
 width: 103px; /* 按鈕圖片大小，可依需求調整 */
 height: 30px;
}
 .stab-img4 {
 width: 95px; /* 按鈕圖片大小，可依需求調整 */
 height: 30px;
}
 .stab-img5 {
 width: 95px; /* 按鈕圖片大小，可依需求調整 */
 height: 30px;
}
 .box_bg h1::before {
 left: 5.5%;
}
 .box_bg h3::before {
 left: 20.5%;
}
 .box_bg h5 {
 font-size: 24px;
}
 .box_bg h1 {
 font-size: 35px;
}
 .box_bg h3 {
 font-size: 35px;
}
 .box_bg h5::before {
 left: 22.5%;
}
 .box_bg h4 {
 font-size: 18px;
}
 .t1::before {
 left: 20.5%;
}
 .t2::before {
 left: 8%;
}
 .t5::before {
 left: 10.5%;
}
 .t6::before {
 left: 2.5%;
}
 .t7::before {
 left: 38.5%;
}
 .t5, .t6 {
 font-size: 35px;
}
 .t7 {
 font-size: 18px;
}
}
@media (min-width:414px) {
 .t1::before {
 left: 20.5%;
}
 .t2::before {
 left: 7.5%;
}
 .t5::before {
 left: 10%;
}
 .t6::before {
 left: 3%;
}
 .box_bg h5::before {
 left: 23%;
}
 .box_bg h1::before {
 left: 5.5%;
}
 .box_bg h3::before {
 left: 20.5%;
}
}
@media (min-width:500px) {
}
@media (min-width:500px) {
}
@media (min-width:768px) {
  /*--------------------------------------------------------------
# login
--------------------------------------------------------------*/
  .login_box {
 padding: 30px;
}
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 background-image: url("../images/bg_tab.png");
 height: 380px;
 max-width: 1100px;
}
 .box_btn {
 left: 30%;
 bottom: 28%;
 width: 40%;
}
 .box_btn_area {
 left: 5%;
 bottom: 18%;
 width: 90%;
}
 .stab-img1 {
 width: 200px; /* 按鈕圖片大小，可依需求調整 */
 height: 50px;
}
 .stab-img2 {
 width: 200px; /* 按鈕圖片大小，可依需求調整 */
 height: 50px;
}
 .stab-img3 {
 width: 170px; /* 按鈕圖片大小，可依需求調整 */
 height: 50px;
}
 .stab-img4 {
 width: 130px; /* 按鈕圖片大小，可依需求調整 */
 height: 50px;
}
 .stab-img5 {
 width: 130px; /* 按鈕圖片大小，可依需求調整 */
 height: 50px;
}
 .fixed_btn {
 display: inline;
 position: absolute;
 top: 40%;
 right: 20px;
 width: 60px;
}
 .fixed_btn_m {
 display: none;
}
 .f_padding {
 margin-bottom: 0px;
}
 .accordion-body {
 padding: 1rem 1.5rem;
}
 .box_bg h4 {
 font-size: 18px;
}
 .box_bg h5 {
 font-size: 28px;
 color: #f4deb7;
}
 .box_bg h5::before {
 left: 150px;
 -webkit-text-stroke: 8px #021d5e;
}
 .box_bg h1 {
 font-size: 35px;
}
 .box_bg h1::before {
 left: 0px;
 -webkit-text-stroke: 8px #021d5e;
}
 .t1 {
 font-size: 20px;
 color: #f4deb7;
}
 .t1::before {
 left: 32px;
 -webkit-text-stroke: 8px #021d5e;
}
 .t2 {
 font-size: 27px;
 color: #f4deb7;
}
 .t2::before {
 left: 25px;
 -webkit-text-stroke: 8px #021d5e;
}
 .t3 {
 font-size: 16px;
}
 .t4 {
 font-size: 70px;
}
 .btn_box {
 padding: 20px 15px;
}
 .iframe_box_top {
 height: 50px;
}
 .iframe_box_bottom {
 height: 50px;
}
}
@media (min-width:800px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 400px;
}
 .star1 {
 top: 140px;
 right: 15px;
}
}
@media (min-width:840px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 420px;
}
 .star1 {
 top: 150px;
 right: 30px;
}
 .t1 {
 font-size: 22px;
}
 .t1::before {
 left: 8px;
}
 .t2 {
 font-size: 30px;
}
 .t2::before {
 left: 0px;
}
 .star3 {
 top: 130px;
}
}
@media (min-width:960px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 485px;
}
 .box_bg h4 {
 font-size: 24px;
 line-height: 30px;
}
 .box_bg h1 {
 font-size: 44px;
}
 .box_bg h5 {
 font-size: 34px;
}
 .box_bg h5::before {
 left: 211px;
}
 .box_bg h1::before {
 left: 20px;
}
 .star1 {
 top: 190px;
 right: 25px;
}
 .star2 {
 bottom: 90px;
}
 .open_btn {
 padding: 10px 35px;
 font-size: 24px;
}
 .open_btn::before {
 height: 45px;
}
 .open_btn1 {
 padding: 10px 35px;
 font-size: 24px;
}
 .open_btn1::before {
 height: 45px;
}
 .t1 {
 font-size: 25px;
}
 .t2 {
 font-size: 34px;
}
 .t1::before {
 left: 62px;
}
 .t2::before {
 left: 52px;
}
 .star3 {
 top: 135px;
 right: 20px;
 width: 90px;
}
 .btn_box {
 padding: 25px 20px;
}
 .t3 {
 font-size: 18px;
}
}
@media (min-width:992px) {
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 495px;
}
 .f_logo_bg::before {
 width: 109px;
 height: 83px;
 right: -109px;
}
 .t4 {
 font-size: 100px;
}
}
@media (min-width:1200px) {
 .tab-img {
 width: 345px; /* 按鈕圖片大小，可依需求調整 */
 height: 150px;
}
  /*--------------------------------------------------------------
# box
--------------------------------------------------------------*/
  .box_bg {
 height: 585px;
}
 .box_bg h4 {
 font-size: 28px;
 line-height: 36px;
}
 .box_bg h1 {
 font-size: 46px;
}
 .box_bg h5 {
 font-size: 36px;
}
 .box_bg h5::before {
 left: 260px;
}
 .box_bg h1::before {
 left: 60px;
}
 .open_btn {
 padding: 10px 35px;
 font-size: 28px;
}
 .open_btn::before {
 width: 94.5%;
 height: 50px;
}
 .open_btn1 {
 padding: 10px 35px;
 font-size: 28px;
}
 .open_btn1::before {
 width: 94.5%;
 height: 50px;
}
 .star1 {
 top: 215px;
 right: 60px;
 width: 70px;
}
 .star2 {
 bottom: 120px;
 left: 30px;
 width: 50px;
}
 .star3 {
 top: 175px;
}
 .t1 {
 font-size: 28px;
}
 .t2 {
 font-size: 42px;
}
 .t1::before {
 left: 86px;
}
 .t2::before {
 left: 40px;
}
 .t3 {
 font-size: 22px;
}
 .btn_box {
 padding: 30px;
}
  /*--------------------------------------------------------------
# stab
--------------------------------------------------------------*/
  .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
 background-color: transparent
}
 .stab-img1 {
 width: 215px; /* 按鈕圖片大小，可依需求調整 */
 height: 55px;
}
 .stab-img2 {
 width: 215px; /* 按鈕圖片大小，可依需求調整 */
 height: 55px;
}
 .stab-img3 {
 width: 180px; /* 按鈕圖片大小，可依需求調整 */
 height: 55px;
}
 .stab-img4 {
 width: 150px; /* 按鈕圖片大小，可依需求調整 */
 height: 55px;
}
 .stab-img5 {
 width: 150px; /* 按鈕圖片大小，可依需求調整 */
 height: 55px;
}
 .f_logo_bg::before {
 width: 120px;
 height: 80px;
 right: -120px;
}
 .tab_text {
 margin-top: 19px;
 font-weight: 700;
}
 .tab_text h5 {
 font-size: 37px;
}
 .tab_text p {
 font-size: 20px;
}
}
@media (min-width:1400px) {
 .container-lg {
 max-width: 1140px;
 z-index: 2;
}
}
