@charset "utf-8";
html{
	margin: 0;
	height: 100%;
}
body {
	margin: 0;
	height: 100%; 
	font-family: "Montserrat", "Noto Sans TC" , Arial, Helvetica;
	font-size:16px;
    font-weight: 400;
	color:var(--font-color);
	letter-spacing: 0.1rem;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
a:hover {
	color: var(--font-color2);
	text-decoration: none;
}
h1{
	font-size: 36px;
	letter-spacing: 0;
}
h2{
	font-size: 28px;
	letter-spacing: 0;
}
h3{
	font-size: 24px;
	line-height: 1.5;
}
h4{
	font-size: 18px;
	line-height: 1.5;
}
h5{
	font-size: 17px;
	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;
    font-weight: 400;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color3) !important;
    font-weight: 400;
}
input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color3) !important;
    font-weight: 400;
}
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;
}
.w_200{
    max-width: 200px;
}
.w_300{
    max-width: 300px;
}
.row{
	margin-left: -16px;
	margin-right: -16px;
}
.row>*{
	padding-left: 16px;
	padding-right: 16px;
}
.my_container{
	max-width: 1320px;
    padding-right: 16px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
}
.article_container{
	max-width: 1172px;
    padding-right: 16px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
}
main{
	min-height: calc(100vh - 80px - 350px);
}
.main_pt{
    padding-top: 52px;
}
.main_pb{
    padding-bottom: 116px;
}
.show_model{
    padding: 64px 0;
}
.block_mb{
    margin-bottom: 116px;
}
/*置頂按鈕*/
.go_top{
    position: fixed;
    right: 48px;
    bottom: 100px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255, .9);
    border: solid 1px var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}
