@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Noto+Sans+TC:wght@100..900&display=swap');



/**************\
* 變數設定
\**************/
:root {
}
* {
	text-decoration: none;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
*:actived {
	text-decoration: none;
}
*:focus {
	outline: none;
}
input, textarea, button, select, button, blockquote {
	appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
	border: none;
}
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;
	vertical-align: baseline;
}


article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html, body {
	line-height: 1;
	font-family: 'Noto Sans TC',"微軟正黑體", sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
}

.mobile {
  display: none;
}
@media only screen and (max-width: 945px) {
	.mobile {
		display: block;
	}
	img.mobile {
		display: inline-block;
	}
}

.desktop {
	display: block;
}
@media only screen and (max-width: 945px) {
	.desktop {
		display: none;
	}
}

/**************\
* 通用邊界
\**************/
.container {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
    z-index: 1;
}
.container-fluid {
	width: 100%;
	position: relative;
    z-index: 1;
}

/**************\
* 選單
\**************/
header {
	z-index: 1000;
	position: fixed;
    width: 100%;
}
.menu-bar {
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: center;
	width: 100%;
	background-color: #fff;
	padding: 20px 40px;
    border-bottom: 6px solid #E1380D;
}
.menu-bar .logo {
	display: block;
	max-width:147px;
}
.menu-bar .href-link {
	display: flex;
	flex-wrap: nowrap;
}
.menu-bar .href-link li {
	display: inline-block;
	width: auto;
    margin: 0 10px;
}
.menu-bar .href-link li a {
    display: block;
    letter-spacing: 0.1rem;
    padding: 12px 25px;
    font-size: 1.25rem;
	color: #fff;
    font-family: "Kosugi Maru", serif;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    border: none; /* 移除預設邊框 */
    border-radius: 30px; /* 圓角 */
    font-weight: bolder;
    cursor: pointer;
    
}
.menu-bar .href-link li a span.highlight {
    color: #FFFF00;
}
.menu-bar .href-link li a:hover {
	
}
.menu-bar .href-link ul {
	display: flex;
}
.menu-bar .href-link li a.c1 {
     background: linear-gradient(90deg, #29D1E2, #29ABE2); /* 漸層背景 */
}
.menu-bar .href-link li a.c2 {
     background: linear-gradient(90deg, #00DB9D, #00A99D); /* 漸層背景 */
}
.menu-bar .href-link li a.c3 {
     background: linear-gradient(90deg, #FBB03B, #F17E17); /* 漸層背景 */
}
.menu-bar .href-link li a.c4 {
     background: linear-gradient(90deg, #FF724D, #FF0702); /* 漸層背景 */
}
.menu-bar .href-link li a.c5 {
     background: linear-gradient(90deg, #D22C79, #9E005D); /* 漸層背景 */
}



@media only screen and (max-width: 945px) {
	.menu-bar {
		flex-wrap: wrap;
		justify-content: center;
		padding: 20px 5px;
	}
	.menu-bar .href-link {
		padding-top: 20px;
	}
} 
@media only screen and (max-width: 945px) {
	.menu-bar {
		justify-content: center;
		padding: 10px 0;
	}
	
	.menu-bar .logo {
		max-width: 120px;
	}
	.menu-bar .href-link{
		display: none;
	}
	.menu-bar .href-link ul{
		display: table-cell;
    	vertical-align: middle;
	}
	.menu-bar .href-link.active {
		width: 100vw;
		height: 100vh;
		opacity: 1;
		display: table;
		position: fixed;
		z-index: 101;
		top: 0;
		background-color: rgba(0,0,0,.8);
        padding: 0 5%;
	}
	.menu-bar .href-link.active ul {
	}
    
	.menu-bar .href-link li a {
		color: #FFF!important;
		text-align: center;
		display: block;
		font-size: 1.5rem;
        background: none!important;
	}
    .menu-bar .href-link li a span.highlight {
        color: #FFF;
    }
	.menu-bar .href-link li {
		width: 100%;
		padding: 30px 0;
        margin: 0;
	}
	.toggle-mobile {
		position: absolute;
		right: 25px;
		top:33%;
		display: flex;
        justify-content: flex-end;
        align-items: center;
		z-index: 1000;
		cursor: pointer;
		opacity: 1;
        width: 25px;
        height: 25px;
        flex-wrap: wrap;
	}
    .toggle-mobile p {
        margin: 0;
        position: relative;
        width: 25px;
        height: 25px;
        margin-left: 2px;
        margin-top: 2px;
	}
    .toggle-mobile span.top {
		width: 25px;
		height: 2px; 
		background-color: #1a1a1a;
		display: block;
		position: absolute;
		top: 0px;
		transition: all 0.1s linear;
	}
	.toggle-mobile span.mid {
		width: 25px;
		height: 2px; 
		background-color: #1a1a1a;
		display: block;
		position: absolute;
		top: 8px;
		transition: all 0.1s linear;
	}
	.toggle-mobile span.btm {
		width: 25px;
		height: 2px; 
		background-color: #1a1a1a;
		display: block;
		position: absolute;
		top: 16px;
		transition: all 0.1s linear;
	}
	.toggle-mobile.active span.top {
		width: 30px;
		height: 2px; 
		background-color: #FFF;
		display: block;
		position: absolute;
		top: 9px;
		left: 0;
		transform: rotate(45deg);
		transition: all 0.1s linear;
	}
	.toggle-mobile.active span.mid {
		display: none;
	}
	.toggle-mobile.active span.btm {
		width: 30px;
		height: 2px; 
		background-color: #FFF;
		display: block;
		position: absolute;
		bottom: 14px;
		left: 0;
		top: inherit;
		transform: rotate(-45deg);
		transition: all 0.1s linear;
	}
	
}


section.fixed-button-area {
	position: fixed;
	right: 5%;
	bottom: 10%;
	z-index: 101;
	display: flex;
	flex-wrap: wrap;
	width: 150px;
    justify-content: flex-end;
}
section.fixed-button-area a {
	display: block;
	position: relative;
	margin: 10px 0;
    width: 150px;
    line-height: 0;
}
section.fixed-button-area a:hover {
	transform: translateY(10px);
}



/**************\
* 主視覺
\**************/

.pa {
	position: absolute;
}
main {
	position: relative;
}
.rb-img-1,
.rb-img-2,
.rb-img-3, .rb-img-4, .rb-img-5{
	z-index: 2;
}
.rb-img-3 {
    top: 21.9%;
    width: 28.8%;
    left: 14.6%;
}
.rb-img-4 {
    top: 29.3%;
    left: 52%;
    width: 18.4%;
    z-index: 3;
}
.rb-img-5 {
    width: 35.9%;
    top: 9.3%;
    left: 43.7%;
}
.rb-img-1 {
    top: 40%;
    width: 9%;
    left: -0.5%;
    animation: shake 10s infinite;
}
.rb-img-2 {
    top: 25%;
    width: 8%;
    left: 85%;
    animation: shake 10s infinite 1.5s;
}


.btn-list {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-tab {
    position: relative;
}
.btn-tab a {
    position: relative;
    z-index: 1;
    display: block;
    font-family: "Kosugi Maru", serif;
    font-size: 1.15rem;
    text-align: center;
    padding: 12px 35px;
    margin: 0 10px;
    border-radius: 30px;
    color: #FFF;
    line-height: 0;
    font-weight: bolder;
    background: linear-gradient(90deg, #C6C6C6, #808080); /* 漸層背景 */
}
.btn-tab a img {
    max-height: 18px;
}
.btn-tab .shadow {
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0;
    height: 30px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
}
.btn-tab.active a.c1, .btn-tab:hover a {
    background: linear-gradient(90deg, #29D1E2, #29ABE2); /* 漸層背景 */    
}
.btn-tab.active a.c2, #p2-tab .btn-tab:hover a {
    background: linear-gradient(90deg, #00DB9D, #00A99D); /* 漸層背景 */    
}

.btn-tab.active .shadow, .btn-tab:hover .shadow {
    box-shadow: 0px 0px 12px rgba(18, 154, 211, 0.5);
}
#p2-tab .btn-tab.active .shadow, #p2-tab .btn-tab:hover .shadow {
    box-shadow: 0px 0px 12px rgba(75, 160, 141, 0.5);
}

/**************\
* 換匯去 page 1
\**************/

#index-feature-area {
    position: relative;
    margin-bottom: 60px;
}
#index-feature-area-p2 {
    position: relative;
    margin-bottom: 60px;
}
.bg-1 {
    left: 10%;
    top: 20%;
    max-width: 135px;
}
.bg-2 {
    bottom: 20%;
    right: 10%;
    max-width: 150px;
}
.ribbon-1 {
    top: 10px;
    left: 20px;
    max-width: 30px;
}
.exchange-item {
    position: relative;
    max-width: 420px;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFF;
}
.exchange-title img {
    max-height: 40px;
}
.section-exchange-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.exchange-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 40px 0;
    box-shadow: 0 0 15px rgba(0,0,0,.15);
}
.exchange-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.exchange-btn {
    position: relative;
}
.exchange-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans TC", serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 14px 25px;
    margin: 0 10px;
    border-radius: 30px;
    color: #FFF;
    font-weight: bolder;
    letter-spacing: 0.2rem;
    background: linear-gradient(90deg, #009FE1, #0071B6); /* 漸層背景 */
}
.exchange-btn a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #FFF;
    border-top: 2px solid #FFF;
    position: relative;
    transform: rotate(135deg);
    right: -5px;
}
.exchange-btn a.c1 {
    background: linear-gradient(90deg, #849FE1, #5E53B6); /* 漸層背景 */
}
.exchange-btn a.c2 {
    background: linear-gradient(90deg, #00DB9D, #00A99D); /* 漸層背景 */
}
.p2 .exchange-btn a.c2 span {
    margin-right: 10px;
    line-height: 0;
}
.p2 .exchange-btn a.c2 span img {
    max-width: 30px;
}
#index-feature-area-p2 .exchange-item.p2 .exchange-btn-area{
    margin-top: 25px;
}
.exchange-btn a + .shadow {
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0;
    height: 30px;
    box-shadow: 0px 0px 12px rgba(31, 163, 220, .5);
    border-radius: 40px;
}
.exchange-btn a.c1 + .shadow {
    box-shadow: 0px 0px 12px rgba(142, 118, 180, .5);
}
.exchange-text ul li span {
    margin-left: -25px;
    margin-top: 1px;
    position: absolute;
}
.exchange-text ul li span img{
    max-width: 22px;
}
.exchange-text {
    margin: 20px 0 0;
    text-align: center;
    padding: 0 60px;
}
.exchange-text h3 {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 1rem;
}
.exchange-text p {
    line-height: 1.5;
    text-align: left;
    font-size: 1.125rem;
}
.exchange-text ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    padding: 0 5px;
    line-height: 1.5;
    font-size: 1.05rem;
    text-align: left;
}

.full-width {
    margin-top: 35px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-image: url("../img/p1_s1_bg.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
}
.exchange-content {
    padding: 35px 90px 100px;
    display: flex;
    justify-content:space-between;
    align-items: stretch;
}
.exchange-list-area {
    width: 100%;
}
.exchange-list-btn {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.exchange-list-area .list-btn {
    display: flex;
    justify-content: center;
    max-width: 150px;
    position: relative;
}
.exchange-list-area ul > li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.exchange-list-area ul > li .li-text {
    width: 60%;
}
.exchange-list-area ul > li .li-text span{
    color: #29ABE2;
}
.exchange-list-area ul li h3 {
    color: #29ABE2;
    margin-bottom: 0.75rem;
}
.exchange-list-area ul li p {
    line-height: 1.75;
    text-align: justify;
}
.exchange-list-area ul li::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    position: absolute;
    margin-left: -20px;
    background-color: #29ABE2;
    border-radius: 50%;
    top: 3px;
}

.list-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans TC", serif;
    font-size: 1.15rem;
    text-align: center;
    padding: 10px 35px;
    margin: 5px auto 35px;
    border-radius: 15px;
    color: #FFF;
    line-height: 1.25;
    font-weight: bolder;
    background: linear-gradient(90deg, #009FE1, #0071B6); /* 漸層背景 */
}
.ribbon-2 {
    right: 10px;
    bottom: 13px;
    max-width: 15px;
}
.list-btn a + .shadow {
    width: 90%;
    position: absolute;
    left: 5%;
    top: 20px;
    height: 50px;
    box-shadow: 0px 0px 20px rgba(29, 162, 218, .9);
    border-radius: 40px;
}
#section-feature-area {
    background: #E6F5FF;
    padding: 45px 0;
}
.section-title {
}
.section-feature {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}
.feature-item {
    width: 25%;
/*    margin: 0 40px;*/
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-title {
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    margin: 20px 0;
    font-weight: 700;
}
.feature-item-img {
    max-width: 145px;
}
.section-title-img {
    text-align: center;
    margin-bottom: 45px;
}
.section-title-img img{
    max-height:40px;
    margin: 0 auto;
}
#index-feature-area-p2 .section-title-img{
    margin-bottom: 15px;
}
.feature-link a {
    display: block;
    max-width: 105px;
}
.feature-link:hover a {
    opacity: .8;
}


/**************\
* 存匯去 page2
\**************/

#index-feature-area-p2 .section-exchange-area {
    max-width: 960px;
}
#index-feature-area-p2 .section-exchange-area + .section-exchange-area {
    max-width: 900px;
}
.section-bg {
    width: 100%;
    position: absolute;
    z-index: -1;
    line-height: 0;
}
#index-feature-area-p2 .exchange-item.p2 {
    box-shadow:none;
    width: 50%;
    max-width: inherit;
    padding: 60px 0;
    z-index: 2;
    background-color: transparent;
}
.exchange-item.p2 .exchange-text {
    padding: 0 50px 0 70px;
}
.exchange-item.p2 .ribbon-1 {
    top: 40px;
    left: 50px;
}
.exchange-item.p2 .exchange-text p {
    padding: 0 25px;
    text-align: justify;
}
.exchange-item.p2 .exchange-text p span {
    color: #00A397;
}
.exchange-text .dd {
    color: #00A397;
    font-weight: 700;
}
.exchange-text .dd::after {
    content: '：';
    color: #000;
}
#index-feature-area-p2 .section-exchange-area + .section-exchange-area .exchange-item {
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}
#index-feature-area-p2 .full-width{
    background: none;
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
    background-color: #FFF;
}
.section-open-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.section-open-area.t1 {
    padding: 30px 0 60px;
}
.open-btn {
    position: relative;
}
.open-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans TC", serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 14px 25px;
    margin: 0 10px;
    border-radius: 30px;
    color: #FFF;
    font-weight: bolder;
    letter-spacing: 0.2rem;
    background: linear-gradient(90deg, #009FE1, #0071B6); /* 漸層背景 */
}
.open-btn a.c2 {
    background: linear-gradient(90deg, #00DB9D, #00A99D); /* 漸層背景 */
}
.open-btn a.c2 + .shadow {
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0;
    height: 30px;
    box-shadow: 0px 3px 15px rgba(75, 160, 141, .75);
    border-radius: 40px;
}
.open-btn a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #FFF;
    border-top: 2px solid #FFF;
    position: relative;
    transform: rotate(135deg);
    right: -5px;
}
.open-btn a.c3 {
    background: linear-gradient(90deg, #D22C79, #9E005D); /* 漸層背景 */
    letter-spacing: inherit;
    padding: 12px 25px;
}
.open-title {
    margin-bottom: 15px;
}
.open-title img{
    max-height: 33px;
}
.open-img {
    max-width: 125px;
}
.open-btn {
    align-content: center;
}
.open-content {
    padding: 10px 0;
}
.open-text li {
    line-height: 1.5;
    margin-bottom: 5px;
    font-size: 1.15rem;
}
#section-calc-area {
    background-color: #E6F5F0;
    padding: 45px 0;
    z-index: 1;
    position: relative;
}
.calc-area {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 768px;
    margin: 0 auto 30px;
    position: relative;
}
.calc-input label br{
    display: none;
}
.calc-input {
    justify-content: flex-end;
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}
.calc-input label {
    font-size: 1.25rem;
    white-space: nowrap;
    margin-right: 10px;
}
.calc-input input, .calc-input select{
    width: 250px;
    font-size: 2rem;
    padding: 15px 40px;
    border-radius: 6px;
    color: #00A397;
}
.calc-btn-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 768px;
    margin: 0 auto;
    position: relative;
}
.cash::after {
    display: inline-block;
    content: '元';
    font-size: 1.25rem;
    position: absolute;
    right: 15px;
    color: #000;
}
.rate::after {
    display: inline-block;
    content: '%';
    font-size: 1.25rem;
    position: absolute;
    right: 15px;
    color: #000;
}
.days::after {
    content: '';
    position: absolute;
    right: 15px; /* 控制圖片距離右側的距離 */
    top: 50%;
    transform: translateY(-50%);
    width: 13px; /* 根據圖片的大小調整 */
    height: 9px; /* 根據圖片的大小調整 */
    background-image: url('../img/tri_icon.png'); /* 替換為你的三角形圖片路徑 */
    background-size: contain; /* 確保圖片按比例縮放 */
    background-repeat: no-repeat; /* 避免圖片重複 */
}
.calc-result{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 30px 55px;
    max-width: 770px;
    margin: 0 auto;
    position: relative;
    background-color: #FFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}
.calc-title {
    font-size: 1.55rem;
    color: #00A397;
    padding: 10px 0;
    font-weight: 500;
}
.calc-text {
    padding: 10px 0;
}
.calc-img {
    max-width: 215px;
}
.calc-content {
    align-content: center;
}
strong#result {
    color: red;
    font-size: 2.5rem;
    margin: 0 10px 10px;
/*    min-width: 100px;*/
}
.calc-text span {
    font-size: 1.25rem;
}
.calc-text {
    display: flex;
    align-items: center;
}
.calc-btn-area {
    margin-bottom: 40px;
}
.calc-btn {
    position: relative;
}
.calc-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans TC", serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 30px;
    color: #FFF;
    font-weight: bolder;
    letter-spacing: 0.2rem;
    background: linear-gradient(90deg, #86C03F, #006837);
}
.calc-btn.c1 a {
    background: linear-gradient(90deg, #00DB9D, #00A99D);
    cursor: pointer;
}
.calc-btn a span {
    margin-right: 10px;
    line-height: 0;
}
.calc-btn a span img {
    max-width: 30px;
}
.calc-btn a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #FFF;
    border-top: 2px solid #FFF;
    position: relative;
    transform: rotate(135deg);
    right: -5px;
}
.calc-btn a + .shadow {
    width: 80%;
    position: absolute;
    left: 10%;
    top: 12px;
    height: 40px;
    box-shadow: 0px 0px 20px rgba(75, 160, 141, .9);
    border-radius: 40px;
}

