@charset "utf-8";
html{
	margin: 0;
	height: 100%;
}
body {
	margin: 0;
	height: 100%; 
	font-family: 'Noto Sans TC', "Microsoft JhengHei", Arial, Helvetica;
	font-size:16px;
	color:var(--font-color);
}
a {
	color: var(--font-color2);
	text-decoration: none;
}
a:hover {
	color: var(--font-color);
	text-decoration: none;
}
h1{
	font-size: 28px;
	letter-spacing: 0;
}
h2{
	font-size: 24px;
	letter-spacing: 0;
}
h3{
	font-size: 20px;
	line-height: 1.5;
}
h4{
	font-size: 18px;
	line-height: 1.5;
}
h5{
	font-size: 17px;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, p{
	margin-bottom:0;
}
p{
	line-height: 1.7;
}
button {
    border: 0;
    background-color: transparent;
}
input, textarea{
    box-shadow: none;
    -webkit-appearance: none;  /* Safari*/
    -moz-appearance: none;     /* FireFox */
    appearance: none;
}
input:focus, textarea:focus{
    outline: none !important;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    color: var(--font-color3) !important;
}
input::-moz-placeholder, textarea::-moz-placeholder{
    color: var(--font-color3) !important;
}
input:-ms-input-placeholder, textarea::-ms-input-placeholder{
    color: var(--font-color3) !important;
}
select{
	font-size: 1rem;
}
select:focus{
    outline: none !important;
}
.bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg img {
	display: none;
}
.font_bold{
	font-weight: 600;
}
.row{
	margin-left: -16px;
	margin-right: -16px;
}
.row>*{
	padding-left: 16px;
	padding-right: 16px;
}
.my_container{
	max-width: 1320px;
    padding-right: 16px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
}
main{
	min-height: calc(100vh - 100px - 239px);
}
.main_pt{
    padding-top: 24px;
}
.main_pb{
    padding-bottom: 144px;
}
.show_model{
    padding: 64px 0;
}
/*吐司*/
.my_toast{
    position: fixed;
    bottom: 100px;
    right: calc(50% - 200px);
    z-index: 1010;
}
.my_toast .toast{
    position: relative;
	background-color: var(--green-color);
    width: 400px;
    border: none;
    box-shadow: 0 1px 10px rgb(0 0 0 / 20%);
    border-radius: 4px
}
.my_toast .toast-body {
    padding: 24px;
    max-width: 100%;
    color: #fff;
}
.my_toast .btn-close {
    position: absolute;
    right: 8px;
    top: 14px;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-right: 0;
    color: var(--bg-color);
    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;
}
/*麵包屑*/
.breadcrumb_box{
    margin-bottom: 1rem;
}
.breadcrumb_box .breadcrumb{
    margin-bottom: 0;
    width: fit-content;
    padding: 2px 8px 4px 8px;
    background-color: var(--bg-color);
}
.breadcrumb_box .breadcrumb-item a{
    font-size: 14px;
    color: var(--font-color4);
}
.breadcrumb_box .breadcrumb-item.active a{
    color: var(--font-color);
}
/*置頂按鈕*/
.go_top{
    position: fixed;
    right: 28px;
    bottom: 48px;
    z-index: 2000;
}
.gotop_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.gotop_img{
    margin-bottom: 20px;
}
.gotop_txt{
    -webkit-writing-mode: vertical-rl;  
    writing-mode: vertical-rl;
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    transform:rotate(180deg);
}
/*頁面標題*/
.page_title {
    position: relative;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color2);
}
.page_title::before{
    width: 100px;
    content: "";
    height: 1px;
    background: linear-gradient(270deg, #D5B441 0%, rgba(213, 180, 65, 0.00) 100%);
    margin-right: 18px;
    opacity: .8;
}
.page_title::after{
    width: 100px;
    content: "";
    height: 1px;
    background: linear-gradient(90deg, #D5B441 0%, rgba(213, 180, 65, 0.00) 100%);
    margin-left: 16px;
    opacity: .8;
}
.page_title h1 {
    font-size: 24px;
}
/*區塊標題*/
.block_title{
    margin-bottom: 40px;
    text-align: center;
}
.block_title h2{
    font-weight: 400;
}
/*看更多按鈕*/
.block_viewmore{
    margin-top: 48px;
    text-align: center;
}
.block_viewmore .btn{
    margin: 0 auto;
}
/*載入動畫*/
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 3000;
    overflow: hidden;
}
.loader span {
    position: relative;
    width: 100px;
    height: 100px;
    display: block;
}
.loader span:before , .loader span:after{
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    /* box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset; */
}
.loader span:after {
    box-shadow: 0 2px 0 var(--second-color) inset;
    animation: rotate 2s linear infinite;
}
@keyframes rotate {
    0% {  transform: rotate(0)}
    100% { transform: rotate(360deg)}
}
/*header*/
.page_header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255 / 90%);
    /* 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;
}
.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: 100px;
}
.header_nav{
	flex: 1;
}
.header_nav .nav{
    margin-top: 24px;
	margin-left: -24px;
	margin-right: -24px;
    justify-content: flex-end;
    flex: 1;
}
.header_nav .nav-link{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 24px;
	color: var(--font-color);
}
.header_nav .nav-link.active{
	color: var(--main-color);
}
.header_right{
    width: fit-content;
}
.header_right .two_btn{
	margin-left: -16px;
	margin-right: -16px;
    padding-left: 8px;
    margin-top: 24px;
    margin-bottom: 0;
}
.header_right .two_btn>*{
	padding-left: 16px;
	padding-right: 16px;
    padding-bottom: 0;
}
.header_right .two_btn .btn{
    padding: 0;
    border: none;
    width: 20px;
    height: 24px;
    display: flex;
    align-items: center;
}
.header_right .two_btn .btn:focus{
    box-shadow: none;
}
.header_right .two_btn .btn img{
    width: 16px;
}
.header_nav .nav-item.dropdown:hover .dropdown-menu{
    display: block;
}
.header_nav .nav-item.dropdown .dropdown-menu{
    padding-top: 8px;
    border-radius: 0;
    border: none;
    background-color: transparent;
    min-width: 200px;
}
.header_menu_lv2_list ul{
    list-style: none;
    background-color: #fff;
    padding: 8px 0;
    border: solid 1px #e5e5e5;
    border-radius: 3px;
}
.header_menu_lv2_list .dropdown-item{
    padding: 8px 20px;
    color: var(--font-color2);
}
.header_menu_lv2_list .dropdown-item:hover{
    background-color: var(--bg-color);
    color: var(--font-color);
    font-weight: 500;
}
.mobile_menu_btn{
	display: none;
}
.mobile_menu_btn .btn{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    padding: 0;
}
.mobile_menu_btn .btn:focus{
    box-shadow:none;
}
.mobile_menu_btn .btn>div{
    width: calc(100% - 4px);
    height: 2px;
    background-color: var(--font-color2);
    transition: all .2s;
    border-radius: 2px;
}
.mobile_menu_btn .btn>div:nth-child(1){
    position: absolute;
    width: 100%;
    top: 2px;
    left: 0;
}
.mobile_menu_btn .btn>div:nth-child(0){
    margin-left: 0;
}
.mobile_menu_btn .btn>div:last-child{
    position: absolute;
    width: 100%;
    bottom: 2px;
    left: 0;
}
.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: 9px;
}
.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: 9px;
}
.under_page_header{
	height: 100px;
}
/*手機版選單*/
.mobile_sidebar {
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 1001;
    background-color: #fff;
    width: 100%;
    height: 0px;
    overflow: hidden;
    /* border-top: solid 1px var(--bg-color); */
}
.mobile_sidebar_list_box{
    overflow-y: auto;
    height: calc(100vh - 73px);
}
.mobile_sidebar_list{
	padding: 0;
    list-style: none;
    margin-bottom: 0;
}
.mobile_sidebar_list a{
	display: block;
	padding: 12px 20px;
	border-bottom: solid 1px var(--bg-color);
	font-weight: 500;
}
.mobile_sidebar_list_lv2{
    display: none;
}
.mobile_sidebar_list li.dropdown{
    position: relative;
}
.mobile_sidebar_dropdown_btn{
    position: absolute;
    right: 12px;
    top: 0;
    height: 48px;
    width: 50%;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mobile_sidebar_list li.dropdown.lesson .mobile_sidebar_dropdown_btn{
    width: 100%;
}
.mobile_sidebar_dropdown_btn i{
    font-size: 20px;
    color: var(--main-color);
}
.mobile_sidebar_dropdown_btn i[class*="dash"]{
    display: none;
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_list_lv2{
    display: block;
    padding-bottom: 24px;
}
.mobile_sidebar_list li.dropdown.active>a{
    background-color: var(--bg-color);
	border-bottom: none;
}
.mobile_sidebar_list li.dropdown.active>a:hover, .mobile_sidebar_list li.dropdown.active>a:focus{
    background-color: var(--bg-color);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_dropdown_btn i[class*="dash"]{
    display: block;
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_dropdown_btn i[class*="plus"]{
    display: none;
}
.mobile_sidebar_list_lv2 ul{
    list-style: none;
    margin-left: 28px;
    padding-left: 4px;
    border-left: solid 1px var(--border-color);
}
.mobile_sidebar_list_lv2 ul a{
    color: var(--font-color);
    font-weight: 400;
    padding: 12px 20px;
}
.mobile_sidebar_list_lv2 ul a:hover, .mobile_sidebar_list_lv2 ul a:active{
    background-color: #fff;
    color: var(--font-color);
}
/*搜尋*/
.search_offcanvas{
    height: 100vh;
    border: none;
    background-color: rgb(255 255 255 / 90%);
}
.search_offcanvas.show~.offcanvas-backdrop.show{
    background-color: transparent;
}
.search_offcanvas .offcanvas-header{
    padding: 24px 0;
}
.search_offcanvas .offcanvas-body{
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vh;
}
.close_search{
    padding: 0 !important;
    font-size: 40px;
    background-image: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 0 !important;
}
.close_search:focus{
    box-shadow: none;
}
.search_title{
    text-align: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.header_search{
    position: relative;
}
.header_search input, .header_search select{
    padding-right: 72px;
}
.header_search input:focus{
	box-shadow: none;
}
.header_search .btn{
    position: absolute;
    right: 0;
    top: 0;
	padding: 0 16px;
	height: 48px;
	display: flex;
	align-items: center;
}
.header_search .btn img{
    width: 20px;
}
.hot_search{
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
}
.hot_search_list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
.hot_search_item{
    padding-left: 12px;
    padding-right: 12px;
}
.hot_search_item a{
    border-bottom: solid 1px var(--font-color2);
    display: block;
}
/*登入註冊*/
#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{
    padding-bottom: 48px;
}
.footer_row{
    height: 150px;
}
.footer_row>div:not(:last-child){
    border-right: solid 1px var(--border-color);
}
.footer_logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_logo img{
    width: 150px;
}
.footer_contactus{
    display: flex;
    align-items: center;
    justify-content: center;
}
.office_info_list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    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 12px;
}
.footer_nav_group{
    display: flex;
    margin-left: -24px;
    margin-right: -24px;
}
.footer_nav_list {
    flex: 1;
    padding-left: 24px;
    padding-right: 24px;
}
.footer_nav_title {
    position: relative;
    font-size: 20px;
    margin-bottom: 16px;
    border-bottom: solid 2px #fff;
    padding-bottom: 4px;
}
.footer_nav_title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 20%;
    background-color: var(--main-color-dark);
}
.footer_nav_group .nav li{
    width: 100%;
}
.footer_nav_group .nav li a h5 {
    font-size: 1rem;
    line-height: 1.2;
}
.footer_nav.onenav .nav{
    justify-content: flex-end;
    margin-left: 0;
    margin-right: 0;
}
.footer_nav.onenav li+li{
    margin-left: 48px;
}
.footer_line{
    border-top: solid 1px #fff;
    margin-top: 24px;
    margin-bottom: 24px;
}
.footer_row_bottom .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;
    margin-top: 20px;
}
.footer_social{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_social .nav-item{
    width: 24px;
}
.footer_social .nav-item:not(:first-child){
    margin-left: 48px;
}
.footer_social .nav-link{
    padding: 0;
    transition: all .2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_social .nav-link:hover{
    opacity: .9;
}
.footer_social img{
    width: 24px;
}
/*按鈕並排*/
.two_btn{
	display: flex;
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: -8px;
}
.two_btn>div{
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 8px;
}
/*按鈕-實心*/
.maincolor_btn{
	border: solid 1px var(--font-color2);
	background-color: var(--font-color2);
	font-size: 12px;
	font-weight: 400;
	height: 48px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
    border-radius: 0;
    width: fit-content;
    min-width: 160px;
    transition: all .2s;
}
.maincolor_btn:hover, .maincolor_btn:focus{
	border: solid 1px var(--font-color3);
	background-color: var(--font-color3);
	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: 12px;
	font-weight: 400;
	height: 40px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 0;
    min-width: 100px;
    transition: all .2s;
}
.maincolor_btn_xs:hover, .maincolor_btn_xs:focus{
	border: solid 1px var(--font-color3);
	background-color: var(--font-color3);
	color: #fff;
	box-shadow: none;
}
.maincolor_btn_xs.radius{
	border-radius: 40px;
}
/*按鈕-框線*/
.maincolor_border_btn{
	border: solid 1px var(--main-color);
	background-color: #fff;
	font-size: 12px;
	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: 12px;
	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{
	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_haveunit{
    position: relative;
}
.my_input_unit{
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 14px;
    color: var(--font-color4);
}
.my_input_haveunit .my_input{
    padding-right: 48px;
}
/*單行輸入框*/
.my_input{
    border: solid 1px var(--border-color);
    border-radius: 2px;
    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-color3);
	box-shadow: none;
}
.my_input:disabled, .my_input:read-only{
    background-color: #f5f5f5;
    border: solid 1px var(--border-color);
}
.my_input:disabled:hover, .my_input:read-only, .my_input:disabled:focus{
    box-shadow:none;
}
.my_input.radius{
    border-radius: 48px;
}
/*單行輸入框-主色框*/
.my_input_color{
    border: solid 1px var(--main-color);
    border-radius: 2px;
    height: 48px;
    background-color: rgb(255 255 255 / 30%);
    font-size: 1rem;
    color: var(--font-color);
    padding: 8px 16px;
    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: none;
}
/*多行輸入框*/
.my_textarea{
    border: solid 1px var(--border-color);
    border-radius: 2px;
    background-color: #fff;
    font-size: 1rem;
    padding: 8px 16px;
    color: var(--font-color);
    transition: all .2s;
}
.my_textarea:hover, .my_textarea:focus{
	border: solid 1px var(--font-color3);
	box-shadow: none;
    min-height: 60px;
}
.my_textarea:disabled{
    background-color: #f5f5f5;
    resize:none;
    border: solid 1px var(--font-color4);
}
.my_textarea:disabled:hover, .my_textarea:disabled:focus{
    box-shadow:none;
}
/*下拉*/
.my_select{
    border: solid 1px var(--border-color);
    border-radius: 2px;
    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(--font-color3);
	box-shadow: none;
}
.my_select:disabled{
    background-color: #f5f5f5;
    border: solid 1px var(--font-color4);
}
.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;
}
/*表單*/
.my_form{
    max-width: 550px;
    margin-top: -24px;
}
.my_form_row{
    padding-top: 24px;
}
.my_form_row .form-label{
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--font-color4);
    /* background-color: #fff;
    margin-left: 4px;
    margin-bottom: -12px;
    display: block;
    position: relative;;
    z-index: 2;
    width: fit-content;
    padding: 0 2px; */
}
.my_form_row .form-label .red{
    color: var(--red-color);
    margin-left: 4px;
    position: relative;
    top: 2px;
}
.my_form_btn{
    padding-top: 32px;
    text-align: right;
}
.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: -4px;
    margin-right: -4px;
}
.my_city_select>div{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
.my_city_select>div .my_input, .my_city_select>div .my_select{
    width: 100%;
    max-width: 100%;
}
.error_msg{
    margin-top: 16px;
    color: var(--danger-color);
}
/*文章列表*/
.article_card_list{
    margin-bottom: -32px;
}
.article_card_item{
    padding-bottom: 32px;
}
/*文章列表頁數*/
.page_box{
    margin-top: 40px;
}
.page_box .pagination{
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: -8px;
}
.page_box .page-item{
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 8px;
}
.page_box .page-link{
    border: none;
    color: var(--main-color);
    margin: 0 !important;
    padding: 0 12px;
    height: 40px;
    min-width: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
}
.page_box .page-link:hover, .page_box .page-link:focus{
    border: none;
    background-color: #fff;
}
.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;
}
/*模特兒卡片*/
.models_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -40px;
    margin-left: -24px;
    margin-right: -24px;
}
.models_item{
    padding-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
}
.models_list.small{
    margin-left: -16px;
    margin-right: -16px;
    justify-content: flex-start;
}
.models_list.small .models_item{
    padding-left: 16px;
    padding-right: 16px;
    width: 16.666%;
}
.model_card{
    display: block;
    width: 292px;
}
.models_list.small .model_card{
    display: block;
    width: 100%;
}
.model_card_img{
    position: relative;
    overflow: hidden;
}
.model_card_img img{
    width: 100%;
}
.model_card_img_default{
    transition: all .3s;
}
.model_card_img_default .bg{
    padding-bottom: 145%;
}
.model_card_img_hover{
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s;
}
.model_card_img_hover .bg{
    padding-bottom: 145%;
}
.model_card:hover .model_card_img_default{
    opacity: 0;
}
.model_card:hover .model_card_img_hover{
    opacity: 1;
}
.model_card_name{
    padding: 12px 16px;
    text-align: center;
}
/*服務卡片*/
.service_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -40px;
}
.service_item{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    width: 25%;
}
.service_card{
    display: block;
}
.service_card_img{
    margin-bottom: 12px;
}
.service_card_img .bg{
    padding-bottom: 69%;
}
.service_card_num{
    position: relative;
    color: var(--second-color);
    padding-bottom: 12px;
    border-bottom: solid 1px var(--border-color);
    margin-bottom: 16px;
}
.service_card_num::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 1px;
    background-color: var(--main-color);
}
.service_card_title{
    margin-bottom: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}
