/*
css樣式順序(RWD在media.css)：
元件-按鈕
元件-文字
元件-進度條
元件-彈跳視窗
元件-卡片項目
元件-頁籤

排列區塊-圖文排列
排列區塊-流程圖說明
排列區塊-logo組合

表單
表格
開合選單
錨點切換
輪播功能
圖片-Logo/Icon
*/

/* @元件-按鈕 ---------------------------------------------------------------------------------------------- */

.transferSection .btn {
    min-width: 10rem;
    display: inline-block;
    text-align: center;
    font-size: 1.40625rem;
    padding: 0.625rem;
    margin-top: 0.625rem;
    color: var(--transferSection_primary);
    border: 1px solid transparent;
    border-radius: 1.875rem;
    transition: 0.3s;
    cursor: pointer;
}

/*.btn:not(:last-child) {*/
/*    margin-right: 2.5rem;*/
/*}*/


/* 主要按鈕 */
.transferSection .btn_primary {
    background-color: var(--transferSection_primary);
    color: #fff;
}

/* 淺色按鈕 */
.transferSection .btn_tint {
    background-color: var(--transferSection_primary_10);
    color: var(--transferSection_primary);
}

/* 外框按鈕 */
.transferSection .btn_outline {
    border: 2px solid var(--transferSection_primary);
    color: var(--transferSection_primary);
    background-color: var(--transferSection_white);
}

/* 主要按鈕的icon顏色改為白色 */
.transferSection .btn_primary .btn_icon {
    filter: brightness(100);
}

/* 中尺寸按鈕 */
.transferSection .btn_md {
    min-width: 8.125rem;
    font-size: 1.25rem;
}

/* 小尺寸按鈕 */
.transferSection .btn_sm {
    min-width: 5rem;
    padding: 0.3125rem 0.625rem;
    font-size: 1.09375rem;
}

.transferSection .btn_sm:not(:last-child) {
    margin-right: 0.625rem;
}

/* 圖示按鈕的icon設定 */
/* 一般按鈕的icon大小為16px */
.transferSection .btn_icon {
    display: inline-block;
    margin-right: 4px;
    margin-top: -4px;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

/* 中按鈕的icon大小為14px */
.transferSection .btn_md .btn_icon {
    width: 1.09375rem;
    height: 1.09375rem;
    margin-top: -2px;
}

/* 小按鈕的icon大小為12px */
.transferSection .btn_sm .btn_icon {
    width: 0.9375rem;
    height: 0.9375rem;
    margin-right: 2px;
    margin-top: -2px;
}

.transferSection .btn_text {
    background-color: transparent!important;
    min-width: auto;
    padding: 0;
    color: var(--transferSection_primary) !important;
}

.transferSection btn_text:active,
.transferSection .btn_text:focus,
.transferSection .btn_text:hover {
    border-color: transparent!important;
    color: var(--transferSection_black) !important;
}

.transferSection .btn_icon.icon_r {
    margin-left: 2px;
    margin-right: 0;
}


/* 滑鼠移入效果 */
.transferSection .btn_primary:hover,
.transferSection .btn_primary:focus {
    background-color: var(--transferSection_primary);
    color: white;
    opacity: .6;
    box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.6);
}

.transferSection .btn_tint:hover,
.transferSection .btn_outline:hover,
.transferSection .btn_outline:focus {
    box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.2);
    background-color: var(--transferSection_primary);
    color: white;
}


/* disabled樣式 */
.transferSection .btn.disabled, .btn:disabled {
    background: var(--transferSection_gray_30);
    color: var(--transferSection_black);
    border: 1px solid transparent;
    filter: grayscale(1);
    opacity: 0.3;
    cursor: not-allowed;
}

/* 滿版按鈕組合 */
.transferSection .one_btn,
.transferSection .two_btn,
.transferSection .three_btn {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    margin-top: 1.875rem;
}

.transferSection .one_btn .btn,
.transferSection .two_btn .btn,
.transferSection .three_btn .btn {
    width: 100%;
}

.transferSection .three_btn .btn_group {
    width: 100%;
    display: flex;
    margin-right: 1.25rem;
}

/* -- 頁面底部固定按鈕-- */
/* ---當畫面不會出現捲軸時，固定按鈕位置--- */
.transferSection .btn_bottom {
    position: absolute;
    z-index: 99;
    bottom: env(safe-area-inset-bottom);
    width: calc(100% - 40px);
    background-color: var(--transferSection_background);
    padding-bottom: 20px;
}

/* 懸浮按鈕 */
.transferSection .btn_fab {
    width: 3.75rem;
    height: 3.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 3px 5px -1px rgb(0 0 0 / 14%), 0px 6px 10px 0px rgb(0 0 0 / 12%), 0px 1px 18px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
}

.transferSection .btn_fab i {
    width: 24px;
    height: 24px;
    margin: 0;
}

.transferSection .btn_fab.bg_primary {
    background-color: var(--transferSection_primary);
}

.transferSection .btn_fab.bg_primary i {
    filter: brightness(100);
}

.transferSection .btn_fab.sm {
    width: 3.125rem;
    height: 3.125rem;
}


/* ---Toggle開關按鈕 start---*/

.transferSection .switch {
    display: flex;
    align-items: center;
    position: relative;
}


.transferSection .switch label {
    position: relative;
    display: block;
    width: 55px;
    height: 28px;
    background-color: var(--transferSection_gray_30);
    border-radius: 15px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.transferSection .switch label::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.2s ease-in;
}

.transferSection .switch input:checked + label {
    background-color: var(--transferSection_primary);
}

.transferSection .switch input:checked + label::after {
    left: 30px;
}

/* 有文字開關按鈕 */
.transferSection .switch .switch_text {
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}

.transferSection .switch input:checked + .switch_text {
    color: #fff;
}

.transferSection .switch input:checked + .switch_text span:last-child {
    visibility: hidden;
}