.go_top img{
    width: 22px;
    opacity: .9;
}
/*警報*/
.my_alert{
    font-size: 14px;
    border-radius: 4px;
}
.my_alert a{
    border-bottom: solid 1px var(--font-color2);
    font-weight: 500;
}
/*吐司*/
.my_toast{
    position: fixed;
    top: 30%;
    right: calc(50% - 200px);
    z-index: 1010;
}
.my_toast .toast{
    position: relative;
	background-color: #fff;
    width: 400px;
    border: none;
    box-shadow: 0 1px 10px rgb(0 0 0 / 20%);
    border-radius: 16px;
}
.my_toast .toast-body {
    padding: 40px 24px 48px 24px;
    max-width: 100%;
    text-align: center;
}
.my_toast .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-right: 0;
    color: var(--font-color2);
    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: 18px;
    margin-top: 16px;
}
/*日曆*/
.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_modal .modal-content {
    border: none;
    border-radius: 16px;
}
.my_modal .modal-header{
    padding: 24px 24px 16px 24px;
    border-bottom: solid 1px var(--border-color);
}
.my_modal .modal-header .btn-close{
    background-image: none;
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: -4px;
    margin-right: -4px;
    margin-bottom: 0;
    background-color: var(--bg-color);
    border-radius: 4px;
    opacity: .9;
}
.my_modal .modal-header .btn-close:hover{
    opacity: 1;
}
.my_modal .modal-header .btn-close:focus{
    box-shadow: none;
}
.my_modal .modal-body{
    padding: 16px 24px 24px 24px;
}
.my_modal .modal-footer {
    padding: 0px 24px 24px 24px;
    border-top: none;
}
.simple_modal .modal-dialog{
    max-width: 400px;
}
.simple_modal .modal-content {
    border: none;
    border-radius: 16px;
}
.simple_modal .modal-body{
    position: relative;
    padding: 24px;
}
.simple_modal .modal-body .btn-close{
    background-image: none;
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 8px;
    background-color: var(--bg-color);
    border-radius: 4px;
    opacity: .9;
}
.simple_modal .modal-body .close_modal_btn{
    margin-top: -4px;
    margin-right: -4px;
}
.simple_modal .modal-body .btn-close:hover{
    opacity: 1;
}
.simple_modal .modal-body .btn-close:focus{
    box-shadow: none;
}
.simple_modal .modal-body .title{
    font-size: 18px;
    color: var(--font-color);
    font-weight: 500;
    text-align: center;
}
.simple_modal .modal-footer{
    padding: 16px 24px 24px 24px;
    display: block;
}
.simple_modal .modal-footer .two_btn{
    margin-top: 0;
}
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 2000;
    overflow: hidden;
}
.loader span{
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}
.loader span::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--brand-main-color);
    animation: prixClipFix 2s linear infinite ;
}
@keyframes rotate {
    100%   {transform: rotate(360deg)}
}
@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/*區塊標題*/
.block_title{
    margin-bottom: 32px;
}
.block_title h2, .block_title h1{
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 12px;
    color: var(--font-color);
    font-weight: 400;
    letter-spacing: 0.1rem;
    font-size: 28px;
}
.block_title h2::before, .block_title h1::before{
    content: "";
    position: absolute;
    height: 3px;
    width: 48px;
    bottom: 0;
    left: calc(50% - 24px);
    background-color: var(--brand-main-color);
}
.block_title p{
    padding-top: 20px;
    text-align: center;
}
/*頁面標題*/
.page_title{
    padding-top: 32px;
    padding-bottom: 32px;
    text-align: center;
    margin-bottom: 56px;
    border-bottom: solid 2px var(--bg-color);
}
.page_title h1{
    letter-spacing: 0.1rem;
}
/*麵包屑*/
.breadcrumb_box{
    font-size: 14px;
    padding-top: 24px;
}
.breadcrumb_box .breadcrumb{
    margin-bottom: 0;
    background-color: var(--bg-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 2px;
    padding-bottom: 1px;
}
.breadcrumb_box a{
    color: var(--font-color3);
}
.breadcrumb_box a:hover{
    border-bottom: solid 1px var(--font-color2);
    color: var(--font-color2);
}
/*看更多*/
.block_more_link{
    margin-top: 52px;
}
.more_link{
    margin: 0 auto;
}
/*header*/
.page_header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding-right: 16px;
    background-color: #fff;
    transition: all .5s;
    z-index: 1002;
}
.header_box{
	display: flex;
    flex-direction: column;
	margin-left: -16px;
	margin-right: -16px;
    transition: all .5s;
}
.header_box>*{
	padding-left: 16px;
	padding-right: 16px;
	height: 100%;
}
.header_logo {
    display: flex;
    justify-content: center;
    margin-top: -12px;
}
.header_logo a {
    display: block;
}
.header_logo a img{
	height: 52px;
    transition: all .5s;
}
.header_nav{
	flex: 1;
    margin-top: 8px;
}
.header_nav .nav{
    justify-content: center;
	height: 100%;
	margin-left: -16px;
	margin-right: -16px;
}
.header_nav .nav-link{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 16px;
	color: var(--font-color);
	font-weight: 500;
    border: none;
}
.header_nav .nav-link:hover{
	color: var(--brand-main-color);
}
.header_nav .nav-item.dropdown{
    padding-right: 24px;
}
.header_nav .nav-item.dropdown .nav-link{
    background-image: url(../img/icon/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
}
.header_nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
}
.header_nav .dropdown-menu{
    border-radius: 0;
    border: none;
    box-shadow: -6px 6px 12px -6px rgb(0 0 0 / 8%), 6px 6px 12px -6px rgb(0 0 0 / 8%);
    /* box-shadow: 0 0 10px inset rgb(0 0 0 / 8%); */
    min-width: 200px;
    /* background-color: var(--bg-color); */
}
.header_menu_lv2_list ul{
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}
.header_menu_lv2_list .dropdown-item{
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
}
.header_menu_lv2_list .dropdown-item:hover{
    background-color: transparent;
    color: var(--brand-main-color);
}
.header_right{
    position: relative;
    padding-top: 12px;
    z-index: 2;
}
.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-link{
    padding: 0;
    color: var(--font-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 24px;
    border: none;
}
.header_right .nav-link:hover{
    color: var(--brand-main-color);
}
.header_right .nav-link:focus{
    box-shadow: none;
}
.header_right .nav-item.cart .nav-link{
    position: relative;
}
.header_right .nav-item.cart .nav-link span{
    display: block;
    position: absolute;
    font-size: 13px;
    color: #fff;
    background-color: var(--danger-color);
    padding: 2px 3px 2px 4px;
    line-height: 1;
    border-radius: 4px;
    top: -8px;
    right: -10px;
}
.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;
}
.mobile_menu{
    display: none;
}
.page_header.zoom{
    /* box-shadow: 0px 3px 6px rgb(0 0 0 / 10%); */
    box-shadow: 0 0 2px rgb(0 0 0 / 20%);
}
.page_header.zoom .header_box{
    flex-direction: row;
}
.page_header.zoom .header_logo a img {
    height: 44px;
}
.page_header.zoom .header_nav{
    margin-top: 2px;
}
.page_header.zoom .header_nav .nav{
    justify-content: flex-end;
}
.page_header.zoom .header_nav .nav-link{
    padding: 12px 16px 16px 16px;
    height: 52px;
}
.page_header.zoom .header_nav .nav-item.dropdown .nav-link {
    background-position: right 0 bottom 22px;
}
.header_cart_list_box{
    position: absolute;
    width: 300px;
    right: 0;
    top: 36px;
    display: none;
    background-color: #fff;
    box-shadow: -6px 6px 12px -6px rgb(0 0 0 / 8%), 6px 6px 12px -6px rgb(0 0 0 / 8%);
}
.header_right .nav-item.cart:hover .header_cart_list_box{
    display: block;
}
.header_cart_list_noitem{
    padding: 12px 12px 0 12px;
    text-align: center;
}
.header_cart_list{
    list-style: none;
    margin: 0;
    padding: 0 12px;
}
.header_cart_item{
    display: grid;
    grid-template-columns: 80px 48px auto 24px;
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-color);
}
.header_cart_item .product_card_img{
    width: 80px;
    margin-bottom: 0;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
}
.header_cart_item .product_card_img img{
    display: none;
}
.header_cart_item .product_card_img .bg{
    padding-bottom: 100%;
}
.header_cart_item_title{
    flex: 1;
    padding-left: 8px;
    padding-right: 8px;
    grid-column-start: 2;
    grid-column-end: 4;
}
.header_cart_item_count{
    padding: 0 8px;
    grid-column-start: 2;
    grid-column-end: 2;
    display: flex;
    align-items: center;
}
.header_cart_item_price{
    grid-column-start: 3;
    grid-column-end: 3;
    padding-left: 8px;
    color: var(--danger-color);
    display: flex;
    align-items: center;
    font-weight: 600;
}
.header_cart_item_delete{
    padding: 0 4px;
}
.header_cart_item_delete .btn{
    width: auto !important;
    height: auto !important;
    margin-left: auto;
    opacity: .6;
}
.header_cart_item_delete .btn:hover{
    color: var(--font-color);
    opacity: 1;
}
.header_cart_item_delete i{
    display: flex;
    align-items: center;
    font-size: 18px !important;
}
.header_cart_list_btn{
    padding: 12px;
}
.header_cart_list_btn .btn{
    width: 100%;
}
.under_page_header{
	height: 140px;
    transition: all .5s;
}
/*手機版選單*/
.mobile_sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1004;
    background-color: #fff;
    width: 0;
    height: 100vh;
    overflow: hidden;
}
.mobile_sidebar_box{
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}
.mobile_sidebar_list{
	padding: 12px 0;
	list-style: none;
}
.mobile_sidebar_list a{
	display: block;
	padding: 12px 16px;
	font-weight: 500;
}
.mobile_sidebar.show+.under_mobile_sidebar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1003;
    background-color: rgb(0 0 0 / 50%);
}
.mobile_sidebar_list li.dropdown{
    position: relative;
}
.mobile_sidebar_dropdown_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 48px;
    width: 50%;
    padding: 12px 16px;
    text-align: right;
}
.mobile_sidebar_dropdown_btn img{
    width: 18px;
    transition: all .2s;
}
.mobile_sidebar_list_lv2{
    height: 0;
    overflow: hidden;
}
.mobile_sidebar_list_lv2 ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 12px;
    border-left: solid 2px var(--font-color3);
    margin-left: 22px;
}
.mobile_sidebar_list_lv2 ul .dropdown-item{
    color: var(--font-color2);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_dropdown_btn img {
    transform: rotate(180deg);
}
/*搜尋*/
.search_offcanvas{
    height: 100vh;
    border: none;
    background-color: rgb(255, 255, 255, .9);
}
.search_offcanvas.show~.offcanvas-backdrop{
    background-color: transparent;
}
.search_offcanvas .offcanvas-header{
    height: 100px;
    justify-content: end;
}
.search_offcanvas .offcanvas-header .btn-close:focus{
    box-shadow: none;
}
.search_title{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--font-color2);
}
.search_offcanvas .offcanvas-body{
    padding-top: 15%;
}
.search_offcanvas_content{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.search_input_row{
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
}
.search_input_row>div{
    padding-left: 0;
    padding-right: 0;
}
.hot_search{
    margin-top: 24px;
}
.search_input_box{
    display: flex;
    align-items: center;
    border: solid 1px var(--font-color2);
    width: 100%;
    max-width: 550px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}
.search_input_box .my_select{
    width: 160px;
    border: none;
    border-right: solid 1px var(--border-color);
    border-radius: 0;
    background-color: transparent;
}
.search_input_box .my_select:hover, .search_input_box .my_select:focus{
    border: none;
    border-right: solid 1px var(--border-color);
}
.search_input_box input{
    border: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
    background-color: transparent;
}
.search_input_box input:focus{
    box-shadow: none;
}
.search_input_btn{
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.hot_search_list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: -8px;
}
.hot_search_item{
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}
.hot_search_item a{
    color: var(--font-color);
    border-bottom: solid 1px var(--font-color2);
}
/*手機版搜尋*/
.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;
}
/*登入註冊*/
#login_Modal .modal-content{
    border: none;
    border-radius: 16px;
}
#login_Modal .modal-body{
    padding: 16px 16px 48px 16px;
}
#login_Modal .close_modal_btn {
    text-align: right;
}
#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 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: -24px;
    width: fit-content;
}
/* .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;
}
.login_modal_block_title .success_icon img{
    width: 60px;
}
/* .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);
}
.login_form{
    margin-top: 32px;
}
.other_login {
    margin-bottom: 24px;
}
.other_login .two_btn{
    justify-content: center;
}
.other_login .two_btn .btn{
    padding: 0;
}
.other_login .two_btn .btn i{
    font-size: 30px;
}
.other_login .two_btn .btn:focus{
    box-shadow: none;
}
.other_login .two_btn .btn:hover i{
    color: var(--brand-main-color);
}
.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: 24px;
    height: 24px;
    margin-bottom: 16px;
    color: var(--font-color3);
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.error_or::before {
    content: '或快速登入';
    position: absolute;
    left: calc(50% - 47px);
    top: 1px;
    z-index: 3;
    padding: 0 8px 0 10px;
    background-color: #fff;
    color: var(--font-color3);
    font-size: 14px;
}
.error_or::after {
    content: '';
    background: linear-gradient(to right, transparent, var(--font-color3), transparent);
    position: absolute;
    left: 0;
    top: 51%;
    width: 100%;
    height: 1px;
    z-index: 2;
    opacity: .7;
}
.login_form .my_form {
    margin-top: -16px;
}
.login_form .my_form_row {
    padding-top: 16px;
}
.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-radius: 16px;
    padding: 24px;
    margin: 0 auto;
    text-align: center;
}
.success_content .login_modal_block_title{
    margin-left: auto;
    margin-right: auto;
}
.success_content .my_form_btn .btn{
    margin: 0 auto;
}
/*footer*/
.footer_box{
    border-top: solid 1px var(--border-color);
    padding-top: 40px;
}
.footer_block_title{
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 500;
}
.page_footer a{
    color: var(--font-color);
}
.page_footer a:hover, .page_footer a:focus{
    color: var(--brand-main-color);
}
.footer_logo img{
    height: 52px;
}
.footer_logo_slgan{
    font-size: 14px;
    color: var(--font-color2);
    margin-top: 24px;
}
.office_info_list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 0;
}
.office_info_item{
    display: flex;
    font-size: 15px;
}
.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: -6px;
    flex-direction: column;
    max-height: 185px;
}
.footer_nav li{
    padding-left: 12px;
    padding-right: 12px;
}
.footer_nav li a{
    padding: 8px 0;
    background-image: url(../img/icon/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 12px;
    padding-left: 24px;
    transition: all .2s;
    width: fit-content;
    font-size: 15px;
    color: var(--font-color2);
}
.footer_nav li a:hover{
    color: var(--font-color);
    /* color: var(--brand-main-color);
    background-position: left 8px center;
    padding-left: 32px; */
}
.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 .statement .nav{
    justify-content: flex-end;
}
.footer_row_bottom .statement .nav a{
    padding: 0 16px;
}
.footer_copyright{
    background-color: var(--brand-main-color);
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #fff;
    padding: 24px 16px;
}
.footer_social{
    display: flex;
    margin-top: 16px;
}
.footer_social .nav-item{
    width: 36px;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 16px;
}
.footer_social .nav-link{
    padding: 0;
}
.footer_social i{
    font-size: 30px;
}
.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: solid 1px var(--brand-main-color);
	background-color: var(--brand-main-color);
	font-size: 1rem;
	font-weight: 400;
	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{
    opacity: .9;
	color: #fff;
	border: solid 1px var(--brand-main-color);
	background-color: var(--brand-main-color);
	box-shadow: none;
}
.maincolor_btn.radius{
	border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs{
	border: solid 1px var(--brand-main-color);
	background-color: var(--brand-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;
    width: fit-content;
    transition: all .2s;
}
.maincolor_btn_xs:hover, .maincolor_btn_xs:focus{
    opacity: .9;
	color: #fff;
	border: solid 1px var(--brand-main-color);
	background-color: var(--brand-main-color);
	box-shadow: none;
}
.maincolor_btn_xs.radius{
	border-radius: 40px;
}
/*按鈕-框線*/
.maincolor_border_btn{
	border: solid 1px var(--brand-main-color);
	background-color: #fff;
	font-weight: 400;
	height: 48px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-main-color);
	border-radius: 4px;
    min-width: 160px;
    width: fit-content;
    transition: all .2s;
}
.maincolor_border_btn:hover, .maincolor_border_btn:focus{
	border: solid 1px var(--brand-main-color);
    background-color: var(--brand-main-color);
	color: #fff;
	box-shadow: none;
}
.maincolor_border_btn.radius{
	border-radius: 48px;
}
/*按鈕-框線-xs*/
.maincolor_border_btn_xs{
	border: solid 1px var(--brand-main-color);
	background-color: #fff;
	font-weight: 400;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-main-color);
	border-radius: 4px;
    min-width: 100px;
    width: fit-content;
    transition: all .2s;
}
.maincolor_border_btn_xs:hover, .maincolor_border_btn_xs:focus{
	border: solid 1px var(--brand-main-color);
    background-color: var(--brand-main-color);
	color: #fff;
	box-shadow: none;
}
.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);
}
/*收藏按鈕*/
.keep_btn{
    display: flex;
    align-items: center;
    padding: 5px 8px 4px 8px;
}
.keep_btn:hover{
    background-color: var(--bg-color);
}
.keep_btn_icon{
    font-size: 16px;
    margin-right: 8px;
}
.keep_btn_icon i{
    display: flex;
    align-items: center;
}
.keep_btn_icon .keep_no{
    color: var(--font-color3);
}
.keep_btn:hover .keep_btn_icon .keep_no{
    color: var(--font-color);
}
.keep_btn_icon .keep_yes{
    display: none;
    color: var(--danger-color);
}
.keep_btn_txt{
    font-size: 14px;
    color: var(--font-color2);
}
.keep_btn:hover .keep_btn_txt{
    color: var(--font-color);
}
.keep_btn_txt::before{
    content: "加入追蹤清單";
}
.keep_btn.active .keep_btn_icon .keep_no{
    display: none;
}
.keep_btn.active .keep_btn_icon .keep_yes{
    display: block;
}
.keep_btn.active .keep_btn_txt::before{
    content: "己加入追蹤清單";
}
/*輸入框空值題示*/
.data_validate .my_input, .data_validate .my_textarea{
	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(--font-color2);
	box-shadow: none;
}
.my_input:disabled, .my_input:read-only{
    background-color: #f5f5f5;
    border: solid 1px var(--font-color3);
}
.my_input:disabled:hover, .my_input:read-only, .my_input:disabled:focus{
    box-shadow:none;
}
/*單行輸入框-主色框*/
.my_input_color{
    border: solid 1px var(--main-color);
    border-radius: 4px;
    height: 48px;
    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 var(--main-color);
    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(--font-color2);
	box-shadow: 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 40px 8px 16px;
    background-color: #fff;
    font-size: 1rem;
    color: var(--font-color);
    min-width: 100px;
    width: fit-content;
    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(--font-color2);
	box-shadow: none;
}
.my_select:disabled{
    background-color: #f5f5f5;
    border: solid 1px var(--font-color3);
}
.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(--border-color);
    margin-right: 0;
    margin-top: 3px;
}
.my_checkbox .form-check-input:focus {
    border-color: var(--border-color);
    box-shadow: none;
}
.my_checkbox .form-check-input:checked {
    background-color: var(--brand-main-color);
    border-color: var(--brand-main-color);
}
.my_checkbox .form-check-input:checked:focus {
    border-color: var(--brand-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;
}
/*表單*/
.my_form{
    max-width: 550px;
    margin-top: -24px;
}
.my_form_row{
    padding-top: 24px;
}
.my_form_row .form-label{
    margin-bottom: 4px;
    color: var(--font-color2);
    font-size: 14px;
}
.my_form_row .form-label .red{
    margin-left: 4px;
    color: var(--danger-color);
}
.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;
    font-size: 14px;
    color: var(--danger-color);
}
/*文章列表*/
.article_card_list{
    margin-bottom: -48px;
}
.article_card_item{
    padding-bottom: 48px;
}
/*文章列表頁數*/
.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: solid 1px var(--border-color);
    color: var(--main-color);
    margin: 0 !important;
    padding: 0 8px;
    height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
}
.page_box .page-link:hover, .page_box .page-link:focus{
    border: solid 1px var(--brand-main-color);
    background-color: #fff;
}
.page_box .page-item.active .page-link{
    color: #fff;
    background-color: var(--brand-main-color);
    border: solid 1px var(--brand-main-color);
}
.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{
    overflow: hidden;
    background-color: #fff;
}
.article_card_img{
    width: 100%;
}
.article_card_img .bg{
    padding-bottom: 62%;
    transition: all .2s;
}
.article_card:hover .article_card_img .bg{
    opacity: .9;
}
.article_card_body {
    padding: 20px 12px 0 12px;
}
.article_card_title {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 8px;
    font-weight: 600;
}
.article_card_body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
    color: var(--font-color3);
    font-size: 14px;
}
.article_card_info{
    position: relative;
    padding-top: 12px;
}
.article_card_info::before{
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--font-color3);
    left: calc(50% - 12px);
}
.article_card_info .article_info{
    margin-top: 12px;
}
.article_card .article_info{
    text-align: center;
}
.article_info{
    color: var(--font-color2);
    font-size: 14px;
    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{
    padding-bottom: 8px;
}
.article_inventory_content{
    display: flex;
    flex-wrap: wrap;
}
.article_inventory_img{
    flex: 1;
    padding-top: 4px;
}
.article_inventory_img .bg{
    padding-bottom: 62%;
}
.article_inventory_body{
    max-width: 716px;
    padding-right: 16px;
}
.article_inventory_title{
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 8px;
    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-color3);
    font-size: 14px;
}
.article_inventory .article_card_info::before {
    left: 0;
}
/*商品卡片*/
.product_card_list{
    margin-bottom: -48px;
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    flex-wrap: wrap;
}
.product_card_item{
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
    width: 25%;
}
.putin_cart_btn{
    margin-top: 20px;
    width: 100%;
    height: 30px;
    border-radius: 4px;
    background-color: var(--brand-main-color);
    color: #fff;
    padding: 0;
    display: none;
}
.product_card_body{
    padding-top: 16px;
}
.product_card_img_box{
    position: relative;
}
.putin_cart_onimg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: all .2s;
    background-color: rgb(0 0 0 / 50%);
}
.product_card:hover .putin_cart_onimg{
    z-index: 3;
    opacity: 1;
}
.putin_cart_onimg_btn{
    position: absolute;
    height: 40px;
    background-color: var(--bg-color);
    color: var(--font-color2);
    width: calc(100% - 32px);
    border-radius: 4px;
    top: calc(100% - 56px);
}
.putin_cart_onimg_btn i{
    margin-right: 4px;
}
.product_card_img{
    position: relative;
    height: 0;
    padding-bottom: 100%;
    background-color: var(--bg-color);
    z-index: 2;
}
.product_card_img img{
    position: absolute;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    transition: all .2s;
}
.product_card:hover .product_card_img img{
    opacity: .9;
}
.product_card_title{
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
}
.product_prict{
    margin-top: 4px;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}