/**************\
* 快匯站 page3
\**************/
.section-trans-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.trans-item-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 40px 0 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    background-color: #FFF;
}
.trans-item {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2.5%;
    margin-bottom: 45px;
}
.trans-title, .trans-icon, .trans-text, .trans-btn-area {
    width: 100%;
    justify-content: center;
    display: flex;
}
.trans-title {
    margin-bottom: 10px;
}
.trans-title img {
    max-height: 30px;
    width: auto;
}
.trans-btn {
    cursor: pointer;
    margin: 0 5px;
    line-height: 0;
    align-items: center;
    display: flex;
}
.trans-btn:hover {
    opacity: .75;
}
.trans-btn img {
    max-height: 38px;
    width: auto;
}
.trans-icon img {
    max-height: 100px;
    width: auto;
}
.trans-text {
    padding: 5px 10%;
    text-align: justify;
    line-height: 1.5;
    font-size: 1.05rem;
    min-height: 120px;
}
.trans-text p {
    letter-spacing: .1rem;
}
#teaching, #setting {
    padding: 20px;
}
.colorbox-content {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    background-image: url("../img/colorbox-bg.png");
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 60px;
}
.color-content {
    width: 45%;
    position: relative;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.color-slider-1 {
    padding: 20px 0;
    width: 45%;
    position: relative;
}
.color-title img {
    max-height: 70px;
}
.color-text {
    line-height: 1.75;
}
.color-text ul li {
    list-style-type: decimal;
}
.color-text ul {
    padding-left: 1.25rem;
}
.color-btn-area {
    margin-top: 20px;
    justify-content: space-evenly;
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.color-btn-area a {
    line-height: 0;
}
.color-btn-area.mobile {
    display: none;
}
.cb01 {
    max-width: 125px;
}
.cb02 {
    max-width: 118px;
}
.qr-code {
    max-width: 120px;
}

/**************\
* 智匯庫 page4
\**************/
#smart-feature-area {
    position: relative;
}
.switch-list {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content:center;
    align-content: center;
}
.switch-tab {
    margin: 0 20px;
}
.switch-tab a {
    display: block;
    max-width: 245px;
}
.switch-tab .active-icon, .switch-tab a:hover .default-icon, .switch-tab.active .default-icon{
    display: none;
}
.switch-tab .default-icon, .switch-tab a:hover .active-icon, .switch-tab.active .active-icon {
    display: inline-block;
}
.tab-text {
    text-align: center;
    line-height: 1.5;
    font-size: 1.05rem;
}
.tab-content {
    padding: 20px 0;
}
#tab1 {
    width: 100%;
}
#tab1 .full-width{
    background-image: none;
}
#tab1 .open-main-title {
    text-align: center;
    width: 100%;
}
#tab1 .open-main-title img{
    max-height: 50px;
}
.open-main-title p {
    margin-top: 1rem;
    line-height: 1.5;
}
#tab1 .exchange-item.full-width {
    flex-wrap: wrap;
    align-items: center;
}
#tab1 .exchange-item.full-width.pb-0 {
    padding-bottom: 0;
}
#tab1 .open-content {
    padding: 20px 30px 0px
}
#tab1 .open-img {
    margin-top: -25px;
}
#tab1 .open-btn {
    position: relative;
    margin-top: 10px;
}
#tab1 .open-btn .shadow, #tab1 .exchange-btn .shadow , #tab2 .exchange-btn .shadow {
    width: 80%;
    position: absolute;
    left: 10%;
    bottom: 0;
    height: 25px;
    box-shadow: 0px 0px 12px rgba(152, 0, 93, 1);
    border-radius: 40px;
}
#tab2 .exchange-btn a.c4 + .shadow {
    box-shadow: 0px 2px 12px rgba(192, 150, 108, 1);
}
.smart-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}
.t1-img-2 {
    max-width: 260px;
    margin: 0 20px;
}
.t1-img-4 {
    max-width: 420px;
    margin: 0 20px;
}
.t1-img-3 {
    max-width: 480px;
    margin: 0 auto;
}
.bg-c2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(216, 157, 217, .1);
}
.bg-c2 .open-main-title {
    margin-top: 30px;
}
.t1-img-6, .t1-img-7 {
    max-width: 300px;
    margin: 0 35px;
}
.t1-img-8 {
    max-width: 760px;
    margin: 0 auto;
}
.smart-feature-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto;
}
.feature-text {
    padding: 15px 17.5%;
    text-align: justify;
}
.feature-text p {
    line-height: 1.75;
}
.smart-feature-item {
    width: calc(100% / 3);
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.feature-img {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.feature-img img{
    max-height: 180px;
}
#tab1 .section-exchange-area {
    margin: 30px 0 0;
    justify-content: space-around;
}
#tab1 .exchange-item{
    background-color: #FFF;
    align-content: flex-start;
}
#tab1 .exchange-text ul {
    margin-top: 15px;
    padding: 0 20px;
}
#tab1 .exchange-text p{
    text-align: center;
    line-height: 1.75;
}
#tab1 .exchange-text ul li span {
    margin-right: 10px;
}
#tab1 .exchange-text ul li span.text-underline {
    position: relative;
    margin-top: inherit;
    margin-left: 10px;
    margin-right: 10px;
    color: #FF6F9A;
    text-decoration: underline;
}
#tab1 .text-underline {
    color: #FF6F9A;
    text-decoration: underline;
    font-weight: 700;
}
#tab1 .exchange-item + .exchange-item .text-underline {
    color: #E71E79;
}
#tab1 .exchange-text ul li {
    display: block;
    line-height: 1.75;
}
#tab1 .exchange-btn a {
    letter-spacing: inherit;
    padding: 12px 25px;
    background: linear-gradient(90deg, #ED7FAE, #BF347E);
}
#tab1 .exchange-text {
    min-height: 205px;
}
#tab1 .exchange-text ul li {
    margin-bottom: 5px;
}
#tab3 .full-width {
    margin-top: 15px;
    background-image:none;
    margin-bottom: 60px;
}
#tab3 .exchange-content {
    padding: 35px 35px 0;
}
#tab3 .list-btn a {
    margin: 5px auto;
}
#tab3 .exchange-list-btn {
    align-items: center;
}
#tab3 .list-btn a + .shadow {
    height: 25px;
    top: 25px;
    box-shadow: 0px 0px 30px rgba(152, 0, 93, .9);
}
#tab3 .list-btn a {
    padding: 13px 35px;
    background: linear-gradient(90deg, #D22C79, #9E005D);
}
#tab3 .li-img img{
    max-width: 120px;
}
#tab3 .exchange-list-area ul li::before {
    display: none;
}
#tab3 .exchange-list-area ul li h3 {
    position: relative;
    color: #9E005D;
}
#tab3 .exchange-list-area ul li h3::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    position: absolute;
    margin-left: -20px;
    background-color: #9E005D;
    border-radius: 50%;
    top: 3px;
}
#tab3 .exchange-list-area ul > li {
    align-items: center;
    padding-right: 30px;
}
#tab3 .exchange-item {
    padding-bottom: 20px;
}
#tab3 .ribbon-2 {
    bottom: 8px;
}
#tab2 .section-title-img {
    margin-bottom: 25px;
}
#tab2 .section-title-img img{
    max-height: 50px;
}
#tab2 .section-exchange-area{
    justify-content: space-around;
    margin-bottom: 60px;
}
#tab2 .exchange-text{
    text-align: left;
    padding: 0 35px 0 45px;
    width: 100%;
    min-height: 90px;
}
#tab2 .exchange-btn a {
    letter-spacing: 0;
    padding: 12px 25px;
}
#tab2 .exchange-btn a.c3 {
    background: linear-gradient(90deg, #D22C79, #9E005D);
}
#tab2 .exchange-btn a.c4 {
    background: linear-gradient(90deg, #F5AA3B, #F18D1E);
}
#tab2 .exchange-item.full-width {
    margin-left: 15px;
    margin-right: 15px;
    background-image: none;
    padding-left: 25px;
    padding-right: 15px;
    flex-wrap: nowrap;
    padding-bottom: 0;
}
#tab2 .open-main-title {
    text-align: center;
    width: 100%;
}
#tab2 .open-main-title img {
    max-height: 50px;
}
.t2 .open-main-title{
    margin-top: 30px;
    margin-bottom: 30px;
}
#tab2 .open-img {
    line-height: 0;
    max-width: 140px;
    margin-left: 10px;
}
#tab2 .open-content {
    padding: 0px 15px;
}
#tab2 .open-text {
    line-height: 1.75;
    padding: 10px 20px;
}
#tab2 .exchange-item {
    background-color: #FFF;
}
.t2 .exchange-title img {
    max-height: 50px;
}
.t2 .exchange-text {
    margin-top: 5px;
}
.t2 h3 {
    line-height: 1.25;
}
.t2 ul {
    max-width: 300px;
    margin: 10px auto;
}
.t2 ul li strong {
    font-weight: 700;
    font-size: 1.125rem;
    color: #E71E79;
    margin-left: 3px;
    margin-top: -5px;
}
.t2 .exchange-text ul li {
    display: block;
    font-family: 'Noto Sans TC',"微軟正黑體", sans-serif;
    margin-bottom: 0;
    font-size: 1.125rem;
}
.t2 .exchange-img {
    max-width: 240px;
}
.t2 h4 {
    color: #E71E79;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 10px;
}
.t2 ul.t2-1 {
    max-width: inherit;
}
ul.t2-1 p {
    display: inline-block;
    
}
ul.t2-1 p strong {
    color: #000!important;
    margin-left: 0;
}
ul.t2-1 span.c1 {
    position: relative!important;
    margin: 0;
    color: #9E005D;
}
.t2 .exchange-img {
    margin: 10px 0;
}