/* 開關 disabled樣式 */
.transferSection .switch.disabled .switch_title {
    color: var(--transferSection_gray_30);
}

.transferSection .switch input:disabled + label {
    opacity: .3;
    cursor: not-allowed;
}

/* ---Toggle開關按鈕 end---*/


/* End 元件-按鈕 ---------------------------------------------------------------------------------------------- */

/* @ 元件-文字 ---------------------------------------------------------------------------------------------- */

/* ---文字顏色--- */

.transferSection .text_gray {
    color: var(--transferSection_gray_50);
}

.transferSection .text_primary {
    color: var(--transferSection_primary);
}

.transferSection .text_secondary {
    color: var(--transferSection_secondary);
}

.transferSection .text_secondary_dark {
    color: var(--transferSection_secondary_dark);
}

.transferSection .text_blue {
    color: var(--transferSection_blue);
}

.transferSection .text_red {
    color: var(--transferSection_red);
}

.transferSection .text_green {
    color: var(--transferSection_green);
}

.transferSection .text_yellow {
    color: var(--transferSection_yellow);
}

/* ---文字超連結--- */
.transferSection .text_link {
    color: var(--transferSection_primary);
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
}

.transferSection .text_link:hover {
    filter: brightness(1.2);
}

/* ---列點清單--- */
.transferSection .dot_list li {
    list-style: disc;
    margin-left: 1.25rem;
    margin-bottom: 0.625rem;
}

.transferSection .dot_list li::marker {
    color: var(--transferSection_primary);
}

.transferSection .num_list li {
    list-style: decimal;
    margin-left: 1.25rem;
    margin-bottom: 0.625rem;
}

/* ---標題設計樣式--- */

/* 標題區塊 */
.transferSection .title {
    margin-bottom: 2.8125rem;
    text-align: center;
}

/* 每頁標題 有兩邊紅點 */
.transferSection .title_h2 {
    font-size: 2.8125rem;
    font-weight: bold;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 0;
    position: relative;
}

