@charset "utf-8";
html{
	margin: 0;
	height: 100%;
}
body {
	margin: 0;
	height: 100%;
	font-family: "Noto Sans TC" , "Microsoft JhengHei", Arial, Helvetica;
	font-size:17px;
	color:var(--font-color);
	letter-spacing: 0.1rem;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
a:hover {
	color: var(--main-color);
	text-decoration: none;
}
h1{
	font-size: 2em;
	letter-spacing: 0;
}
h2{
	font-size: 1.75em;
	letter-spacing: 0;
}
h3{
	font-size: 1.5em;
	line-height: 1.5;
}
h4{
	font-size: 1.25em;
	line-height: 1.5;
}
h5{
	font-size: 1.15em;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, p{
	margin-bottom:0;
}
p{
	line-height: 1.7;
}
button {
    border: 0;
    background-color: transparent;
}
input, textarea{
    box-shadow: none;
    -webkit-appearance: none;  /* Safari*/
    -moz-appearance: none;     /* FireFox */
    appearance: none;
}
input:focus, textarea:focus{
    outline: none !important;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color3) !important;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color3) !important;
}
input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color3) !important;
}
select{
	font-size: 1rem;
}
select:focus{
    outline: none !important;
}
.bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg img {
	display: none;
}
.font_bold{
	font-weight: 600;
}
.font_pre{
    white-space: pre-line;
}
.font_main_color{
    color: var(--main-color);
}
.row{
	margin-left: -16px;
	margin-right: -16px;
}
.row>*{
	padding-left: 16px;
	padding-right: 16px;
}
.my_container{
	max-width: 1504px;
    padding-right: 32px;
    padding-left: 32px;
    margin-left: auto;
    margin-right: auto;
}
.article_container{
	max-width: 1032px;
    padding-right: 16px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
}
.block_pt{
    padding-top: 72px;
}
.block_pb{
    padding-bottom: 72px;
}
main{
	min-height: calc(100vh - 80px - 364px);
}
.main_pt{
    padding-top: 72px;
}
.main_pb{
    padding-bottom: 72px;
}
.show_model{
    padding: 64px 0;
}
.w-200{
    max-width: 200px;
}
.w-700{
    max-width: 700px;
}
.w-1000{
    max-width: 1000px;
}
/*頁面標題*/
.page_title{
    margin-bottom: 48px;
    padding: 48px 0 0 0;
}
.page_title .en{
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 8px;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--font-color);
    /* color: var(--main-color); */
}
.page_title .en.aos-animate{
    background: linear-gradient(90deg, var(--main-color) 20%, var(--main-color3) 30%, var(--font-color) 20%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: page_title_a 2.5s forwards linear;
}
@keyframes page_title_a {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0; 
    }
}
.page_title .en[data-aos="fade-up"] {
    transform: translateY(32px);
    opacity: 0;
}
.page_title h1{
    font-size: 18px;
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 1.5;
    text-transform: uppercase;
}
.page_title h1[data-aos="fade-up"] {
    transform: translateY(32px);
    opacity: 0;
}
.page_title h1::before{
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    order: initial;
    margin-left: 0;
    margin-right: 8px;
    order: 3;
    background-color: var(--second-color);
    z-index: 2;
}
.page_title h1::after{
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    order: initial;
    margin-left: 8px;
    z-index: 1;
}
.page_title.left{
    border-bottom: 0;
    padding-bottom: 0;
}
/*區塊標題*/
.block_title{
    margin-bottom: 48px;
}
.block_title h2{
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 4px;
    line-height: 1.45;
    letter-spacing: 0.1em;
}
.block_title .en{
    font-size: 18px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.block_title .en::before{
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    order: 1;
    margin-left: 8px;
    z-index: 2;
}
.block_title .en::after{
    content: "";
    height: 2px;
    width: 36px;
    background-color: var(--second-color);
    order: 2;
    z-index: 1;
}
.block_title_row{
    display: flex;
    align-items: flex-end;
    margin-bottom: 48px;
}
.block_title_row .block_title{
    margin-bottom: 0;
}
.block_title_txt{
    margin-left: 48px;
    font-size: 18px;
}
.block_title.center h2{
    text-align: center;
}
.block_title.center .en{
    justify-content: center;
}
.block_title.center .en::before{
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    order: initial;
    margin-left: 0;
    margin-right: 8px;
    z-index: 2;
}
.block_title.center .en::after{
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    order: initial;
    margin-left: 8px;
    z-index: 1;
}
.block_title h3{
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: -8px;
}
.block_title h3::after{
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    margin-top: 4px;
}
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, var(--bg-color) 30%, #c3cfe2 100%);
    z-index: 2000;
    overflow: hidden;
}
.loader .logo{
    width: 80px;
    margin: 0 auto 12px auto;
}
.loader .logo img{
    width: 100%;
}
.loader span.txt{
    width: 100px;
    font-size: 18px;
    color: transparent;
    overflow:hidden;
    display: block;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow:0 0 var(--main-color), 6em 0 var(--main-color);
    animation:marquee 1s infinite ease;
}
.loader span.txt:before {
    content:"Loading...";
}
@keyframes marquee {to{text-shadow:-6em 0 var(--main-color), 0 0 var(--main-color)}}
/*彈窗-簡易*/
.simple_modal .modal-dialog{
    max-width: 400px;
}
.simple_modal .modal-content{
    border-radius: 16px;
    border: none;
}
.simple_modal .modal-body{
    padding: 40px 16px 8px 16px;
}
.simple_modal .modal-body .title{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}
.simple_modal .modal-footer{
    padding: 16px 16px 24px 16px;
    border-top: none;
    justify-content: center;
}
.simple_modal .modal-footer>*{
    margin: 0;
}
.simple_modal .modal-footer>.two_btn{
    margin-bottom: -8px;
}
.simple_modal .modal-footer .btn+.btn{
    margin-left: 16px;
}
.message_modal_content{
    text-align: center;
}
/*吐司*/
.my_toast{
    position: fixed;
    top: 30%;
    right: calc(50% - 200px);
    z-index: 1010;
}
.my_toast .toast{
    position: relative;
    background-color: rgb(0 0 0 / 90%);
    color: #fff;
    width: 400px;
    border: none;
    box-shadow: 0 6px 30px rgb(0 0 0 / 25%);
    border-radius: 4px;
}
.my_toast .toast-body {
    padding: 40px 24px 40px 24px;
    max-width: 100%;
    text-align: center;
}
.my_toast .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-right: 0;
    color: #fff;
    font-size: 40px;
    background-image: none;
    opacity: 1;
}
.my_toast .btn-close i {
    display: flex;
    justify-content: center;
}
.my_toast .btn-close:hover {
    opacity: 1;
}
.my_toast .btn-close:focus {
    box-shadow: none;
}
.my_toast .toast_icon img{
    width: 52px;
}
.my_toast .toast_txt{
	font-size: 1rem;
}
/*分享列*/
.share_list_box{
    display: flex;
    align-items: center;
}
.share_list_box p{
    margin-right: 16px;
    font-size: 14px;
    color: var(--font-color2);
}
.share_list{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.share_item{
    font-size: 24px;
    width: 30px;
}
.share_item img{
    width: 100%;
}
.share_item+.share_item{
    margin-left: 16px;
}
.copy_link{
    cursor: pointer;
}
/*header*/
.page_header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 10%);
    transition: all .5s;
    z-index: 1002;
}
.header_box{
	display: flex;
	margin-left: -16px;
	margin-right: -16px;
	height: 80px;
}
.header_box>*{
	padding-left: 16px;
	padding-right: 16px;
	height: 100%;
}
.header_logo {
	width: fit-content;
}
.header_logo a {
	display: flex;
	align-items: center;
	height: 100%;
}
.header_logo a img{
	height: 58px;
}
.header_nav{
	flex: 1;
}
.header_nav .nav{
	height: 100%;
    justify-content: flex-end;
	margin-left: -24px;
	margin-right: -24px;
}
.header_nav .nav-link{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 24px;
	color: var(--font-color);
	font-weight: 600;
    position: relative;
}
.header_nav .nav-link:hover{
	color: var(--main-color);
}
.header_nav .nav-link::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    background-color: var(--main-color);
    transition: all .2s;
}
.header_nav .nav-link:hover::after{
    width: calc(100% - 48px);
}
.header_nav .nav-link.active{
	color: var(--main-color);
}
.header_nav .nav-link.light{
    background-color: var(--second-color);
    color: var(--main-color);
}
.header_nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
}
.header_nav .nav-item .dropdown-menu{
    border: none;
    padding-top: 2px;
    border-radius: 0;
    background-color: transparent;
}
.header_nav .nav-item .dropdown-menu ul{
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 10%);
    padding: 8px 0;
    list-style: none;
    margin-bottom: 0;
}
.header_nav .nav-item .dropdown-menu ul .dropdown-item{
    padding: 8px 16px;
}
.header_nav .nav-item .dropdown-menu ul .dropdown-item:hover, 
.header_nav .nav-item .dropdown-menu ul .dropdown-item:focus{
    background-color: var(--bg-color);
    color: var(--font-color);
}
.header_right{
	width: 520px;
}
.header_right .nav{
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	margin-left: -12px;
	margin-right: -12px;
}
.header_right .nav>*{
	padding-left: 12px;
	padding-right: 12px;
}
.header_right .nav .icon_button{
    padding: 0;
    font-size: 20px;
    border-radius: 0;
    border: none;
}
.header_right .nav .icon_button:focus{
    box-shadow: none;
}
.mobile_menu_btn{
    display: none;
}
.mobile_menu_btn .btn{
    position: relative;
    padding: 0;
    width: 20px;
    height: 20px;
}
.mobile_menu_btn .btn:focus{
    box-shadow: none;
}
.mobile_menu_btn .btn>div{
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--font-color);
    transition: all .2s;
}
.mobile_menu_btn .btn>div:nth-child(1){
    position: absolute;
    width: 20px;
    top: 2px;
}
.mobile_menu_btn .btn>div:last-child{
    position: absolute;
    width: 20px;
    bottom: 2px;
}
.mobile_menu_btn.active .btn>div:nth-child(2){
    width: 0;
}
.mobile_menu_btn.active .btn>div:nth-child(1){
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
    top: 8px;
}
.mobile_menu_btn.active .btn>div:last-child{
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotate(-45deg);
    bottom: auto;
    top: 8px;
}
.header_search{
	display: flex;
	align-items: center;
	border: solid 1px var(--main-color);
	border-radius: 4px;
}
.header_search input, .header_search select{
	border: none;
	height: 40px;
	font-size: 1rem;
	color: var(--font-color);
}
.header_search input:focus, .header_search select:focus{
	box-shadow: none;
}
.header_search .form-select{
	width: 120px;
}
.header_search input.form-control{
	flex: 1;
}
.header_search .btn{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
}
.mobile_btn{
	display: none;
}
.under_page_header{
	height: 80px;
}
/*手機版選單*/
.mobile_sidebar {
    position: fixed;
    top: 68px;
    left: 0;
    z-index: 1001;
    background-color: #fff;
    width: 100%;
    height: 0px;
    overflow: hidden;
}
.mobile_sidebar_list{
	padding: 16px 0 12px 0;
	list-style: none;
    overflow-y: auto;
    height: calc(100vh - 68px);
}
.mobile_sidebar_list>li>a{
	display: block;
	padding: 16px 20px;
	border-bottom: solid 1px var(--bg-color);
	font-weight: 500;
}
.mobile_sidebar_dropdown_btn {
    position: absolute;
    right: 8px;
    top: 0;
    height: 50px;
    width: 50%;
    text-align: right;
    padding: 12px 16px;
}
.mobile_sidebar_dropdown_btn img{
    width: 16px;
    transition: all .2s;
}
.mobile_sidebar_list_lv2{
    display: none;
}
.mobile_sidebar_list li.dropdown.active>a{
    background-color: var(--bg-color);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_dropdown_btn img {
    transform: rotate(180deg);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_list_lv2{
    display: block;
}
.mobile_sidebar_list_lv2 ul{
    list-style: none;
    margin-bottom: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-left: solid 1px var(--border-color);
    margin-left: 23px;
    padding-left: 0;
}
.mobile_sidebar_list_lv2 .dropdown-item{
    padding: 12px 16px;
}
.mobile_sidebar_list_lv2 .dropdown-item:hover,
.mobile_sidebar_list_lv2 .dropdown-item:active{
    background-color: #fff;
    color: var(--font-color);
}
/*手機版搜尋*/
.mobile_search {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    background-color: var(--main-color);
    width: 100%;
    height: 0px;
    overflow: hidden;
}
.mobile_search_group {
    display: flex;
}
.mobile_search_group .form-select {
    margin-top: 15px;
    padding: 0 12px;
    line-height: 42px;
    border: none;
    height: 42px;
    width: 140px;
    color: #fff;
    box-shadow: none !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/arrow-down.svg) no-repeat right center transparent;
    background-color: transparent;
    background-size: 16px;
    background-position: right 12px center;
}
.mobile_search_input {
    flex: 1;
    background-color: transparent;
    border: none;
    height: 42px;
    margin-top: 15px;
    padding: 0 40px 0 0;
    line-height: 42px;
    color: #fff;
}
.mobile_search_input:focus{
    background-color: transparent;
    color: #fff;
	box-shadow: none;
}
.mobile_search_input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color4) !important;
}
.mobile_search_input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color4) !important;
}
.mobile_search_input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color4) !important;
}
.close_mobile_search{
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
}
.close_mobile_search .btn{
    border: none;
    color: #fff;
    height: 36px;
    width: 36px;
    font-size: 32px;
    padding: 0;
    background-color: var(--main-color);
}
.close_mobile_search .btn i{
    display: flex;
    justify-content: center;
}
.go_mobile_search{
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
}
.go_mobile_search .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 42px;
    width: 42px;
    font-size: 20px;
    padding: 0;
    background-color: var(--main-color);
}
.go_mobile_search.show{
    z-index: 1002;
}
/*搜尋*/
.search_offcanvas{
    height: 100vh;
    border-bottom: none;
    background-color: rgb(255, 255, 255, .9);
}
.search_offcanvas .my_container{
    flex: 1;
}
.search_offcanvas.show~.offcanvas-backdrop{
    background-color: transparent;
}
.search_offcanvas .offcanvas-header{
    height: 80px;
    justify-content: end;
}
.search_offcanvas .offcanvas-header .btn-close:focus{
    box-shadow: none;
}
.search_title{
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--font-color);
}
.search_offcanvas .offcanvas-body {
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 128px;
}
.search_offcanvas_content{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.hot_search{
    margin-top: 24px;
}
.hot_search_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -12px;
    margin-right: -12px;
}
.hot_search_item{
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
}
.hot_search_item a{ 
    border-bottom: solid 1px var(--font-color2);
}
/*登入註冊*/
#login_Modal .close_modal_btn {
    padding-bottom: 24px;
    text-align: center;
}
#login_Modal .close_modal_btn .btn-close {
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--font-color2);
    font-size: 40px;
    background-image: none;
    opacity: 1;
}
#login_Modal .close_modal_btn .btn-close:focus {
    box-shadow: none;
}
#login_Modal .close_modal_btn .btn-close i {
    display: flex;
    justify-content: center;
}
.login_modal_block {
    display: none;
    width: 100%;
}
.login_modal_block.show {
    display: block;
}
.login_content {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.login_modal_block_title {
    text-align: center;
    margin-bottom: 16px;
}
.login_modal_block_title img {
    width: 200px;
}
.login_modal_block_title .success_icon{
    margin-bottom: 16px;
}
.login_modal_block_title .success_icon i{
    font-size: 48px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.open_other_form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.open_other_form .btn {
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
.open_other_form+.login_form{
    margin-top: 24px;
}
.other_login {
    margin-top: 24px;
    margin-bottom: 12px;
}
.btn_google{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_google img {
    width: 20px;
    margin-right: 8px;
}
.error_or {
    position: relative;
    margin-top: 1.5rem;
    height: 24px;
    margin-bottom: 1.5rem;
    color: var(--font-color4);
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.error_or::before {
    content: '或';
    position: absolute;
    left: calc(50% - 12px);
    top: 0;
    z-index: 3;
    padding: 0 4px;
    background-color: #fff;
    color: var(--main-color);
}
.error_or::after {
    content: '';
    background: linear-gradient(to right, transparent, var(--main-color), transparent);
    position: absolute;
    left: 0;
    top: 51%;
    width: 100%;
    height: 1px;
    z-index: 2;
    opacity: .7;
}
.login_form .my_form_btn .btn{
    width: 100%;
}
.login_content .tips{
    margin-top: 16px;
    font-size: 14px;
    color: var(--font-color2);
    text-align: center;
}
.login_content .tips a{
    color: var(--font-color);
    font-weight: 600;
    border-bottom: solid 1px var(--font-color);
}
.success_content{
    max-width: 400px;
    border: solid 1px var(--bg-color);
    border-radius: 16px;
    padding: 24px;
    margin: 0 auto;
}
.success_content .my_form_btn .btn{
    margin: 0 auto;
}
/*footer*/
.page_footer{
    background-color: var(--main-color-light);
    padding-top: 48px;
    padding-bottom: 32px;
    border-top: solid 1px var(--border-color);
}
.footer_logo img{
    height: 58px;
}
.office_info_list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
    margin-bottom: 0;
    color: var(--font-color2);
}
.office_info_item{
    display: flex;
    line-height: 1.4;
}
.office_info_title{
    word-break: keep-all;
}
.office_info_item+.office_info_item {
    margin-top: 12px;
}
.footer_nav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_nav .nav{
    flex-wrap: wrap;
}
.footer_nav li+li{
    margin-left: 48px;
}
.footer_nav li a{
    padding: 0;
    color: var(--font-color);
    font-weight: 500;
}
.footer_nav li a:hover{
    color: var(--main-color);
}
.footer_nav_group{
    display: flex;
    margin-left: -24px;
    margin-right: -24px;
}
.footer_nav_list {
    flex: 1;
    padding-left: 24px;
    padding-right: 24px;
}
.footer_nav_title {
    position: relative;
    font-size: 20px;
    margin-bottom: 16px;
    border-bottom: solid 2px #fff;
    padding-bottom: 4px;
}
.footer_nav_title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 20%;
    background-color: var(--main-color-dark);
}
.footer_nav_group .nav li{
    width: 100%;
}
.footer_nav_group .nav li a h5 {
    font-size: 1rem;
    line-height: 1.2;
}
.footer_nav.onenav .nav{
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 0;
}
.footer_nav.onenav li+li{
    margin-left: 48px;
}
.footer_line{
    border-bottom: solid 1px var(--border-color);
}
.footer_row_bottom{
    padding-top: 48px;
    padding-bottom: 32px;
    font-size: 14px;
}
.footer_row_bottom .footer_copyright{
    text-align: left;
}
.footer_row_bottom .statement .nav{
    justify-content: flex-end;
}
.footer_row_bottom .statement .nav a{
    padding: 0;
    color: var(--font-color);
}
.footer_row_bottom .statement .nav .nav-item+.nav-item a::before{
    content: "/";
    margin-left: 4px;
    margin-right: 4px;
}
.footer_copyright{
    text-align: center;
    color: var(--font-color2);
}
.office_info+.footer_social{
    justify-content: flex-start;
    margin-top: 24px;
}
.footer_social{
    display: flex;
    justify-content: flex-end;
}
.footer_social .nav-item{
    width: 24px;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 32px;
}
.footer_social .nav-link{
    padding: 0;
}
.footer_social i{
    font-size: 30px;
}
.footer_social img{
    width: 100%;
}
.footer_subscribe{
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    max-width: 650px;
}
.footer_subscribe h4{
    margin-bottom: 16px;
    text-align: center;
}
.subscribe_input_group{
    display: flex;
}
.subscribe_input_group>div+div{
    margin-left: 8px;
}
.subscribe_input_group>div:first-child{
    width: 140px;
}
.subscribe_input_group>div:nth-child(2){
    flex: 1;
}
.subscribe_input_group .my_input_color{
    color: #fff;
}
.subscribe_input_group .my_input_color::-webkit-input-placeholder{
    color: #f1f1f1 !important;
}
.subscribe_input_group .my_input_color::-moz-placeholder {
    color: #f1f1f1 !important;
}
.subscribe_input_group .my_input_color:-ms-input-placeholder{
    color: #f1f1f1 !important;
}
/*按鈕並排*/
.two_btn{
	display: flex;
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: -8px;
}
.two_btn>div{
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 8px;
}
/*按鈕-實心*/
.maincolor_btn{
	border: none;
	background-color: var(--main-color);
    background: linear-gradient(310deg,  #164098 54%,#359AD7 100%);
	font-size: 1rem;
	font-weight: 600;
	height: 48px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 10px;
    width: fit-content;
    min-width: 140px;
    transition: all .2s;
}
.maincolor_btn:hover, .maincolor_btn:focus{
	border: none;
	background-color: var(--main-color-light);
	color: #fff;
	box-shadow: none;
}
.maincolor_btn.radius{
	border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs{
	border: none;
	background-color: var(--main-color);
    background: linear-gradient(310deg,  #164098 54%,#359AD7 100%);
	font-size: 1rem;
	font-weight: 500;
	height: 40px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 10px;
    width: fit-content;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_btn_xs:hover, .maincolor_btn_xs:focus{
	border: solid 1px var(--main-color-light);
	background-color: var(--main-color-light);
	color: #fff;
	box-shadow: none;
}
.maincolor_btn_xs.radius{
	border-radius: 40px;
}
/*按鈕-框線*/
.maincolor_border_btn{
	border: solid 1px var(--main-color);
	background-color: #fff;
	font-size: 1rem;
	font-weight: 500;
	height: 48px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border-radius: 4px;
    min-width: 140px;
    transition: all .2s;
}
.maincolor_border_btn:hover, .maincolor_border_btn:focus{
	border: solid 1px var(--main-color3);
    background-color: var(--main-color3);
	color: #fff;
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn.radius{
	border-radius: 48px;
}
/*按鈕-框線-xs*/
.maincolor_border_btn_xs{
	border: solid 1px var(--main-color);
	background-color: #fff;
	font-size: 1rem;
	font-weight: 500;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border-radius: 4px;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_border_btn_xs:hover, .maincolor_border_btn_xs:focus{
	border: solid 1px var(--main-color-light);
	color: var(--main-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn_xs.radius{
	border-radius: 40px;
}
/*更多連結*/
.more_link{
    margin-top: 56px;
}
.more_link .btn{
    min-width: 200px;
}
.more_link.center .btn{
    margin-left: auto;
    margin-right: auto;
}
/*卡片內連結*/
.card_link{
    margin-top: 16px;
}
.card_link a {
    display: block;
    width: fit-content;
    background-image: url(../img/icon/swap-right-white.svg);
    background-repeat: no-repeat;
    background-position: center right 24px;
    background-size: 18px;
    font-weight: 600;
    padding: 16px 48px 16px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    border: solid 2px #fff;
    border-radius: 4px;
    background-color: rgb(255, 255, 255, 0.15);
    transition: all .5s;
}
.card_link a:hover {
    background-color: #fff;
    color: var(--main-color);
    background-image: url(../img/icon/uiw--swap-right.svg);
    background-position: center right 16px;
}
/*純文字按鈕*/
.txt_btn{
	padding: 0;
	border: none;
	color: var(--font-color);
    border-radius: 0;
}
.txt_btn:hover, .txt_btn:focus{
	color: var(--main-color);
	box-shadow: none;
}
/*文字連結*/
a.main_color {
	color: var(--main-color);
	border-bottom: solid 1px var(--main-color);
}
a.main_color:hover{
	color: var(--main-color-light);
	border-bottom: solid 1px var(--main-color-light);
}
/*輸入框空值題示*/
.data_validate .my_input, .data_validate .my_textarea, .data_validate .my_select,
.data_validate .my_input:hover, .data_validate .my_textarea:hover, .data_validate .my_select:hover{
	border: solid 1px var(--danger-color);
    padding: 8px 16px;
}
.data_validate::after{
    display: block;
	margin-left: 16px;
    padding-top: 8px;
    content: attr(data-validate);
    font-size: 14px;
    color: var(--danger-color);
}
/*單行輸入框*/
.my_input{
    border: solid 1px var(--border-color);
    border-radius: 4px;
    height: 48px;
    padding: 8px 16px;
    background-color: #fff;
    font-size: 1rem;
    color: var(--font-color);
    transition: all .2s;
}
.my_input:hover, .my_input:focus{
	border: solid 1px var(--main-color3);
	box-shadow: none;
}
.my_input:read-only{
    background-color: #fff;
    border: solid 1px var(--border-color);
}
.my_input:disabled{
    background-color: #f5f5f5;
}
.my_input:disabled:hover, .my_input:read-only:focus, .my_input:disabled:focus{
    box-shadow:none;
}
/*多行輸入框*/
.my_textarea{
    border: solid 1px var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    font-size: 1rem;
    padding: 8px 16px;
    min-height: 150px !important;
    color: var(--font-color);
    transition: all .2s;
}
.my_textarea:hover, .my_textarea:focus{
	border: solid 1px var(--main-color3);
	box-shadow: none;
    min-height: 100px;
}
.my_textarea:read-only{
    background-color: #fff;
    border: solid 1px var(--border-color);
    resize:none;
}
.my_textarea:disabled{
    background-color: #f5f5f5;
    resize:none;
}
.my_textarea:disabled:hover, .my_textarea:disabled:focus{
    box-shadow:none;
}
/*下拉*/
.my_select{
    border: solid 1px var(--border-color);
    border-radius: 4px;
    height: 48px;
    padding: 8px 16px;
    background-color: #fff;
    font-size: 1rem;
    color: var(--font-color);
    min-width: 100px;
    max-width: 200px;
    appearance: none;
    background-image: url(../img/icon/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 16px;
    transition: all .2s;
}
.my_select:hover, .my_select:focus{
	border: solid 1px var(--main-color3);
	box-shadow: none;
}
.my_select:disabled{
    background-color: #f5f5f5;
}
.my_select:disabled:hover, .my_select:disabled:focus{
    box-shadow:none;
}
/*checkbox*/
.my_checkbox{
    display: flex;
}
.my_checkbox .form-check-input{
    border-radius: 4px;
    height: 18px;
    width: 18px;
    border-color: var(--font-color2);
    margin-right: 0;
    margin-top: 3px;
}
.my_checkbox .form-check-input:focus {
    border-color: var(--font-color2);
    box-shadow: none;
}
.my_checkbox .form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.my_checkbox .form-check-input:checked:focus {
    border-color: var(--main-color);
}
.my_checkbox .form-check-label{
    padding-left: 8px;
}
/*radio*/
.my_radio{
    display: flex;
}
.my_radio .form-check-input{
    height: 18px;
    width: 18px;
    border-color: var(--font-color2);
    margin-right: 0;
    margin-top: 3px;
}
.my_radio .form-check-input:focus {
    border-color: var(--font-color2);
    box-shadow: none;
}
.my_radio .form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.my_radio .form-check-input:checked:focus {
    border-color: var(--main-color);
}
.my_radio .form-check-label{
    padding-left: 8px;
}
/*checkbox或radio多項目*/
.form_check_group{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -16px;
}
.form_check_group .my_checkbox, .form_check_group .my_radio{
    margin-bottom: 16px;
    margin-right: 40px;
}
/*數量加減*/
.product_count_btn {
    display: flex;
    border: solid 1px var(--border-color);
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}
.count_dash .btn, .count_plus .btn {
    padding: 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 0;
}
.count_dash .btn:hover, .count_plus .btn:hover {
    background-color: var(--bg-color);
}
.count_dash .btn:focus, .count_plus .btn:focus {
    box-shadow: none;
}
.count_number {
    width: 80px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    text-align: center;
    border: none;
    border-left: solid 1px var(--border-color);
    border-right: solid 1px var(--border-color);
}
/*日曆*/
.ui-datepicker {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    border: solid 1px var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    display: none;
}
.ui-datepicker-header {
    position: relative;
}
.ui-datepicker-prev {
    position: absolute;
    left: 8px;
    top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.ui-datepicker-next {
    position: absolute;
    right: 8px;
    top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.ui-datepicker-title {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: solid 1px var(--border-color);
}
.ui-datepicker-year{
    margin-right: 4px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 1px var(--border-color);
}
.ui-datepicker-month{
    margin-left: 8px;
}
.ui-datepicker-calendar th {
    padding: 8px 8px 4px 8px;
}
.ui-datepicker-calendar td a {
    display: block;
    padding: 4px 8px;
    text-align: center;
}
/*表單*/
.my_form{
    max-width: 550px;
    margin-top: -24px;
}
.my_form_row{
    padding-top: 24px;
}
.my_form_row .form-label{
    margin-bottom: 8px;
}
.my_form_btn{
    padding-top: 24px;
    text-align: right;
}
.my_form_btn .btn{
    margin-left: auto;
}
.my_form_btn .two_btn{
    justify-content: flex-end;
}
.my_form .txt_btn{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
.my_city_select{
    margin-bottom: -8px;
    margin-left: -8px;
    margin-right: -8px;
}
.my_city_select>div{
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}
.my_city_select>div .my_input, .my_city_select>div .my_select{
    width: 100%;
    max-width: 100%;
}
.error_msg{
    margin-top: 16px;
    color: var(--danger-color);
}
.control_group{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -8px;
}
.control_item {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 8px;
}
.my_form_rowflex{
    display: flex;
    padding-top: 24px;
}
.my_form_rowflex .form-label{
    width: 100px;
}
.my_form_rowflex .form-control, .my_form_rowflex>div{
    flex: 1;
}
/*列表資料數*/
.list_count_row{
    border-bottom: solid 2px var(--main-color2);
    margin-bottom: 16px;
    text-align: right;
    margin-top: -24px;
    background-color: var(--bg-color);
    padding: 8px 16px;
}
/*文章列表*/
.article_card_list{
    margin-bottom: -48px;
}
.article_card_item{
    padding-bottom: 48px;
}
/*文章列表頁數*/
.page_box{
    margin-top: 40px;
}
.page_box .pagination{
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -8px;
}
.page_box .page-item{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
.page_box .page-link{
    border: solid 1px var(--bg-color);
    color: var(--main-color);
    background-color: var(--bg-color);
    margin: 0 !important;
    padding: 0 12px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: none;
}
.page_box .page-link:hover, .page_box .page-link:focus{
    color: var(--main-color);
    background-color: rgb(22, 64, 152, .1);
}
.page_box .page-item.active .page-link{
    color: #fff;
    background-color: var(--main-color);
    border: solid 1px var(--main-color);
}
.page_box .page-item.ellipsis .page-link{
    background-color: #fff;
    letter-spacing: 1px;
    border: none;
    padding-bottom: 4px;
}
.page_box .page-item.ellipsis .page-link:hover{
    background-color: #fff;
    color: var(--font-color2);
}
/*文章卡片*/
.article_card{
    display: block;
    overflow: hidden;
    background-color: #fff;
    transition: all .2s;
}
.article_card_img{
    width: 100%;
}
.article_card_img .bg{
    padding-bottom: 61%;
    border-radius: 4px;
}
.article_card_body {
    padding-top: 24px;
}
.article_card_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: justify;
}
.article_card_body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
    color: var(--font-color2);
    text-align: justify;
}
.article_card_info .article_info{
    margin-top: 8px;
}
.article_info{
    color: var(--main-color2);
    font-weight: 600;
}
.article_info span i{
    margin-right: 4px;
}
.article_info span+span::before{
    content: "．";
}
.article_card_info .card_author_info{
    margin-top: 12px;
}
.article_card_keep{
    font-size: 14px;
}
.article_card_keep .count{
    margin-left: 4px;
}
.article_card_keep span+span{
    margin-left: 4px;
}
.article_card_info .article_card_keep{
    margin-top: 12px;
}
.card_author_info{
    display: flex;
    align-items: center;
}
.card_author_info_photo .bg{
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.card_author_info_name{
    padding-left: 8px;
    font-size: 14px;
    font-weight: 600;
}
a .card_author_info:hover{
    color: var(--main-color);
}
.article_info_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*文章清單*/
.article_inventory{
    display: flex;
    flex-wrap: wrap;
}
.article_inventory_img{
    width: 25%;
}
.article_inventory_img .bg{
    padding-bottom: 61%;
    border-radius: 4px;
}
.article_inventory_body{
    flex: 1;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
}
.article_inventory_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 16px;
    font-weight: 600;
}
.article_inventory_body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
    color: var(--font-color2);
    flex: 1;
}
.article_inventory .article_card_info{
    padding: 0;
    text-align: right;
}
.article_inventory .article_card_info .article_info {
    margin-top: 8px;
}
/*案例卡片*/
.case_list{
    margin-bottom: -48px;
}
.case_item{
    padding-bottom: 48px;
}
.case_img .bg{
    padding-bottom: 61%;
    border-radius: 4px;
}
.case_body{
    padding-top: 24px;
}
.case_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
    margin-bottom: 16px;
    font-weight: 600;
    overflow: hidden;
    text-align: justify;
}
.case_body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
    color: var(--font-color2);
    overflow: hidden;
    text-align: justify;
}
.case_date{
    margin-top: 8px;
    color: var(--main-color2);
    font-weight: 600;
}
/*成員卡片*/
.team_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: -68px;
}
.team_item{
    width: 33.333%;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 68px;
}
.team_card{
    display: block;
    position: relative;
}
.team_card_img{
    overflow: hidden;
    border-radius: 4px;
}
.team_card_img .bg{
    padding-bottom: 133%;
    transition: all .6s;
}
.team_card:hover .team_card_img .bg{
    transform: scale(1.06);
}
.team_card_body{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
    background: linear-gradient(to top, rgb(22, 64, 152, .7) 0%, rgb(22, 64, 152, 0) 50%);
    text-shadow: 2px 2px 10px rgb(0, 0, 0, .25);
    border-radius: 4px;
    transition: all .6s;
}
.team_card:hover .team_card_body{
    background: linear-gradient(to top, rgb(22, 64, 152, .8) 0%, rgb(22, 64, 152, 0) 50%);
    text-shadow: 2px 2px 10px rgb(0, 0, 0, .35);
    height: 100%;
}
.team_card_title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}
.team_card .card_link{
    position: absolute;
    right: 24px;
    bottom: 24px;
}
/*抖音卡片*/
.tiktok_list{
    margin-bottom: -48px;
}
.tiktok_item{
    padding-bottom: 48px;
}
.tiktok_card{
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 325px;
    margin-left: auto;
    margin-right: auto;
}
.tiktok_card_cover{
    position: relative;
}
.tiktok_card_cover>.bg{
    padding-bottom: 177%;
    border-radius: 8px;
}
.play_btn{
    position: absolute;
    font-size: 52px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
}
.tiktok_card.show .tiktok_card_video{
    width: 100%;
    padding-bottom: 230%;
}
.tiktok_card_video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tiktok_card.show .tiktok_card_cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.tiktok_card.show .tiktok_card_cover .play_btn,
.tiktok_card.show .tiktok_card_info{
    display: none;
}
.tiktok_direct_card .tiktok-embed{
    max-width: 605px;
    min-width: 325px;
}
.tiktok_card_info{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.25) 2px 2px 10px;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(22, 64, 152, 0.7) 0%, rgba(22, 64, 152, 0) 50%);
    border-radius: 8px;
    transition: 0.6s;
    z-index: 2;
}
.tiktok_card_author{
    display: flex;
    align-items: center;
}
.tiktok_card_author_photo{
    width: 36px;
}
.tiktok_card_author_photo .bg{
    padding-bottom: 100%;
    border-radius: 50%;
    background-position: top center;
}
.tiktok_card_author_body{
    flex: 1;
    padding-left: 8px;
    display: flex;
    align-items: center;
}
.tiktok_card_author_body a{
    color: #fff;
}
.tiktok_card_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
    overflow: hidden;
    text-align: justify;
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.tiktok_author_title {
    margin-right: 4px;
}
/*最新消息卡片*/
.news_list{
    width: 100%;
}
.news_item+.news_item{
    margin-top: 48px;
}
.news_date{
    color: var(--main-color2);
    font-weight: 600;
    margin-bottom: 8px;
}
.news_date_title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}
.news_date_txt{
    color: var(--font-color2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
}
.news_card:hover .news_date_title{
    padding-left: 28px;
    margin-left: -28px;
}
.news_card:hover .news_date_title::before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/icon/gis--north-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/*有底線的最新消息卡片*/
.news_list.have_bb{
    margin-top: -16px;
}
.news_list.have_bb .news_item{
    border-bottom: solid 1px var(--border-color);
    padding: 16px 32px;
}
.news_list.have_bb .news_item+.news_item{
    margin-top: 0;
}
.news_list.have_bb .news_item:hover{
    border-bottom: solid 1px var(--main-color);
    background-color: var(--bg-color);
}
/*圖文並茂的最新消息卡片*/
/* .news_card_excellent{
    display: flex;
}
.news_card_img{
    width: 25%;
}
.news_card_img .bg{
    padding-bottom: 61%;
    border-radius: 4px;
}
.news_card_body{
    padding-left: 24px;
    flex: 1;
} */
/*服務卡片*/
.service_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -32px;
}
.service_item{
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 32px;
}
.service_item.horizontal{
    width: 50%;
}
.service_card_img .bg{
    padding-bottom: 100%;
}
.service_card_title{
    font-weight: 600;
}
div.service_card_title{
    font-size: 18px;
    font-weight: 600;
}
.service_card_body{
    padding-top: 24px;
}
.service_card_h{
    display: flex;
    background-color: var(--bg-color);
    padding: 16px;
}
.service_card_num{
    position: relative;
    font-size: 36px;
    padding: 8px 12px 12px 8px;
    line-height: 1.1;
    color: var(--main-color);
}
.service_card_num::before {
    content: "";
    height: 24px;
    width: 2px;
    background-color: var(--main-color);
    position: absolute;
    right: -2px;
    top: 16px;
    z-index: 2;
}
.service_card_num::after {
    content: "";
    height: 24px;
    width: 2px;
    background-color: var(--second-color);
    position: absolute;
    right: -2px;
    top: 40px;
    z-index: 2;
}
.service_card_h .service_card_body{
    padding: 8px 24px 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service_card_h .service_card_img{
    width: 30%;
}
.service_card_h .service_card_title{
    color: var(--main-color);
}
.service_card_brief{
    margin-top: 8px;
    margin-bottom: 12px;
    flex: 1;
    text-align: justify;
}
/*關鍵字*/
.tag_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -8px;
}
.tag_list span{
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
}
.tag_list span{
    padding-left: 12px;
    padding-right: 12px;
}
.tag_list span.txt{
    padding-right: 0;
}
.tag_link{
    background-color: var(--main-color);
    color: #fff;
    line-height: 24px;
    padding: 0 16px;
    border-radius: 24px;
    display: flex;
}
.tag_link:hover{
    background-color: var(--main-color-light);
    color: #fff;
}
.tag_link_line{
    color: var(--main-color-dark);
    border-bottom: solid 1px var(--main-color-dark);
}
.tag_link_line:hover{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color-dark);
}
/*文章內容*/
.article_header{
    margin-bottom: 48px;
    padding: 32px 0 12px 0;
    border-bottom: solid 1px var(--border-color);
}
.article_title{
    margin: 0;
    letter-spacing: 0.05rem;
}
.article_info_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0;
    margin-top: 24px;
}
.article_info_row .article_info{
    font-size: 16px;
}
/*編輯器內容*/
.from_ckeditor, .from_ckeditor p{
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: justify;
}
.from_ckeditor h2{
    margin-bottom: 0;
}
.from_ckeditor h3{
    margin-bottom: 0;
}
.from_ckeditor h4{
    margin-bottom: 0;
}
.from_ckeditor figure{
    margin: 4px 0;
}
.from_ckeditor figure img{
    max-width: 100%;
}
.from_ckeditor .text-small {
    font-size: 14px;
}
.from_ckeditor .text-tiny {
    font-size: 12px;
}
.from_ckeditor ul, ol{
    margin-bottom: 0;
    padding-left: 2em;
}
.from_ckeditor li{
    line-height: 1.8;
    letter-spacing: 0.9px;
}
.from_ckeditor li+li{
    margin-top: 8px;
}
.from_ckeditor a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
    word-break: break-all;
}
.from_ckeditor blockquote{
    border-left: solid 4px var(--main-color);
    padding: 8px 16px;
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.from_ckeditor .table table{
    width: 100%;
}
.from_ckeditor .table td{
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--border-color);
}
/*table表格*/
.my_table_box{
    overflow-x: auto;
}
.my_table{
    width: 100%;
    min-width: 700px;
    text-align: center;
}
.my_table thead th {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--main-color-light);
}
.my_table td {
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--main-color-light);
}
.my_table tbody td:first-child {
    color: var(--main-color);
    background-color: var(--bg-color);
}
/*頁籤*/
.my_tab{
    border-bottom: none;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -16px;
}
.my_tab .nav-item{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 16px;
}
.my_tab .nav-link{
    border: none;
    font-weight: 600;
    height: 48px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgb(22, 64, 152, .15);
    color: var(--font-color);
    transition: color 0s
}
.my_tab .nav-link.active, .my_tab .nav-link:focus, .my_tab .nav-link:active{
    background-color: var(--main-color);
    background: linear-gradient(310deg, #164098 54%, #359AD7 100%);
    color: #fff;
}
.tab-content{
    margin-top: 48px;
}
/*商品圖片輪播*/
.product_pic_swiper_2 {
    width: 100%;
}
.product_pic_swiper_2 .swiper-slide{
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_pic_swiper_2 .swiper-slide img,
.product_pic_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_pic_swiper {
    box-sizing: border-box;
    padding: 10px 0;
}
.product_pic_swiper .swiper-slide {
    width: 20%;
    height: 100%;
}
.product_pic_swiper .swiper-slide .bg img{
    display: none;
}
.product_pic_swiper .swiper-slide .bg{
    padding-bottom: 100%;
}
.product_pic_swiper_2 .swiper-pagination{
    right: 12px;
    left: auto;
    background-color: rgb(38, 37, 35, .8);
    color: #fff;
    padding: 0 12px 2px 14px;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    width: fit-content;
    font-size: 14px;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next, 
.product_pic_swiper_box .swiper_button_box .swiper-button-prev {
    background-color: rgb(255 255 255 / 80%);
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next::after, 
.product_pic_swiper_box .swiper_button_box .swiper-button-prev::after {
    font-size: 12px;
    color: var(--main-color);
}
.product_pic_swiper_box .swiper-button-next,
.product_pic_swiper_box .swiper-button-prev{
    top: auto;
    bottom: 12px;
}
.product_pic_swiper_box .swiper-button-next{
    right: auto;
    left: 42px;
}
.product_pic_swiper_box .swiper-button-prev{
    left: 12px;
}
/*快速鍵*/
.side_nav_box{
    position: fixed;
    left: 24px;
    bottom: 32px;
    z-index: 1000;
}
.side_nav{    
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}
.side_item+.side_item{
    margin-top: 16px;
}
.side_link{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 40%);
}
.side_link img{
    width: 30px;
}
/*Scroll*/
.scroll_hint_box{
    position: fixed;
    bottom: 32px;
    width: 100%;
    z-index: 1000;
}
.scroll_btn{
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    height: 32px;
    padding: 0 12px;
    background-color: rgb(255, 255, 255, 0.8);
    border-radius: 16px;
    letter-spacing: 0;
    cursor: pointer;
}
/*banner*/
.banner_item{
    position: relative;
}
.banner_item_bg .bg{
    padding-bottom: calc(100vh - 80px);
}
.banner_item_txt{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}
.banner_item_txt .my_container{
    opacity: 0;
    transform: translateY(100%);
}
.swiper-slide-active .banner_item_txt .my_container{
    transition: all .5s;
    opacity: 1;
    transform: translateY(0);
}
.banner_item_txt .title{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.45;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 10px rgb(0 0 0 / 40%);
}
.banner_item_txt .txt{
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 10px rgb(0 0 0 / 40%);
}
/*經營理念*/
.index_purpose_row{
    display: flex;
}
.index_purpose_body{
    flex: 1;
    padding-left: 48px;
}
.index_purpose_img{
    width: 40%;
}
.index_purpose_img img{
    width: 100%;
}
.index_purpose_content{
    line-height: 1.75;
    font-weight: 600;
    font-size: 40px;
    color: var(--main-color);
    margin-left: 3.7rem;
    /* width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(45deg, var(--main-color3) 0%, var(--main-color) 30%, var(--main-color2) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.index_purpose_content .row2 {
    margin-left: 10.5rem;
    margin-top: 1rem;
}
/*數據*/
.index_statistics_box{
    padding-top: 52px;
    padding-bottom: 28px;
    padding-left: 16px;
    padding-right: 16px;
    background-image: url(../img/statistics_left.png), url(../img/statistics_right.png);
    background-repeat: no-repeat;
    background-position: top left, top right;
}
.statistics_list_box{
    width: 100%;
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
}
.statistics_list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: -24px;
}
.statistics_item{
    padding: 0 28px 24px 28px;
    width: 25%;
}
.statistics_card{
    position: relative;
    height: 0;
    padding-bottom: 100%;
}
.statistics_card_body{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #F8F9FC;
    border-radius: 50%;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.statistics_card_body::before{
    content: "";
    position: absolute;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    top: 16px;
    left: 16px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
    z-index: 1;
}
.statistics_item:nth-child(1) .statistics_card_body::before{
    background-image: url(../img/statistics_1.png);
}
.statistics_item:nth-child(2) .statistics_card_body::before{
    background-image: url(../img/statistics_2.png);
}
.statistics_item:nth-child(3) .statistics_card_body::before{
    background-image: url(../img/statistics_3.png);
}
.statistics_item:nth-child(4) .statistics_card_body::before{
    background-image: url(../img/statistics_4.png);
}
.statistics_num{
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    color: var(--main-color);
    z-index: 2;
}
.statistics_txt{
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}
/*關於我們*/
.index_about_box{
    display: flex;
}
.index_about_content{
    flex: 1;
    padding: 64px 16px;
    background: linear-gradient(to right,  rgba(248,249,252,0) 0%,rgba(248,249,252,1) 100%);
}
.index_about_left, .index_about_right{
    width: 33.333%;
    max-width: 500px;
}
.index_about_left{
    overflow: hidden;
    background-color: var(--main-color);
}
.index_about_right{
    /* background-image: url(../img/index_about_rihgt.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover; */
    overflow: hidden;
    background-color: var(--main-color);
}
.index_about_left img{
    transform: translateY(-60%);
    height: 100%;
    transition: all 2s;
}
.index_about_right img{
    transform: translateY(60%);
    height: 100%;
    transition: all 2s;
}
.index_about_box.active .index_about_left img{
    transform: translateY(0);
}
.index_about_box.active .index_about_right img{
    transform: translateY(0);
}
.index_about_title{
    text-align: center;
}
.index_about_title img{
    max-width: 100%;
}
.index_about_txt{
    width: 100%;
    max-width: 700px;
    line-height: 1.8;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/*最新消息*/
.index_news_box{
    position: relative;
}
.index_news_img{
    position: absolute;
    right: 72px;
    bottom: 72px;
    width: 472px;
    overflow: hidden;
    background-color: var(--main-color);
}
.index_news_img img{
    transform: translateY(-60%);
    width: 100%;
    transition: all 2s;
}
.index_news_box.active .index_news_img img{
    transform: translateY(0);
}
/*首頁-遺囑*/
.index_will_box{
    position: relative;
    overflow: hidden;
}
.index_will{
    display: flex;
    align-items: center;
}
.index_will_img{
    width: 50%;
    overflow: hidden;
    background-color: var(--main-color);
}
.index_will_img img{
    transform: translateY(-60%);
    width: 100%;
    transition: all 2s;
}
.index_will_box.active .index_will_img img {
    transform: translateY(0);
}
.index_will_body{
    position: relative;
    flex: 1;
    padding-left: 48px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: linear-gradient(to right, rgba(248, 249, 252, 0) 0%, rgba(248, 249, 252, 1) 100%);
}
.index_will_body::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/index_office.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    z-index: 1;
}
.index_will_body>div{
    position: relative;
    z-index: 2;
}
.index_will_title{
    line-height: 1.75;
    font-weight: 600;
    font-size: 40px;
    background: linear-gradient(45deg, var(--main-color3) 0%, var(--main-color) 30%, var(--main-color2) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    left: -24px;
}
/* .index_will_title::after{
    content: "";
    width: 57px;
    height: 56px;
    background-image: url(../img/index_office_item.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
} */
.index_will_txt{
    max-width: 700px;
    line-height: 1.8;
    font-size: 18px;
}
.index_will_txt br {
    display: none;
}
.index_will_txt span{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-right: 4px;
    color: var(--main-color);
}
/*聯絡我們*/
.index_contact_box{
    min-height: 500px;
    background-image: url(../img/index_contact.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.index_contact_content{
    padding: 40px 48px;
    background-color: rgb(248, 249, 252, 0.3);
    border: solid 1px #fff;
    width: fit-content;
}
.index_contact_info{
    margin-bottom: 12px;
    letter-spacing: 0;
}
.index_contact_phone{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}
.index_contact_phone a{
    color: var(--main-color);
}
.index_contact_phone i{
    margin-right: 12px;
    font-size: 30px;
}
.contact_list .row{
    row-gap: 32px;
}
.contact_card{
    background-color: var(--bg-color);
    padding: 16px 24px;
}
.contact_office_name{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
/*各所*/
.index_office_box{
    position: relative;
}
.index_office_img{
    position: absolute;
    right: 0;
    top: -128px;
    z-index: 1;
    transition: all .6s;
}
.index_office_map{
    width: 600px;
}
.index_office_map_img .bg{
    padding-bottom: 50%;
}
.index_office{
    position: relative;
    flex: 1;
    display: flex;
    overflow: hidden;
    z-index: 2;
}
.index_office_list{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
    margin-left: -32px;
    margin-right: -32px;
    margin-bottom: -40px;
    width: fit-content;
}
.index_office_item{
    width: 33.333%;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 40px;
}
.index_office_card{
    display: block;
    /* background-image: url(../img/index_office_item.png);
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 68px; */
}
.index_office_photo{
    margin-bottom: 12px;
}
.index_office_photo .bg{
    padding-bottom: 61%;
}
.index_office_name{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 8px;
}
.index_office_info{
    text-align: center;
}
.index_office_info div+div{
    margin-top: 4px;
}
/*最新消息*/
/* .news_page{
    background-image: url(../img/page_bg2.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
} */
/*常見問題*/
.faq_page{
    background-image: url(../img/page_bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
}
.faq_menu_box{
    position: relative;
}
.faq_box{
    display: flex;
}
.faq_menu_box{
    width: 260px;
}
.faq_menu{
    position: sticky;
    top: 144px;
}
.faq_list{
    flex: 1;
    padding-left: 48px;
}
.faq_list_group_action{
    display: block;
    padding: 12px 0;
    text-decoration: underline;
}
.faq_list_group_action:hover{
    text-decoration: underline;
}
.faq_list_group_action.active{
    color: var(--main-color);
    position: relative;
}
.faq_list_group_action.active::before{
    content: "";
    position: absolute;
    top: 16px;
    left: -28px;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon/gis--north-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.faq_item:not(:last-child){
    padding-bottom: 24px;
    border-bottom: solid 1px var(--border-color);
}
.faq_item+.faq_item{
    margin-top: 32px;
}
.faq_item{
    position: relative;
}
.faq_item_bookmark{
    position: absolute;
    top: -96px;
    left: 0;
}
.faq_card_title{
    position: relative;
    padding: 8px 0 12px 40px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.faq_card_title::before{
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 40px;
    color: var(--font-color2);
}
.faq_card_body{
    position: relative;
    padding: 8px 0 0 40px;
}
.faq_card_body::before{
    content: "A";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 40px;
    color: var(--second-color);
}
.faq_other_list{
    display: flex;
    margin-top: 72px;
}
.faq_other_item{
    width: 50%;
}
.faq_other_card{
    padding: 72px 48px;
}
.faq_other_item_title{
    font-size: 28px;
    margin-bottom: 48px;
    font-weight: 600;
}
.faq_other_item_txt{
    margin-bottom: 48px;
    line-height: 1.7;
}
.faq_other_card .card_link a{
    padding: 16px 48px 16px 24px;
    width: fit-content;
    color: #fff;
    display: flex;
    align-items: center;
    background-position: center right 24px;
    border: solid 2px #fff;
    border-radius: 4px;
    background-image: url(../img/icon/swap-right-white.svg);
    background-color: rgb(255, 255, 255, 0.15);
    transition: all .5s;
}
.service_process_link{
    background-image: url(../img/service_process_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    padding-left: calc(50vw - 720px);
    color: #fff;
}
.contact_link{
    background-image: url(../img/contact_link_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding-right: calc(50vw - 720px);
    color: #fff;
}
/*服務項目*/
.service_page{
    background-image: url(../img/page_bg2.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
}
.service_process{
    background-color: var(--font-color);
    background-image: url(../img/service-bg.jpg);
    background-repeat: no-repeat;
    background-position: left 250px center;
    padding: 0 40px;
    padding-left: calc(50vw - 720px);
}
.service_process_title{
    width: fit-content;
    background-color: var(--font-color);
    padding-right: 40px;
}
.service_process_content{
    flex: 1;
    padding-left: 48px;
}
.service_process_title{
    color: #fff;
}
.process_list{
    height: 100%;
    display: flex;
    /* align-items: center; */
    margin-left: -16px;
    margin-right: -16px;
}
.process_item{
    color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    width: 20%;
}
.process_title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.process_txt{
    color: var(--border-color);
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    letter-spacing: 0;
}
.process_num {
    position: relative;
    width: fit-content;
    height: 32px;
    background-color: #fff;
    color: var(--font-color);
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.process_num::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}
/*聯絡我們*/
.contact_row{
    display: flex;
}
.contact_img{
    background-image: url(../img/contact-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top 64px;
    width: 30%;
}
.contact_content{
    flex: 1;
    padding-left: 40px;
}
.contact_form_txt{
    margin-bottom: 16px;
}
.contact_info_item+.contact_info_item{
    margin-top: 24px;
}
.contact_info_item{
    position: relative;
    padding-left: 48px;
}
.contact_info_item .icon{
    position: absolute;
    top: 6px;
    left: 0;
    /* background: linear-gradient(310deg, #164098 54%, #359AD7 100%); */
    background-color: var(--second-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 2px;
    padding-left: 2px;
    color: #fff;
    transition: all .2s;
}
.contact_info_item:hover .icon{
    box-shadow: 0 0 20px rgb(240, 170, 29, .50);
}
/*服務據點*/
.office_page{
    background-image: url(../img/page_bg3.jpg);
    background-repeat: no-repeat;
    background-position: right top -50px;
    background-attachment: fixed;
}
.office_item+.office_item{
    margin-top: 40px;
}
.office_swiper_box{
    position: relative;
}
.office_card{
    display: flex;
}
.office_card .index_office_name{
    border-bottom: solid 2px var(--second-color);
    padding: 0 0 8px 0;
    margin-bottom: 16px;
}
.office_swiper_box{
    width: 52%;
    padding: 8px;
    border: solid 1px var(--border-color);
}
.office_card_body{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    margin: 16px;
    padding: 16px 16px 24px 16px;
    color: #fff;
}
.office_swiper_img{
    position: relative;
    height: 0;
    padding-bottom: 61%;
    background-color: var(--border-color);
}
.office_swiper_img img{
    position: absolute;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    transition: all .2s;
}
.swiper-button-next, .swiper-button-prev {
    width: 32px;
    height: 32px;
    background-color: rgb(255 255 255 / 80%);
    border-radius: 50%;
    margin: 0;
    transform: translateY(-50%);
    border: solid 1px var(--border-color);
}
.swiper-button-prev {
    left: -8px;
}
.swiper-button-next {
    right: -8px;
}
.swiper-button-next img, .swiper-button-prev img {
    width: 16px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.office_item:nth-child(even) .office_swiper_box{
    order: 2;
}
.office_item:nth-child(even) .office_card_body{
    order: 1;
}
/*關於我們*/
.about_page{
    position: relative;
    background-color: #fff;
    background: linear-gradient(to bottom, rgba(248, 249, 252, 0) 0%, rgba(248, 249, 252, 1) 66.666%);
}
.about_left{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.about_row{
    display: flex;
    height: 100%;
}
.about_right{
    width: 500px;
    overflow: hidden;
    background-color: var(--main-color);
}
.about_row.active .about_right img {
    transform: translateY(0);
}
.about_right img{
    transform: translateY(-60%);
    height: 100%;
    transition: all 2s;
}
.about_center{
    flex: 1;
    padding: 0 24px 72px 24px;
}
.about_right{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.about_content{
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.about_content_title{
    line-height: 1.7;
    margin-bottom: 48px;
    font-size: 1.75em;
    font-weight: 600;
    text-align: justify;
    /* color: var(--main-color); */
    background: linear-gradient(45deg, var(--main-color3) 0%, var(--main-color) 30%, var(--main-color2) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_content p{
    text-align: justify;
}
.about_purpose_row{
    display: flex;
}
.about_purpose_img_box{
    width: 500px;
    overflow: hidden;
}
.about_purpose_img{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 133%;
}
.about_purpose_img img{
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.about_purpose_content_box{
    flex: 1;
    padding: 64px 0 16px 0;
}
.about_purpose_content{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}
.about_purpose_title{
    color: var(--main-color);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 1.75em;
    text-align: justify;
}
.about_purpose_txt{
    text-align: justify;
}
.about_purpose_box{
    position: relative;
    background-image: url(../img/page_bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
}
.about_purpose_bg{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.about_certificate_box{
    /* background: linear-gradient(to top, rgba(248, 249, 252, .5) 0%, rgba(248, 249, 252, 1) 66.666%); */
    background-color: #fff;
}
.about_certificate_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -48px;
}
.about_certificate_item{
    width: 33.333%;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 48px;
}
.about_certificate_img img{
    width: 100%;
}
.about_certificate_card{
    box-shadow: 0px 3px 6px rgb(0 0 0 / 8%);
    transition: all .6s;
}
.about_certificate_card:hover{
    box-shadow: 0px 3px 15px rgb(0 0 0 / 10%);
    transform: scale(1.1);
}
/*團隊成員列表*/
.team_page{
    background-image: url(../img/page_bg3.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
}
/*團隊成員介紹*/
.member_page{
    background-image: url(../img/page_bg4.jpg);
    background-repeat: no-repeat;
    background-position: left top 0;
    background-attachment: fixed;
    position: relative;
}
.member_right{
    position: absolute;
    right: 0;
    top: 120px;
    transition: all .6s;
}
.member_info_row{
    display: flex;
}
.member_info_img_box{
    width: 50%;
}
.member_info_img{
    position: sticky;
    top: 120px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.member_info_img .bg{
    padding-bottom: 133%;
    border-radius: 4px;
}
.member_info_content{
    flex: 1;
    padding-left: 24px;
    padding-top: 8px;
}
.member_info_block{
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
}
.member_info_title{
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
    display: flex;
}
.member_info_title a{
    display: flex;
    align-items: center;
    color: var(--main-color);
}
.member_info_title a::before{
    content: "∣";
    display: block;
    margin-left: 4px;
    margin-right: 4px;
}
.member_info_name{
    font-weight: 600;
    margin-bottom: 48px;
    font-size: 60px;
    margin-top: 8px;
    letter-spacing: 0.05em;
}
.member_info_block_title{
    background-color: var(--main-color);
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 16px;
}
.member_info_list{
    list-style: none;
    margin-bottom: 40px;
    border-left: solid 1px var(--border-color);
    margin-left: 1em;
    padding-left: 1em;
}
.member_info_list li+li{
    margin-top: 8px;
}
.member_info_txt{
    padding-left: 2em;
    text-align: justify;
}
/*文章內容*/
.article_page_img{
    margin-top: 24px;
    margin-bottom: 24px;
}
.article_page_img .bg{
    padding-bottom: 61%;
}
.recommend_article{
    padding-top: 72px;
    margin-top: 72px;
    border-top: solid 1px var(--border-color);
}
/*404*/
.error_row{
    display: flex;
    align-items: center;
}
.error_img{
    width: 360px;
}
.error_img img{
    width: 100%;
}
.error_txt{
    flex: 1;
    margin-top: 16px;
    padding-left: 64px;
    margin-bottom: 16px;
}
.error_txt .title{
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 40px;
    font-weight: 600;
}
/*所介紹頁*/
.office_maininfo{
    position: relative;
    background: linear-gradient(rgba(248, 249, 252, 0) 0%, rgb(248, 249, 252) 66.666%);
    position: relative;
}
.office_info_left{
    position: absolute;
    left: 0;
    bottom: 144px;
    z-index: 1;
}
.office_maininfo_row{
    position: relative;
    display: flex;
    z-index: 2;
}
.office_maininfo_row .office_swiper_box {
    width: 60%;
}
.office_page_swiper .swiper-slide{
    opacity: 0.6;
    /* transition: all .3s; */
}
.office_page_swiper .swiper-slide:hover,
.office_page_swiper .swiper-slide-thumb-active{
    opacity: 1;
}
.office_page_swiper .swiper-slide .bg{
    padding-bottom: 61%;
}
.office_page_swiper_2{
    margin-bottom: 8px;
}
.office_maininfo_box{
    flex: 1;
    padding: 48px 24px 8px 24px;
}
.office_maininfo_content{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}
.office_maininfo_name_en{
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
}
.office_maininfo_name {
    font-weight: 600;
    margin-bottom: 48px;
    font-size: 60px;
    margin-top: 8px;
    letter-spacing: 0.05em;
}
.office_maininfo_list{
    list-style: none;
    padding: 0;
    margin-top: 32px;
    margin-bottom: 0;
}
.office_maininfo_list>div {
    line-height: 1.4;
}
.office_maininfo_list>div+div {
    margin-top: 12px;
}
.office_brief{
    background-image: url(../img/page_bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
}
.office_brief_row{
    display: flex;
}
.office_brief_img_box{
    width: 500px;
}
.office_brief_img{
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}
.office_brief_img .bg{
    padding-bottom: 133%;
}
.office_brief_box{
    flex: 1;
    padding: 24px;
}
.office_brief_content{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.office_brief_txt{
    /* padding-left: 1.5rem; */
    padding-left: 16px;
}
.office_brief_txt .from_ckeditor p, .office_brief_txt .from_ckeditor li{
    font-size: 17px;
}
.office_brief_content .member_info_block{
    max-width: none;
}
/*遺囑評估*/
.lastwill_page{
    position: relative;
}
.lastwill_banner_box{
    background-image: url(../img/will_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    overflow: hidden;
    opacity: 1;
}
.lastwill_banner{
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.lastwill_content{
    width: 100%;
    max-width: 560px;
    transition: all .2s;
}
.lastwill_title{
    font-weight: 600;
    font-size: 40px;
    line-height: 1.45;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    background: linear-gradient(45deg, var(--main-color3) 0%, var(--main-color) 30%, var(--main-color2) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lastwill_txt{
    line-height: 1.7;
    font-size: 18px;
}
.lastwill_btn{
    margin-top: 40px;
    opacity: 0;
    transform: translateY(100%);
    transition: all .6s;
}
.lastwill_btn p{
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--main-color);
    font-weight: 600;
}
.lastwill_btn.active{
    opacity: 1;
    transform: translateY(0);
}
.lastwill_survey_box{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 0; 
    opacity: 0; 
    overflow: hidden;
    transform: translateY(100%);
    background-color: #fff;
    /* background-image: url(../img/page_bg.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed; */
    transition:
        height 0.6s ease,
        opacity 0.6s ease,
        transform 0.6s ease 0.3s;
}
.progress_bar_box{
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
}
.progress_bar_row{
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}
.progress_num{
    padding-right: 16px;
    font-weight: 600;
}
.progress_bar{
    flex: 1;
    position: relative;
    height: 16px;
    background-color: var(--border-color);
    border-radius: .25rem;
}
.progress{
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--main-color);
}
.survey_question_title{
    position: relative;
    display: flex;
    font-size: 24px;
    line-height: 1.3;
    color: var(--main-color);
    margin-bottom: 48px;
    font-weight: 600;
}
.lastwill_survey_step{
    min-height: calc(100vh - 80px);
}
.lastwill_survey_row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 72px;
}
.lastwill_survey_content{
    flex: 1;
}
.lastwill_survey_right{
    width: 700px;
}
.lastwill_survey_img{
    position: relative;
}
.lastwill_survey_img img{
    width: 100%;
    border-radius: 4px;
}
.lastwill_survey_steer{
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, rgb(22, 64, 152, .7) 0%, rgb(22, 64, 152, 0) 100%);
    color: #fff;
    text-shadow: 2px 2px 10px rgb(0, 0, 0, .25);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    padding: 24px 16px 16px 16px;
    width: 100%;
}
.options_list{
    padding-left: 52px;
}
.options_list .form_check_group{
    flex-direction: column;
}
.lastwill_survey_btn{
    width: 100%;
    padding-top: 56px;
}
.lastwill_survey_btn .btn{
    min-width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.lastwill_result_bg{
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 700px;
    padding: 64px 16px 72px 16px;
}
.lastwill_result_bg::before{
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--main-color);
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
}
.lastwill_result_bg::after{
    content: "";
    height: 2px;
    width: 50%;
    background-color: var(--second-color);
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
}
.lastwill_result_content{
    text-align: center;
}
.lastwill_result_proposal{
    color: var(--main-color);
    background: linear-gradient(45deg, var(--main-color3) 0%, var(--main-color) 30%, var(--main-color2) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 1.75em;
    width: fit-content;
}
.lastwill_result_txt{
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.lastwill_result_btn{
    margin-top: 52px;
}
.lastwill_result_ask{
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    padding: 16px 48px;
    border-radius: 48px;
    width: fit-content;
    margin-bottom: 32px;
}
.lastwill_result_ask .icon{
    width: 60px;
    margin-right: 8px;
}
.lastwill_result_ask .icon img{
    width: 100%;
}
.lastwill_result_ask P{
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.lastwill_result_btn .two_btn{
    justify-content: center;
}
.lastwill_result_btn .two_btn .btn{
    min-width: 200px;
}
.lastwill_banner_box.hide{
    animation: lastwill_banner_a 0.6s forwards;
    animation-delay: 0.3s;
    overflow: hidden;
}
@keyframes lastwill_banner_a {
    0% {
        height: calc(100vh - 80px);
        opacity: 1;
    }
    80%{
        opacity: 0; 
    }
    100%{
        height: 0;
        opacity: 0;
    }
}
.lastwill_banner_box.hide .lastwill_content{
    transform: translateY(-100%);
    opacity: 0;
}
.lastwill_survey_box.show{
    height: calc(100vh - 80px);
    opacity: 1;
    animation: lastwill_survey_a 0s forwards;
    animation-delay: 0.6s;
}
@keyframes lastwill_survey_a {
    to {
        position: relative;
        transform: translateY(0);
    }
}