.t2 .exchange-text ul.t2-1 li {
    margin-bottom: 10px;
}




.plus-icon {
    width: 27px;
    height: 27px;
    position: absolute;
    left: 48.5%;
    top: 47.5%;
    z-index: 2;
}
.plus-icon img {
    width: 100%;
}
.section-bg-1 {
    top: 0;
}
.section-bg-1 img {
    width: 100%;
}
.exchange-item.p2 .exchange-text, .exchange-title {
    position: relative;
    text-align: center;
    width: 100%;
}
.section-exchange-area.desktop {
    display: flex;
}
.section-exchange-area.mobile {
    display: none;
}



/**************\
* 頁腳
\**************/
footer {
	width: 100%;
	background-color: #777;
	color: #FFF;
	padding: 25px 0;
	line-height: 1.5;
	z-index: 100;
	position: relative;
}
footer a:hover {
	text-decoration: underline;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer .section-flex-1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
}
footer .section-flex-2 {
	display: flex;
	justify-content: center;
	align-items: center;
}
footer h2 {
	white-space:nowrap;
	font-size: 2rem;
	/*margin: 0 20px 0px 0;*/
	transform: scaleY(1.1);
}
footer p {
	font-size: 0.9rem;
	font-weight: 300;
	padding: 0 20px;
}