.transferSection .title_h2::before,
.transferSection .title_h2::after {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    content: "";
    display: inline-block;
    background-color: var(--transferSection_primary);
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.transferSection .title_h2::before {
    left: -24px;
}

.transferSection .title_h2::after {
    right: -24px;
}

/* 次標題 */
.transferSection .title_sub {
    font-size: 1.40625rem;
    margin-top: 0.625rem;
    color: #00000080;
    text-align: center;
}

.transferSection .title_h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.transferSection .title_h4 {
    font-size: 1.5625rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
    /* padding-left: 16px; */
}

/* .title_h4::before {
    content: "";
    position: absolute;
    top: 0.3125rem;
    left: 0;
    width: 5px;
    height: 1.875rem;
    border-radius: 3px;
    background-color: var(--transferSection_primary);
} */

/* End 元件-文字 ---------------------------------------------------------------------------------------------- */

/* 元件-進度條 ---------------------------------------------------------------------------------------------- */

/* ---步驟列共用樣式 start--- */
.transferSection .step_container {
    width: 100%;
    position: relative;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

/* ---線條樣式---  */
.transferSection .step_container li {
    position: relative;

    /* ---移除清單預設樣式--- */
    list-style-type: none;
}

.transferSection .step_container li::after {
    position: absolute;
    content: "";
    top: 8px;
    left: -50%;
    z-index: 1;
    width: 100%;
    height: 2px;
    background-color: var(--transferSection_gray_30);
}

/* ---第一列不要有線條--- */
.transferSection .step_container li:first-child::after {
    content: none;
}

.transferSection .step_container li.active:after {
    background-color: var(--transferSection_primary);
}

.transferSection .step_container .steps {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 0;
}

.transferSection .step_title {
    font-size: 1.09375rem;
}

.transferSection .step_container .step_number {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* ---步驟列共用樣式 end--- */


/* ------步驟列樣式1 start------ */

.transferSection .step_group1 {
    margin-bottom: 1.25rem;
}

/* ---圓圈樣式--- */
.transferSection .step_group1 .step_number {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 5px solid var(--transferSection_gray_30);
    border-radius: 50%;
}

.transferSection .step_group1 .active .step_number {
    background-color: white;
    border: 5px solid var(--transferSection_primary);
}

/* ------步驟列樣式1 end------ */

/* ------步驟列樣式2 start------ */

/* ---圓圈樣式--- */
.transferSection .step_group2 .step_number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: sans-serif;
    font-size: 1.40625rem;
    font-weight: bold;
    background-color: var(--transferSection_gray_20);
    border: 0;
    color: var(--transferSection_gray_40);
}

.transferSection .step_group2 .step_container .active .step_number {
    background-color: var(--transferSection_primary);
    color: #fff;
}

.transferSection .step_group2 .step_container li::after {
    top: 16px;
}

.transferSection .step_group2 .step_title {
    color: var(--transferSection_gray_40);
    margin-top: 0.625rem;
}

.transferSection .step_group2 .active .step_title {
    color: var(--transferSection_primary);
    text-align: center;
    line-height: 1.2;
}

/* ------步驟列樣式2 end------ */


/* --進度條-- */
.transferSection .progress {
    position: relative;
    width: 100%;
    height: 1.25rem;
    background-color: var(--transferSection_gray_20);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
}

.transferSection .progress_bar {
    position: relative;
    width: 0%;
    height: 100%;
    background-color: var(--transferSection_primary);
    border-radius: 0.625rem;
    color: #fff;
    text-align: right;
    line-height: 1.25rem;
    transition: width 0.1s ease;
}

/* 進度條內文字 */
.transferSection .progress_bar span {
    padding-right: 0.625rem;
}

/* 頁面滾動進度條 */
.transferSection .progress.progress_scroll {
    height: 2px;
}

/* body頁面滾動進度條位置設定 */
.transferSection .progress.progress_scroll.fixed {
    display: none;
    position: fixed;
    z-index: 10;

    /* 搭配header高度 */
    top: 59px;
}

/* --進度條上方百分比文字-- */
.transferSection .progress_bar_text {
    position: absolute;
    background-color: var(--transferSection_secondary_dark);
    top: -2.5rem;
    right: -1.25rem;
    border-radius: 2.5rem;
    padding: 2px 8px;
}

.transferSection .progress_bar_text:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    border: 4px solid transparent;
    border-top-color: var(--transferSection_secondary_dark);
    transform: translateX(-50%);
}

/* --進度條下方說明文字-- */
.transferSection .progress .label {
    display: block;
    font-size: 1.09375rem;
    text-align: center;
    margin-top: 8px;
}

/* End 元件-進度條 ---------------------------------------------------------------------------------------------- */

/* @元件-卡片項目 ---------------------------------------------------------------------------------------------- */

/* 上面圖示下面文字 */

.transferSection .card_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.transferSection .card_item img,
.transferSection .card_item i {
    margin-bottom: 0.625rem;
}

/* 左邊圖示右邊文字 */

.transferSection .card_item_row {
    display: flex;
    align-items: center;
    padding: 1.25rem;
}

.transferSection .card_item_row i {
    margin-right: 1.25rem;
}

/* 有標題白底卡片 */

.transferSection .card {
    background-color: #fff;
    padding: 1.25rem;
    flex-grow: 1;
}

.transferSection .card_header {
    background-color: var(--transferSection_primary);
    color: #fff;
    font-size: 1.5625rem;
    font-weight: bold;
    text-align: center;
    padding: 1.25rem 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.transferSection .card_bg_w {
    background-color: #fff;
    border-radius: 8px;
}

/* 圓形卡片 */

.transferSection .card_rounded {
    background: #fff;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    padding: 1.25rem 3.75rem;
    margin: 1.25rem calc((100% - 780px) / 6);
    text-align: center;
}

/* 正方形卡片 */

.transferSection .card_square {
    background: #fff;
    border-radius: 8px;
    width: 260px;
    height: 260px;
    padding: 1.25rem;
    margin: 0.625rem;
}

/* 設定卡片文字以兩行為基準對齊 */

.transferSection .card_rounded p,
.transferSection .card_square p {
    min-height: 40px;
}

/* 圓形重疊卡片 */

.transferSection .card_overlap {
    background: #fff;
    border-radius: 50%;
    width: 367px;
    height: 367px;
    padding: 0.625rem;
    text-align: center;
    margin: 0 -1.25rem;
    flex: none;
}

.transferSection .card_overlap .text_sm_m {
    width: 180px;
    min-height: 72px;
}

/* 大標題卡片 */
.transferSection .card_lg {
    background: #fff;
    border-radius: 8px;
    padding: 3.75rem 2.5rem 2.5rem 2.5rem;
    margin-bottom: 1.25rem;
    min-height: 300px;
}

.transferSection .card_lg i {
    margin-bottom: 2.5rem;
}

.transferSection .card_lg .fz_h2 {
    margin-bottom: 0.625rem;
}

/* 卡片連結 */
.transferSection .card_link a {
    font-size: 1.875rem;
    color: var(--transferSection_primary);
    background: #fff url("../images/icon/i_go.svg") no-repeat 93%;
    border-radius: 4px;
    width: 250px;
    height: 170px;
    margin: 0 0.625rem;
    padding: 1.25rem;
    transition: 0.2s;
}

.transferSection .card_link a:hover {
    background-color: var(--transferSection_primary);
    color: #fff;
    background: var(--transferSection_primary) url("../images/icon/i_go_w.svg") no-repeat;
    background-position: calc(100% - 1.25rem);
}

/* 列表項目 */
.transferSection .list_group {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1.25rem;
}

.transferSection .list_item:not(:last-child) {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--transferSection_gray_20);
    margin-bottom: 12px;
}

.transferSection .list_group .form_item {
    border: 1px solid var(--transferSection_gray_20);
}


/* End 元件-卡片項目 ---------------------------------------------------------------------------------------------- */

/* @ 元件-彈跳視窗 ---------------------------------------------------------------------------------------------- */

.transferSection .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.transferSection .modal.show,
.transferSection .modal.active {
    visibility: visible;
    opacity: 1;
}


/* 控制彈跳視窗寬度及高度 */
.transferSection .modal_content {
    width: calc(100% - 32px);
    max-width: 1300px;
    max-height: calc(100vh - 40px);
    position: relative;
    background: #fff;
    border-radius: 8px;
}

/* 小視窗 */
.transferSection .modal_content.modal_sm {
    max-width: 400px;
}

/* 彈跳視窗標題區塊 */
.transferSection .modal_header {
    width: 100%;
    font-weight: bold;
    padding: 1.5625rem 1.5625rem 0px;
    position: relative;
    text-align: center;
}


/* 彈跳視窗標題區塊-有底線 */
.transferSection .modal_header.border_bottom {
    padding-bottom: 1.5625rem;
    border-bottom: 1px solid var(--transferSection_gray_20);
}

/* 右上角關閉按鈕 */
.transferSection .modal_header button.modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: var(--transferSection_textcolor);
}

/* 彈跳視窗內文區塊 */
.transferSection .modal_body {
    padding: 1.5625rem;
    padding-bottom: 0;
}

/* 彈跳視窗內input */
.transferSection .modal_body input {
    background-color: var(--transferSection_gray_10);
}