.original_price{
    font-weight: 600;
    color: var(--brand-main-color);
}
.special_price{
    font-weight: 600;
    color: var(--brand-main-color);
}
.special_price+.original_price{
    color: var(--font-color3);
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    text-decoration: line-through;
}
/*活動卡片*/
.news_card_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -48px;
}
.news_card_item{
    width: 33.333%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
}
.news_card{
    display: block;
    /* border: solid 1px var(--border-color);
    padding: 10px; */
    border: solid 1px var(--bg-color);
    padding: 8px 8px 12px 8px;
}
.news_card_img {
    position: relative;
    height: 0;
    padding-bottom: 47%;
}
.news_card_img img {
    position: absolute;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    transition: all .2s;
}
.news_card:hover .news_card_img img {
    opacity: .9;
}
.news_card_title{
    margin-top: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 8px;
}
.news_card_body{
    padding-left: 12px;
    padding-right: 12px;
}
.news_card_body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    color: var(--font-color3);
    font-size: 14px;
}
.news_card_time{
    color: var(--font-color2);
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}
.news_card_time i{
    margin-right: 4px;
}
/*關鍵字*/
.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{
    color: var(--font-color);
    font-weight: 500;
}
.tag_list span.txt::after{
    content: "：";
}
.tag_link{
    background-color: var(--bg-color);
    /* color: #fff; */
    line-height: 24px;
    padding: 4px 16px 2px 16px;
    border-radius: 24px;
    display: flex;
    font-weight: 600;
}
/* .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);
}
/*編輯器內容*/
.from_ckeditor{
    width: 100%;
}
.from_ckeditor p{
    font-size: 17px;
    letter-spacing: 0.1rem;
    text-align: justify;
}
.from_ckeditor h2{
    font-weight: 500;
    color: var(--brand-main-color);
    margin-bottom: 16px;
}
.from_ckeditor h3{
    font-weight: 500;
    color: var(--brand-main-color);
    margin-bottom: 16px;
}
.from_ckeditor h4{
    font-weight: 600;
    margin-bottom: 8px;
}
.from_ckeditor figure{
    margin: 4px 0;
}
.from_ckeditor figure img{
    width: 100%;
}
.from_ckeditor .text-small {
    font-size: 14px;
}
.from_ckeditor .text-tiny {
    font-size: 12px;
}
.from_ckeditor ul, .from_ckeditor ol{
    margin-bottom: 0;
    padding-left: 2.3rem;
}
.from_ckeditor li{
    font-size: 17px;
    letter-spacing: 0.1rem;
}
.from_ckeditor li+li{
    margin-top: 8px;
}
.from_ckeditor a{
    color: var(--danger-color);
    border-bottom: solid 1px var(--danger-color);
}
.from_ckeditor blockquote{
    border-left: solid 4px var(--brand-main-color);
    padding: 20px 24px;
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.from_ckeditor .ck-widget__type-around__button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: calc(var(--ck-z-default) + 2);
}
.from_ckeditor .ck-widget__type-around__button svg {
    width: 10px;
    height: 8px;
    transform: translate(-50%,-50%);
    transition: transform .5s ease;
    margin-top: 1px;
}
/*分享列*/
.share_list_box{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 64px;
}
.share_list_box p{
    display: flex;
    align-items: center;
    font-weight: 600;
}
.share_list_box p::after{
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--brand-main-color);
    margin-left: 16px;
    margin-right: 12px;
}
.share_list{
    margin-left: 16px;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.share_item{
    font-size: 30px;
}
.share_item i{
    display: flex;
    align-items: center;
    justify-content: center;
}
.share_item img{
    width: 30px;
}
.share_item+.share_item{
    margin-left: 20px;
}
.share_item .copy_link{
    cursor: pointer;
}
.share_item .copy_link:hover{
    color: var(--font-color2);
}
/*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);
}
/*首頁-banner*/
.banner_box{
    margin-top: 32px;
    margin-bottom: 100px;
}
.banner_Swiper_itme{
    display: block;
}
.banner_Swiper_itme .bg{
    padding-bottom: 47%;
}
.banner_Swiper .swiper-pagination-bullet{
    background-color: #e5e5e5;
    width: 10px;
    height: 10px;
    opacity: 1;
    margin-left: 5px;
    margin-right: 5px;
    border: solid 1px var(--brand-main-color);
}
.banner_Swiper .swiper-pagination-bullet-active{
    border: none;
    background-color: var(--brand-main-color);
}
/*廣告圖*/
.ad_item img{
    width: 100%;
}
/*圖片連結*/
.link_card_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -48px;
}
.link_card_item{
    width: 33.333%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 48px;
}
.link_card_img{
    position: relative;
    height: 0;
    padding-bottom: 47%;
}
.link_card_img img{
    position: absolute;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    max-width: 100%;
    transition: all .2s;
}
.link_card:hover .link_card_img img{
    opacity: .9;
}
.link_card_title{
    margin-top: 20px;
    text-align: center;
    line-height: 1.3;
    font-weight: 400;
    color: var(--brand-main-color);
}
/*部落格*/
.blog_block_box+.blog_block_box{
    margin-top: 100px;
}
/*文章分類列表*/
.blog_class_page .article_card_list{
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
}
.blog_class_title{
    margin-top: 56px;
}
/*文章內容頁*/
.article_container header{
    margin-top: 64px;
    margin-bottom: 48px;
}
.article_title{
    text-align: center;
    font-weight: 400;
    font-family: "Montserrat", "Microsoft JhengHei";
    letter-spacing: 0.1rem;
    line-height: 1.5;
}
.article_container .article_info{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.article_container .article_info::before{
    position: absolute;
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--font-color3);
    left: calc(50% - 16px);
    top: -12px;
}
.article_img{
    margin-top: 48px;
}
.article_img .bg{
    padding-bottom: 62%;
}
.recommend_article_box{
    margin-top: 116px;
}
/*商品列表頁*/
.product_page_banner{
    margin-top: 32px;
    margin-bottom: 100px;
}
.product_page_banner img{
    width: 100%;
}
.search_results_order .my_select{
    margin-left: auto;
}
.search_results{
    margin-bottom: 32px;
    align-items: center;
}
/*商品內容頁*/
.product_content_row{
    padding-top: 32px;
}
.product_info{
    padding-left: 8px;
}
.product_info h1 {
    font-weight: 600;
    font-family: "Montserrat", "Microsoft JhengHei";
    letter-spacing: 0.1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.product_description{
    white-space: pre-line;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
    margin-top: 20px;
    margin-bottom: 24px;
}
.product_price .special{
    font-weight: 600;
    font-size: 20px;
    color: var(--danger-color);
}
.product_price .original{
    font-weight: 600;
    color: var(--font-color);
    font-size: 20px;
}
.product_price .special+.original{
    font-weight: 600;
    color: var(--font-color3);
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
}
.product_specification_item+.product_specification_item {
    margin-top: 24px;
}
.product_specificatiton_title {
    font-size: 14px;
    margin-bottom: 8px;
}
.product_specificatiton_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -8px;
}
.specificatiton_item {
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
.specificatiton_item_btn {
    border: solid 1px var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--font-color2);
    padding: 8px 20px;
    cursor: pointer;
    transition: all .2s;
}
.specificatiton_item_btn:hover {
    border: solid 1px var(--brand-main-color);
}
.specificatiton_item_btn.active, .specificatiton_item_btn.active:hover {
    border: solid 1px var(--brand-main-color);
    background-color: var(--brand-main-color);
    color: #fff;
}
.product_count {
    margin-top: 24px;
}
.product_count_title {
    font-size: 14px;
    margin-bottom: 8px;
}
.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: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 0;
}
.count_dash .btn:hover, .count_plus .btn:hover {
    background-color: var(--bg-color);
    box-shadow: none;
}
.count_number {
    width: 80px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    border-left: solid 1px var(--border-color);
    border-right: solid 1px var(--border-color);
}
.additional_box{
    border: solid 1px var(--border-color);
    margin-top: 24px;
}
.additional_title{
    background-color: var(--bg-color);
    padding: 8px 16px;
    font-size: 14px;
}
.additional_list{
    padding: 0 16px;
}
.additional_item {
    display: grid;
    grid-template-columns: 36px 80px auto;
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-color);
}
.additional_item+.additional_item{
    border-bottom: 0;
}
.additional_checkbox{
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 3;
    align-items: center;
}
.additional_item .product_card_img{
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}
.additional_item_title{
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
    padding-left: 12px;
}
.additional_item_price{
    grid-column-start: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    padding-left: 12px;
}
.product_buy{
    margin-top: 24px;
}
.producg_keep{
    margin-top: 16px;
}
.product_pic_swiper_box{
    padding-right: 8px;
}
.product_pic_swiper_2 {
    width: 100%;
}
.product_pic_swiper_2 .swiper-slide{
    width: 100%;
}
.product_pic_swiper_2 .swiper-slide .img{
    position: relative;
    padding-bottom: 100%;
    height: 0;
}
.product_pic_swiper_2 .swiper-slide .img img{
    position: absolute;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    max-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 {
    display: none;
}
.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;
    background-image: url(../img/icon/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.product_pic_swiper_box .swiper-button-prev{
    left: 12px;
    background-image: url(../img/icon/chevron-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.product_tag{
    margin-top: 48px;
}
.product_present_box{
    margin-top: 100px;
}
.recommend_product_box{
    margin-top: 100px;
}
.product_present_tab{
    border-bottom: solid 2px var(--bg-color);
}
.product_present_tab .nav-item{
    flex: 1;
}
.product_present_tab .nav-link{
    width: 100%;
    margin-bottom: 0;
    border: none;
    color: var(--font-color3);
    padding: 0 12px 12px 12px;
    font-size: 18px;
    letter-spacing: 0.1rem;
    line-height: 1.2;
}
.product_present_tab .nav-link.active{
    position: relative;
    border: none;
    background-color: #fff;
    color: var(--font-color);
    font-weight: 500;
}
.product_present_tab .nav-link.active::before{
    content: "";
    position: absolute;
    height: 3px;
    width: 32px;
    bottom: 0;
    left: calc(50% - 16px);
    background-color: var(--brand-main-color);
}
.product_present_tab .nav-link:hover{
    border: none;
    background-color: #fff;
}
.product_present_tabcontent{
    padding-top: 56px;
}
/*購物車*/
.order_step_box{
    padding-top: 48px;
}
.order_step {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px;
}
.order_step_item {
    width: fit-content;
    padding-left: 8px;
    padding-right: 8px;
}
.between_order_step {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
}
.order_step_item_content {
    position: relative;
}
.order_step_item_num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}
.order_step_item.active .order_step_item_num {
    background-color: var(--brand-main-color);
}
.order_step_item_txt {
    position: absolute;
    bottom: -28px;
    word-break: keep-all;
    width: 96px;
    left: -32px;
    text-align: center;
    color: var(--font-color3);
    font-size: 14px;
}
.order_step_item.active .order_step_item_txt {
    color: var(--font-color);
    font-weight: 500;
}
.cart_product_table {
    margin-top: 64px;
    border: solid 1px var(--border-color);
}
.simple_bg_title{
    padding-bottom: 10px;
    padding-top: 12px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: var(--bg-color);
}
.product_table_row {
    display: flex;
    align-items: center;
}
.product_table_row>div {
    padding: 12px 8px;
}
.product_table_img {
    width: 96px;
}
.product_table_name {
    flex: 1;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
}
.product_table_price {
    width: 10%;
}
.product_table_count {
    width: 192px;
    text-align: center;
}
.product_table_subtotal {
    width: 10%;
}
.product_table_delete {
    width: 120px;
    text-align: right;
}
.product_table_delete .btn{
    font-size: 14px;
    color: var(--font-color2);
}
.product_table_delete .btn i{
    font-size: 16px;
    margin-right: 8px;
}
.cart_product_table_header{
    border-bottom: solid 1px var(--border-color);
    padding: 0 8px;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
}
.cart_product_table_body{
    padding: 0 8px;
}
.cart_product_table_body .product_table_row+.product_table_row{
    border-top: solid 1px var(--border-color);
}
.discount_accord{
    margin-top: 32px;
    border: solid 1px var(--border-color);
}
.discount_accord_list{
    padding: 16px 16px 16px 36px;
    margin-bottom: 0;
}
.discount_accord_item+.discount_accord_item{
    margin-top: 16px;
}
.cart_order_price{
    margin-top: 32px;
    border: solid 1px var(--border-color);
    padding-bottom: 16px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}
.cart_order_price_row{
    padding: 0 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart_go_nextstep{
    margin-top: 24px;
}
.cart_go_nextstep .two_btn{
    justify-content: flex-end;
}
.discount_accord_remind{
    margin-top: 32px;
}
.cart_noitem{
    margin-top: 100px;
}
.cart_noitem_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px auto;
    font-size: 60px;
    background-color: var(--bg-color);
    border-radius: 16px;
    color: var(--font-color3);
}
.cart_noitem_txt{
    text-align: center;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 500;
}
.cart_noitem_btn .btn{
    margin-left: auto;
    margin-right: auto;
}
.cart_login_btn{
    display: flex;
    align-items: center;
}
.cart_dashboard{
    margin-top: 32px;
    border: solid 1px var(--border-color);
}
.cart_dashboard_body{
    padding: 8px 16px;
}
.order_data_row{
    padding: 16px 8px;
}
.order_data_row:not(:last-child){
    border-bottom: solid 1px var(--border-color);
}
.order_data_title{
    margin-bottom: 6px;
    font-size: 15px;
}
.order_data_title .red{
    margin-left: 4px;
    color: var(--danger-color);
}
.order_data_txt{
    flex: 1;
}
.order_data_title_tips{
    font-size: 14px;
    color: var(--font-color2);
}
.cart_login_btn{
    padding: 16px 8px 0 8px;
    font-weight: 600;
}
.cart_login_btn .btn{
    margin-left: 16px;
}
.order_data_txt.store_711{
    display: flex;
    align-items: center;
}
.store_711_btn{
    margin-right: 16px;
}
.payway{
    padding: 16px 8px;
}
.for_atm{
    padding: 8px 8px 16px 8px;
}
.for_atm .red{
    color: var(--danger-color);
    margin-right: 4px;
}
.receipt{
    padding: 16px 8px;
}
.product_list_lastcheck{
    margin-top: 64px;
}
.product_list_lastcheck_title{
    position: relative;
    cursor: pointer;
}
.product_list_lastcheck_arrow{
    position: absolute;
    width: 50%;
    top: 0;
    right: 0;
    padding: 12px 16px;
    text-align: right;
}
.product_list_lastcheck_arrow img{
    width: 14px;
}
.product_list_lastcheck_body{
    padding: 0;
    height: 0;
    overflow: hidden;
}
.product_list_lastcheck .cart_product_table{
    margin-top: 0;
    border: none ;
}
.toteitem .form-check-label{
    flex: 1;
    display: flex;
    align-items: center;
}
.toteitem{
    padding: 16px 8px 16px 32px;
}
.toteitem:hover{
    background-color: var(--bg-color);
}
.toteitem .form-check-label .totefee{
    margin-left: 16px;
    font-weight: 600;
}
/*完成訂單*/
.order_success_content{
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    padding: 24px 24px 32px 24px;
    border: solid 1px var(--border-color);
    border-radius: 16px;
}
.order_success_content_icon {
    margin-bottom: 16px;
    text-align: center;
}
.order_success_content_icon img{
    width: 60px;
}
.order_success_content h4{
    margin-bottom: 12px;
    text-align: center;
}
.order_success_content_txt{
    text-align: center;
    margin-bottom: 40px;
}
.order_success_content_txt a{
    border-bottom: solid 1px var(--brand-main-color);
    color: var(--brand-main-color);
    font-weight: 600;
    margin-left: 4px;
    margin-right: 4px;
}
.order_success_order_btn .two_btn{
    justify-content: center;
}
/*最新消息內容*/
.news_img {
    margin-top: 48px;
}
.news_img img{
    max-width: 100%;
}
/*搜尋結果頁*/
.search_page_input_box{
    margin-top: 32px;
    margin-bottom: 56px;
    border-bottom: solid 1px var(--font-color3);
    display: flex;
    align-items: center;
}
.search_page_input_txt{
    position: relative;
}
.search_page_input_txt::after{
    content: "‧";
    animation: search_page_input_txt_a 1.5s linear infinite;
}
@keyframes search_page_input_txt_a {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}
.search_page_input_box input{
    flex: 1;
    padding: 0 8px;
    font-size: 28px;
    line-height: 1.5;
}
.search_page_input_box input, 
.search_page_input_box input:hover, 
.search_page_input_box input:focus{
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}
.search_clean_btn{
    font-size: 20px;
    color: var(--font-color3);
    margin-right: 8px;
}
.search_page_input_box .search_input_btn{
    font-size: 20px;
}
.search_article_page .my_container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
/*聯絡我們*/
.contactus_form .my_textarea{
    min-height: 150px;
}
.contactus_form .my_form{
    margin-left: auto;
    margin-right: auto;
}
.contact_info .office_info_list{
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg-color);
    padding: 28px 24px;
}
/*404*/
.error_content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 128px;
    border-bottom: solid 2px var(--bg-color);
    padding-bottom: 100px;
}
.error_page .recommend_article_box {
    margin-top: 100px;
}
.error_txt{
    width: 50%;
    padding: 24px 48px;
}
.error_txt h3{
    margin-bottom: 16px;
}
.error_txt p a{
    margin-left: 4px;
    margin-right: 4px;
    border-bottom: solid 1px var(--brand-main-color);
}
.error_img{
    width: 50%;
    text-align: center;
}
.error_img img{
    max-width: 300px;
}
/*會員專區*/
.member_nav{
    width: 270px;
    border-right: solid 1px var(--border-color);
    padding-right: 32px;
}
.member_nav .nav{
    flex-direction: column;
}
.member_content{
    flex: 1;
    padding-left: 32px;
}
.member_nav .nav-link{
    padding: 12px 16px;
    color: var(--font-color);
    border-bottom: solid 1px #fff;
}
.member_nav .nav-link:hover, .member_nav .nav-link.active{
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.member_title{
    margin-bottom: 32px;
}
.member_title h1{
    font-size: 28px;
}
.member_data+.member_data{
    margin-top: 32px;
}
.member_data .my_form_btn .btn{
    margin-left: 0;
}
.member_data .my_form_row{
    display: flex;
}
.member_data .form-label{
    width: 140px;
}
.member_data p{
    flex: 1;
}
/*會員專區-追蹤清單*/
.product_keep_delete{
    position: absolute;
    right: 20px;
    top: 4px;
    z-index: 4;
    padding: 5px 8px 4px 8px;
    background-color: var(--bg-color);
    border-radius: 4px;
}
.product_keep_delete .btn {
    font-size: 14px;
    color: var(--font-color2);
    text-align: center;
    width: 100%;
}
.product_keep_delete .btn .icon{
    font-size: 16px;
}
/*會員專區-訂單查詢*/
.order_noitem_btn{
    margin-top: 24px;
}
.order_table_row{
    display: flex;
    align-items: center;
}
.order_table_row>div {
    padding: 12px 8px;
}
.cart_product_table.order_record{
    margin-top: 0;
}
.cart_product_table.order_record .cart_product_table_header {
    background-color: var(--bg-color);
}
.cart_product_table_body .order_table_row+.order_table_row {
    border-top: solid 1px var(--border-color);
}
.order_table_date {
    width: 150px;
}
.order_table_id {
    flex: 1;
}
.order_table_price {
    width: 150px;
    text-align: center;
}
.order_table_status {
    width: 150px;
    text-align: center;
}
.order_table_link{
    width: 120px;
    text-align: right;
}
.order_table_link .btn {
    font-size: 14px;
    color: var(--font-color2);
}
.order_table_link .btn .icon {
    margin-right: 6px;
}
.order_record_row{
    font-size: 15px;
}
.order_record_row>div{
    padding: 8px 16px;
}
.order_record_goback{
    margin-top: 24px;
}
.order_record_goback .btn{
    margin-left: auto;
}
.order_status {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}
.order_status_item{
    flex: 1;
    text-align: center;
}
.order_status_item_point{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.order_status_item_point::before{
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
}
.order_status_item_point::after{
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
}
.order_status_item:first-child .order_status_item_point::before,
.order_status_item:last-child .order_status_item_point::after{
    background-color: transparent;
}
.order_status_item_point .icon{
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--border-color);
    border-radius: 50%;
}
.order_status_item.active .order_status_item_point .icon{
    background-color: var(--green-color);
}
.order_status_item_txt {
    word-break: keep-all;
    color: var(--font-color3);
    font-size: 14px;
}
.order_status_item.active .order_status_item_txt .statue{
    color: var(--font-color);
    font-weight: 500;
}
.cart_dashboard.order_record_content .product_list_lastcheck_body{
    padding: 0;
    height: auto;
    overflow: initial;
}
.cart_dashboard.order_record_content{
    margin-top: 32px;
}