@charset "utf-8";
html{
	margin: 0;
	height: 100%;
}
body {
	margin: 0;
	height: 100%; 
	font-family: "Arimo", "Noto Sans TC", "Noto Sans", "Microsoft JhengHei", Arial, Helvetica;
	font-size:16px;
	color:var(--font-color);
	letter-spacing: 0.05em;
	line-height: 1.5;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
a:hover {
	color: var(--font-color2);
	text-decoration: none;
}
h1{
	font-size: 2.5rem;
    letter-spacing: 0.1em;
}
h2{
	font-size: 2rem;
    letter-spacing: 0.1em;
}
h3{
    font-size: 1.5rem;
}
h4{
    font-size: 1.25rem;
}
h5{
    font-size: 1.125rem;
}
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;
}
.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;
}
.my_container_narrow{
	max-width: 1240px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}
.my_container_article{
	max-width: 840px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}
main{
	min-height: calc(100vh - 80px - 298px);
}
.show_model{
    padding: 64px 0;
}
.main_pt{
    padding-top: 48px;
}
.main_pb{
    padding-bottom: 100px;
}
.block_pt{
    padding-top: 72px;
}
.block_pb{
    padding-bottom: 72px;
}
.font_pre{  
    white-space: pre-line;
}
/*頁面標題*/
.page_title{
    padding-left: 16px;
    padding-right: 16px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.page_title h1{
    text-align: center;
    font-weight: 600;
}
.page_title .en{
    position: relative;
    margin-top: 4px;
    font-weight: 500;
    width: fit-content;
}
.page_title .en::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: var(--bg-color);
    z-index: -1;
}
/*麵包屑*/
.breadcrumb_box{
    padding-top: 1rem;
    margin-bottom: 1rem;
}
.breadcrumb{
    margin-bottom: 0;
}
.breadcrumb_box .breadcrumb-item, .breadcrumb_box .breadcrumb-item a{
    font-size: 14px;
    color: var(--font-color2);
}
/*區塊標題*/
.block_title{
    margin-bottom: 2.5rem;
}
.block_title h2{
    font-weight: 600;
    font-size: 2.25rem;
}
.block_title .en{
    position: relative;
    font-weight: 500;
    width: fit-content;
    padding-left: 2px;
    padding-right: 2px;
}
.block_title .en::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: var(--bg-color);
    z-index: -1;
}
.block_title p{
    position: relative;
    margin-top: 1rem;
    color: var(--font-color2);
}
.block_title.center{
    text-align: center;
}
.block_title.center .en{
    margin: 0 auto;
}
/*小標題*/
.small_title{
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    color: var(--font-color);
    font-weight: 500;
}
.small_title::after{
    position: relative;
    bottom: 6px;
    content: "";
    height: 2px;
    width: 2px;
    padding-right: 4px;
    background-color: var(--font-color2);
    margin-left: 8px;
}
/*更多*/
.more_link_box{
    margin-top: 2rem;
}
.more_link{
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    font-weight: 500;
}
.more_link::before{
    content: "";
    position: absolute;
    right: -20px;
    bottom: -6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    transform: scale(0);
    transition: all 0.2s ease 0.1s;
}
.more_link:hover::before{
    transform: scale(1);
    opacity: 1;
    background-color: transparent;
    border: 1px solid var(--main-color);
}
.more_link .arrow{
    margin-left: 8px;
    transition: all 0.1s ease;
}
.more_link:hover .arrow{
    transform: translateX(4px);
}
.more_link .arrow img{
    width: 30px;
}
.more_link_box.right a{
    margin-left: auto;
}
.more_link_box.center a{
    margin-left: auto;
    margin-right: auto;
}
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color-light);
    z-index: 2000;
    overflow: hidden;
}
.loader span{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, rgb(246, 242, 239, 0.2) 15%, var(--bg-color) 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader span::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main-color-light);
}
@keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg)}
}
/*彈窗*/
.my_modal .modal-content{
    border-radius: 16px;
    border: none;
}
.my_modal .modal-header{
    padding-left: 24px;
    padding-right: 24px;
}
.my_modal .modal-body{
    padding: 16px 24px 20px 24px;
}
.my_modal .modal-footer{
    padding: 20px 24px;
}
.footer_btn_row{
    display: flex;
    margin-top: 0;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -8px;
}
.footer_btn{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
/*彈窗-簡易*/
.simple_modal .modal-dialog{
    max-width: 400px;
}
.simple_modal .modal-content{
    border-radius: 16px;
    border: none;
}
.simple_modal .modal-header{
    padding-left: 24px;
    padding-right: 24px;
}
.simple_modal .modal-body{
    padding: 16px 24px 20px 24px;
}
.simple_modal .modal-body .title{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}
.simple_modal .modal-footer{
    padding: 0 24px 20px 24px;
    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;
}
/*輪播*/
.my_swiper{
    position: relative;
}
.my_swiper .swiper-button-next, .my_swiper .swiper-button-prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px var(--font-color2);
}
.my_swiper .swiper-button-next::after, .my_swiper .swiper-button-prev::after{
    color: var(--font-color2);
    font-size: 18px;
}
.my_swiper .swiper-button-next{
    right: -52px;
}
.my_swiper .swiper-button-prev{
    left: -52px;
}
/*分享列*/
.share_list_box{
    display: flex;
    align-items: center;
    margin-top: 24px;
}
.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;
}
.share_item+.share_item{
    margin-left: 24px;
}
.copy_link{
    cursor: pointer;
}
/*header*/
.page_header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    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%;
    font-size: 1.25rem;
    font-weight: 600;
}
.header_logo a:focus-visible {
    outline: none;
}
.header_logo a img{
	height: 52px;
}
.header_nav{
	flex: 1;
}
.header_nav .nav{
	height: 100%;
	margin-left: -20px;
	margin-right: -20px;
    justify-content: flex-end;
}
.header_nav .nav-link{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: var(--font-color);
	font-weight: 600;
}
.header_nav .nav-link.active{
    position: relative;
	color: var(--main-color);
}
.header_nav .nav-link.active::before{
    content: "";
    position: absolute;
    bottom: 24px;
    left: 12px;
    width: calc(100% - 24px);
    height: 2px;
    background-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;
    height: 100%;
}
.mobile_menu_btn .btn{
    position: relative;
    padding: 0;
    width: 52px;
    height: 100%;
    font-size: 28px;
    border: none;
}
.mobile_menu_btn .btn:focus{
    box-shadow: none;
}
.mobile_menu_btn .btn>div{
    width: 20px;
    margin-left: auto;
    margin-right: auto;
    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: 22px;
    right: 16px;
}
.mobile_menu_btn .btn>div:last-child{
    position: absolute;
    width: 12px;
    bottom: 22px;
    right: 16px;
}
.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: 30px;
}
.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;
    width: 20px;
    top: 30px;
}
.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: 60px;
    left: 0;
    z-index: 1001;
    background-color: #fff;
    width: 100%;
    height: 0px;
    overflow: hidden;
}
.mobile_sidebar_list{
	padding: 12px 0;
	list-style: none;
    overflow-y: auto;
    height: calc(100vh - 60px);
}
.mobile_sidebar_list>li>a{
	display: block;
	padding: 12px 16px;
	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;
    margin-left: 2rem;
    padding-left: 0;
}
.mobile_sidebar_list_lv2 .dropdown-item{
    padding: 12px 16px;
}
/*手機版搜尋*/
.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: 64px;
    padding-bottom: 32px;
    color: #f5f5f5;
}
.page_footer a{
    color: #fff;
}
.page_footer a:hover, .page_footer a:focus{
    color: #fff;
}
.footer_logo img{
    height: 52px;
}
.footer_logo{
    font-size: 1.25rem;
    font-weight: 500;
}
.office_info_item{
    display: flex;
}
.office_info_title{
    word-break: keep-all;
}
.office_info_item+.office_info_item {
    margin-top: 16px;
}
.footer_nav .nav{
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -16px;
    flex-wrap: wrap;
}
.footer_nav li{
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 16px;
}
.footer_nav li{
    padding: 16px 0 0 0;
}
.footer_nav li a{
    padding: 0 12px;
}
.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-top: solid 1px #fff;
    margin-top: 24px;
    margin-bottom: 24px;
}
.footer_row_bottom{
    border-top: solid 1px rgb(255 255 255 / 10%);
    padding-top: 32px;
    font-size: 14px;
    color: var(--font-color3);
}
.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 16px;
}
.footer_copyright{
    text-align: center;
}
.office_info+.footer_social{
    justify-content: flex-start;
    margin-top: 24px;
}
.footer_social{
    display: flex;
    justify-content: flex-end;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 20px;
}
.footer_social .nav-link{
    padding: 0;
}
.footer_social i{
    font-size: 28px;
    display: flex;
    align-items: center;
}
.footer_subscribe{
    margin-top: 2rem;
    padding-bottom: 2.5rem;
    max-width: 550px;
}
.footer_subscribe h4{
    margin-bottom: 16px;
    text-align: center;
}
.subscribe_input_group{
    display: flex;
}
.subscribe_input_group .subscribe_mail{
    flex: 1;
}
.subscribe_input_group>div+div{
    margin-left: 8px;
}
.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;
    flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: -8px;
}
.two_btn>div{
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 8px;
}
/*按鈕-實心*/
.maincolor_btn{
	border: solid 1px var(--main-color);
	background-color: var(--main-color);
	font-size: 1rem;
	font-weight: 500;
	height: 48px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 4px;
    width: fit-content;
    min-width: 160px;
    transition: all .2s;
}
.maincolor_btn:hover, .maincolor_btn:focus{
	border: solid 1px var(--main-color-light);
	background-color: var(--main-color-light);
	color: #fff;
	box-shadow: none;
}
.maincolor_btn.radius{
	border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs{
	border: solid 1px var(--main-color);
	background-color: var(--main-color);
	font-size: 1rem;
	font-weight: 500;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 4px;
    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);
	font-size: 1rem;
	font-weight: 500;
	height: 46px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border-radius: 4px;
    width: fit-content;
    min-width: 160px;
    transition: all .2s;
}
.maincolor_border_btn:hover, .maincolor_border_btn:focus{
    border: solid 1px var(--main-color);
    background-color: var(--main-color);
	color: #fff;
	box-shadow: none;
}
.maincolor_border_btn.white{
    border: solid 1px #fff;
	color: #fff;
}
.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;
}
/*純文字按鈕*/
.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(--border-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.my_input:disabled, .my_input:read-only{
    background-color: #f5f5f5;
}
.my_input:disabled:hover, .my_input:read-only, .my_input:disabled:focus{
    box-shadow:none;
}
/*單行輸入框-主色框*/
.my_input_color{
    border: solid 1px rgb(255 255 255 / 30%);
    border-radius: 4px;
    height: 46px;
    background-color: rgb(255 255 255 / 30%);
    font-size: 1rem;
    color: var(--font-color);
    transition: all .2s;
}
.my_input_color:hover, .my_input_color:focus{
    border: solid 1px rgb(255 255 255 / 40%);
    background-color: rgb(255 255 255 / 40%);
	box-shadow: 1px 1px 6px rgb(0 0 0 / 15%);
}
/*多行輸入框*/
.my_textarea{
    border: solid 1px var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    font-size: 1rem;
    padding: 8px 16px;
    color: var(--font-color);
    transition: all .2s;
}
.my_textarea:hover, .my_textarea:focus{
	border: solid 1px var(--border-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
    min-height: 60px;
}
.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(--border-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.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);
}
/*文章列表*/
.article_card_list{
    margin-bottom: -40px;
}
.article_card_item{
    padding-bottom: 40px;
}
.article_card_list.inventory{
    margin-bottom: -56px;
}
.article_card_list.inventory .article_card_item{
    padding-bottom: 56px;
}
/*共幾篇*/
.list_count_row{
    margin-bottom: 2rem;
    color: var(--font-color2);
    font-size: 14px;
}
.list_count_row span{
    color: var(--font-color);
}
/*文章列表頁數*/
.page_box{
    margin-top: 48px;
}
.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: none;
    color: var(--main-color);
    margin: 0 !important;
    padding: 0 12px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: none;
}
.page_box .page-link:hover, .page_box .page-link:focus{
    border: none;
    background-color: var(--bg-color);
}
.page-item:first-child .page-link, 
.page-item:last-child .page-link{
    border-radius: 50%;
}
.page_box .page-item.active .page-link{
    color: #fff;
    background-color: var(--main-color);
    border: none;
}
.page_box .page-item.ellipsis .page-link{
    letter-spacing: 1px;
    border: none;
    padding-bottom: 4px;
}
.page_box .page-item.ellipsis .page-link:hover{
    background-color: #fff;
}
/*文章卡片*/
.article_card{
    display: block;
    transition: all .2s;
}
.article_card_img{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 61%;
}
.article_card_img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}
.article_card:hover .article_card_img img{
    transform: scale(1.15);
}
.article_card_body {
    padding-top: 1rem;
}
.article_card_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 4px;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 600;
}
.article_card_body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    color: var(--font-color2);
}
.article_card_info{
    padding-left: 16px;
    padding-right: 16px;
}
.article_info{
    color: var(--font-color2);
    font-size: 14px;
    margin-bottom: 4px;
}
.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_card{
    display: flex;
    flex-wrap: wrap;
}
.article_inventory_img{
    width: 40%;
    max-width: 400px;
}
.article_inventory_img .img{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 61%;
}
.article_inventory_img .img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}
.article_inventory_card:hover .article_inventory_img img{
    transform: scale(1.15);
}
.article_inventory_body{
    flex: 1;
    padding-right: 2rem;
}
.article_inventory_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 4px;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: justify;
}
.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);
    text-align: justify;
}
.article_inventory_body .article_info{
    padding-top: 1rem;
}
/*短影音卡片*/
.tiktok_list{
    margin-bottom: -40px;
}
.tiktok_item{
    padding-bottom: 40px;
}
.tiktok_card{
    position: relative;
    display: block;
}
.tiktok_card_img{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 177%;
    z-index: 1;
}
.tiktok_card_img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.tiktok_card_body{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
    text-shadow: rgba(0, 0, 0, 0.25) 2px 2px 10px;
    z-index: 2;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    transition: all 0.3s ease;
}
.tiktok_card_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 600;
}
.tiktok_card:hover .tiktok_card_body{
    height: 100%;
}
/*長影片卡片*/
.youtube_list{
    margin-bottom: -48px;
}
.youtube_item{
    padding-bottom: 48px;
}
.youtube_card{
    display: block;
}
.youtube_card_img{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56.2493%
}
.youtube_card_img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    z-index: 2;
    transition: all 0.3s ease;
}
.youtube_card:hover .youtube_card_img::before{
    opacity: 1;
}
.youtube_card_img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.youtube_card_body{
    padding-top: 1rem;
}
.youtube_card_title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 600;
}
/*關鍵字*/
.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);
}
/*編輯器內容-tiptap*/
.from_tiptap{
    width: 100%;
}
.from_tiptap p{
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.9px;
    text-align: justify;
}
.from_tiptap h2{
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.from_tiptap h3{
    font-weight: 600;
    margin-bottom: 1rem;
}
.from_tiptap h4{
    font-weight: 600;
    margin-bottom: 12px;
}
.from_tiptap ul, ol{
    margin-bottom: 0;
    padding-left: 2em;
}
.from_tiptap li{
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: justify;
}
.from_tiptap li+li{
    margin-top: 8px;
}
.from_tiptap a{
    color: var(--main-color);
    word-break: break-all;
    border-bottom: solid 1px var(--main-color);
}
.from_tiptap blockquote {
    font-weight: 500;
    padding: 24px;
    font-size: 1.5rem;
    line-height: 1.8;
}
.from_tiptap blockquote::before {
    content: "“";
    display: block;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    bottom: -0.5rem;
}
.from_tiptap table{
    width: 100%;
}
.from_tiptap th{
    background-color: var(--bg-color);
    border: solid 1px var(--border-color);
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
}
.from_tiptap td{
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--border-color);
}
.from_tiptap img{
    max-width: 100%;
}
figure.image, figure.media, figure.table{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
/*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);
}
/*商品圖片輪播*/
.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;
}
/*加入購物車*/
.bg-cover{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 25%);
    z-index: 999999;
}
.bg-cover-table{
    width: 90%;
    max-width: 350px;
    background-color: rgb(0 0 0 / 80%);
    color: #fff;
    padding: 32px 24px 48px 24px;
    text-align: center;
    border-radius: 4px;
}
.bg-cover-content .icon{
    font-size: 80px;
    margin-bottom: 8px;
}
.bg-cover-content p{
    font-size: 18px;
    font-weight: 600;
}
/*首頁-作者*/
.index_author_box{
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 42%;
    min-height: calc(1440px * 0.42 * 1.33);
}
.index_author_name{
    padding-top: 48px;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
}
.index_author_name::after{
    content: "";
    display: block;
    height: 8px;
    width: 20%;
    margin-top: 3rem;
    background-color: var(--main-color);
}
.index_author_body{
    padding-right: 48px;
}
.index_author_img_box{
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
}
.index_author_img{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 133%;
}
.index_author_img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.index_author_content{
    width: 100%;
    max-width: 600px;
}
.indiex_author_info{
    margin-top: 3rem;
    line-height: 2rem;
}
.social_list{
    margin-top: 1.5rem;
}
.social_list .nav{
    margin-left: -8px;
    margin-right: -8px;
}
.social_list .nav-item{
    padding-left: 8px;
    padding-right: 8px;
}
.social_list .nav-link{
    padding: 0 0 1px 1px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--main-color);
    letter-spacing: 0;
    line-height: 1;
}
.social_list .nav-link i{
    display: flex;
    align-items: center;
    justify-content: center;
}
/*首頁文章*/
.index_blog_swiper{
    padding-bottom: 48px;
}
.index_blog_swiper .swiper-slide{
    transition: all 0.2s ease;
}
.index_blog_swiper .swiper-slide-next{
    transform: translateY(48px);
}
/*首頁-熱門文章*/
.index_hotarticle_box{
    background: linear-gradient(to right, #fff 0, #fff 48px, var(--second-color) 48px, var(--second-color) calc(100% - 48px), #fff calc(100% - 48px), #fff 100%);
}
.index_hotarticle_box *, .hotarticle_swiper .article_card *, .index_hotarticle_box .more_link:hover{
    color: #fff;
}
.hotarticle_swiper{
    padding-left: 80px;
    /* margin-left: -5rem; */
}
.hotarticle_swiper .article_card{
    position: relative;
}
.hotarticle_swiper .top_num{
    position: absolute;
    bottom: 130px;
    left: -60px;
    width: 60px;
    text-align: right;
    font-style: italic;
    font-family: "DM Sans", "Arimo", "Noto Sans TC", "Noto Sans", "Microsoft JhengHei", Arial, Helvetica;
    color: rgb(255 255 255 / 85%);
    -webkit-text-stroke: 1px rgb(255 255 255 / 85%);
    -webkit-text-fill-color: transparent;
    text-stroke: 1px #fff;
    text-fill-color: transparent;
    font-weight: 600;
    font-size: 8rem;
    line-height: 1;
}
.hotarticle_swiper .article_card_img{
    z-index: 2;
    box-shadow: -10px 10px 10px rgb(0 0 0 / 8%);
}
.index_hotarticle_box .more_link::before{
    background-color: #fff;
}
.index_hotarticle_box .more_link:hover::before{
    background-color: transparent;
    border: 1px solid #fff;
}
.index_hotarticle_box .more_link .arrow img{
    filter: invert(100%);
}
.hotarticle_swiper_box.my_swiper .swiper-button-next, .hotarticle_swiper_box.my_swiper .swiper-button-prev {
    border: solid 1px #fff;
}
.hotarticle_swiper_box.my_swiper .swiper-button-next::after, .hotarticle_swiper_box.my_swiper .swiper-button-prev::after {
    color: #fff;
}
/*首頁-tikTok影片*/
.index_short_box{
    position: relative;
    display: flex;
}
.index_short_left{
    flex: 1;
}
.index_short_right{
    width: 75%;
}
.index_short_box .more_link_box{
    position: absolute;
    bottom: 0;
    left: 0;
}
/*首頁-youtube影片*/
.index_long_swiper .swiper-slide .youtube_card {
    transform: scale(0.85);
    transition: all .6s;
}
.index_long_swiper .swiper-slide.swiper-slide-active .youtube_card {
    transform: scale(1);
}
/*首頁問答*/
.index_faq_row{
    display: flex;
}
.index_faq_left{
    flex: 1;
    padding-right: 48px;
}
.index_faq_right{
    width: 60%;
    min-width: 700px;
}
.faq_card_title{
    display: flex;
}
.faq_card_title .txt{
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
}
.faq_card_title .txt::before{
    content: "Q";
    font-size: 2rem;
    position: relative;
    top: -8px;
    margin-right: 1rem;
    color: var(--font-color2);
}
.faq_card_title .icon{
    width: 40px;
    text-align: right;
    font-size: 1.125rem;
}
.faq_card{
    border-bottom: solid 1px var(--main-color);
}
.faq_card_title{
    padding: 40px 8px 24px 8px;
    cursor: pointer;
}
.faq_card_body{
    display: flex;
    padding: 0 8px 24px 8px;;
}
.faq_card_body::before{
    content: "A";
    font-size: 2rem;
    position: relative;
    top: -8px;
    margin-right: 1rem;
    color: var(--font-color2);
}
.faq_card_body .from_tiptap{
    max-width: none;
    flex: 1;
}
/*部落格首頁*/
.blog_themm_title{
    margin-bottom: 1.5rem;
}
.blog_themm_title h2{
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: fit-content;
}
.blog_themm_title h2::after{
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 0.5rem;
    background-color: var(--main-color);
}
/*404*/
.error_box{
    display: flex;
    align-items: center;
}
.error_img{
    width: 45%;
    text-align: center;
}
.error_img img{
    width: 100%;
    max-width: 450px;
}
.error_body{
    flex: 1;
    padding-left: 64px;
}
.error_body .title{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.error_body .txt{
    font-size: 1.125rem;
    color: var(--font-color2);
}
.error_btn{
    margin-top: 2rem;
}
/*文章內容*/
.article_header{
    padding-top: 3rem;
    margin-bottom: 2.5rem;
}
.article_title{
    text-align: center;
    margin-bottom: 1rem;
}
.article_info_row{
    text-align: center;
    color: var(--font-color2);
}
.article_page_img{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 61%;
    margin-top: 1.5rem;
}
.article_page_img img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
}
.article_page_content+.social_list{
    margin-top: 2.5rem;
}
/*關於我*/
.author_info_box{
    display: flex;
}
.author_info_img{
    width: 45%;
    max-width: 700px;
}
.author_info_img img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}
.author_info_body{
    flex: 1;
    padding-right: 64px;
}
.author_info_content{
    width: 100%;
    max-width: 600px;
}
.author_info_name{
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}
.visual_content_block{
    display: flex;
    align-items: center;
}
.visual_content_body{
    flex: 1;
    padding: 0 48px;
}
.visual_content_content{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.visual_content_img{
    width: 50%;
    text-align: center;
}
.visual_content_img img{
    width: 100%;
    max-width: 500px;
}
.author_info{
    line-height: 2rem;
}
/*影片內容頁*/
.video_content_row{
    display: flex;
}
.video_content_right{
    width: 50%;
    max-width: 800px;
    padding-left: 64px;
}
.video_content_left{
    flex: 1;
}
.video_box{
    position: sticky;
    top: 96px;
}
.video_youtube{
    position: relative; 
    height: 0; 
    padding-bottom: 56.2493%;
    margin-top: 1rem;
}
.video_youtube iframe{
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
}
.video_header{
    padding-top: 1rem;
    margin-bottom: 2.5rem;
}
.video_info_row{
    margin-top: 1rem;
    color: var(--font-color2);
}