/* 彈跳視窗內文區塊-有捲軸 */
.transferSection .modal_scroll {
    /* 設定scroll區塊高度 */
    max-height: calc(100vh - 300px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: scroll;
}

/* 條款捲軸區域-無步驟列及checkbox按鈕 */
.transferSection .modal_scroll.fullpage {
    max-height: calc(100vh - 180px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

/* ---捲軸底色--- */
.transferSection .modal_scroll::-webkit-scrollbar-track {
    background-color: none;
}

/* ---捲軸寬度--- */
.transferSection .modal_scroll::-webkit-scrollbar {
    position: relative;
    width: 8px;
    background-color: none;
}

/* ---捲軸本體顏色--- */
.transferSection .modal_scroll::-webkit-scrollbar-thumb {
    background-color: var(--transferSection_gray_20);
    border-radius: 10px;
}

/* 彈跳視窗內文區塊-下拉選單 */

/* 隱藏預設捲軸 */
.transferSection .modal_select::-webkit-scrollbar {
    display: none;
}

.transferSection .modal_select li {
    width: 100%;
    padding: 1.25rem;
    cursor: pointer;
}

.transferSection .modal_select li:hover {
    background-color: var(--transferSection_secondary_10);
}

.transferSection .modal_select li + li {
    border-top: 1px solid var(--transferSection_gray_20);
}

/* 彈跳視窗按鈕區塊 */
.transferSection .modal_footer {
    padding: 1.5625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transferSection .modal_footer .modal_btn {
    margin-top: 0;
}


/* 彈跳視窗按鈕區塊內的checkbox靠左對齊 */
.transferSection .modal_footer .check_btn {
    align-self: flex-start;
    margin: 0 0 16px;
}

.transferSection .modal_footer .btn {
    max-width: 150px;
    margin-top: 0;
}

/* 彈跳視窗按鈕區塊-有分隔線 */
.transferSection .modal_footer.border_top {
    border-top: 1px solid var(--transferSection_gray_20);
}

/* 背景半透明遮罩 */
.transferSection .modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.transferSection .modal.active .modal_overlay {
    display: block;
}

/* 底部滑入選單 */
.transferSection .modal.bottom_sheet.active {
    display: block;
}

.transferSection .modal.bottom_sheet .modal_content {
    width: 95vw;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -100%;
    transition: 0.3s ease-in-out;
}

.transferSection .modal.bottom_sheet.active .modal_content {
    bottom: env(safe-area-inset-bottom);
}

.transferSection .modal.bottom_sheet .modal_header {
    background-color: #fff;
    border-radius: 8px 8px 0 0;
}

.transferSection .modal.bottom_sheet .modal_select {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    margin-bottom: 10px;
}

.transferSection .modal.bottom_sheet .modal_footer {
    background-color: #fff;
    border-radius: 8px;
    margin: 10px 0;
    padding: 0;
}

.transferSection .modal.bottom_sheet .modal_footer button {
    width: 100%;
    padding: 1.25rem 0;
    cursor: pointer;
}

/* End 元件-彈跳視窗 ---------------------------------------------------------------------------------------------- */

/* @元件-頁籤 ---------------------------------------------------------------------------------------------- */

/* 頁籤固定在上方[APP] */
.transferSection .tab_group_fixed {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(50px + env(safe-area-inset-top));
    background-color: #fff;
    z-index: 99;
}

/* ---按鈕頁籤 start--- */

.transferSection .tab_btn {
    width: 100%;
    display: flex;
    background-color: #fff;
    border: 1px solid var(--transferSection_gray_20);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

.transferSection .tab_btn li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--transferSection_gray_40);
    padding: 0.625rem;
    transition: 0.3s;
}

/* 設定超出兩行字省略顯示 */
.transferSection .tab_btn li span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.transferSection .tab_btn li:hover {
    background-color: var(--transferSection_primary_10);
}

.transferSection .tab_btn li.active:first-child {
    border-radius: 9px 0px 0px 9px;
}

.transferSection .tab_btn li.active:last-child {
    border-radius: 0px 9px 9px 0px;
}

.transferSection .tab_btn li.active {
    color: var(--transferSection_primary);
    background: var(--transferSection_primary_10);
    font-weight: bold;
}

/* ---按鈕頁籤 end--- */

/* ---頁籤列 start--- */

.transferSection .tab_bar {
    width: 100%;
    margin: auto;
    display: flex;
    text-align: center;
    cursor: pointer;
}

/* 隱藏預設捲軸 */
.transferSection .tab_bar::-webkit-scrollbar {
    display: none;
}

.transferSection .tab_bar li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    padding: 0.625rem;
    color: var(--transferSection_gray_40);
    border-bottom: 2px solid var(--transferSection_gray_20);
    transition: background 0.3s;
}

/* 設定超出兩行字省略顯示 */
.transferSection .tab_bar li span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.transferSection .tab_bar li.active {
    border-bottom: 3px solid var(--transferSection_primary);
    color: var(--transferSection_primary);
}

/* 固定頁籤不滾動，平均分配寬度 */
.transferSection .tab_bar.fixed {
    overflow-x: hidden;
}

.transferSection .tab_bar.fixed li {
    width: 100%;
    flex: auto;
}

/* 超出可滾動，可設定頁籤項目寬度 */
.transferSection .tab_bar.scroll {
    overflow-x: scroll;
}

.transferSection .tab_bar.scroll li {
    width: 120px;
}


/* ---頁籤列 end--- */

/* ---文字頁籤 start */

.transferSection .tab .tab_list {
    display: flex;
}

.transferSection .tab .tab_list li {
    background: #fff;
    color: var(--transferSection_gray_40);
    padding: 15px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-right: 2px;
    cursor: pointer;
}

.transferSection .tab .tab_list li.active {
    background-color: var(--transferSection_primary);
    color: #fff;
}

/* 設定超出兩行字省略顯示 */
.transferSection .tab .tab_list li span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 頁籤內容區塊 */

.transferSection .tab .tab_content {
    padding: 2.5rem;
    text-align: left;
    background-color: #fff;
}

.transferSection .tab .tab_content .tab_inner {
    display: none;
}

.transferSection .tab .tab_content .tab_inner.active {
    display: block;
}

/* ---文字頁籤 end */


/* End 元件-頁籤  ---------------------------------------------------------------------------------------------- */

/* @ 排列區塊-圖文排列 ---------------------------------------------------------------------------------------------- */

/* ---平均分配row-於手機版換行--- */

.transferSection .content_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 -1.25rem;
}

.transferSection .content_wrap .content {
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.transferSection .content_wrap .content .fz_h2 {
    margin-bottom: 1.25rem;
}

/* --左邊35%--- */

.transferSection .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.transferSection .col_35 {
    flex: 0 0 35%;
    margin-right: 2.5rem;
}


/* ---區塊-下載文件---  */

.transferSection .block_doc {
    background-color: #fff;
    border-radius: 8px;
    padding: 2.5rem;
}

.transferSection .block_doc > p {
    padding: 2.5rem;
}

.transferSection .block_doc .block_doc_list {
    width: 100%;
}

.transferSection .block_doc .block_doc_list > p {
    margin-bottom: 1.875rem;
}

.transferSection .block_doc .block_doc_item {
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    padding: 10px 1.25rem;
    margin: 0 0.625rem 1.25rem 0.625rem;
    width: 250px;
}

.transferSection .block_doc .block_doc_item a {
    flex: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: var(--transferSection_primary);
    color: #fff;
    margin-left: 0.625rem;
}

.transferSection .block_doc .block_doc_item a:hover {
    color: var(--transferSection_primary);
    background-color: #fff;
    border: 1px solid var(--transferSection_primary);
}


/* ---特色標題區塊--- */

.transferSection .middle_brown {
    background-color: #f6f1e8;
    padding: 2.5rem;
    position: relative;
}

.transferSection .middle_brown .fz_h2 {
    margin-bottom: 1.25rem;
}


/* @ End 排列區塊-圖文排列 ---------------------------------------------------------------------------------------------- */

/* @ 排列區塊-流程圖說明 ---------------------------------------------------------------------------------------------- */

/* 步驟流程圖_3欄 */

.transferSection .step_row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.transferSection .step_row .step_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    flex: 0 0 calc((100% - 72px) / 3);
    position: relative;
}

.transferSection .step_sm_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.transferSection .step_sm {
    width: 160px;
    height: 160px;
    background-color: #fff;
    border-radius: 50%;
    margin: 1.25rem 0.625rem;
    position: relative;
}

.transferSection .step_sm .step_number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--transferSection_primary);
    color: #fff;
    font-family: Roboto;
    position: absolute;
    bottom: -10px;
}

