@charset "utf-8";
html{
    margin: 0;
    height: 100%;
}
body {
    margin: 0;
    height: 100%;
    font-family: "Microsoft JhengHei", Arial, Helvetica;
    font-size:16px;
    color:var(--font-color);
    letter-spacing: 0.05em;
}
a {
    color: var(--font-color);
    text-decoration: none;
}
a:hover {
    color: var(--font-color2);
    text-decoration: none;
}
h1{
    font-size: 40px;
    letter-spacing: 0;
}
h2{
    font-size: 34px;
    letter-spacing: 0;
}
h3{
    font-size: 24px;
    line-height: 1.5;
}
h4{
    font-size: 20px;
    line-height: 1.5;
}
h5{
    font-size: 18px;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, p{
    margin-bottom:0;
}
p{
    line-height: 1.7;
}
button {
    border: 0;
    background-color: transparent;
}
input, textarea{
    box-shadow: none;
    -webkit-appearance: none;  /* Safari*/
    -moz-appearance: none;     /* FireFox */
    appearance: none;
}
input:focus, textarea:focus{
    outline: none !important;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color3) !important;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color3) !important;
}
input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color3) !important;
}
select{
    font-size: 1rem;
}
select:focus{
    outline: none !important;
}
.bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg img {
    display: none;
}
.font_bold{
    font-weight: 600;
}
.row{
    margin-left: -16px;
    margin-right: -16px;
}
.row>*{
    padding-left: 16px;
    padding-right: 16px;
}
.my_container{
    padding-left: 100px;
    padding-right: 100px;
    margin-left: auto;
    margin-right: auto;
}
.article_container{
    width: 100%;
    max-width: 732px;
    padding-left: 16px;
    padding-right: 16px;
}
main{
    min-height: calc(100vh - 174px - 190px);
}
.main_pt{
    padding-top: 80px;
}
.main_pb{
    padding-bottom: 100px;
}
.show_model{
    padding: 64px 0;
}
/*吐司*/
.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: 6px;
}
.my_toast .toast-body {
    padding: 16px 24px;
    max-width: 100%;
    text-align: center;
    display: flex;
    align-items: 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;
    color: #fff;
}
.my_toast .toast.success_msg{
    background-color: var(--green-color);
}
.toast_icon{
    font-size: 30px;
    margin-right: 16px;
    color: #fff;
}
.my_toast button{
    color: #fff;
}
/*分享列*/
.share_list_box{
    margin-top: 48px;
    border: dotted 2px var(--font-color3);
    padding: 16px;
}
.share_list_box .txt{
    padding: 0 8px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
    background-color: var(--second-color2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.share_list{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
.share_item{
    font-size: 30px;
}
.share_item+.share_item{
    margin-left: 20px;
}
.share_item a{
    color: var(--font-color2);
}
.share_item a:hover{
    color: var(--font-color);
}
.share_item i{
    display: flex;
}
/*輪播左右按鈕*/
.swiper-button-next, .swiper-button-prev{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: solid 1px var(--main-color);
    background-color: rgb(255 255 255 / 50%);
}
.swiper-button-next img, .swiper-button-prev img{
    width: 20px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
/*更多連結*/
.more_link{
    margin-top: 48px;
}
.more_link .btn{
    margin-left: auto;
    margin-right: auto;
}
/*頁面標題*/
.page_title{
    margin-bottom: 32px;
}
.page_title .en{
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px #fff
}
.page_title h1{
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
}
.page_title.center{
    text-align: center;
}
.page_title_bg{
    height: 270px;
    border-radius: 24px;
    background-image: url(../img/banner-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.page_title_bg .page_title{
    height: 100%;
    background-color: #fff;
    /* background: linear-gradient(to right, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 100%); */
    padding: 24px 48px 32px 48px;
    width: fit-content;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*麵包屑*/
.breadcrumb_box{
    background-color: var(--border-color);
    width: fit-content;
    padding: 4px 8px;
    margin-bottom: 48px;
}
.breadcrumb_box .breadcrumb{
    margin-bottom: 0;
}
.breadcrumb_box.center{
    margin-left: auto;
    margin-right: auto;
}
.breadcrumb_box .breadcrumb-item, .breadcrumb_box .breadcrumb-item a{
    font-size: 14px;
    color: var(--font-color3);
}
.breadcrumb_box .breadcrumb-item.active, .breadcrumb_box .breadcrumb-item.active a{
    color: var(--font-color2);
    font-weight: 600;
}
.breadcrumb_box .breadcrumb-item+.breadcrumb-item::before {
    color: var(--font-color3);
}
/*區塊標題*/
.block_title{
    margin-bottom: 40px;
    color: var(--font-color2);
}
.block_title .img{
    text-align: center;
    margin-bottom: 8px;
}
.block_title .img img{
    max-width: 100%;
}
.block_title .en{
    width: fit-content;
    position: relative;
    font-size: 60px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    line-height: 1.3;
    font-weight: 600;
}
.block_title .en::before{
    content: "";
    position: absolute;
    left: -10px;
    bottom: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--main-color2);
}
.block_title.green .en::before{
    background-color: var(--second-color2);
    left: auto;
    right: -6px;
}
.block_title h2{
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color2);
}
.block_title.center{
    text-align: center;
}
.block_title.center .en{
    margin-left: auto;
    margin-right: auto;
}
.block_title_xs{
    margin-bottom: 40px;
}
.block_title_xs h2{
    position: relative;
    font-weight: 600;
    color: var(--font-color2);
    letter-spacing: 0.05em;
    width: fit-content;
}
.block_title_xs h2::before {
    content: "";
    position: absolute;
    left: -8px;
    bottom: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--main-color2);
}
.block_title_xs.center h2{
    margin: 0 auto;
} 
.block_title_xs h2::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--main-color2);
}
.block_title_xs.center h2::after{
    left: 50%;
    transform: translateX(-50%);
    right: auto;
} 
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    z-index: 2000;
    overflow: hidden;
}
.loader span{
    position: relative;
    display: block;
    width:  48px;
    height: 48px;
    background: var(--main-color);
    transform: rotateX(65deg) rotate(45deg);
    color: var(--main-color2);
    animation: layers1 1s linear infinite alternate;
}
.loader span:after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--second-color2);
    animation: layerTr 1s linear infinite alternate;
}
@keyframes layers1 {
    0% { box-shadow: 0px 0px 0 0px  }
    90% , 100% { box-shadow: 20px 20px 0 -4px  }
}
@keyframes layerTr {
    0% { transform:  translate(0, 0) scale(1) }
    100% {  transform: translate(-25px, -25px) scale(1) }
}    
/*header*/
.page_header{
    width: 100%;
    background-color: #fff;
    z-index: 1002;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 6px;
}
.header_box{
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    height: 84px;
    padding-top: 0;
    padding-bottom: 0;
}
.header_box>*{
    height: 100%;
}
.header_logo {
    width: fit-content;
}
.header_logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
.header_logo a img{
    height: 80px;
}
.header_nav{
    flex: 1;
    height: 100%;
}
.header_nav .nav{
    height: 100%;
    justify-content: flex-end;
    margin-left: -16px;
    margin-right: -16px;
}
.header_nav .nav-item{
    padding-left: 16px;
    padding-right: 16px;
    height: 100%;
    display: flex;
    align-items: center;
}
.header_nav .nav-link{
    position: relative;
    height: 100%;
    color: var(--font-color2);
    padding: 0 10px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
}
.header_nav .nav-link::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background-color: var(--main-color);
    transition: all .2s;
}
.header_nav .nav-link:hover::before,
.header_nav .nav-link.active::before{
    height: 20px;
}
.header_nav .nav-link::after{
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: 0;
    transition: all .2s;
}
.header_nav .nav-link:not([class~=active]):hover::after{
    animation: header_navpoint_a .2s forwards;
    animation-delay:.2s;
}
@keyframes header_navpoint_a {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.header_nav .nav-link.active{
    font-weight: 600;
}
.header_nav .nav-link.active::after{
    opacity: 1;
}
.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{
    margin-left: 46px;
}
.header_right .nav{
    justify-content: flex-end;
    height: 100%;
}
.header_right .nav-item{
    display: flex;
    align-items: center;
    height: 100%;
}
.header_right .nav-link{
    padding: 0;
    border: 0;
    width: 20px;
    height: 20px;
    display: flex;
}
.header_right .nav-item+.nav-item{
    margin-left: 20px;
}
.header_right .nav-link img{
    width: 20px;
}
.header_right .nav-link:focus{
    box-shadow: none;
}
.header_right .nav-link:focus-visible{
    outline: none;
}
.header_right .nav .nav-item.cart{
    position: relative;
}
.header_right .nav .nav-item.cart .nav-link{
    position: relative;
}
.header_right .nav .nav-item.cart span{
    position: absolute;
    top: -10px;
    right: -8px;
    background-color: var(--red-color);
    color: #fff;
    font-size: 13px;
    border-radius: 5px;
    padding: 0 4px 0 5px;
    letter-spacing: 0;
    min-width: 16px;
    font-family: monospace;
    line-height: 1.2;
}
.mobile_menu_btn{
    display: none;
}
.mobile_menu_btn .btn{
    position: relative;
    padding: 0;
    width: 20px;
    height: 20px;
}
.mobile_menu_btn .btn:focus{
    box-shadow: none;
}
.mobile_menu_btn .btn>div{
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--font-color);
    transition: all .2s;
}
.mobile_menu_btn .btn>div:nth-child(1){
    position: absolute;
    width: 20px;
    top: 2px;
}
.mobile_menu_btn .btn>div:last-child{
    position: absolute;
    width: 20px;
    bottom: 2px;
}
.mobile_menu_btn.active .btn>div:nth-child(2){
    width: 0;
}
.mobile_menu_btn.active .btn>div:nth-child(1){
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
    top: 8px;
}
.mobile_menu_btn.active .btn>div:last-child{
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotate(-45deg);
    bottom: auto;
    top: 8px;
}
.header_search{
    display: flex;
    align-items: center;
}
.header_search input{
    border: none;
    border-radius: 40px;
    height: 40px;
    font-size: 1rem;
    color: var(--font-color);
    background-color: #fff;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
    padding: 0 16px;
}
.header_search input:hover, .header_search input:focus{
    box-shadow: 0 1px 10px rgb(0 0 0 / 15%);
}
.header_search .form-select{
    width: 120px;
}
.header_search input.form-control{
    flex: 1;
}
.header_search .btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-color);
}
.header_search .btn:hover, .header_search .btn:focus{
    color: var(--bg-color);
}
.mobile_btn{
    display: none;
}
.under_page_header{
    height: 84px;
}
/* .page_header.zoom{
    position: fixed;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 10%);
    top: -100%;
    animation: page_header_a .2s forwards;
}
@keyframes page_header_a {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
} */
.header_cart_list_box{
    display: none;
    position: absolute;
    width: 270px;
    right: -16px;
    top: 60px;
    display: none;
    background-color: #fff;
    box-shadow: -3px 3px 6px -3px rgb(0 0 0 / 10%), 3px 3px 6px -3px rgb(0 0 0 / 10%);
    border-top: solid 4px var(--main-color2);
    z-index: 2020;
}
.page_header.zoom .header_cart_list_box{
    top: 80px;
}
.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: 64px 100px 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: 64px;
    margin-bottom: 0;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    border: solid 1px var(--border-color);
}
.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;
    font-weight: 600;
}
.header_cart_item_count {
    padding: 0 8px;
    grid-column-start: 2;
    grid-column-end: 2;
    font-size: 13.5px;
}
.header_cart_item_price {
    grid-column-start: 3;
    grid-column-end: 5;
    padding-left: 8px;
    color: var(--red-color);
    font-weight: 600;
    text-align: right;
}
.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%;
}
.header_right .nav-item.member_mobile{
    display: none;
}
.header_right .nav-item.member{
    position: relative;
}
.header_right .nav-item.member .nav-link{
    cursor: auto;
}
/*手機版選單*/
.mobile_sidebar {
    position: fixed;
    top: 72px;
    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 - 73px);
}
.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;
    border-left: solid 1px var(--border-color);
    margin-left: 23px;
    padding-left: 0;
}
.mobile_sidebar_list_lv2 .dropdown-item{
    padding: 12px 16px;
}
.mobile_sidebar_list_lv2 .dropdown-item:active,
.mobile_sidebar_list_lv2 .dropdown-item:hover{
    background-color: var(--bg-color);
    color: var(--font-color);
}
/*手機版搜尋*/
.mobile_search {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    background-color: var(--main-color);
    width: 100%;
    height: 0px;
    overflow: hidden;
}
.mobile_search_group {
    display: flex;
}
.mobile_search_group .form-select {
    margin-top: 15px;
    padding: 0 12px;
    line-height: 42px;
    border: none;
    height: 42px;
    width: 140px;
    color: #fff;
    box-shadow: none !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/caret-down-fill.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(--border-color) !important;
}
.mobile_search_input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--border-color) !important;
}
.mobile_search_input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--border-color) !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: #fff;
}
.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{
    background-image: none;
    font-size: 24px;
    padding: 0;
    margin: 0;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: 1;
}
.search_offcanvas .offcanvas-header .btn-close:focus{
    box-shadow: none;
}
.search_title{
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    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: 600px;
    margin: 0 auto;
    padding: 48px 64px;
    background-color: var(--bg-color);
    border-radius: 24px;
}
.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 .modal-header{
    height: 80px;
    justify-content: end;
    border-bottom: none;
}
#login_Modal .modal-header .btn-close {
    background-image: none;
    font-size: 24px;
    padding: 0;
    margin: 0;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: 1;
}
#login_Modal .modal-header .btn-close:focus {
    box-shadow: none;
}
.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
}
/* .login_modal_block_title::before{
    content: "";
    height: 32px;
    flex: 1;
    background-image: url(../img/page-title-left.png);
    background-repeat: no-repeat;
    background-position: center right;
    margin-right: 40px;
}
.login_modal_block_title::after{
    content: "";
    height: 32px;
    flex: 1;
    background-image: url(../img/page-title-right.png);
    background-repeat: no-repeat;
    background-position: center left;
    margin-left: 40px;
} */
.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: 20px;
    margin-bottom: 12px;
}
.btn_google{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_google img {
    width: 20px;
    margin-right: 8px;
}
.btn_google i{
    margin-right: 12px;
    color: var(--main-color);
}
.error_or {
    position: relative;
    margin-top: 16px;
    margin-bottom: 16px;
    height: 24px;
    color: var(--border-color);
    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{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 64px;
    background-color: var(--bg-color);
    border-radius: 24px;
}
.login_modal_msg{
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
.success_icon{
    margin-bottom: 8px;
    text-align: center;
    font-size: 48px;
    color: var(--second-color);
}
.success_content .my_form_btn .btn{
    margin: 0 auto;
}
/*會員手機選單*/
.header_member_nav_box {
    display: none;
    position: absolute;
    width: 200px;
    right: -16px;
    top: 36px;
    display: none;
    background-color: #fff;
    box-shadow: -3px 3px 6px -3px rgb(0 0 0 / 10%), 3px 3px 6px -3px rgb(0 0 0 / 10%);
    border-top: solid 4px var(--main-color2);
    z-index: 2020;
}
.header_right .nav-item.member:hover .header_member_nav_box {
    display: block;
}
.header_member_nav {
    list-style: none;
    margin: 0;
    padding: 0 12px;
}
.header_member_nav li a{
    display: block;
    font-size: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-color);
}
.header_modal_nav {
    padding: 12px 0;
    list-style: none;
}
.header_modal_nav a {
    display: block;
    padding: 12px 16px;
    border-bottom: solid 1px var(--bg-color);
    font-weight: 500;
}
#membernav_Modal .modal-fullscreen .modal-body {
    padding: 0;
}
#membernav_Modal .modal-header .btn-close{
    background-image: none;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    opacity: 1;
}
#membernav_Modal .modal-header .btn-close:focus{
    box-shadow: none;
}
/*footer*/
.page_footer{
    background-color: #fff;
    padding-top: 40px;
    color: var(--font-color2);
    border-top: solid 1px var(--main-color);
}
.page_footer a{
    color: var(--font-color);

}
.page_footer a:hover, .page_footer a:focus{
    color: var(--font-color);
}
.footer_link{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}
.footer_logo img{
    height: 52px;
}
.office_info_list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: 32px;
    margin-bottom: -8px;
    margin-left: -16px;
    margin-right: -16px;
    font-size: 14px;
}
.office_info_item{
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
}
.office_info_title{
    word-break: keep-all;
}
/* .office_info_item+.office_info_item {
    margin-top: 16px;
} */
.footer_nav{
    flex: 1;
    /* margin-left: 200px; */
    margin-bottom: 40px;
}
.footer_nav .nav{
    margin-left: -32px;
    margin-right: -32px;
    margin-bottom: -16px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer_nav li{
    position: relative;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 16px;
}
.footer_nav li+li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    width: 1px;
    background-color: var(--font-color2);
    z-index: 2;
}
.footer_nav li a{
    position: relative;
    padding: 0;
    z-index: 3;
}
.footer_nav li:hover::after{
    content: "";
    width: 16px;
    height: 16px;
    top: -16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/icon/ic--round-play-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.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 .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{
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: var(--main-color2);
    text-align: center;
    font-size: 14px;
}
.office_info+.footer_social{
    justify-content: flex-start;
    margin-top: 24px;
}
.footer_social{
    width: 200px;
}
.footer_social .nav{
    justify-content: center;
}
.footer_social .nav-item{
    width: 30px;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 24px;
}
.footer_social .nav-link{
    padding: 0;
}
.footer_social img{
    width: 100%;
}
/*按鈕並排*/
.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_fancy_btn{
    position: relative;
    border: none;
    background-color: var(--font-color2);
    font-size: 18px;
    letter-spacing: 0.05em;
    height: 56px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0;
    width: fit-content;
    min-width: 200px;
    transition: all .2s;
}
.maincolor_fancy_btn span{
    position: relative;
    z-index: 3;
}
.maincolor_fancy_btn::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-image: url(../img/btn-border.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: all .1s;
    z-index: 1;
}
.maincolor_fancy_btn:hover, .maincolor_fancy_btn:focus{
    border: none;
    background-color: var(--font-color);
    color: #fff;
    box-shadow: -4px 4px 0 var(--second-color);
}
.maincolor_fancy_btn:hover::before, .maincolor_fancy_btn:focus::before{
    bottom: -5px;
    left: -5px;
    width: 100%;
}
/*按鈕-實心*/
.maincolor_btn{
    border: solid 1px var(--font-color2);
    background-color: var(--font-color2);
    font-size: 1rem;
    font-weight: 500;
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    min-width: 200px;
    transition: all .2s;
}
.maincolor_btn:hover, .maincolor_btn:focus{
    border: solid 1px var(--font-color);
    background-color: var(--font-color);
    color: #fff;
    box-shadow: none;
}
.maincolor_btn.radius{
    border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs{
    border: solid 1px var(--font-color2);
    background-color: var(--font-color2);
    font-size: 1rem;
    font-weight: 500;
    height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    width: fit-content;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_btn_xs:hover, .maincolor_btn_xs:focus{
    border: solid 1px var(--font-color);
    background-color: var(--font-color);
    color: #fff;
    box-shadow: none;
}
.maincolor_btn_xs.radius{
    border-radius: 40px;
}
/*按鈕-框線*/
.maincolor_border_btn{
    border: solid 1px var(--main-color2);
    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;
    min-width: 200px;
    transition: all .2s;
}
.maincolor_border_btn:hover, .maincolor_border_btn:focus{
    border: solid 1px var(--main-color);
    background-color: var(--main-color2);
    color: #fff;
    box-shadow: none;
}
.maincolor_border_btn.radius{
    border-radius: 48px;
}
/*按鈕-框線-xs*/
.maincolor_border_btn_xs{
    border: solid 1px var(--main-color2);
    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_border_btn_xs:hover, .maincolor_border_btn_xs:focus{
    border: solid 1px var(--main-color);
    background-color: var(--main-color2);
    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);
}
/*輸入框空值題示*/
.data_validate .my_input, .data_validate .my_textarea{
    border: solid 1px var(--red-color);
    padding: 8px 16px;
}
.data_validate::after{
    display: block;
    margin-left: 16px;
    padding-top: 8px;
    content: attr(data-validate);
    font-size: 14px;
    color: var(--red-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: 1px 1px 4px rgb(0 0 0 / 15%);
}
.my_input:disabled, .my_input:read-only{
    background-color: var(--border-color);
}
.my_input:disabled:hover, .my_input:read-only, .my_input:disabled:focus{
    box-shadow:none;
    border: solid 1px var(--border-color);
}
/*單行輸入框-主色框*/
.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;
    padding: 8px 16px;
    background-color: #fff;
    font-size: 1rem;
    color: var(--font-color);
    transition: all .2s;
}
.my_textarea:hover, .my_textarea:focus{
    border: solid 1px var(--font-color2);
    box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.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;
    font-size: 1rem;
    color: var(--font-color);
    min-width: 100px;
    max-width: 200px;
    appearance: none;
    background-image: url(../img/icon/caret-down-fill.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: 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;
}
/*日曆*/
.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;
    border-radius: 4px;
}
.ui-datepicker-calendar td a:hover{
    background-color: var(--bg-color);
}
.ui-datepicker-today a{
    background-color: var(--bg-color);
}
.ui-datepicker-calendar td a.ui-state-active{
    background-color: var(--main-color2);
}
/*彈窗*/
.my_modal .modal-content{
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border: none;
}
.my_modal .modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color2);
}
.my_modal .modal-header h5{
    font-weight: 600;
}
.my_modal .modal-header .btn-close{
    background-image: none;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    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: 16px 24px;
    border-top: 1px solid var(--border-color2);
}
/*簡單彈窗*/
.simple_modal .modal-dialog{
    max-width: 400px;
}
.simple_modal .modal-content{
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border: none;
}
.simple_modal .close_modal_btn{
    text-align: right;
}
.simple_modal .close_modal_btn .btn-close{
    background-image: none;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    opacity: 1;
}
.simple_modal .close_modal_btn .btn-close:focus{
    box-shadow: none;
}
.simple_modal .title{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.simple_modal .modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color2);
    justify-content: center;
}
/*表單*/
.my_form{
    max-width: 550px;
    margin-top: -20px;
}
.my_form_row{
    padding-top: 20px;
}
.my_form_row .form-label{
    font-size: 14px;
    color: var(--font-color2);
    margin-bottom: 6px;
    font-weight: 600;
}
.my_form_row .form-label .red{
    color: var(--red-color);
    margin-right: 2px;
    position: relative;
    top: 2px;
}
.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(--red-color);
}
/*文章列表*/
.article_card_list{
    margin-bottom: -32px;
}
.article_card_item{
    padding-bottom: 32px;
}
/*文章列表頁數*/
.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: 4px;
    box-shadow: none;
}
.page_box .page-link:hover, .page_box .page-link:focus{
    border: none;
    background-color: var(--bg-color);
}
.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;
}
/*活動消息列表*/
.news_list{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    z-index: 2;
}
.news_item+.news_item{
    margin-top: 4px;
}
.news_link{
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px var(--font-color3);
}
.news_link_date{
    font-weight: 600;
    margin-right: 40px;
}
.news_link_title{
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}
.news_link:hover .news_link_title{
    border-bottom: dotted 2px var(--main-color);
    margin-top: -2px;
}
/*服務項目卡片*/
.services_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -64px;
}
.services_item{
    width: 20%;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 64px;
}
.services_item .service_card{
    width: 100%;
}
.service_card{
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    transition: all .2s;
}
.service_card:hover{
    position: relative;
    transform: translateY(-16px);
}
.service_card_img{
    width: 116px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}