.service_card_txt{
    font-size: 14px;
    color: var(--font-color4);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}
/*最新消息卡片*/
.news_card_list{
    margin-bottom: -40px;
}
.news_card_item{
    padding-bottom: 40px;
}
.news_card{
    display: block;
}
.news_card_date{
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
    color: var(--font-color4);
}
.news_card_date::after{
    content: "";
    height: 1px;
    width: 40px;
    display: block;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--second-color);
}
.news_card_img{
    margin-bottom: 8px;
}
.news_card_img .bg{
    padding-bottom: 69%;
}
.news_card_title{
    font-weight: 600;
    font-size: 1rem;
    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-color4);
    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: 800px;
}
.from_ckeditor p{
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0.9px;
    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;
}
.from_ckeditor figure img{
    max-width: 100%;
}
.from_ckeditor .text-small {
    font-size: 14px;
}
.from_ckeditor .text-tiny {
    font-size: 12px;
}
.from_ckeditor ul, .from_ckeditor ol{
    margin-bottom: 0;
}
.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);
}
.from_ckeditor blockquote{
    margin-bottom: 0;
    background-image: url(../img/slogan_img.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 32px;
}
.from_ckeditor blockquote::after{
    content: "";
    display: block;
    margin: 0 auto;
    height: 1px;
    width: 40%;
    background-color: var(--second-color);
}
.from_ckeditor blockquote p{
    font-size: 18px;
    color: var(--font-color3);
    text-align: center;
    padding-top: 52px;
    padding-bottom: 16px;
}
.from_ckeditor .ck-widget__type-around__button svg {
    display: none;
}
.from_ckeditor .ck-widget__type-around__button svg {
    display: none;
}
/*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);
}
/*分類導航列*/
.class_nav{
    margin-bottom: 24px;
}
.class_nav .nav {
    justify-content: center;
}
.class_nav .nav-item {
    padding: 0 16px;
}
.class_nav .nav-link {
    padding: 0 0 4px 0;
    color: var(--font-color3);
}
.class_nav .nav-link:hover {
    color: var(--font-color);
}
.class_nav .nav-link.active {
    border-bottom: solid 1px var(--main-color);
    color: var(--main-color);
    font-weight: 500;
}
/*首頁輪播圖*/
.banner_link img{
    width: 100%;
}
.index_banner_box .banner_button .swiper-pagination{
    display: none;
}
.index_banner_box .banner_button .swiper-button-next, 
.index_banner_box .banner_button .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgb(0 0 0 / 30%);
    display: none;
}
.index_banner_box:hover .banner_button .swiper-button-next, 
.index_banner_box:hover .banner_button .swiper-button-prev {
    display: flex;
}
.index_banner_box .banner_button .swiper-button-next:after, 
.index_banner_box .banner_button .swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}
/*首頁-公司介紹*/
.index_aboutus{
    margin-bottom: 144px;
    background-color: var(--bg-color);
}
.index_aboutus_content{
    width: 100%;
    max-width: 1288px;
    margin: 0 auto;
    border-bottom: solid 1px var(--second-color);
    padding: 64px 16px 80px 16px;
}
.index_aboutus_halo{
    width: 160px;
    height: 72px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.index_aboutus_gold{
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border-top: 4px solid var(--second-color);
}
.index_aboutus_title{
    font-size: 24px;
    text-align: center;
    color: var(--font-color3);
}
.index_aboutus_txt{
    text-align: center;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    color: var(--font-color4);
    width: 100%;
    max-width: 600px;
    white-space: pre-line;
}
.index_aboutus_btn{
    margin-top: 48px;
}
.index_aboutus_btn .btn{
    margin: 0 auto;
}
/*首頁-服務項目*/
.index_service{
    margin-bottom: 144px;
}
/*首頁-模特兒*/
.index_models{
    margin-bottom: 144px;
}
.index_models .block_title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index_models .block_title .index_models_star{
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    display: flex;
}
.index_models .block_title::before{
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--second-color);
    margin-right: 8px;
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
}
.index_models .block_title::after{
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--second-color);
    margin-left: 8px;
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotate(-45deg);
}
/*兒童模特兒招生*/
.index_kid_recruit{
    margin-bottom: 144px;
}
.kid_recruit_content{
    background-image: url(../img/kid_model.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.kid_recruit_content_txt{
    text-align: right;
    padding:52px 72px 64px 72px;
}
.kid_recruit_title_en{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    background: linear-gradient(180deg, rgba(237, 158, 53, 0.62) 0%, #D5B441 77.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kid_recruit_title{
    font-size: 60px;
    margin-top: 16px;
}
.kid_recruit_age{
    font-size: 24px;
    color: var(--font-color4);
    margin-top: 16px;
    font-weight: 500;
}
.kid_recruit_btn{
    margin-top: 16px;
}
.kid_recruit_btn .btn{
    width: 250px;
    margin-left: auto;
    font-size: 20px;
}
/*首頁-創辦人*/
.index_founder{
    margin-bottom: 144px;
}
.index_founder_content{
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 72px;
}
.index_founder_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}
.index_founder_img img{
    width: 100%;
}
.index_founder_txt{
    position: relative;
    width: 100%;
    max-width: 688px;
    margin-left: auto;
    padding: 52px 16px 52px 72px;
    background-color: rgb(255 255 255 / 90%);
    z-index: 2;
}
.index_founder_goldline{
    position: absolute;
    top: -16px;
    left: -16px;
}
.index_founder_txt .block_viewmore .btn {
    margin-left: 0;
}
.index_founder_slogan_by{
    font-size: 20px;
    display: flex;
    justify-content: flex-end;
    color: var(--font-color2);
    align-items: center;
    margin-top: 40px;
}
.index_founder_slogan_by::before{
    content: "";
    width: 48px;
    height: 1px;
    background-color: var(--border-color);
    margin-right: 12px;
    position: relative;
    top: 2px;
}
.index_founder_slogan_txt{
    margin-top: 20px;
    font-size: 24px;
    color: var(--font-color2);
}
.index_founder_name{
    margin-bottom: 16px;
    font-size: 60px;
}
.index_founder_title{
    margin-bottom: 24px;
    font-size: 20px;
}
.index_founder_introduce{
    margin-bottom: 40px;
    color: var(--font-color4);
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}
/*首頁-作品集*/
.index_collection{
    margin-bottom: 144px;
}
.index_collection .block_title{
    margin-bottom: -76px;
    margin-left: calc(55% + 72px);
    text-align: left;
    position: relative;
    z-index: 2;
}
.collectionSwiper{
    padding-bottom: 48px;
}
.collectionSwiper_item{
    display: flex;
    background-color: #fff;
}
.collectionSwiper_img_box{
    width: 55%;
}
.collectionSwiper_img .bg{
    padding-bottom: 75%;
}
.collectionSwiper_content{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 132px;
    padding-left: 72px;
    padding-bottom: 96px;
    padding-right: calc(50% - 644px);
}
.collectionSwiper_title{
    font-size: 60px;
    margin-bottom: 40px;
}
.collectionSwiper_short{
    font-size: 14px;
    line-height: 1.8;
    color: var(--font-color4);
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    word-break: break-all;
}
.collectionSwiper .swiper-pagination{
    bottom: 0;
    display: flex;
    justify-content: center;
}
.collectionSwiper .swiper-pagination-bullet {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color4);
    opacity: 1;
    border: solid 1px transparent;
    background-color: transparent;
    padding-bottom: 2px;
    padding-left: 1px;
    margin-left: 16px !important;
    margin-right: 16px !important;
}
.collectionSwiper .swiper-pagination-bullet-active {
    color: var(--font-color);
    border: solid 1px var(--font-color2);
    border-radius: 50%;
}
.collectionSwiper_model{
    font-size: 20px;
}
/*藝人列表*/

/*搜尋結果頁*/
.search_for{
    margin-bottom: 24px;
    text-align: center;
}
.search_for_keyword{
    font-weight: 500;
}
/*常見問題*/
.faq_question_title{
    background-color: var(--bg-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--font-color3);
}
.faq_question_title_txt{
    flex: 1;
    font-weight: 400;
}
.faq_question_icon{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.faq_item:hover .faq_question_title_txt{
    color: var(--main-color);
}
.faq_item.active .faq_question_icon{
    -moz-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);
    color: var(--second-color);
}
.faq_item+.faq_item{
    margin-top: 24px;
}
.faq_item.active .faq_question_title{
    border-bottom: solid 1px #f1f1f1;
}
.faq_answer_box{
    height: 0;
    overflow: hidden;
}
.faq_answer{
    padding: 16px;
}
/*文章內容*/
.article_header{
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
}
.article_title{
    margin-bottom: 8px;
}
.article_page_content{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
}
.share_list_box{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
}
.share_list_box .txt{
    margin-right: 12px;
    color: var(--main-color);
    font-size: 14px;
}
.share_list_box .txt:after{
    content: "";
    display: inline-block;
    height: 2px;
    width: 12px;
    background-color: var(--second-color);
    margin-left: 4px;
    margin-right: 4px;
}
.share_list{
    margin-bottom: 0;
    display: flex;
    list-style: none;
    padding-left: 0;
}
.share_item+.share_item{
    margin-left: 16px;
}
.share_item img{
    width: 20px;
}
/*聯絡我們*/
.contact_us_remind{
    text-align: center;
    margin-bottom: 24px;
}
.contact_form{
    margin-left: auto;
    margin-right: auto;
}
.for_collaborate{
    display: none;
}
.for_collaborate.show{
    display: block;
}
.contact_form .my_textarea{
    min-height: 150px;
}
.contact_form .my_select{
    max-width: 100%;
}
/*模特兒介紹頁*/
.model_info_box{
    display: flex;
    width: 100%;
    max-width: 1472px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    height: calc(100vh - 100px);
}
.model_info_content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    padding-right: 40px;
}
.model_info_img{
    width: 60%;
}
.model_info_img .bg{
    padding-bottom: 69%;
}
.model_name{
    margin-bottom: 12px;
    font-size: 60px;
    font-weight: 600;
}
.model_info_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.model_info_item{
    display: flex;
    justify-content: space-between;
    color: var(--font-color2);
}
.model_info_item+.model_info_item::before{
    content: "/";
    margin-left: 4px;
    margin-right: 4px;
}
.model_info_item_title{
    letter-spacing: 0.1rem;
}
.model_social_list_box{
    margin-top: 32px;
}
.model_social_list_box .nav-item:not(:first-child) {
    margin-left: 32px;
}
.model_social_list_box .nav-link {
    padding: 0;
    transition: all .2s;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model_social_list_box .nav-link:hover {
    opacity: .9;
}
.model_social_list_box img {
    width: 100%;
}
.model_download_btn{
    margin-top: 48px;
}
.model_photo_box{
    padding-left: 72px;
    padding-right: 72px;
}
.model_video_box{
    margin-top: 144px;
}
.model_photo_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -24px;
}
.model_photo_item{
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 24px;
}
.model_photo{
    height: 360px;
}
.model_photo img{
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}
.model_video_Swiper_box{
    position: relative;
    padding-left: 72px;
    padding-right: 72px;
}
.model_video_Swiper_box .swiper-button-prev{
    left: 16px;
}
.model_video_Swiper_box .swiper-button-next{
    right: 16px;
}
.model_video_Swiper_box .swiper-button-next, 
.model_video_Swiper_box .swiper-button-prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px var(--font-color2);
}
.model_video_Swiper_box .swiper-button-next::after, 
.model_video_Swiper_box .swiper-button-prev::after{
    font-size: 16px;
    color: var(--font-color);
}
.model_video_Swiper_box .swiper-pagination{
    display: none;
}
.model_video_item .bg{
    padding-bottom: 56%;
}
.model_video_item a{
    display: block;
    position: relative;
}
.model_video_item_cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .2s;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 30%);
    color: #fff;
}
.model_video_item a:hover .model_video_item_cover{
    opacity: 1;
}
/*小小藝人表演訓練班*/
.kidrecruit_title{
    position: relative;
    background-image: url(../img/kid_model.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 28.6%;
    margin-bottom: 28px;
}
.kidrecruit_title .txt{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 48px;
    padding: 16px 40px;
    color: var(--font-color2);
} 
.kid_recruit_ckeditor{
    margin-left: auto;
    margin-right: auto;
}
.kid_recruit_submit{
    margin-top: 144px;
}
.upload_photo_btn{
    margin-top: 8px;
}
.upload_photo_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
    margin-top: 16px;
}
.upload_photo_item{
    width: 150px;
    padding-left: 8px;
    padding-right: 8px;
}
.upload_photo_item img{
    width: 100%;
}
#upload_photo{
    color: transparent;
}
.delete_photo{
    margin-top: 4px;
    background-color: var(--bg-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 8px;
    font-size: 14px;
    cursor: pointer;
}
/*關於我們*/
.about_us_box{
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding-bottom: 50px;
}
.about_us_img{
    width: 55%;
}
.about_us_img .bg{
    height: calc(100vh - 100px);
    background-size: 100% auto;
}
.about_us_content_box{
    flex: 1;
    padding-right: calc(50vw - 660px);
    padding-left: 72px;
    padding-bottom: 72px;
}
.about_us_title{
    margin-bottom: 40px;
    color: var(--font-color2);
}
.about_us_title .block_title{
    text-align: left;
}
.about_us_title{
    margin-bottom: 24px;
}
.about_us_title h1{
    font-size: 60px;
}
.about_us_content{
    line-height: 1.8;
    color: var(--font-color3);
    white-space: pre-line;
}
.aboutus_ckeditor{
    margin-left: auto;
    margin-right: auto;
}
.founder_info_box{
    margin-top: 72px;
    display: flex;
    align-items: center;
}
.founder_info_img{
    width: 45%;
    text-align: center;
}
.founder_info_img img{
    width: 100%;
    max-width: 450px;
}
.founder_info_content{
    flex: 1;
    padding-left: 48px;
}
/*作品列表頁*/
.collection_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -48px;
}
.collection_item{
    width: 33.333%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 48px;
}
.collection_card_img{
    margin-bottom: 8px;
}
.collection_card_img .bg{
    padding-bottom: 75%;
}
.collection_card_date{
    margin-bottom: 8px;
    color: var(--font-color4);
    font-size: 14px;
    text-align: center;
}
.collection_card_date::after {
    content: "";
    height: 1px;
    width: 40px;
    display: block;
    margin-top: 2px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--second-color);
}
.collection_card_title{
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.collection_card_model{
    margin-top: 4px;
    color: var(--font-color4);
}
.collection_card_model_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.collection_card_model_list span+span::before {
    content: "/";
    margin-left: 4px;
    margin-right: 4px;
}
/*作品介紹*/
.collection_header{
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 40px;
}
.collection_title{
    margin-bottom: 8px;
    /* text-align: center; */
}
.collection_info_row{
    display: flex;
    justify-content: space-between;
}
.collection_header .share_list_box{
    margin-top: 0;
}
.collection_photo_box{
    padding-left: 72px;
    padding-right: 72px;
}
.collection_photo_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -24px;
}
.collection_photo_item {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 24px;
}
.collection_photo a {
    position: relative;
    display: flex;
    align-items: center;
    height: 360px;
}
.collection_photo img {
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}
.collection_photo_item a:hover .model_video_item_cover{
    opacity: 1;
}
.collection_model{
    margin-top: 144px;
}
.collection_model .models_list{
    justify-content: center;
}
.maybelike_collection_model{
    margin-top: 144px;
}
/*服務項目*/
.service_list_box{
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
}
.service_item_v+.service_item_v{
    margin-top: 40px;
}
.service_card_v{
    display: flex;
}
.service_card_v_img{
    width: 300px;
}
.service_card_v_img .bg {
    padding-bottom: 69%;
}
.service_card_v_body {
    flex: 1;
    padding-left: 24px;
}
.service_card_v_title {
    margin-bottom: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
}
.service_card_v_txt{
    font-size: 14px;
    color: var(--font-color4);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    word-break: break-all;
}
/*服務項目內容頁*/
.service_header{
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 12px;
}
.service_title {
    margin-bottom: 8px;
}
.service_page_content {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
}
/*404頁面*/
.error_content{
    padding-top: 100px;
}
.error_img{
    text-align: center;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.error_img img{
    width: 100%;
}
.error_title{
    text-align: center;
    margin-top: 16px;
    font-size: 20px;
}