/* 圖片裁切成圓形 */

.transferSection .step_row img {
    border-radius: 50%;
}

.transferSection .step_row p {
    max-width: 260px;
    margin: 1.25rem auto;
}

/* ---流程圖箭頭--- */

.transferSection .steparrow::after {
    content: "";
    position: absolute;
    bottom: 3.125rem;
    right: -1.875rem;
    width: 20px;
    height: 21px;
    background: url("../images/icon/i_step.svg") no-repeat center;
    transform: translate(-50%, -50%);
}

.transferSection .steparrow.upside::after {
    bottom: 55%;
}

.transferSection .steparrow.show_m::after {
    display: none;
}

.transferSection .step_row .steparrow::after {
    right: -2.8125rem;
    bottom: 60%;
}

/* ---文字樣式--- */

.transferSection .text_stepnumber {
    font-size: 2.8125rem;
    font-weight: bold;
    color: var(--transferSection_secondary_50);
    margin-top: 1.25rem;
}


/* End 排列區塊-流程圖說明 ---------------------------------------------------------------------------------------------- */

/* @ 排列區塊-Logo組合 ---------------------------------------------------------------------------------------------- */

.transferSection .logo_list {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.875rem 1.25rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.transferSection .logo_list li {
    flex: 1 0 200px;
}

.transferSection .logo_list img {
    display: block;
    margin: 0.625rem auto;
    max-width: 180px;
}


/* End 排列區塊-Logo組合 ---------------------------------------------------------------------------------------------- */

/* @ 表單---------------------------------------------------------------------------------------------- */

.transferSection .form_group {
    width: 100%;
    margin-bottom: 1.25rem;
}

.transferSection .form_title {
    font-weight: 600;
    margin-bottom: 0.625rem;
    letter-spacing: 4px;
}

.transferSection .form_title i {
    width: 1.5625rem;
    height: 1.5625rem;
    cursor: pointer;
}

.transferSection .form_group select {
    background: #fff url("../images/icon/i_select.svg") no-repeat right 20px center;
    color: var(--transferSection_textcolor);
    cursor: pointer;
}

.transferSection .form_item {
    width: 100%;
    height: 60px;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid grey;
    position: relative;
    font-size: 1.25rem;
}

.transferSection .form_item:focus {
    border: 2px solid var(--transferSection_primary);
}

.transferSection .form_item::placeholder {
    color: var(--transferSection_gray_40);
}

.transferSection .form_item.underline {
    background: transparent;
    border-bottom: 1px solid var(--transferSection_gray_50);
    border-radius: 0;
}

.transferSection .form_item.underline:focus {
    border: transparent;
    border-bottom: 1px solid var(--transferSection_primary);
}

/* input及select disabled樣式 */
.transferSection .form_item:disabled,
.transferSection .textarea_box:disabled {
    background-color: var(--transferSection_gray_30);
    border: 1px solid var(--transferSection_gray_30);
    color: var(--transferSection_black);
    filter: grayscale(1);
    opacity: .3;
    cursor: not-allowed;
}

.transferSection .helper_txt {
    font-size: 1.09375rem;
    color: var(--transferSection_gray_50);
    padding-top: 5px;
}

/* ---div下拉選單 start--- */

.transferSection .select_group {
    position: relative;
    user-select: none;
}

.transferSection .select_style {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #fff url("../images/icon/i_select.svg") no-repeat;
    background-position: right 20px center;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid grey;
    cursor: pointer;

}

.transferSection .select_style + .select_dropdown {
    display: none;
    width: 100%;
    max-height: 350px;
    margin-top: 4px;
    position: absolute;
    padding: 4px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1;
}

.transferSection .select_style.active + .select_dropdown,
.transferSection .select_style.active ~ .select_overlay {
    display: block;
}

.transferSection .select_option {
    width: 100%;
    border-radius: 4px;
    padding: 0.625rem 0.625rem 0.625rem 1.25rem;
}

.transferSection .select_option:hover {
    background-color: var(--transferSection_primary);
    color: #fff;
}

.transferSection .select_overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

/* div下拉 disabled樣式 */
.transferSection .select_style.disabled {
    background-color: var(--transferSection_gray_30);
    filter: grayscale(1);
    opacity: .3;
    color: var(--transferSection_black);
    cursor: not-allowed;
}

/* ---div下拉選單 end--- */

/* 信用卡 */
.transferSection .form_card {
    width: 100%;
    flex-grow: 1;
    margin-right: 16px;
}

.transferSection .form_card_date {
    width: 100%;
    max-width: 120px;
}


/* 輸入框 + icon */

.transferSection .input_icon {
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 50px;
}

/* 輸入框內icon按鈕 */

.transferSection .input_group {
    width: 100%;
    position: relative;
}

.transferSection .input_group .innerbtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
}

