@charset "utf-8";
html{
	margin: 0;
	height: 100%;
}
body {
	margin: 0;
	height: 100%; 
	font-family: "Chiron GoRound TC" , "Noto Sans" , "Microsoft JhengHei", Arial, Helvetica;
	font-size: 1.1rem;
	color:var(--font-color);
	letter-spacing: 0.05rem;
	line-height: 1.5;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
a:hover {
	color: var(--font-color2);
	text-decoration: none;
}
h1{
	font-size: 2.5rem;
    letter-spacing: 0.1em;
}
h2{
	font-size: 2rem;
    letter-spacing: 0.1em;
}
h3{
	font-size: 1.75rem;
}
h4{
	font-size: 1.5rem;
}
h5{
	font-size: 1.125rem;
}
h1, h2, h3, h4, h5, p{
	margin-bottom:0;
}
p{
	line-height: 1.7;
}
button {
    border: 0;
    background-color: transparent;
}
input, textarea{
    box-shadow: none;
    -webkit-appearance: none;  /* Safari*/
    -moz-appearance: none;     /* FireFox */
    appearance: none;
}
input:focus, textarea:focus{
    outline: none !important;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color4) !important;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color4) !important;
}
input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color4) !important;
}
select{
	font-size: 1rem;
}
select:focus{
    outline: none !important;
}
.bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg img {
	display: none;
}
.font_bold{
	font-weight: 600;
}
.font-green{
    color: var(--second-color) !important;
}
.font_pre{  
    white-space: pre-line;
}
.no-break{
    word-break: keep-all;
}
.row{
	margin-left: -16px;
	margin-right: -16px;
}
.row>*{
	padding-left: 16px;
	padding-right: 16px;
}
.my_container{
	max-width: 1504px;
    padding-right: 32px;
    padding-left: 32px;
    margin-left: auto;
    margin-right: auto;
}
.my_container_full{
    padding-right: 32px;
    padding-left: 32px;
}
.my_article_container{
	max-width: 1064px;
    padding-right: 32px;
    padding-left: 32px;
    margin-left: auto;
    margin-right: auto;
}
main{
	min-height: calc(100vh - 132px - 334px);
    overflow: hidden;
}
.main_pt{
    padding-top: 72px;
}
.main_pb {
    padding-bottom: 100px;
}
.block_pt{
    padding-top: 72px;
}
.block_pb{
    padding-bottom: 72px;
}
.show_model{
    padding: 64px 0;
}
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    z-index: 2000;
}
.loader span {
    width: 64px;
    height: 64px;
    border: 5px dotted var(--second-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
/*浮動選單*/
.side_nav_box{
    position: fixed;
    right: 32px;
    bottom: 120px;
    z-index: 1000;
}
.side_nav {
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    list-style: none;
}
.side_item + .side_item {
    margin-top: 16px;
}
.side_link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    width: 48px;
    height: 48px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 10px;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}
.side_link:hover{
    color: #fff;
}
.side_link i{
    display: flex;
    align-items: center;
    justify-content: center;
}
.side_link img{
    width: 28px;
}
.side_link.facebook{
    background-color: #1877f2;
}
.side_link.line{
    background-color: #00c300;
}
/*只有文字*/
.pure_word p {
    line-height: 1.9;
    font-size: 1.125rem;
}
/*置頂按鈕*/
.go_top {
    position: fixed;
    right: 32px;
    bottom: 56px;
    z-index: 1000;
}
.gotop_btn {
    width: 48px;
    height: 48px;
    background-color: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
.gotop_btn img{
    width: 24px;
}
/*頁面標題*/
.page_title{
    min-height: 200px;
    background:linear-gradient(to bottom, var(--bg-color) 0%, #fff 100%);
    padding: 16px 0 0 0;
    margin-bottom: 40px;
    overflow: hidden;
}
.page_title_content{
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-top: 64px;
    padding-left: 52px;
    padding-right: 52px;
    text-align: center;
    background-image: url(../img/page-title-1.png), url(../img/page-title-2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top right 12px, bottom left;
}
.page_title_content h1{
    font-size: 3rem;
    font-weight: 600;
    color: var(--font-color2);
    line-height: 1.2;
}
.page_title_content .en{
    color: var(--second-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 4px;
}
.page_title_img{
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: 12px;
}
.page_title_img img{
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
}
/*麵包屑*/
.breadcrumb_box{
    margin-bottom: 1rem;
}
.breadcrumb_box .breadcrumb{
    margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: var(--font-color4);
}
.breadcrumb_box a{
    color: var(--font-color4);
}
.breadcrumb_box a:hover{
    color: var(--font-color2);
}
/*區塊標題*/
.block_title{
    margin-bottom: 36px;
}
.block_title h2, .block_title h3{
    position: relative;
    font-weight: 600;
    color: var(--font-color2);
    width: fit-content;
}
.block_title.center h2, .block_title.center h3{
    margin-left: auto;
    margin-right: auto;
}
.block_title p{
    margin-top: 24px;
    line-height: 1.7;
    color: var(--font-color2);
    text-align: justify;
}
.block_title.center p{
    text-align: center;
}
.block_title .en{
    display: flex;
    align-items: center;
    color: var(--second-color);
    font-weight: 600;
    margin-top: 4px;
    font-size: 18px;
}
.block_title .en::after{
    content: "";
    display: block;
    height: 2px;
    width: 172px;
    border-radius: 2px;
    background-color: var(--second-color);
    margin-left: 12px;
}
.block_title.center .en{
    justify-content: center;
}
.block_title.center .en::after{
    display: none;
}
.block_btn{
    margin-top: 40px;
}
.block_btn .btn{
    margin-left: auto;
    margin-right: auto;
}
/*頁籤*/
.my_tabs{
    justify-content: center;
    border-bottom: none;
}
.my_tabs .nav-link{
    background-color: var(--bg-color);
    color: var(--font-color4);
    border: none;
    border-radius: 0;
    padding: 0 24px;
    height: 48px;
    font-weight: 600;
    word-break: keep-all;
}
.my_tabs .nav-link+.nav-link{
    margin-left: 4px;
}
.my_tabs .nav-link:hover{
    border: none;
    color: var(--font-color2);
}
.my_tabs .nav-link.active{
    background-color: var(--bg-color2);
    color: #fff;
    border: none;
}
.my_tabs_content{
    padding-top: 48px;
}
/*看內容連結*/
.readmore_link{
    display: flex;
    align-items: center;
    margin-top: 16px;
    color: var(--second-color);
    font-weight: 600;
    font-size: 18px;
}
.readmore_link i{
    margin-left: 4px;
}
/*看更多連結*/
.more_link_box{
    margin-top: 36px;
}
.more_link{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color2);
    padding: 0 24px;
    height: 48px;
    width: fit-content;
    color: #fff;
    border-radius: 48px;
    overflow: hidden;
}
.more_link_box.center .more_link{
    margin: 0 auto;
}
.more_link:hover{
    color: #fff;
}
.more_link>div{
    position: relative;
    z-index: 2;
}
.more_link .icon{
    font-size: 20px;
    margin-left: 12px;
    transition: all .2s;
}
.more_link:hover .icon{
    transform: translateX(12px);
}
.more_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    transition: all .2s;
    z-index: 1;
}
.more_link:hover::before{
    top: 0;
    z-index: 1;
}
/*彈窗*/
.my_modal .modal-content{
    border-radius: 16px;
    border: none;
}
.my_modal .modal-header{
    padding-left: 24px;
    padding-right: 24px;
}
.my_modal .modal-body{
    padding: 16px 24px 20px 24px;
}
.my_modal .modal-footer{
    padding: 20px 24px;
}
.footer_btn_row{
    display: flex;
    margin-top: 0;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -8px;
}
.footer_btn{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
/*彈窗-簡易*/
.simple_modal .modal-dialog{
    max-width: 400px;
}
.simple_modal .modal-content{
    border-radius: 16px;
    border: none;
}
.simple_modal .modal-header{
    padding-left: 24px;
    padding-right: 24px;
}
.simple_modal .modal-body{
    padding: 16px 24px 20px 24px;
}
.simple_modal .modal-body .title{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}
.simple_modal .modal-footer{
    padding: 0 24px 20px 24px;
    border-top: none;
    justify-content: center;
}
.simple_modal .modal-footer>*{
    margin: 0;
}
.simple_modal .modal-footer>.two_btn{
    margin-bottom: -8px;
}
.simple_modal .modal-footer .btn+.btn{
    margin-left: 16px;
}
.message_modal_content{
    text-align: center;
}
/*吐司*/
.my_toast{
    position: fixed;
    top: 30%;
    right: calc(50% - 200px);
    z-index: 1010;
}
.my_toast .toast{
    position: relative;
    background-color: rgb(0 0 0 / 90%);
    color: #fff;
    width: 400px;
    border: none;
    box-shadow: 0 6px 30px rgb(0 0 0 / 25%);
    border-radius: 4px;
}
.my_toast .toast-body {
    padding: 40px 24px 40px 24px;
    max-width: 100%;
    text-align: center;
}
.my_toast .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-right: 0;
    color: #fff;
    font-size: 40px;
    background-image: none;
    opacity: 1;
}
.my_toast .btn-close i {
    display: flex;
    justify-content: center;
}
.my_toast .btn-close:hover {
    opacity: 1;
}
.my_toast .btn-close:focus {
    box-shadow: none;
}
.my_toast .toast_icon img{
    width: 52px;
}
.my_toast .toast_txt{
	font-size: 1rem;
}
/*燈箱*/
.fancybox_img{
    width: 300px;
}
.fancybox_img img {
    width: 100%;
}
.fancybox_video{
    width: 600px;
    position: relative;
}
.fancybox_video .bg{
    padding-bottom: 56%;
}
.fancybox_video_cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fancybox_video_cover img{
    width: 60px;
}
/*分享列*/
.share_list_box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 40px;
}
.share_list_box p {
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--second-color);
    font-weight: 600;
}
.share_list{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.share_item{
    font-size: 24px;
}
.share_item+.share_item{
    margin-left: 24px;
}
.share_item a:hover, .copy_link:hover{
    color: var(--second-color);
}
.copy_link{
    cursor: pointer;
}
/*header*/
.page_header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 10%);
    transition: all .5s;
    z-index: 1002;
}
.header_box{
	display: flex;
	margin-left: -16px;
	margin-right: -16px;
	height: 100px;
    transition: all .5s;
}
.header_box>*{
	padding-left: 16px;
	padding-right: 16px;
	height: 100%;
}
.header_logo {
	width: fit-content;
}
.header_logo a {
	display: flex;
	align-items: center;
	height: 100%;
}
.header_logo a img{
	height: 64px;
    transition: all .5s;
}
.header_nav{
	flex: 1;
}
.header_nav .nav{
    justify-content: flex-end;
	height: 100%;
	margin-left: -24px;
	margin-right: -24px;
}
.header_nav .nav-item{
	padding: 0 24px;
}
.header_nav .nav-item.dropdown{
    background-image: url(../img/icon/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center right;
    margin-right: 14px;
}
.header_nav .nav-link{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0;
	color: var(--font-color);
	font-weight: 600;
    cursor: pointer;
}
.header_nav .nav-link.active{
	color: var(--second-color);
}
.header_nav .nav-item:hover .nav-link{
	color: var(--second-color);
}
.header_nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
}
.header_nav .nav-item .dropdown-menu {
    min-width: 140px;
    padding: 4px 0;
    left: calc((100% - 140px)/2);
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.header_nav .nav-link.header_contactus{
    display: flex;
    align-items: center;
    background-color: var(--bg-color2);
    padding: 0 24px;
    height: 48px;
    width: fit-content;
    color: #fff;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.header_nav .nav-item:hover .nav-link.header_contactus{
    color: #fff;
}
.header_contactus i{
    margin-right: 8px;
}
.header_menu_lv2_list ul{
    list-style: none;
    padding: 12px 0;
    margin: 0;
    background-color: var(--bg-color2);
    border-radius: 12px;
    font-size: 18px;
}
.header_menu_lv2_list li{
    padding: 4px 0;
    text-align: center;
}
.header_menu_lv2_list li a{
    color: #fff;
    padding-left: 16px;
    padding-right: 16px;
}
.header_menu_lv2_list .dropdown-item:hover, .header_menu_lv2_list .dropdown-item:focus{
    background-color: var(--second-color);
    color: #fff;
}
.header_right{
	flex: 1;
}
.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_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;
}
.header_office_info{
    background-color: var(--bg-color2);
}
.header_office_info .nav{
    height: 36px;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    margin-left: -24px;
    margin-right: -24px;
}
.header_office_info .nav .nav-item{
    padding-left: 24px;
    padding-right: 24px;
}
.mobile_btn{
	display: none;
}
.under_page_header{
	height: 136px;
}
.page_header.zoom{
    top: -36px;
}
.page_header.zoom .header_box{
    height: 80px;
}
.page_header.zoom .header_logo a img{
	height: 46px;
}
/*手機版選單*/
.mobile_sidebar {
    position: fixed;
    top: 64px;
    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: 24px;
    padding-left: 0;
}
.mobile_sidebar_list_lv2 .dropdown-item{
    padding: 12px 16px;
}
/*手機版搜尋*/
.mobile_search {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    background-color: var(--main-color);
    width: 100%;
    height: 0px;
    overflow: hidden;
}
.mobile_search_group {
    display: flex;
}
.mobile_search_group .form-select {
    margin-top: 15px;
    padding: 0 12px;
    line-height: 42px;
    border: none;
    height: 42px;
    width: 140px;
    color: #fff;
    box-shadow: none !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/arrow-down.svg) no-repeat right center transparent;
    background-color: transparent;
    background-size: 16px;
    background-position: right 12px center;
}
.mobile_search_input {
    flex: 1;
    background-color: transparent;
    border: none;
    height: 42px;
    margin-top: 15px;
    padding: 0 40px 0 0;
    line-height: 42px;
    color: #fff;
}
.mobile_search_input:focus{
    background-color: transparent;
    color: #fff;
	box-shadow: none;
}
.mobile_search_input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color4) !important;
}
.mobile_search_input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color4) !important;
}
.mobile_search_input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color4) !important;
}
.close_mobile_search{
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
}
.close_mobile_search .btn{
    border: none;
    color: #fff;
    height: 36px;
    width: 36px;
    font-size: 32px;
    padding: 0;
    background-color: var(--main-color);
}
.close_mobile_search .btn i{
    display: flex;
    justify-content: center;
}
.go_mobile_search{
    display: flex;
    position: absolute;
    right: 16px;
    top: 16px;
}
.go_mobile_search .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 42px;
    width: 42px;
    font-size: 20px;
    padding: 0;
    background-color: var(--main-color);
}
.go_mobile_search.show{
    z-index: 1002;
}
/*搜尋*/
.search_offcanvas{
    height: 100vh;
    border-bottom: none;
    background-color: rgb(255, 255, 255, .9);
}
.search_offcanvas .my_container{
    flex: 1;
}
.search_offcanvas.show~.offcanvas-backdrop{
    background-color: transparent;
}
.search_offcanvas .offcanvas-header{
    height: 80px;
    justify-content: end;
}
.search_offcanvas .offcanvas-header .btn-close:focus{
    box-shadow: none;
}
.search_title{
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--font-color);
}
.search_offcanvas .offcanvas-body {
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 128px;
}
.search_offcanvas_content{
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.hot_search{
    margin-top: 24px;
}
.hot_search_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -12px;
    margin-right: -12px;
}
.hot_search_item{
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
}
.hot_search_item a{ 
    border-bottom: solid 1px var(--font-color2);
}
/*登入註冊*/
#login_Modal .close_modal_btn {
    padding-bottom: 24px;
    text-align: center;
}
#login_Modal .close_modal_btn .btn-close {
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--font-color2);
    font-size: 40px;
    background-image: none;
    opacity: 1;
}
#login_Modal .close_modal_btn .btn-close:focus {
    box-shadow: none;
}
#login_Modal .close_modal_btn .btn-close i {
    display: flex;
    justify-content: center;
}
.login_modal_block {
    display: none;
    width: 100%;
}
.login_modal_block.show {
    display: block;
}
.login_content {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.login_modal_block_title {
    text-align: center;
    margin-bottom: 16px;
}
.login_modal_block_title img {
    width: 200px;
}
.login_modal_block_title .success_icon{
    margin-bottom: 16px;
}
.login_modal_block_title .success_icon i{
    font-size: 48px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.open_other_form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.open_other_form .btn {
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
.open_other_form+.login_form{
    margin-top: 24px;
}
.other_login {
    margin-top: 24px;
    margin-bottom: 12px;
}
.btn_google{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_google img {
    width: 20px;
    margin-right: 8px;
}
.error_or {
    position: relative;
    margin-top: 1.5rem;
    height: 24px;
    margin-bottom: 1.5rem;
    color: var(--font-color4);
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.error_or::before {
    content: '或';
    position: absolute;
    left: calc(50% - 12px);
    top: 0;
    z-index: 3;
    padding: 0 4px;
    background-color: #fff;
    color: var(--main-color);
}
.error_or::after {
    content: '';
    background: linear-gradient(to right, transparent, var(--main-color), transparent);
    position: absolute;
    left: 0;
    top: 51%;
    width: 100%;
    height: 1px;
    z-index: 2;
    opacity: .7;
}
.login_form .my_form_btn .btn{
    width: 100%;
}
.login_content .tips{
    margin-top: 16px;
    font-size: 14px;
    color: var(--font-color2);
    text-align: center;
}
.login_content .tips a{
    color: var(--font-color);
    font-weight: 600;
    border-bottom: solid 1px var(--font-color);
}
.success_content{
    max-width: 400px;
    border: solid 1px var(--bg-color);
    border-radius: 16px;
    padding: 24px;
    margin: 0 auto;
}
.success_content .my_form_btn .btn{
    margin: 0 auto;
}
/*footer*/
.page_footer{
    background-color: var(--bg-color2);
    padding-top: 72px;
    padding-bottom: 24px;
    color: #fff;
}
.page_footer a{
    color: #fff;
}
.page_footer a:hover, .page_footer a:focus{
    color: var(--bg-color);
}
.footer_logo img{
    height: 64px;
}
.office_info {
    margin-top: 24px;
    padding-left: 8px;
}
.office_info_list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.office_info_item{
    display: flex;
}
.office_info_title{
    word-break: keep-all;
}
.office_info_item+.office_info_item {
    margin-top: 16px;
}
.footer_nav .nav{
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -16px;
    flex-wrap: wrap;
}
.footer_nav li{
    padding-bottom: 16px;
    padding-left: 12px;
    padding-right: 16px;
}
.footer_nav li{
    padding: 16px 0 0 0;
}
.footer_nav li a{
    padding: 0;
    font-size: 18px;
}
.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 var(--second-color);
    margin-top: 40px;
    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{
    text-align: center;
    font-size: 14px;
    color: var(--bg-color);
}
.footer_social{
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}
.footer_social .nav-item{
    width: 32px;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 24px;
}
.footer_social .nav-link{
    padding: 0;
}
.footer_social i{
    font-size: 30px;
}
/*按鈕並排*/
.two_btn{
	display: flex;
    flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: -8px;
}
.two_btn>div{
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 8px;
}
/*按鈕-實心*/
.maincolor_btn{
    position: relative;
    border: none;
	background-color: var(--bg-color2);
    padding: 0 24px;
    height: 48px;
    width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
    color: #fff;
    border-radius: 8px;
    min-width: 160px;
    overflow: hidden;
}
.maincolor_btn span{
    position: relative;
    z-index: 2;
}
.maincolor_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    transition: all .2s;
    z-index: 1;
}
.maincolor_btn:hover, .maincolor_btn:focus, .maincolor_btn:active{
    border: none;
	background-color: var(--bg-color2) !important;
	color: #fff !important;
	box-shadow: none;
}
.maincolor_btn:hover::before{
    top: 0;
    z-index: 1;
}
.maincolor_btn.radius{
	border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs{
    position: relative;
    border: none;
	background-color: var(--bg-color2);
	font-size: 1rem;
	font-weight: 500;
	height: 40px;
	padding: 0 16px;
    width: fit-content;
    overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 4px;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_btn_xs span{
    position: relative;
    z-index: 2;
}
.maincolor_btn_xs::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    transition: all .2s;
    z-index: 1;
}
.maincolor_btn_xs:hover, .maincolor_btn_xs:focus{
    border: none;
	background-color: var(--bg-color2) !important;
	color: #fff !important;
	box-shadow: none;
}
.maincolor_btn_xs:hover::before{
    top: 0;
    z-index: 1;
}
.maincolor_btn_xs.radius{
	border-radius: 40px;
}
/*按鈕-框線*/
.maincolor_border_btn{
	border: solid 1px var(--main-color);
	background-color: #fff;
	font-size: 1rem;
	font-weight: 500;
	height: 48px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border-radius: 4px;
    min-width: 140px;
    transition: all .2s;
}
.maincolor_border_btn:hover, .maincolor_border_btn:focus{
	border: solid 1px var(--main-color-light);
	color: var(--main-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn.radius{
	border-radius: 48px;
}
/*按鈕-框線-xs*/
.maincolor_border_btn_xs{
	border: solid 1px var(--main-color);
	background-color: #fff;
	font-size: 1rem;
	font-weight: 500;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--main-color);
	border-radius: 4px;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_border_btn_xs:hover, .maincolor_border_btn_xs:focus{
	border: solid 1px var(--main-color-light);
	color: var(--main-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn_xs.radius{
	border-radius: 40px;
}
/*純文字按鈕*/
.txt_btn{
	padding: 0;
	border: none;
	color: var(--font-color);
    border-radius: 0;
}
.txt_btn:hover, .txt_btn:focus{
	color: var(--main-color);
	box-shadow: none;
}
/*文字連結*/
a.main_color {
	color: var(--main-color);
	border-bottom: solid 1px var(--main-color);
}
a.main_color:hover{
	color: var(--main-color-light);
	border-bottom: solid 1px var(--main-color-light);
}
/*輸入框空值題示*/
.data_validate .my_input, .data_validate .my_textarea, .data_validate .my_select,
.data_validate .my_input:hover, .data_validate .my_textarea:hover, .data_validate .my_select:hover{
	border: solid 1px var(--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: 8px;
    height: 48px;
    background-color: #fff;
    font-size: 1rem;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--font-color);
    transition: all .2s;
}
.my_input:hover, .my_input:focus{
	border: solid 1px var(--second-color);
	box-shadow: none;
}
.my_input:disabled, .my_input:read-only{
    background-color: #f5f5f5;
}
.my_input:disabled:hover, .my_input:read-only, .my_input:disabled:focus{
    box-shadow:none;
}
/*單行輸入框-主色框*/
.my_input_color{
    border: solid 1px 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: 8px;
    background-color: #fff;
    font-size: 1rem;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--font-color);
    min-height: 80px;
    transition: all .2s;
}
.my_textarea:hover, .my_textarea:focus{
	border: solid 1px var(--second-color);
    min-height: 80px;
	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 16px;
    background-color: #fff;
    font-size: 1rem;
    color: var(--font-color);
    min-width: 100px;
    max-width: 200px;
    appearance: none;
    background-image: url(../img/icon/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 16px;
    transition: all .2s;
}
.my_select:hover, .my_select:focus{
	border: solid 1px var(--border-color);
	box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.my_select:disabled{
    background-color: #f5f5f5;
}
.my_select:disabled:hover, .my_select:disabled:focus{
    box-shadow:none;
}
/*checkbox*/
.my_checkbox{
    display: flex;
}
.my_checkbox .form-check-input{
    border-radius: 4px;
    height: 18px;
    width: 18px;
    border: solid 1px var(--second-color);
    margin-right: 0;
    margin-top: 3px;
}
.my_checkbox .form-check-input:focus {
    border: solid 1px var(--second-color);
    box-shadow: none;
}
.my_checkbox .form-check-input:checked {
    background-color: var(--second-color);
    border-color: var(--second-color);
}
.my_checkbox .form-check-input:checked:focus {
    border-color: var(--second-color);
}
.my_checkbox .form-check-label{
    padding-left: 8px;
}
/*radio*/
.my_radio{
    display: flex;
}
.my_radio .form-check-input{
    height: 18px;
    width: 18px;
    margin-right: 0;
    margin-top: 3px;
    border: solid 1px var(--second-color);
}
.my_radio .form-check-input:focus {
    border: solid 1px var(--second-color);
    box-shadow: none;
}
.my_radio .form-check-input:checked {
    background-color: var(--second-color);
    border-color: var(--second-color);
}
.my_radio .form-check-input:checked:focus {
    border-color: var(--second-color);
}
.my_radio .form-check-label{
    padding-left: 8px;
}
/*checkbox或radio多項目*/
.form_check_group{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -16px;
}
.form_check_group .my_checkbox, .form_check_group .my_radio{
    margin-bottom: 16px;
    margin-right: 40px;
}
/*數量加減*/
.product_count_btn {
    display: flex;
    border: solid 1px var(--border-color);
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}
.count_dash .btn, .count_plus .btn {
    padding: 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 0;
}
.count_dash .btn:hover, .count_plus .btn:hover {
    background-color: var(--bg-color);
}
.count_dash .btn:focus, .count_plus .btn:focus {
    box-shadow: none;
}
.count_number {
    width: 80px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    text-align: center;
    border: none;
    border-left: solid 1px var(--border-color);
    border-right: solid 1px var(--border-color);
}
/*日曆*/
.ui-datepicker {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    border: solid 1px var(--border-color);
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    display: none;
}
.ui-datepicker-header {
    position: relative;
}
.ui-datepicker-prev {
    position: absolute;
    left: 8px;
    top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.ui-datepicker-next {
    position: absolute;
    right: 8px;
    top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.ui-datepicker-title {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: solid 1px var(--border-color);
}
.ui-datepicker-year{
    margin-right: 4px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 1px var(--border-color);
}
.ui-datepicker-month{
    margin-left: 8px;
}
.ui-datepicker-calendar th {
    padding: 8px 8px 4px 8px;
}
.ui-datepicker-calendar td a {
    display: block;
    padding: 4px 8px;
    text-align: center;
}
.ui-datepicker-calendar td span.ui-state-default {
    display: block;
    padding: 4px 8px;
    text-align: center;
    color: var(--font-color4);
}
/*表單*/
.my_form{
    max-width: 700px;
    margin-top: -32px;
}
.my_form_title{
    color: var(--main-color);
    margin-bottom: -16px;
    font-weight: 600;
}
.my_form_row{
    padding-top: 32px;
}
.my_form_row .form-label{
    margin-bottom: 8px;
    color: var(--font-color2);
}
.my_form_row .form-label .red{
    color: var(--red-color);
    position: relative;
    top: 2px;
    margin-right: 2px;
}
.my_form_btn{
    padding-top: 24px;
    text-align: center;
}
.my_form_btn .btn{
    margin-left: auto;
    margin-right: 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);
}
/*圖文區塊*/
.visual_content_block{
    display: flex;
    align-items: center;
}
.visual_content_block.reverse{
    flex-direction: row-reverse;
}
.visual_content_img{
    width: 45%;
    position: relative;
    overflow: hidden;
}
.visual_content_img img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.visual_content_body{
    flex: 1;
    padding: 0 64px;
}
.visual_content_content{
    width: 100%;
    max-width: 700px;
}
.visual_content_content ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.visual_content_content ul li+li {
    margin-top: 16px;
}
.visual_content_content ul li .icon_content_txt{
    padding-left: 0;
}
/*icon配文字*/
.icon_content_list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -24px;
    margin-left: -24px;
    margin-right: -24px;
}
.icon_content_item{
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    width: 33.333%;
}
.icon_content_item.col-xl-6{
    width: 50%;
}
.icon_content_card{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgb(55, 59, 55, .08);
    padding: 12px;
}
.icon_content_icon{
    width: 56px;
    background-color: var(--bg-color);
    /* border: solid 2px var(--bg-color); */
    border-radius: 8px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon_content_icon img{
    width: 40px;
}
.icon_content_txt{
    padding-left: 16px;
    flex: 1;
}
.icon_content_txt .title{
    font-size: 1.25rem;
    font-weight: 600;
}
.icon_content_txt .txt{
    color: var(--font-color3);
}
/*數字配文字*/
.count_content_list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -40px;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 24px;
}
.count_content_item{
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    width: 25%;
}
.count_content_card{
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgb(55, 59, 55, .08);
    padding: 0 24px 24px 24px;
}
.count_content_num{
    position: relative;
    font-size: 1.75rem;
    font-family: "Noto Sans", "Microsoft JhengHei", Arial, Helvetica;
    line-height: 1;
    /* color: var(--second-color); */
    background-color: var(--bg-color2);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transform: translateY(-16px);
    margin-left: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.count_content_num .txt{
    position: relative;
    z-index: 2;
}
.count_content_txt{
    margin-top: -4px;
}
.count_content_txt .title{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.count_content_txt .txt{
    color: var(--font-color3);
    text-align: justify;
}
/*打勾清單*/
.check_list{
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}
.check_list li+li{
    margin-top: 16px;
}
.check_list li{
    padding-left: 28px;
    background-image: url(../img/check.png);
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 18px;
}
/*文章列表*/
.article_card_list{
    margin-bottom: -40px;
}
.article_card_item{
    padding-bottom: 40px;
}
/*文章列表頁數*/
.page_box{
    margin-top: 64px;
}
.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(--font-color2);
    margin: 0 !important;
    height: 36px;
    min-width: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    letter-spacing: 0;
    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(--bg-color2);
    border: none;
}
.page_box .page-item.ellipsis .page-link{
    letter-spacing: 1px;
    border: none;
    padding-bottom: 4px;
}
.page_box .page-item:first-child .page-link, 
.page_box .page-item:last-child .page-link{
    border-radius: 50%;
}
.page_box .page-item.ellipsis .page-link:hover{
    background-color: #fff;
}
/*文章卡片*/
.article_card{
    display: block;
    overflow: hidden;
    transition: all .2s;
}
.article_card_img{
    width: 100%;
}
.article_card_img .bg{
    padding-bottom: 60%;
    border-radius: 8px;
    transition: all .3s;
}
.article_card_body {
    padding: 16px 8px 0 8px;
}
.article_card_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    font-weight: 600;
    transition: all .3s;
    line-height: 1.4;
}
.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 .article_info{
    margin-top: 8px;
    color: var(--font-color4);
}
.article_info{
    color: var(--font-color2);
    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_card:hover .article_card_title{
    color: var(--second-color);
}
.article_card:hover .article_card_img .bg{
    opacity: .9;
}
/*文章清單*/
.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;
}
/*預防醫學列表*/
.preventive_card_list{
    margin-bottom: -48px;
}
.preventive_card_item{
    padding-bottom: 48px;
}
/*消息卡片*/
.news_list{
    margin-top: -20px;
}
.news_link {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 16px;
    border-bottom: solid 1px var(--border-color);
}
.news_link::before{
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -1px;
    z-index: 2;
    background-color: var(--second-color);
    box-shadow: 0 0 2px rgb(0 0 0 / 10%);
    transition: all .6s;
}
.news_link:hover::before{
    width: 100%;
}
.news_link::after{
    content: "";
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon/arrow-right-short.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .6s;
    opacity: 0;
}
.news_link:hover::after{
    opacity: 1;
}
.news_date{
    width: fit-content;
    color: var(--second-color);
    font-weight: 500;
    background-color: var(--bg-color);
    padding: 4px 16px;
    border-radius: 16px;
}
.news_title{
    flex: 1;
    padding-left: 16px;
    padding-right: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
    transition: all .3s;
}
.news_link:hover .news_title{
    color: var(--second-color);
}
/*案例卡片*/
.case_card_list{
    margin-bottom: -40px;
}
.case_card_item{
    padding-bottom: 40px;
}
.case_card{
    display: block;
}
.case_card_img .bg{
    padding-bottom: 100%;    
    border-radius: 8px;
    transition: all .3s;
}
.case_card:hover .case_card_img .bg {
    opacity: .9;
}
.case_card_body{
    padding: 16px 8px 0 8px;
}
.case_card_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    font-weight: 600;
    transition: all .3s;
    line-height: 1.4;
}
.case_card:hover .case_card_title {
    color: var(--second-color);
}
.case_cardbrief {
    margin-top: 12px;
    color: var(--font-color3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}
.case_card_date {
    margin-top: 8px;
    color: var(--font-color4);
    font-size: 14px;
}
/*醫生卡片*/
.doctor_card_list .row{
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: -72px;
}
.doctor_card_item{
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 72px;
}
.doctor_card{
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgb(55, 59, 55, .08);
    height: 100%;
    padding-bottom: 36px;
}
.doctor_card_img{
    position: relative;
    overflow: hidden;
}
.doctor_card_img::before{
    content: "";
    position: absolute;
    bottom: -51px;
    left: 0;
    width: 120%;
    height: 120px;
    background-color: #fff;
    transform: rotate(-15deg);
    z-index: 2;
}
.doctor_card_img .bg{
    padding-bottom: 125%;
    transition: all .3s;
}
.doctor_card:hover .doctor_card_img .bg{
    opacity: .9;
}
.doctor_card_body{
    flex: 1;
    padding: 0 40px;
    background-color: #fff;
}
.doctor_card_title{
    color: var(--main-color);
    text-align: center;
    font-size: 1.125rem;
    position: relative;
    top: -4px;
}
.doctor_card_name{
    text-align: center;
    margin-top: -4px;
}
.doctor_card_name .name{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
}
.doctor_card_name .title{
    color: var(--font-color3);
    font-size: 1.125rem;
}
.doctor_card_experience{
    margin-top: 20px;
    color: var(--font-color3);
}
.doctor_card_experience_title{
    background:linear-gradient(to right, #fff 10%, var(--bg-color) 50%, #fff 90%);
    /* background-color: var(--bg-color); */
    padding: 2px 16px;
    text-align: center;
    /* width: fit-content;
    margin-left: auto;
    margin-right: auto; */
    color: var(--bg-color2);
    margin-bottom: 12px;
}
.doctor_card_experience_list{
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
    list-style: none;
}
.doctor_card_experience_list li+li{
    margin-top: 8px;
}
/*關鍵字*/
.tag_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -8px;
}
.tag_list span{
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
}
.tag_list span{
    padding-left: 12px;
    padding-right: 12px;
}
.tag_list span.txt{
    padding-right: 0;
}
.tag_link{
    background-color: var(--main-color);
    color: #fff;
    line-height: 24px;
    padding: 0 16px;
    border-radius: 24px;
    display: flex;
}
.tag_link:hover{
    background-color: var(--main-color-light);
    color: #fff;
}
.tag_link_line{
    color: var(--main-color-dark);
    border-bottom: solid 1px var(--main-color-dark);
}
.tag_link_line:hover{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color-dark);
}
/*編輯器內容-tiptap*/
.from_tiptap{
    width: 100%;
}
.from_tiptap p{
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: justify;
}
.from_tiptap h2{
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.from_tiptap h3{
    font-weight: 600;
    margin-bottom: 1rem;
}
.from_tiptap h4{
    font-weight: 600;
    margin-bottom: 12px;
}
.from_tiptap ul, ol{
    margin-bottom: 0;
    padding-left: 2em;
}
.from_tiptap li{
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: justify;
}
.from_tiptap li+li{
    margin-top: 8px;
}
.from_tiptap a{
    color: var(--second-color);
    border-bottom: solid 1px var(--second-color);
    word-break: break-all;
}
.from_tiptap blockquote{
    border-left: solid 4px var(--second-color);
    padding: 8px 16px;
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.from_tiptap table{
    width: 100%;
}
.from_tiptap th{
    background-color: var(--bg-color);
    border: solid 1px var(--border-color);
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
}
.from_tiptap td{
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--border-color);
}
.from_tiptap img{
    max-width: 100%;
}
figure.image, figure.media, figure.table{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
/*編輯器內容-ckeditor*/
.from_ckeditor{
    width: 100%;
    max-width: 700px;
}
.from_ckeditor p{
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.9px;
    text-align: justify;
}
.from_ckeditor h2{
    font-weight: 600;
    margin-bottom: 8px;
}
.from_ckeditor h3{
    font-weight: 600;
    margin-bottom: 8px;
}
.from_ckeditor h4{
    font-weight: 600;
    margin-bottom: 8px;
}
.from_ckeditor figure{
    margin: 4px 0;
}
.from_ckeditor figure img{
    max-width: 100%;
}
.from_ckeditor .text-small {
    font-size: 14px;
}
.from_ckeditor .text-tiny {
    font-size: 12px;
}
.from_ckeditor ul, ol{
    margin-bottom: 0;
    padding-left: 2.4rem;
}
.from_ckeditor li{
    line-height: 1.8;
    letter-spacing: 0.9px;
}
.from_ckeditor li+li{
    margin-top: 8px;
}
.from_ckeditor a{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
    word-break: break-all;
}
.from_ckeditor blockquote{
    border-left: solid 4px var(--main-color);
    padding: 8px 16px;
    background-color: var(--bg-color);
    color: var(--font-color2);
}
.from_ckeditor .table table{
    width: 100%;
}
.from_ckeditor .table td{
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--border-color);
}
/*table表格*/
.my_table_box{
    overflow-x: auto;
}
.my_table{
    width: 100%;
    min-width: 700px;
    text-align: center;
}
.my_table thead th {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--main-color-light);
}
.my_table td {
    padding: 12px 16px;
    text-align: center;
    border: solid 1px var(--main-color-light);
}
.my_table tbody td:first-child {
    color: var(--main-color);
    background-color: var(--bg-color);
}
/*輪播*/
.my_swiper{
    position: relative;
}
.my_swiper .swiper-button-next, .my_swiper .swiper-button-prev{
    background-color: var(--bg-color2);
    width: 40px;
    height: 40px;
    opacity: 0.6;
    border-radius: 50%;
    transition: 0.2s;
}
.my_swiper .swiper-button-next::after, .my_swiper .swiper-button-prev::after {
    font-size: 16px;
    color: rgb(255, 255, 255);
}
.my_swiper .swiper-button-prev{
    left: -20px;
}
.my_swiper .swiper-button-next{
    right: -20px;
}
/*商品圖片輪播*/
.product_pic_swiper_2 {
    width: 100%;
}
.product_pic_swiper_2 .swiper-slide{
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_pic_swiper_2 .swiper-slide img,
.product_pic_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_pic_swiper {
    box-sizing: border-box;
    padding: 10px 0;
}
.product_pic_swiper .swiper-slide {
    width: 20%;
    height: 100%;
}
.product_pic_swiper .swiper-slide .bg img{
    display: none;
}
.product_pic_swiper .swiper-slide .bg{
    padding-bottom: 100%;
}
.product_pic_swiper_2 .swiper-pagination{
    right: 12px;
    left: auto;
    background-color: rgb(38, 37, 35, .8);
    color: #fff;
    padding: 0 12px 2px 14px;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    width: fit-content;
    font-size: 14px;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next, 
.product_pic_swiper_box .swiper_button_box .swiper-button-prev {
    background-color: rgb(255 255 255 / 80%);
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next::after, 
.product_pic_swiper_box .swiper_button_box .swiper-button-prev::after {
    font-size: 12px;
    color: var(--main-color);
}
.product_pic_swiper_box .swiper-button-next,
.product_pic_swiper_box .swiper-button-prev{
    top: auto;
    bottom: 12px;
}
.product_pic_swiper_box .swiper-button-next{
    right: auto;
    left: 42px;
}
.product_pic_swiper_box .swiper-button-prev{
    left: 12px;
}
/*首頁banner*/
.banner_Swiper .bg{
    padding-bottom: 31%;
}
.banner_Swiper .swiper-pagination-bullet{
    background-color: var(--second-color);
    width: 10px;
    height: 10px;
    margin-left: 6px !important;
    margin-right: 6px !important;
    opacity: .5;
}
.banner_Swiper .swiper-pagination-bullet-active{
    background-color: #fff;
    opacity: 1;
}
.banner_Swiper .swiper-button-next:after, 
.banner_Swiper .swiper-button-prev:after{
    color: #fff;
    font-size: 30px;
}
.banner_Swiper .swiper-button-next:hover:after, 
.banner_Swiper .swiper-button-prev:hover:after{
    color: var(--second-color);
}
/*首頁-服務項目*/
.index_service_box{
    position: relative;
    /* background: linear-gradient(to bottom, var(--bg-color) 0%, #fff 80%); */
    overflow: hidden;
}
.index_service_swiper_box{
    margin-top: -16px;
    margin-bottom: -16px;
}
.index_service_swiper_item .article_card{
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding-bottom: 0;
}
.index_service_swiper_item .article_card_img .bg{
    border-radius: 4px;
}
.index_service_card{
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(../img/index-service-boder.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/* .index_service_card:hover{
    background-image: url(../img/index-service-boder-hover.png);
} */
.index_service_card:hover::before{
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    display: block;
    background-color: rgb(255 255 255 / 60%);
    border-radius: 50%;
    top: 8%;
    left: 10%;
    z-index: -2;
}
.index_service_card:hover{
    background-image: none;
}
.index_service_card:hover::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/index-service-boder-hover.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}
.index_service_card_body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.index_service_card_title{
    font-size: 2rem;
    margin-bottom: 12px;
    background-color: var(--main-color-light);
    color: var(--bg-color2);
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 24px 0 24px 12px;
}
.index_service_card_price{
    font-size: 4rem;
    color: var(--second-color);
    line-height: 1.2;
    font-family: "Cormorant", "Chiron GoRound TC", "Noto Sans", "Microsoft JhengHei", Arial, Helvetica;
    font-weight: 600;
}
.index_service_swiper .swiper-slide .index_service_card{
    transform: scale(0.8);
    transition: all .6s;
}
.index_service_swiper .swiper-slide.swiper-slide-active .index_service_card{
    transform: scale(1);
}
.index_service_swiper .swiper-slide.swiper-slide-prev .index_service_card{
    transform: scale(0.85);
}
.index_service_card_body .readmore_link{
    padding-left: 16px;
}
/*首頁-關於我們*/
.index_aboutus_box{
    position: relative;
}
.index_aboutus_box::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 45%;
    height: calc(100% - 142px);
    bottom: 0;
    right: 0;
    background-color: var(--bg-color);
    transition: all .8s;
}
.index_aboutus_box.move::after {
    transform: translateY(-144px);
}
.index_about_row{
    display: flex;
}
.index_about_left {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 64px;
    width: 45%;
    background-color: rgb(255 255 255 / 80%);
    position: relative;
    z-index: 2;
}
.index_about_content {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}
.index_about_right {
    flex: 1;
    overflow: hidden;
}
.index_about_img img{
    max-width: 100%;
    border-radius: 12px;
}
.index_about_clinic{
    position: absolute;
    left: 64px;
    top: 172px;
    width: 64px;
    /* left: 0;
    bottom: 64px;
    width: 200px;
    height: calc(100% - 172px);
    overflow: hidden; */
}
.index_about_clinic img{
    /* object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%; */
    max-width: 100%;
}
/*首頁-醫療專欄*/
.index_blog_box{
    position: relative;
}
.index_blog_box::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/index-blog.jpg);
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: -2;
    opacity: 0;
    transition: all .8s;
}
.index_blog_box::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.index_blog_box.active::before{
    opacity: 1;
}
.index_blog_swiper_box .swiper-button-prev{
    left: 20px;
}
.index_blog_swiper_box .swiper-button-next{
    right: 20px;
}
.index_blog_swiper .swiper-slide {
    width: 25%;
}
/*首頁-最新消息*/
.index_news_box{
    position: relative;
    /* background: linear-gradient(to bottom, var(--bg-color) 0%, #fff 80%); */
}
/* .index_news_box::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 35%;
    height: calc(100% - 142px);
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-color) 100%);
} */
.index_news_leaf{
    position: absolute;
    right: 64px;
    top: 144px;
    width: 64px;
}
.index_news_leaf img{
    width: 100%;
}
.index_news_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index_news_left{
    width: 550px;
}
.index_news_right{
    flex: 1;
    max-width: 700px;
    margin-left: 64px;
}
.index_news_img{
    position: relative;
    overflow: hidden;
}
.index_news_img img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
/*首頁-診所資訊*/
.index_clinic_row{
    display: flex;
}
.index_clinic_left{
    width: 45%;
    padding-right: 64px;
}
.index_clinic_right{
    flex: 1;
}
.index_clinic_right iframe{
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.index_clinic_info_item+.index_clinic_info_item{
    margin-top: 16px;
}
.index_clinic_info_item{
    display: flex;
    align-items: center;
}
.index_clinic_info_title{
    width: fit-content;
    color: var(--second-color);
    font-weight: 500;
    background-color: var(--bg-color);
    padding: 4px 16px;
    border-radius: 16px;
    text-align: center;
}
.index_clinic_info_txt{
    flex: 1;
    padding-left: 16px;
}
.time_table{
    text-align: center;
    width: 100%;
}
.time_table td{
    padding: 8px;
}
.time_table thead th{
    padding: 8px;
    background-color: var(--bg-color);
    font-weight: 400;
}
.time_table thead th:first-child{
    border-radius: 12px 0 0 12px;
}
.time_table thead th:last-child{
    border-radius: 0 12px 12px 0;
}
.time_table tbody{
    line-height: 1;
}
.time_table tbody>tr:not(:first-child){
    border-top: solid 1px var(--border-color);
}
/* .time_table tbody>tr>td:not(:first-child){
    border-left: solid 1px var(--border-color);
} */
/*線上預約表格*/
.contact_notice_box{
    background:linear-gradient(to top, var(--bg-color) 0%, #fff 80%);
}
.contact_notice_board{
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}
.contact_notice{
    color: var(--font-color2);
}
.contact_notice h4{
    text-align: center;
}
.contact_notice ol{
    margin-bottom: 0;
    padding-left: 2em;
}
.contact_notice ol li{
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: justify;
}
.contact_notice ol li+li {
    margin-top: 8px;
}
.contact_form_remind {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    width: fit-content;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: solid 2px var(--second-color);
    color: var(--second-color);
    font-size: 1.125rem;
}
.contact_form_box{
    border-radius: 12px;
    /* box-shadow: 0px 2px 12px rgb(0 0 0 / 12%); */
    background-color: #fff;
    padding: 40px;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.contact_line{
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_line_txt{
    font-weight: 600;
}
.contact_line_txt::after{
    content: "：";
}
.line_btn{
    background-color: #00c300;
    color: #fff;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    width: fit-content;
    min-width: 160px;
    transition: all .2s;
}
.line_btn:hover{
    color: #fff;
    background-color: rgb(0, 195, 0, .9);
}
/*門診時間*/
.hours_during_row{
    position: relative;
    height: 40px;
}
.hours_during{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--font-color2);
}
.hours_during_btn{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}
.hours_during_btn_prev, .hours_during_btn_next{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color2);
    width: 40px;
    height: 40px;
    opacity: 0.6;
    border-radius: 50%;
    transition: 0.2s;
}
.hours_during_btn_prev:hover, .hours_during_btn_next:hover{
    opacity: 1;
}
.hours_during_btn_next{
    margin-left: 16px;
}
.hours_during_btn_prev img, .hours_during_btn_next img{
    width: 16px;
}
.hours_table_box{
    margin-top: 32px;
    overflow-x: auto;
}
.hours_table_box .time_table thead th {
    background-color: var(--bg-color2);
    color: #fff;
}
.hours_table_box .time_table .date{
    font-family: "Cormorant", "Chiron GoRound TC", "Noto Sans", "Microsoft JhengHei", Arial, Helvetica;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}
.hours_table_box .time_table td{
    padding: 12px 8px;
}
.hours_table_box .time_table tbody td:not(:last-child){
    border-right: dashed 1px var(--border-color);
}
.hours_table_box .time_table tbody>tr:not(:first-child) {
    border-top: dashed 1px var(--border-color);
}
.hours_doctor_list{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.hours_doctor_list li+li{
    margin-top: 12px;
}
.hours_doctor_list a{
    word-break: keep-all;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hours_doctor_list a .icon{
    width: 20px;
    margin-right: 6px;
}
.hours_doctor_list a .icon img{
    width: 100%;
}
.hours_doctor_list a:hover{
    color: var(--second-color);
}
/*404*/
.error_box{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}
.error_img img{
    max-width: 100%;
}
.error_body{
    max-width: 650px;
    padding-left: 16px;
}
.error_body .title{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.error_btn {
    margin-top: 48px;
}
/*文章內容頁*/
.article_page_breadcrumb{
    margin-top: -16px;
    margin-bottom: 32px;
}
.article_content_header{
    margin-bottom: 48px;
}
.article_title{
    margin-bottom: 16px;
    line-height: 1.4;
}
.article_info{
    color: var(--font-color3);
}
.article_img{
    margin-top: 36px;
}
.article_img .bg{
    padding-bottom: 60%;
}
/*消息內容頁*/
.news_content_header{
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: solid 1px var(--border-color);
}
/*案例內容頁*/
.case_content_header{
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 48px;
    border-bottom: solid 1px var(--border-color);
}
.case_img{
    width: 50%;
}
.case_img .bg{
    padding-bottom: 100%;
}
.case_header{
    flex: 1;
    padding-left: 48px;
}
/*關於上春*/
.about_title{
    text-align: center;
    line-height: 1.8;
    color: var(--font-color2);
}
.about_content{
    display: flex;
    align-items: center;
}
.about_content_body {
    width: 45%;
    padding-right: 64px;
}
.about_content_body .block_title{
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}
.about_content_img {
    flex: 1;
    text-align: right;
}
.about_content_img img{
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
}
.milieu_card_img .bg{
    padding-bottom: 75%;
}
.about_traffic_row{
    display: flex;
    align-items: center;
}
.about_traffic_left{
    flex: 1;
}
.about_traffic_left img{
    width: 100%;
    border-radius: 12px;
    border: solid 3px var(--second-color);
}
.about_traffic_right{
    width: 45%;
    padding-left: 64px;
}
.about_traffic_content{
    width: 100%;
    max-width: 500px;
}
/*主治項目*/
.service_list .row{
    margin-bottom: -88px;
    margin-left: -32px;
    margin-right: -32px;
}
.service_item{
    padding-bottom: 88px;
    padding-left: 32px;
    padding-right: 32px;
}
.service_card{
    display: block;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.service_card_img{
    width: 100%;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}
.service_card_img img{
    width: 100%;
}
.service_card_title{
    margin-bottom: 24px;
    text-align: center;
    color: var(--second-color);
    font-weight: 600;
}
.service_card_brief{
    color: var(--font-color2);
    line-height: 1.7;
    text-align: justify;
    max-width: 550px;
}
.service_card_brief ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 2em;
}
.service_card_brief ul li+li {
    margin-top: 8px;
}
.service_card_brief ul li {
    line-height: 1.7;
    text-align: justify;
}
.main_serivce{
    display: flex;
    overflow: hidden;
}
.main_serivce_img_box{
    position: relative;
    flex: 1;
    background-image: url(../img/main-service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 24px 64px;
    border-radius: 0 48px 48px 0;
}
.main_serivce_img_box p{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.25rem;
    z-index: 2;
}
.main_serivce_img{
    width: 100%;
    /* max-width: 550px; */
    position: relative;
    overflow: hidden;
    /* margin-left: auto; */
}
.main_serivce_img img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.main_serivce_body{
    position: relative;
    width: 55%;
    padding-left: 64px;
    padding-right: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.main_serivce_title{
    display: flex;
    align-items: center;
    border-bottom: solid 1px var(--second-color);
    margin-bottom: 24px;
}
.main_serivce_title .block_title{
    flex: 1;
    padding-left: 24px;
}
.main_serivce_body .service_card_img{
    /* position: absolute;
    left: 640px;
    top: 48px;
    max-width: 160px; */
    margin-left: 0;
}
/*團隊成員介紹*/
.doctor_row{
    display: flex;
}
.doctor_img_box{
    width: 550px;
}
.doctor_img img{
    width: 100%;
    border-radius: 12px;
}
.doctor_body{
    flex: 1;
    padding-left: 64px;
}
.doctor_title{
    color: var(--main-color);
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.doctor_name{
    display: flex;
    align-items: flex-end;
}
.doctor_name .title{
    margin-left: 8px;
    font-size: 1.25rem;
    position: relative;
    bottom: 2px;
}
.doctor_info_block{
    margin-top: 32px;
}
.doctor_info_block_title{
    width: fit-content;
    color: var(--second-color);
    font-weight: 500;
    background-color: var(--bg-color);
    padding: 4px 16px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 12px;
}
.doctor_info_block_content{
    padding-left: 16px;
    padding-right: 16px;
}
.doctor_info_block_content .doctor_card_experience_list{
    padding-left: 0;
    padding-right: 0;
}
.doctor_expertise_list{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.doctor_expertise_list li:not(:last-child)::after{
    content: "/";
    margin-left: 4px;
    margin-right: 4px;
}
.doctor_hours_img img{
    max-width: 100%;
}
/*服務介紹*/
.service_content_header{
    background: linear-gradient(to top, var(--bg-color) 0%, #fff 100%);
    padding-bottom: 48px;
    margin-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
}
.service_img{
    width: 160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.service_img img{
    width: 100%;
}
.service_title{
    margin-bottom: 28px;
    text-align: center;
    color: var(--second-color);
    font-weight: 600;
}
.service_brief{
    text-align: center;
    color: var(--font-color3);
    width: 100%;
    max-width: 900px;
}
/*功能醫學檢測*/
.precision1_seven{
    position: relative;
}
.precision1_seven_ending{
    margin-top: 48px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: linear-gradient(to left, var(--bg-color) 0%, #fff 40%);
    padding-right: 48px;
}
.precision1_seven_ending_img{
    height: 100px;
}
.precision1_seven_ending_img img{
    height: 100%;
}
.precision1_seven_ending_body{
    flex: 1;
    padding-left: 24px;
}
/*客製化靜脈營養點滴*/
.ivfontsize, .yawye{
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}