.service_card_img img{
    width: 100%;
}
.service_card_name{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}
.service_card_btn{
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px var(--main-color);
    border-radius: 28px;
    height: 28px;
    font-size: 14px;
    color: var(--font-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    background-color: rgb(255 255 255 / 80%);
}
/*案例卡片*/
.project_list{
    margin-bottom: -40px;
}
.project_item{
    padding-bottom: 40px;
}
.project_card_img .bg{
    padding-bottom: 62%;
}
.project_card_title{
    margin-top: 12px;
    text-align: center;
}
/*文章卡片*/
.article_card{
    box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: all .2s;
    padding-bottom: 16px;
}
.article_card:hover{
    box-shadow: 2px 2px 10px rgb(0 0 0 / 15%);
}
.article_card_img{
    width: 100%;
}
.article_card_img .bg{
    padding-bottom: 64%;
}
.article_card_body {
    padding: 12px 16px 0 16px;
}
.article_card_title {
    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-color2);
}
.article_card_info{
    padding-left: 16px;
    padding-right: 16px;
}
.article_card_info .article_info{
    margin-top: 12px;
}
.article_card .article_info{
    text-align: center;
}
.article_info{
    color: var(--font-color3);
    font-size: 14px;
}
.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{
    max-width: 700px;
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 16px;
}
.article_inventory_content{
    display: flex;
    flex-wrap: wrap;
}
.article_inventory_img{
    width: 150px;
    padding-top: 4px;
}
.article_inventory_img .bg{
    padding-bottom: 61%;
    border-radius: 4px;
}
.article_inventory_body{
    flex: 1;
    padding-right: 12px;
}
.article_inventory_title{
    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-color2);
}
.article_inventory .article_card_info{
    padding: 0;
}
/*關鍵字*/
.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);
}
/*編輯器內容*/
.from_ckeditor{
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.from_ckeditor p{
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: justify;
}
.from_ckeditor h2{
    font-weight: 600;
    color: var(--main-color-dark);
    margin-bottom: 8px;
}
.from_ckeditor h3{
    font-weight: 600;
    color: var(--main-color-dark);
    margin-bottom: 8px;
}
.from_ckeditor h4{
    font-weight: 600;
    margin-bottom: 8px;
}
.from_ckeditor figure{
    margin: 4px 0;
    text-align: center;
}
.from_ckeditor figure img{
    max-width: 100%;
}
.from_ckeditor .text-small {
    font-size: 14px;
}
.from_ckeditor .text-tiny {
    font-size: 12px;
}
.from_ckeditor ul, ol{
    margin-bottom: 0;
    padding-left: 2em;
}
.from_ckeditor li{
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.9px;
}
.from_ckeditor li+li{
    margin-top: 8px;
}
.from_ckeditor a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
    word-break: break-all;
}
.from_ckeditor blockquote{
    border-left: solid 4px var(--main-color);
    padding: 8px 16px;
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.from_ckeditor .table table{
    width: 100%;
}
.from_ckeditor .table td{
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--border-color);
}
/*table表格*/
.my_table_box{
    overflow-x: auto;
}
.my_table{
    width: 100%;
    min-width: 750px;
    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-color: var(--bg-color);
}
.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 / 60%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
}
.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: 50%;
    transform: translateY(50%);
    color: var(--font-color);
}
.product_pic_swiper_box .swiper-button-next{
    right: 0;
}
.product_pic_swiper_box .swiper-button-prev{
    left: 0;
}
/*首頁banner*/
.index_banner_box{
    padding-top: 32px;
}
.banner_Swiper_box{
    position: relative;
    margin-bottom: 100px;
}
.banner_Swiper_itme .bg{
    padding-bottom: 37%;
    border-radius: 24px;
}
.banner_Swiper_box .swiper-pagination{
    top: 50%;
    bottom: auto;
    right: -56px;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16px;
}
.banner_Swiper_box .swiper-pagination .swiper-pagination-bullet{
    margin: 4px 0;
    width: 8px;
    height: 8px;
    background-color: var(--font-color2);
    opacity: .6;
    transition: all .2s;
}
.banner_Swiper_box .swiper-pagination .swiper-pagination-bullet-active{
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    opacity: 1;
}
/*首頁關於我們*/
.index_about_box{
    position: relative;
    padding-bottom: 100px;
}
.index_about_box::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background-image: url(../img/about-bg.jpg);
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
    z-index: 1;
}
.index_about_box .my_container{
    position: relative;
    z-index: 2;
}
.index_about_img01{
    position: absolute;
    top: 100px;
    left: 100px;
}
.index_about_img02{
    position: absolute;
    top: 80px;
    right: 320px;
}
.index_about_img03{
    position: absolute;
    top: 0;
    right: 100px;
}
.index_about_content{
    text-align: center;
    white-space: pre-line;
    font-size: 18px;
    line-height: 1.8;
}
.index_about_content span{
    position: relative;
}
.index_about_content span::before{
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    transform: translateX(-50%);
}
.index_about_content .gold::before{
    background-color: #E7D08F;
}
.index_about_content .silver::before{
    background-color: #C1C5C9;
}
.index_about_content .bright::before{
    background-color: var(--second-color);
}
/*首頁服務項目*/
.index_services_box{
    margin-top: 48px;
    padding-bottom: 100px;
}
.services_Swiper_box{
    position: relative;
    width: 100%;
    max-width: 1262px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 96px;
    padding-right: 96px;
}
.services_Swiper_box .swiper-button-next{
    right: 0;
}
.services_Swiper_box .swiper-button-prev{
    left: 0;
}
.services_Swiper{
    padding-top: 24px;
    margin-top: -24px;
}
/*首頁案例作品*/
.my_container.project{
    position: relative;
}
.index_project_box{
    position: relative;
    padding-top: 64px;
    margin-bottom: 128px;
}
/* .index_project_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 44px);
    background-color: var(--main-color2);
} */
.project_Swiper_box{
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}
.index_project_img01{
    position: absolute;
    top: -74px;
    left: 0;
}
.index_project_img02{
    position: absolute;
    top: -64px;
    right: 0;
}
.index_project_img03{
    position: absolute;
    right: 0;
    bottom: -128px;
}
.project_Swiper_box .swiper-button-next{
    right: -24px;
}
.project_Swiper_box .swiper-button-prev{
    left: -24px;
}
.project_Swiper_box .swiper-pagination{
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
}
.project_Swiper_box .swiper-pagination .swiper-pagination-bullet{
    margin: 0 4px;
    width: 8px;
    height: 8px;
    background-color: var(--font-color2);
    opacity: .6;
    transition: all .2s;
}
.project_Swiper_box .swiper-pagination .swiper-pagination-bullet-active{
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    opacity: 1;
}
/*首頁最新消息*/
.index_news_box{
    margin-bottom: 200px;
}
.news_list_box{
    position: relative;
}
.index_news_img03{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 20px;
    z-index: 1;
}
.index_news_img01{
    position: absolute;
    bottom: -36px;
    right: -35px;
    width: 73px;
    height: 73px;
}
.index_news_img02{
    position: absolute;
    top: -15px;
    left: -35px;
    width: 73px;
    height: 73px;
}
/*聯絡我們*/
.contact_box{
    padding-bottom: 100px;
}
.contact_card{
    display: flex;
}
.contact_card_img{
    overflow: hidden;
    flex: 1;
}
.contact_card_img .bg{
    height: 100%;
}
.contact_card_body{
    position: relative;
    padding: 64px 40px;
    background-image: url(../img/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 647px;
}
.contact_card_body .block_title{
    position: absolute;
    top: -40px;
}
.contact_card_body_img{
    position: absolute;
    top: -8px;
    right: -12px;
}
.contact_card_title{
    margin-bottom: 24px;
    font-weight: 600;
}
.contact_info{
    display: flex;
    align-items: center;
    color: var(--font-color2);
}
.contact_info+.contact_info{
    margin-top: 20px;
}
.contact_info_title{
    width: 80px;
    background-color: rgb(255 255 255 / 80%);
    border-left: solid 1px var(--main-color2);
    text-align: center;
    margin-right: 16px;
    font-weight: 600;
    padding-top: 2px;
    padding-bottom: 2px;
}
.contact_info_txt{
    flex: 1;
}
/*關於盈濤*/
/*隱私權政策*/
.privacy_page .page_title_bg{
    background-image: url(../img/banner-privacy.jpg);
}
/*購物須知*/
.shoppingnotes_page .page_title_bg{
    background-image: url(../img/banner-privacy.jpg);
}
/*完稿須知*/
.notice_page .page_title_bg{
    background-image: url(../img/banner-3.jpg);
}
/*最新消息列表頁*/
.news_page .index_news_img03{
    top: 16px;
    width: 80px;
    padding-top: 0;
    left: auto;
    right: -16px;
}
.news_page .index_news_img03 img{
    width: 100%;
}
/*文章內容*/
.article_title{
    text-align: center;
    padding-top: 8px;
}
.article_header{
    position: relative;
    padding-top: 28px;
    padding-bottom: 40px;
}
.article_header .drop{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: 0;
    animation: article_header_a .3s forwards;
    animation-delay:.8s;
}
@keyframes article_header_a {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.article_header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background-color: var(--main-color);
    animation: article_header_b_a .4s forwards;
}
@keyframes article_header_b_a {
    0% {
        height: 0;
    }
    100% {
        height: 32px;
    }
}
.article_header::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    background-color: var(--main-color);
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-32px);
    animation: article_header_a_a .4s forwards;
    animation-delay:.5s;
}
@keyframes article_header_a_a {
    0% {
        height: 0;
    }
    100% {
        height: 20px;
    }
}
.article_header h1{
    animation: article_headerh1_a .4s forwards;
    animation-delay:.3s;
    opacity: 0;
}
@keyframes article_headerh1_a {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.article_info_row{
    margin-top: 16px;
    animation: article_headerh1_a .4s forwards;
    animation-delay:.3s;
    opacity: 0;
}
.article_info_row .article_info{
    text-align: center;
}
.article_content{
    margin-top: 48px;
}
.recommend_project_box{
    margin-top: 100px;
    padding-top: 64px;
    padding-bottom: 100px;
    background-image: url(../img/contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/*服務項目*/
.services_row{
    display: flex;
}
.services_class_select{
    display: none;
}
.services_class_select .my_select{
    border-radius: 0;
    border: none;
    border-bottom: solid 1px var(--main-color);
    margin: 0 auto;
}
.services_class_select .my_select:hover, .services_class_select .my_select:focus{
    border: none;
    border-bottom: solid 1px var(--main-color);
    box-shadow: none;
}
.leftside_menu_box{
    width: 270px;
}
.leftside_menu{
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
}
.services_list_box{
    flex: 1;
    padding-left: 64px;
}
.services_nav_header{
    position: relative;
    /* border: solid 1px var(--main-color);
    background-color: rgb(247, 177, 9, .05); */
    border-bottom: solid 1px var(--border-color);
    color: var(--font-color2);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_nav_header::after{
    content: "";
    position: absolute;
    right: 12px;
    top: -12px;
    width: 31px;
    height: 24px;
    background-image: url(../img/leftnav_title.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
}
.leftside_menu_nav{
    /* background-color: var(--bg-color); */
    padding-top: 16px;
    padding-bottom: 16px;
}
.leftside_menu_nav .nav-item+.nav-item{
    margin-top: 2px;
}
.leftside_menu_nav .nav-link{
    padding: 12px 24px;
    color: var(--font-color3);
    letter-spacing: 0.05em;
    border-radius: 0;
    border: none;
    width: 100%;
    text-align: left;
}
.leftside_menu_nav .nav-item.dropdown .nav-link{
    position: relative;
}
.leftside_menu_dropdown_btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-right: 16px;
    transition: all .2s;
}
.leftside_menu_dropdown_btn img{
    width: 16px;
}
.leftside_menu_dropdown_btn.show img{
    transform: rotate(180deg);
}
.leftside_menu_nav .nav-item.active .nav-link, 
.leftside_menu_nav .nav-item:hover .nav-link{
    color: var(--font-color);
    font-weight: 600;
    background-color: var(--second-color2);
}
.leftside_menu_nav .nav-item.active{
    box-sizing: content-box;
}
.leftside_menu_lv2{
    background-color: #fff;
    height: 0;
    overflow: hidden;
    transition: all .2s;
}
.leftside_menu_lv2 ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 40px;
    padding-top: 12px;
    padding-bottom: 24px;
    border-bottom: solid 1px var(--second-color2);
}
.leftside_menu_lv2 ul li+li{
    margin-top: 4px;
}
.leftside_menu_lv2 .dropdown-item{
    padding: 8px 16px;
    color: var(--font-color3);
    font-size: 14px;
}
.leftside_menu_lv2 .dropdown-item:hover,
.leftside_menu_lv2 .dropdown-item.active{
    background-color: var(--bg-color);
    color: var(--main-color);
    border-radius: 6px 0 0 6px;
    font-weight: 600;
}
.process_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -64px;
}
.process_item{
    width: 25%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 64px;
}
.process_card_name{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}
.process_card_img .bg{
    padding-bottom: 62%;
}
.services_nav_mobile{
    display: none;
}
/*服務項目內容*/
.common_process_box{
    margin-top: 100px;
    /* padding-top: 64px;
    padding-bottom: 100px; */
    /* background-image: url(../img/contact_bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.process_Swiper_box {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}
.process_Swiper_box .swiper-button-next{
    right: -24px;
}
.process_Swiper_box .swiper-button-prev{
    left: -24px;
}
.process_Swiper_box .swiper-pagination{
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
}
.process_Swiper_box .swiper-pagination .swiper-pagination-bullet{
    margin: 0 4px;
    width: 8px;
    height: 8px;
    background-color: var(--font-color2);
    opacity: .6;
    transition: all .2s;
}
.process_Swiper_box .swiper-pagination .swiper-pagination-bullet-active{
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    opacity: 1;
}
/*商品內容*/
.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_info h1{
    padding-bottom: 12px;
    border-bottom: solid 1px var(--font-color3);
    font-weight: 600;
    font-size: 34px;
}
.product_description{
    margin-top: 16px;
    font-size: 15px;
    color: var(--font-color2);
    background: var(--bg-color);
    padding: 8px 16px;
    border-radius: 4px;
}
.product_specification{
    margin-top: 24px;
}
.product_specification_item+.product_specification_item{
    margin-top: 24px;
}
.product_specificatiton_title {
    font-size: 14px;
    margin-bottom: 8px;
}
.product_count_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -16px;
}
.product_count_item{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 16px;
}
.product_count_card {
    padding: 0;
    margin-bottom: 0;
}
.product_count_card .form-check-input {
    display: none;
}
.product_count_card .form-check-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #fff;
    color: var(--font-color2);
    border: solid 1px var(--main-color);
    padding: 10px 16px 8px 16px;
    border-radius: 4px;
    font-weight: 500;
}
.product_count_card .form-check-input:checked+.form-check-label {
    background-color: var(--main-color);
    color: #fff;
}
.product_specification_item p{
    font-size: 15px;
    color: var(--font-color2);
}
.product_price{
    letter-spacing: 0;
}
.product_price .original {
    font-weight: 600;
    font-size: 20px;
    color: var(--red-color);
}
.product_price .special {
    font-weight: 600;
    font-size: 20px;
    color: var(--red-color);
}
.product_price .special+.original {
    font-weight: 400;
    font-size: 16px;
    color: var(--font-color3);
    text-decoration: line-through;
    margin-left: 4px;
}
.product_price{
    position: relative;
    margin-top: 16px;
}
.product_buy_rule{
    position: absolute;
    right: 0;
    top: 2px;
}
.product_buy_rule a{
    color: var(--font-color2);
    font-size: 15px;
    border-bottom: solid 1px var(--font-color3);
}
.product_buy_rule a:hover{
    border-bottom: solid 1px var(--main-color);
}
.product_pic_swiper_box{
    width: 100%;
    max-width: 550px;
}
.product_buy{
    margin-top: 40px;
}
.product_present_box{
    margin-top: 48px;
}
.product_present_box .nav-tabs {
    border-bottom: 1px solid var(--font-color3);
}
.product_present_tabcontent{
    padding: 24px 0 0 0;
}
.product_present_box .nav-tabs .nav-link{
    color: var(--font-color2);
    padding: 8px 16px 9px 16px;
    border-radius: 0;
}
.product_present_box .nav-tabs .nav-link:focus, 
.product_present_box .nav-tabs .nav-link:hover {
    border-color: transparent transparent transparent;
    color: var(--main-color);
}
.product_present_box .nav-tabs .nav-item.show .nav-link, 
.product_present_box .nav-tabs .nav-link.active {
    position: relative;
    color: var(--font-color);
    font-weight: 600;
    background-color: #fff;
    border-color: var(--font-color3) var(--font-color3) #fff;
}
.product_present_box .nav-tabs .nav-link.active::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 3px;
    background-color: var(--main-color);
    border-radius: 4px 4px 0 0;
}
/* .product_present_tabcontent .from_ckeditor{
    margin-left: 0;
} */
.recommend_product_box{
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/about-bg.jpg);
    background-repeat: repeat-y;
    background-position: top center;
    background-size: cover;
}
.product_Swiper_box{
    position: relative;
}
/*搜尋結果頁*/
.search_page_input_box{
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.search_results{
    margin-top: 24px;
    margin-bottom: 48px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: solid 1px var(--border-color);
}
.search_keyword{
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_keyword i{
    color: var(--main-color);
    margin-right: 4px;
}
.search_results_count{
    margin-top: 16px;
    color: var(--font-color2);
}
.search_page .services_list_box{
    padding-left: 0;
}
.member_nav_box {
    width: 270px;
}
.member_nav {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
}
.member_nav_header {
    position: relative;
    border-bottom: solid 1px var(--border-color);
    color: var(--font-color2);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .member_nav_header::after {
    content: "";
    position: absolute;
    right: 12px;
    top: -12px;
    width: 31px;
    height: 24px;
    background-image: url(../img/leftnav_title.png);
    background-repeat: no-repeat;
    background-size: contain;
} */
.member_content{
    flex: 1;
    padding-left: 64px;
}
.member_nav .nav{
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
}
.member_nav .nav-item+.nav-item {
    margin-top: 2px;
}
.member_nav .nav-link {
    padding: 12px 24px;
    color: var(--font-color3);
    letter-spacing: 0.05em;
    border-radius: 0;
    border: none;
    width: 100%;
    text-align: left;
}
.member_nav .nav-item.active .nav-link, .member_nav .nav-item:hover .nav-link {
    color: var(--font-color);
    font-weight: 600;
    background-color: var(--second-color2);
}
.member_title{
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-color2);
}
.member_title h1{
    position: relative;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.member_title h1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    height: 2px;
    width: 40px;
    background-color: var(--main-color);
    margin-right: 12px;
}
.member_data+.member_data {
    margin-top: 32px;
    border-top: solid 1px var(--border-color);
}
.member_data .my_form_btn .btn{
    margin-left: 0;
}
.member_data .my_form_row{
    display: flex;
}
.member_data .my_form_row .form-label {
    margin-bottom: 0;
    width: 120px;
    display: flex;
    align-items: center;
}
.member_data .my_form_row p{
    flex: 1;
}
.member_content .my_form_btn .btn {
    margin-left: 0;
}
/*訂單查詢*/
.order_record_table {
    border: solid 1px var(--border-color);
    font-size: 15px;
}
.order_record_table_header {
    border-bottom: solid 1px var(--border-color);
    background-color: var(--bg-color);
    padding: 0 8px;
    font-weight: 600;
    color: var(--font-color2);
}
.order_table_row {
    display: flex;
    align-items: center;
}
.order_record_table_body {
    padding: 0 8px;
}
.order_table_row+.order_table_row {
    border-top: solid 1px var(--border-color);
}
.order_table_row>div {
    padding: 12px 8px;
}
.order_table_date {
    width: 150px;
}
.order_table_id {
    flex: 1;
}
.order_table_price {
    width: 150px;
    text-align: center;
}
.order_table_status {
    width: 180px;
    text-align: center;
}
.order_table_status .status.red{
    color: var(--red-color);
}
.order_table_status a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
.status_tips{
    font-size: 14px;
    font-weight: 400;
    color: var(--font-color2);
}
.order_table_link {
    width: 120px;
    text-align: right;
}
.order_table_link a{
    color: var(--font-color2);
}
.order_table_link a:hover{
    color: var(--main-color);
}
.order_table_link a i{
    margin-right: 4px;
}
/*購物車*/
.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: 1px;
    background-color: var(--border-color2);
}
.cart_product_table {
    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);
    font-weight: 600;
}
.cart_product_table_header {
    border-bottom: solid 1px var(--border-color);
    padding: 0 8px;
    font-weight: 600;
    color: var(--font-color2);
}
.cart_product_table_body {
    padding: 0 8px;
}
.product_table_row {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.product_table_row>div {
    padding: 12px 8px;
}
.product_table_img {
    width: 96px;
}
.product_card_img{
    border: solid 1px var(--border-color);
}
.product_card_img .bg{
    padding-bottom: 100%;
}
.product_table_name {
    flex: 1;
    font-weight: 400;
    font-size: 15px;
    color: var(--font-color2);
}
.product_table_price {
    width: 140px;
}
.product_table_count {
    width: 200px;
    text-align: center;
}
.product_table_subtotal {
    width: 120px;
    letter-spacing: 0;
}
.product_table_file{
    width: 200px;
    text-align: center;
}
.product_table_file .btn{
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
}
.product_table_price .product_price{
    margin-top: 0;
}
.product_table_price .product_price .original {
    font-size: 15px;
    color: var(--font-color);
}
.product_table_price .product_price .special {
    font-size: 15px;
    color: var(--font-color);
    display: block;
}
.product_table_price .product_price .special+.original {
    color: var(--font-color3);
    margin-left: 0;
}
.product_table_delete{
    width: 120px;
    text-align: right;
}
.product_table_delete i{
    margin-right: 4px;
}
.product_table_specificatiton{
    color: var(--font-color3);
    font-size: 14px;
}
.product_table_delete .btn{
    color: var(--font-color2);
}
.product_table_delete .btn:hover{
    color: var(--main-color);
}
.discount_accord{
    margin-top: 24px;
    margin-bottom: 24px;
    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 {
    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;
    font-size: 15px;
}
.cart_order_price_row.total{
    font-size: 16px;
    border-top: solid 1px var(--border-color);
    padding-top: 12px;
    font-weight: 600;
}
.cart_order_price_row .total_price{
    padding-left: 16px;
}
.cart_order_price_row .total_price.red{
    color: var(--red-color);
}
.cart_go_nextstep{
    margin-top: 24px;
}
.cart_go_nextstep .two_btn{
    justify-content: flex-end;
}
.cart_dashboard {
    border: solid 1px var(--border-color);
    margin-bottom: 24px;
}
.cart_dashboard_body {
    padding: 16px 16px 24px 16px;
}
.cart_dashboard_body .my_form{
    max-width: none;
}
.product_list_lastcheck_title {
    position: relative;
    cursor: pointer;
}
.product_list_lastcheck_arrow {
    position: absolute;
    width: 50%;
    top: -2px;
    right: 0;
    padding: 12px 16px;
    text-align: right;
}
.product_list_lastcheck_arrow img {
    width: 14px;
    transition: all .2s;
}
.product_list_lastcheck.show .product_list_lastcheck_arrow img {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.product_list_lastcheck_body {
    padding: 0;
    height: 0;
    overflow: hidden;
}
.product_list_lastcheck .cart_product_table {
    margin-top: 0;
    border: none;
}
.cart_login_btn {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding-bottom: 12px;
    margin-bottom: 24px;
    border-bottom: solid 1px var(--border-color2);
}
.cart_login_btn .btn {
    margin-left: 16px;
}
.order_data_txt.store_711{
    display: flex;
    align-items: center;
}
.store_711_txt{
    margin-left: 16px;
    font-size: 14px;
}
.order_data_title_tips{
    font-weight: 400;
    color: var(--font-color3);
}
.toteitem {
    margin-bottom: 0;
}
.toteitem+.toteitem{
    margin-top: 24px;
}
.toteitem .form-check-label {
    flex: 1;
    display: flex;
    align-items: center;
}
.toteitem .form-check-label .totefee {
    margin-left: 16px;
    font-weight: 600;
}
.for_atm{
    margin-top: 16px;
    font-size: 14px;
    color: var(--font-color2);
}
.for_atm .red{
    color: var(--red-color);
    margin-right: 4px;
}
/*訂單成功*/
.order_success_box{
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bg-color);
    border-radius: 16px;
    padding: 20px 40px 40px 40px;
}
.order_success_txt .title{
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.order_success_txt p{
    color: var(--font-color2);
    text-align: center;
}
.order_success_txt p a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
    margin-left: 4px;
    margin-right: 4px;
}
.order_success_btn{
    margin-top: 40px;
}
.order_success_btn .btn{
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.order_success_img{
    text-align: center;
    margin-bottom: 8px;
    font-size: 80px;
    color: var(--green-color);
}
.order_success_img img{
    width: 80px;
}
.order_success_img01 {
    position: absolute;
    bottom: -15px;
    right: -16px;
    width: 73px;
    height: 73px;
}
.order_success_img02 {
    position: absolute;
    top: -15px;
    left: -16px;
    width: 73px;
    height: 73px;
}
/*空購物車*/
.cart_noitem_box{
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.cart_noitem_img{
    width: 100%;
    max-width: 370px;
}
.cart_noitem_img img{
    width: 100%;
}
.cart_noitem_body{
    flex: 1;
    text-align: center;
}
.cart_noitem_txt .title{
    font-weight: 600;
}
/*訂單內容*/
.order_status {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
.order_status_item {
    flex: 1;
    text-align: center;
}
.order_status_item_point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.order_status_item_point .icon {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--border-color2);
    border-radius: 50%;
}
.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.active .order_status_item_point .icon {
    background-color: var(--main-color2);
}
.order_status_item_txt {
    word-break: keep-all;
    color: var(--font-color3);
    font-size: 14px;
}
.order_status_item.active .order_status_item_txt {
    color: var(--font-color);
}
.order_record_row{
    font-size: 15px;
}
.order_record_row>div {
    padding: 4px 16px;
}
.order_record_content .product_list_lastcheck_body{
    height: auto;
}
.upload_file_link, .upload_file_link:hover{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
.order_file_list{
    margin-top: 16px;
}
.order_file_item{
    display: flex;
    align-items: center;
}
.order_file_item+.order_file_item{
    margin-top: 8px;
    padding-top: 8px;
    border-top: solid 1px var(--border-color);
}
.order_file_item_name{
    flex: 1;
    padding-right: 16px;
}
.order_file_item_btn{
    text-align: right;
}
.upload_flie_btn{
    margin-top: 8px;
}
.upload_flie_btn .btn{
    margin: 0 auto;
}
.upload_flie_choose{
    display: block;
    border: solid 1px var(--border-color2);
    border-radius: 16px;
    padding: 8px 16px 16px 16px;
    text-align: center;
    cursor: pointer;
}
.upload_flie_choose i{
    font-size: 40px;
    color: var(--font-color2);
}
.upload_flie_choose span{
    display: block;
    font-weight: 600;
}
.chosen_flie{
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
    color: var(--font-color3);
}