.transferSection .input_group .form_item {
    padding-right: 40px;
}


.transferSection .input_icon.i_search {
    background-image: url("../images/icon/i_search.svg");
}

.transferSection .input_icon.i_card {
    background-image: url("../images/icon/i_input_card.svg");
}

.transferSection .input_icon.i_date {
    background-image: url("../images/icon/i_date.svg");
}

.transferSection .input_icon.i_clear {
    display: none;
    background-image: url("../images/icon/i_clear.svg");
}

.transferSection .input_icon.i_scan {
    background-image: url("../images/icon/i_scan.svg");
}


/* 輸入框 + 按鈕 */

.transferSection .input_btn {
    padding: 8px 20px;
    border-radius: 4px;
    margin-left: 8px;
    white-space: nowrap;
    cursor: pointer;
}


/* 多行輸入框 */

.transferSection .textarea_box {
    height: 80px;
    resize: vertical;
}

/* 提示樣式 */

.transferSection .form_error .form_item,
.transferSection .form_error .select_style,
.transferSection .form_error .radio_btn > label::before,
.transferSection .form_error .check_btn > label::before {
    background-color: #f8f1f1;
    border: 1px solid var(--transferSection_red);
}

.transferSection .form_error .error_txt,
.transferSection .form_error + .error_txt {
    padding-top: 5px;
    color: var(--transferSection_red);
    font-size: 1.09375rem;
}

/* Radio 選項[單選] */
.transferSection .radio_btn,
.transferSection .check_btn {
    margin: 8px 0;
    position: relative;
    padding-left: 30px;
    text-align: left;
}

.transferSection .radio_btn > input[type="radio"],
.transferSection .check_btn > input[type="checkbox"] {
    display: none;
}

.transferSection .radio_btn label,
.transferSection .check_btn label {
    cursor: pointer;
}

.transferSection .radio_btn > label::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid var(--transferSection_primary);
    top: 2px;
    left: 0;
}

.transferSection .radio_btn > label::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    background-size: 16px;
}

.transferSection .radio_btn input[type="radio"]:focus,
.transferSection .radio_btn input[type="radio"]:checked + label::after {
    background-color: var(--transferSection_primary);
}

.transferSection .radio_btn:not(:last-child),
.transferSection .check_btn:not(:last-child) {
    margin-right: 20px;
}


/* Checkbox 選項[多選] */

.transferSection .check_btn > label::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--transferSection_primary);
    top: 5px;
    left: 0;
}