/* 0627 新增*/
#t2_ul li:nth-child(3){
    white-space: nowrap;
}
.exchange-text ul#t2_ul li span {
    margin-top: 10px;
}
#t2_ul + h4 {
    margin-bottom: 15px;
}
.t2-1 {
    padding-left: 15px;
}
.exchange-text h3 {
    margin-bottom: 10px;
}
#tab2 .exchange-item .exchange-img, #tab2 .exchange-item .exchange-btn-area{
    align-self: flex-end;
}
#t2-2 h3 {
    margin-bottom: 36px;
}
.t2 ul.t2-1 {
    margin-bottom: 10px;
}
.exchange-text ul#t2_ul li {
    position: relative;
}
@media only screen and (max-width: 945px) {
	footer .section-flex-1 h2 {
		text-align: center;
		margin: 0 auto;
	}
	footer .section-flex-2 {
		flex-wrap: wrap;
	}
	footer p {
		text-align: center;
		margin-top: 5px;
		display: block;
		width: 100%;
	}
	footer .section-flex-1 {
		flex-wrap: wrap;
	}
    .t2 ul {
        max-width: 240px;
        margin-left: 25px;
    }
}



.switch-tab a.mobile {
    display: none;
}
@media only screen and (max-width: 945px) {
    .rb-bg img {
        width: 100%;
    }
    section.fixed-button-area {
        right: 2.5%;
    }
    section.fixed-button-area a {
        width: 100px;
        margin: 0;
    }
    .rb-img-1 {
        top: 14%;
        width: 21%;
        left: -10.5%;
    }
    .rb-img-2 {
        top: 31%;
        width: 28%;
        left: 85%;
    }
    .rb-img-3 {
        top: 5%;
        left: inherit;
        width: 100%;
        padding: 0 10%;
    }
    .rb-img-4 {
        top: 49.8%;
        left: 25.7%;
        width: 50.2%;
        z-index: 3;
    }
    .rb-img-5 {
        width: 100%;
        top: 37.5%;
        left: inherit;
        padding: 0 0 0 2.5%;
    }
    .btn-tab a img {
        max-height: 40px;
    }
    .btn-tab a {
        padding: 0;
        border-radius: 10px;
        width: 55px;
        height: 55px;
        margin: 0 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    }
    .btn-tab.active a, .btn-tab:hover a {
        box-shadow: 0px 5px 10px rgba(18, 154, 211, 0.25);
    }
    .btn-tab .shadow {
        display: none;
    }
    .section-title {
        padding: 0%;
    }
    .section-exchange-area {
        padding: 0 5%;
        justify-content: center;
    }
    .exchange-text {
        padding: 0 10%;
        margin: 10px 0;
    }
    .exchange-btn-area {
        flex-wrap: wrap;
    }
    .exchange-btn {
        margin-bottom: 15px;
    }
    .exchange-btn a {
        font-size: 1.25rem;
        padding: 15px 30px;
        width: 230px;
    }
    .exchange-btn a::after {
        position: absolute;
        right: 20px;
    }
    .exchange-btn a + .shadow {
        box-shadow: 0px 5px 10px rgba(31, 163, 220, .75);
    }
    .exchange-title img {
        max-height: 35px;
    }
    .exchange-item {
        padding: 25px 0 15px;
        margin-bottom: 30px;
    }
    .exchange-text ul li {
        margin-bottom: 0px;
        font-size: 1.2rem;
    }
    .exchange-item.full-width {
        padding: 25px 0 180px;
        margin-top: 0;
        background-image: url("../img/p1_s1_bg_m.png");
    }
    .exchange-list-area ul > li {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .exchange-list-area ul > li .li-text {
        width: 100%;
        margin-bottom: 10px;
    }
    .exchange-content {
        padding: 25px 10%;
    }
    .exchange-list-area .list-btn {
        margin: 0 auto;
        max-width: inherit;
    }
    .list-btn a {
        width: 230px;
        margin: 5px auto 5px;
        padding: 13px 35px;
    }
    .list-btn a br {
        display: none;
    }
    .list-btn a + .shadow {
        top: 20px;
        height: 30px;
    }
    .section-feature {
        flex-wrap: wrap;
    }
    .feature-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .feature-link a {
        max-width: 175px;
    }
    .btn-list {
        padding: 30px 0;
    }
    .exchange-list-area ul li h3 {
        margin-bottom: .5rem;
    }
    #index-feature-area-p2 .exchange-item.p2 {
        width: 100%;
        padding-bottom: 20px;
        background: none;
        padding-top:35px;
        box-shadow: 0 0 15px rgba(0, 0, 0, .15);
        background-color: #FFF;
    }
    .section-bg {
        left: 0;
    }
    .exchange-item.p2 .exchange-text {
        padding: 0 5% 0 10%;
    }
    .exchange-text .dd {
        white-space: nowrap;
    }
    .exchange-item.p2 .ribbon-1 {
        top: 15px;
        left: 20px;
    }
    #index-feature-area-p2 .exchange-item.p2 .exchange-btn-area {
        margin-top: 15px;
    }
    #index-feature-area-p2 .exchange-item.p2 + .exchange-item.p2 {
        padding-top: 80px;
    }
    #index-feature-area-p2 .exchange-item.p2 + .exchange-item.p2 .ribbon-1{
        top: 40px;
    }
    .p2 .exchange-btn a {
        padding: 15px 25px 15px 40px;
    }
    .p2 .exchange-btn a.c2 span {
        margin-right: 10px;
        line-height: 0;
        position: absolute;
        left: 30px;
    }
    #index-feature-area-p2 .full-width {
        justify-content: center;
        padding-bottom: 30px;
    }
    .open-title {
        text-align: center;
    }
    #index-feature-area-p2 .section-open-area {
        width: 100%;
        margin-top: 20px;
    }
    .exchange-btn a.c2 + .shadow {
        box-shadow: 0px 3px 15px rgba(75, 160, 141, .75);
    }
    #index-feature-area-p2 {
        margin-bottom: 10px;
    }
    .calc-input {
        width: 100%;
        justify-content: center;
    }
    .calc-input label{
        text-align: center;
        line-height: 1.5;
        font-size: 1.1rem;
        min-width: 5rem;
    }
    .calc-input label br {
        display: block;
    }
    #section-calc-area {
        padding: 35px 5% 30px;
    }
    #section-calc-area .section-title-img {
        margin-bottom: 45px;
    }
    .calc-btn-area {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .calc-btn a {
        letter-spacing: inherit;
    }
    .calc-btn {
        width: 90%;
        margin-bottom: 15px;
    }
    .calc-area {
        margin-bottom: 0;
    }
    .calc-img {
        margin: 30px auto 0;
    }
    .calc-title {
        text-align: center;
    }
    .calc-text {
        justify-content: center;
    }
    .calc-text span {
        font-size: 1rem;
    }
    .calc-result {
        padding: 20px 5%;
        flex-direction: column-reverse;
    }
    .section-title-img {
        margin-bottom: 0px;
    }
    .trans-item {
        width: 100%;
        margin-bottom: 15px;
    }
    .section-trans-area {
        padding-left: 5%;
        padding-right: 5%;
    }
    .trans-btn-area {
        flex-wrap: wrap;
    }
    .trans-btn {
        width: 100%;
        margin-bottom: 15px;
        justify-content: center;
    }
    .trans-text {
        min-height: inherit;
        margin-bottom: 10px;
    }
    .color-content, .color-slider-1 {
        width: 100%;
    }
    .color-content {
        padding: 0 0 20px; 
    }
    .colorbox-content {
        flex-wrap: wrap;
        padding: 20px 20px;
    }
    .color-btn-area.desktop {
        display: none;
    }
    .color-btn-area.mobile {
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .color-btn-area a {
        line-height: 0;
        width: 100%;
        text-align: center;
    }
    .color-btn-area a + a {
        margin-top: 20px;
    }
    .cb02 {
        max-width: 215px;
    }
    .color-title img {
        max-height: 55px;
    }
    .switch-list {
        padding: 0 5%;
    }
    .switch-tab a.desktop {
        display: none;
    }
    .switch-tab a.mobile {
        display: block;
    }
    .switch-tab {
        margin: 0 10px;
    }
    .tab-text {
        padding: 0 7.5%;
        text-align: justify;
    }
    .tab-text br {
        display: none;
    }
    #tab1 .open-img {
        margin-top: 10px;
    }
    .section-open-area {
        padding-left: 5%;
        padding-right: 5%;
    }
    .open-btn a {
        min-width: 215px;
    }
    #tab1 .exchange-item.full-width {
        padding-bottom: 35px;
        padding-top: 35px;
    }
    #tab1 .open-main-title img {
        max-height: 45px;
    }
    .smart-content {
        flex-wrap: wrap;
        padding: 30px 2.5%;
        justify-content: center;
    }
    .t1-img-2 {
        margin-bottom: 25px;
    }
    .t1-img-3, .t1-img-5{
        margin: 0 15px;
    }
    .t1-img-4 {
        margin: 10px 5px 0;
    }
    .t1-img-7 {
        margin-top: 10px;    
    }
    #tab1 .open-main-title {
        padding: 0 5%;
    }
    .t1-img-8 {
        margin: 0 10%;
    }
    .smart-feature-area {
        flex-wrap: wrap;
        margin-bottom: 5px;
    }
    .smart-feature-item {
        width: 100%;
        margin-bottom: 60px;
    }
    .smart-feature-item:last-of-type {
        margin-bottom: 0;
    }
    #tab1 .exchange-title img {
        max-height: 45px;
    }
    #tab1 .exchange-text {
        min-height: inherit;
    }
    .section-open-area.t1 {
        padding: 30px 0;
    }
    #tab1 .exchange-btn a + .shadow {
        bottom: 5px;
        box-shadow: 0px 5px 10px rgba(152, 0, 93, .75);
    }
    #tab2 .section-title-img img {
        max-height: 65px;
    }
    #tab2 .section-title-img {
        margin-bottom: 5px;
    }
    #tab2 .exchange-text {
        min-height: inherit;
        padding-left: 12.5%;
        padding-right: 10%;
    }
    #tab2 .exchange-text p {
        text-align: center;
    }
    #tab2 .exchange-title img {
        max-height: 40px;
    }
    #tab2 .exchange-item.full-width {
        padding-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }
    #tab2 .open-img {
        margin: 10px auto 20px;
        max-width: 130px;
    }
    #tab2 .open-main-title img, #tab3 .exchange-title img {
        max-height: 40px;
    }
    .t2 h3 {
        font-size: 1.15rem;
        line-height: 1.5;
    }
    .t2 h3 br {
        display: none;
    }
    #tab2 .section-exchange-area {
        margin-bottom: 20px;
    }
    #tab3 .exchange-list-area ul > li {
        padding-right:inherit;
        justify-content: center;
        margin-bottom: 30px;
    }
    #tab3 .exchange-list-area ul li h3 {
        padding-left: 20px;
    }
    #tab3 .exchange-content {
        padding-top: 15px;
    }
    .switch-list {
        margin-top: 20px;
    }
    .section-title-img img {
        max-height: 35px;
    }
    .section-bg-1 {
        width: 120%;
    }
    .plus-icon {
/*
        left: inherit;
        top: inherit;
        position: relative;
        margin-bottom: 30px;
*/
        display: none;
    }
    #index-feature-area-p2 .plus-icon + .exchange-item.p2{
        padding-top: 35px;
    }
    .calc-input input, .calc-input select {
        width: 100%;
    }
    
    .section-exchange-area.desktop {
        display: none;
    }
    .section-exchange-area.mobile {
        display: flex;
    }
    #index-feature-area-p2 .section-exchange-area + .section-exchange-area .exchange-item {
        box-shadow: none;
    }
    #index-feature-area-p2 .section-title-img{
        margin-bottom: 25px;
    }
    .trans-icon img {
        max-height: 120px;
    }
    .open-main-title p {
        padding: 0 15%;
    }
    #tab3 .li-img img {
        max-width: 140px;
    }
    .bg-1, .bg-2 {
        display: none;
    }
    #tab2 .exchange-text ul li span + p {
        text-align: left;
    }
    #t2_ul li:nth-child(3){
        white-space: normal;
    }
    
/*    0627新增*/
    .exchange-text ul#t2_ul li span {
         margin-top: inherit; 
        top: 5px;
    }
}