.transferSection .check_btn input[type="checkbox"]:checked + label::before {
    background-color: var(--transferSection_primary);
    background-image: url(../images/icon/i_check.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

/* disabled樣式 */

/* 文字顏色 */
.transferSection .radio_btn input[type="radio"]:disabled + label,
.transferSection .check_btn input[type="checkbox"]:disabled + label {
    color: var(--transferSection_gray_40);
    cursor: not-allowed;
}

/* 外框變灰變淡 */
.transferSection .radio_btn input[type="radio"]:disabled + label::before,
.transferSection .check_btn input[type="checkbox"]:disabled + label::before {
    background-color: var(--transferSection_gray_20);
    border: 1px solid var(--transferSection_gray_40);
    opacity: .5;
}

/* 預設選取且無法取消的樣式 */
.transferSection .radio_btn.default input[type="radio"]:disabled + label::before {
    border: 1px solid var(--transferSection_primary);
}

.transferSection .radio_btn.default input[type="radio"]:disabled + label::after,
.transferSection .check_btn.default input[type="checkbox"]:disabled + label::before {
    background-color: var(--transferSection_primary);
    border: 1px solid var(--transferSection_primary);
    opacity: .5;
}


/* Radio / Checkbox選項含輸入框 */

.transferSection .radioInput > label::before {
    top: 20px;
}

.transferSection .radioInput > label::after {
    top: 20px;
}

.transferSection .radioInput label {
    margin-right: 20px;
    flex: none;
}

.transferSection .radioInput .form_item {
    width: 100%;
}

/* End 表單---------------------------------------------------------------------------------------------- */

/* @表格 ---------------------------------------------------------------------------------------------- */

.transferSection .table {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin: 2.5rem auto 3.75rem auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.transferSection .table_tr {
    display: flex;
    width: 100%;
    padding: 0 0.625rem;
    position: relative;
}

.transferSection .table_head {
    align-items: center;
    background-color: var(--transferSection_primary);
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.transferSection .bg_light {
    background-color: var(--transferSection_secondary_10);
    color: var(--transferSection_primary);
}

.transferSection .table_tr:last-child .table_td {
    border-bottom: 1px solid transparent;
}

.transferSection .table_th,
.transferSection .table_td {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 8px;
    width: 100%;
    word-break: break-word;
}

.transferSection .table_td {
    border-bottom: 1px solid #e6e6e6;
}

/* 箭頭icon設定 */
.transferSection .table_th.next,
.transferSection .table_td.next {
    padding-right: 16px;
}

.transferSection .table_td.next::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    right: 12px;
    background: url("../images/icon/i_arrow_r.svg") no-repeat center/100%;
}

/* --- 開合式表格
搭配開合選單的js及下方開合選單箭頭共用設定css --- */

.transferSection .table .accordion_content {
    display: none;
    margin: 0 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #e6e6e6;
}

.transferSection .table .accordion_content .table_td {
    border: none;
    padding: 0.625rem 0 0.625rem 0.625rem;
}

.transferSection .table .accordion_header .table_td {
    padding-right: 20px;
    transition: border-bottom 0s .4s;
}

.transferSection .table .accordion_header.active .table_td {
    border: none;
}

/* 最後一列表格無下底線 */
.transferSection .table_item:last-child .table_td, .transferSection .table_item:last-child .accordion_content {
    border: none;
}

/* --- 開合式表格 End --- */


/* 匯率表格icon */
.transferSection .icon_flag {
    display: inline-block;
    width: 30px;
    height: 20px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.transferSection .icon_flag.USD {
    background-image: url("../images/flag/USD.svg");
}

.transferSection .icon_flag.JPY {
    background-image: url("../images/flag/JPY.svg");
}

.transferSection .icon_flag.HKD {
    background-image: url("../images/flag/HKD.svg");
}

/* ---表格 5格--- */

.transferSection .table_w20 .table_th:not(:first-of-type),
.transferSection .table_w20 .table_td:not(:first-of-type),
.transferSection .table_2col .table_th:not(:first-of-type) {
    text-align: center;
    justify-content: center;
}

/* 增加首欄寬度 */
.transferSection .table_2col .table_tr .table_th:first-child,
.transferSection .table_2col .table_tr .table_td:first-child {
    width: 142%;
}

.transferSection .table_2col {
    margin: 32px auto;
}

.transferSection .table_2col .table {
    margin: 0;
}

.transferSection .table_w20 .table_td.lefttop {
    text-align: left;
    justify-content: flex-start;
}

/* 表格裡面的藍色點 */
.transferSection .circle_blue {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin: 0 auto;
    background-color: var(--transferSection_blue);
}

/* 黃色點顏色 */
.transferSection .bg_secondary {
    background-color: var(--transferSection_secondary);
}

/* ---5欄的手機版表格--- */

.transferSection .table_m {
    display: none;
}

.transferSection .table_m_head {
    background-color: var(--transferSection_primary);
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0.625rem 1.25rem;
}

.transferSection .table_m_body {
    background-color: #fff;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.transferSection .table_m_body p {
    margin: 0.3125rem 0;
}

.transferSection .table_m_body i {
    margin-right: 1.25rem;
}

/* 橫式表格 */

.transferSection .table_row {
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.transferSection .table_row hr {
    margin: 0;
}

.transferSection .table_row .fz_h4 {
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
}

.transferSection .table_row .table_tr {
    align-items: stretch;
}

.transferSection .table_row .table_tr .table_td {
    margin: 2.5rem 0;
    padding: 0 1.25rem;
}

.transferSection .table_row .table_tr .table_td:not(:last-child) {
    border-right: 2px solid var(--transferSection_secondary_50);
}


/* End 表格 ---------------------------------------------------------------------------------------------- */


/* @ 開合選單 ---------------------------------------------------------------------------------------------- */

.transferSection .accordion {
    margin-bottom: 2.5rem;
}

.transferSection .accordion li {
    margin-bottom: 0.625rem;
}

.transferSection .accordion .accordion_header {
    display: table;
    width: 100%;
    background-color: #fff;
    padding: 1.25rem 3.75rem 1.25rem 1.25rem;
    margin-bottom: 2px;
    position: relative;
    cursor: pointer;
}

/* 開合選單箭頭共用設定 Start */

.transferSection .accordion_header i {
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    transform: translateY(-50%) rotateX(0deg);
    top: 50%;
    right: 16px;
    background: url("../images/icon/i_arrow.svg") no-repeat center/100%;
}

.transferSection .accordion_header i.active {
    transform: translateY(-50%) rotateX(180deg);
}

/* 開合選單箭頭共用設定 End */

.transferSection .accordion .accordion_header span {
    display: table-cell;
}

.transferSection .accordion .accordion_header .q_num {
    color: var(--transferSection_primary);
    width: 2.5rem;
}

.transferSection .accordion .accordion_content {
    background-color: #fff;
    text-align: left;
    display: none;
}

.transferSection .accordion .accordion_content a {
    color: #508eba;
    word-break: break-word;
}

.transferSection .accordion .accordion_content p,
.transferSection .accordion .accordion_content img {
    padding: 1.875rem 3.75rem;
}


/* End 開合選單 ---------------------------------------------------------------------------------------------- */

/* [star] 錨點切換 ------------------------------------------------------------------------------------------- */

/* ----[錨點tab]------ */
.transferSection .anchor_block {
    display: flex;
    justify-content: space-between;
}

.transferSection .anchor_tab_box {
    width: 25%;
}

.transferSection .anchor_tab_box .anchor_tab {
    width: 140px;
    position: sticky;
    top: 100px;
}

.transferSection .anchor_tab_box .tab_list {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.transferSection .anchor_tab_box .tab_list a {
    margin-bottom: 20px;
    color: var(--transferSection_textcolor);
    cursor: pointer;
    font-size: 1.40625rem;
    line-height: 27px;
    display: block;
}

.transferSection .anchor_tab_box .tab_list a:hover {
    color: var(--transferSection_primary);
    transition: 0.2s 0.1s;
}

.transferSection .anchor_tab_box .tab_list a.active {
    color: var(--transferSection_primary);
    font-weight: bold;
    position: relative;
}

.transferSection .anchor_tab_box .tab_list a.active::before {
    content: "";
    display: inline-block;
    position: absolute;
    height: 20px;
    width: 3px;
    background-color: var(--transferSection_primary);
    border-radius: 10px;
    top: 4px;
    left: -15px;
}

/* ----[錨點 content]------ */
.transferSection .anchor_content {
    width: 75%;
}

.transferSection .anchor_Info {
    /* display: flex; */
    position: relative;
}

.transferSection .anchor_Info:not(:first-child) {
    margin-top: 40px;
}

.transferSection .anchor_content_box {
    margin-top: 20px;
}

.transferSection .anchor_content_img {
    height: 100%;
    padding-bottom: 30%;
    margin: 0 0 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.transferSection .anchor_content_img.block01_img {
    background-image: url(https://fakeimg.pl/1560x520/);
}


/* [end] 錨點切換 ------------------------------------------------------------------------------------------- */

/* @ 輪播功能 ---------------------------------------------------------------------------------------------- */

/* ---banner--- */

.transferSection .container_banner {
    width: 100% !important;
    max-width: 1360px !important;
    margin: auto;
    height: 480px;
}

/* ---小卡片輪播--- */

.transferSection .flexslider.carousel .slides {
    display: flex;
    width: 95%;
}

.transferSection .slider_list {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.transferSection .slider_item {
    display: flex !important;
    padding: 1.25rem !important;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    margin: 0 1.25rem !important;
    width: calc((1360px - 96px) / 3) !important;
    max-height: 350px;
}

.transferSection .slider_item .slider_img {
    flex: none;
    max-width: 120px;
    max-height: 120px;
    margin-right: 2.5rem;
}

.transferSection .slider_item .slider_img img {
    width: 100%;
    border-radius: 100%;
}

.transferSection .slider_item .text_sm_m {
    font-size: 1.09375rem;
    overflow: hidden;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    max-height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}


/* End 輪播功能 ---------------------------------------------------------------------------------------------- */

/* @圖片-logo ---------------------------------------------------------------------------------------------- */

/* ---logo--- */

.transferSection .logo {
    /*width: 200px;*/
    /*background: url("../images/logo.svg") no-repeat center;*/
    background-size: contain;
}

.transferSection .logo_footer {
    width: 220px;
    height: 50px;
    background: url("../images/logo_footer.svg") no-repeat;
}

/* End 圖片-logo ---------------------------------------------------------------------------------------------- */

/* @圖片-Icon ---------------------------------------------------------------------------------------------- */

/* ---Icon--- */

.transferSection .i_menu {
    position: absolute;
    top: 15px;
    left: 24px;
    width: 24px;
    height: 24px;
    background: url("../images/icon/i_menu_r.svg") no-repeat;
}

.transferSection .i_back {
    position: absolute;
    top: 15px;
    left: 9px;
    width: 24px;
    height: 24px;
    background: url("../images/icon/i_back.svg") no-repeat;
}

.transferSection .i_add {
    background-image: url("../images/icon/i_add.svg");
}

.transferSection .i_call {
    background-image: url("../images/icon/i_call.svg");
}

.transferSection .i_edit {
    background-image: url("../images/icon/i_edit.svg");
}

.transferSection .i_setting {
    background-image: url("../images/icon/i_setting.svg");
}

.transferSection .i_arrow_r {
    width: 16px;
    height: 16px;
    background: url("../images/icon/i_arrow_r.svg") no-repeat center/100%;
    margin-left: 4px;
    margin-top: 2px;
}

.transferSection .btn_text:hover .i_arrow_r,
.transferSection .btn_text:focus .i_arrow_r {
    filter: brightness(0.3);
}

.transferSection .i_question {
    background-image: url("../images/icon/i_question.svg");
}

.transferSection .i_global {
    display: block;
    width: 84px;
    height: 84px;
    background: url("../images/icon/i_global.svg") no-repeat center/100%;
}

.transferSection .i_tick {
    display: block;
    width: 15px;
    height: 10px;
    background: url("../images/icon/i_tick.svg") no-repeat center/100%;
}

.transferSection .i_cross {
    display: block;
    width: 13px;
    height: 13px;
    background: url("../images/icon/i_cross.svg") no-repeat center/100%;
}

.transferSection .i_mobilepay {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../images/icon/i_mobilepay.svg") no-repeat center/100%;
}

.transferSection .i_house {
    display: block;
    width: 64px;
    height: 64px;
    background: url("../images/icon/i_house.svg") no-repeat center/100%;
}

.transferSection .i_ssl_step1 {
    display: block;
    width: 80px;
    height: 60px;
    background: url("../images/icon/i_ssl_step1.svg") no-repeat center/100%;
}

.transferSection .i_data {
    display: block;
    width: 136px;
    height: 136px;
    background: url("../images/icon/i_data.svg") no-repeat center/100%;
}

.transferSection .i_search_w {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/i_search_w.svg") no-repeat center/100%;
}

.transferSection .i_result_success {
    display: block;
    margin: 0 auto 0.625rem;
    width: 48px;
    height: 48px;
    background: url("../images/icon/i_result_success.svg") no-repeat center/100%;
}

.transferSection .i_result_error {
    display: block;
    margin: 0 auto 0.625rem;
    width: 48px;
    height: 48px;
    background: url("../images/icon/i_result_error.svg") no-repeat center/100%;
}

.transferSection .i_result_warning {
    display: block;
    margin: 0 auto 0.625rem;
    width: 48px;
    height: 48px;
    background: url("../images/icon/i_result_warning.svg") no-repeat center/100%;
}

/* 眼睛icon(開眼) */
.transferSection .i_view {
    background-image: url(../images/icon/i_view.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 20px;
    height: 20px;
}

/* 眼睛icon(閉眼) */
.transferSection .i_view_off {
    background-image: url(../images/icon/i_view_off.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
    width: 20px;
    height: 20px;
}


/* End 圖片-Icon ---------------------------------------------------------------------------------------------- */
