﻿@charset "utf-8";
/* CSS Document */


* {
    margin: 0;
    padding: 0;
    font-family:arial, '微軟正黑體', sans-serif;
    font-size: 15px;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a{
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
:root{
	--bs-body-color:#333 !important;
}
#fanuc a{
	color: #333;
}
#fanuc a:hover{
	color: #b31700;
}
#fanuc a.whitelink{
	color: #fff;
}
#fanuc hr{
	background-color: #999;
	margin: 35px auto;
}


/*body*/
#fanuc{
    width: 100%;
	overflow: hidden;
	background-color: #f4f4f4;
	padding-top: 75px;
}
#fanuc .container{
	padding: 0 35px;
	max-width: 1200px;
}


/*表單*/
form label{
	font-weight: bold;
	line-height: 35px;
}
form input{
	line-height: 35px;
	border: 1px solid #ccc;
	padding: 0 15px;
}


/*選單*/
header{
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #ffd702;
	padding: 20px 0;
	z-index: 100;
	transition: all 0.5s ease 0s;
}
.header-change{
	box-shadow: 1px 1px 15px rgba(43,43,43,.12);
}

#menu_control{
	position: absolute;
	z-index: -111;
	opacity: 0;
}
.header{
	width: 100%;
	height: auto;
	position: relative;
}
.logo{
	float: left;
	width: 100%;
	max-width: 230px;
	margin-top: 5px;
}
.logo a{
	display: block;
}
.logo img{
	max-width: 100%;
	vertical-align: middle;
}
.menu_btn{
	width: 30px;
	height: 22px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
}
.menu_btn span{
	width: 30px;
	height: 2px;
	display: block;
	background-color: #333;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.menu_btn::before{
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #333;
	top: 0;
	bottom: auto;
	margin: auto;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease 0s;
}
.menu_btn::after{
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #333;
	top: auto;
	bottom: 0;
	margin: auto;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease 0s;
}

nav{
	position: absolute;
	background-color: #efefef;
	width: calc(100% + 70px);
	margin-left: -35px;
	padding: 0 35px;
	height: calc(100vh - 50px);
	top: 48px;
	z-index: 21;
	transform: translate3d(120%,0,0);
	transition: all 0.5s ease 0s;
}
nav a{
	display: block;
	font-weight: bold;
	text-decoration: none;
	padding: 15px 0px;
	border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 651px) and (max-width: 1024px){
    nav{
    	height: calc(100vh - 57px);
		top: 55px;
    }
}

#menu_control:checked ~ .header nav{
	transform: translate3d(0,0,0);
}
#menu_control:checked ~ .header .menu_btn span{
	opacity: 0;
}
#menu_control:checked ~ .header .menu_btn::before{
	transform: translate3d(-50%,500%,0) rotate(45deg);
}
#menu_control:checked ~ .header .menu_btn::after{
	transform: translate3d(-50%,-500%,0) rotate(-45deg);
}


/*電腦版選單*/
@media screen and (min-width: 1024px) {
	.header{
		display: block;
	}
    .menu_btn{display: none;}
    nav{
    	float: right;
    	display: flex;
    	position: relative;
    	margin-top: 8px;
    	margin-left: auto;
    	padding: 0;
    	width: auto;
    	height: auto;
    	left: 0;
    	top: 0;
    	background-color: transparent;
    	transform: translate3d(0,0,0);
    }
    nav a{
		border-bottom: none;
		width: auto;
		letter-spacing: 1px;
		text-align: center;
		padding: 0 30px;
		position: relative;
    }
    nav a::before{
    	content: "";
		display: block;
		position: absolute;
		width: 1px;
		height: 15px;
		background-color: #555;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
    }
    nav a:first-child::before{
    	display: none;    	
    }
}

.sub_menu{
	float: right;
	display: flex;
	align-items: center;
}
.qabtn {
	display: block;
	width: 37px;
}
.qabtn img{
	max-width: 35px;
}
.signup a, .login a {
    position: relative;
    top: 2px;
}
.login_line {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #fff;
    margin: 0 10px;
    position: relative;
    top: 2px;
}
.signup, .login{
	display: none;
	position: relative;
	background-color: #a72822;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 37px;
	width: auto;
	min-width: 230px;
	border-radius: 50px;
	text-align: center;
	margin-left:10px;
}
.signup img, .login img{
	max-width: 20px;
	margin-right: 10px;
}
.signup{
	display: block;
	min-width: 200px;
}
#member_name{
	margin-right: 5px;
}

.xs_signup, .xs_login{
	display: none;
}


/*會員登入視窗*/
.login_window { 
	display: block;
	position: relative;
    width: 100%;
	max-width: 880px;
	min-height: 530px;
	padding: 70px 25px;
	border-top: 8px solid #ffd702;
	background-color: white;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	overflow: auto;
	margin: 0 auto;
}
.login_form{
	position: relative;
	width: calc(100% - 50px);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
#fanuc .login_form hr, #fanuc .logininfo_form hr{
	background-color: #aaa;
	margin: 25px auto 50px;
}
.login_form a{
	color: #0062ae !important;
}
.login_item{
	width: 100%;
	max-width: 440px;
	margin: 20px auto 0;
	text-align: left;
	letter-spacing: 1px;
	position: relative;
}
.login_item label{
	width: 100px;
}
.login_item input{
	width: calc(100% - 106px);
	border: 1px solid #dadada;
	line-height: 35px;
	padding: 0 10px;
}
.remind, .remind1 {
    display: none;
    padding: 10px 0;
    color: red;
    font-size: 13px;
    position: absolute;
    bottom: -23px;
}
.login_item.row{
	margin: 40px auto 0 !important;
	padding-bottom: 35px;
}
.login_item .col-sm-8{
	width: calc(100% - 70px);
	padding: 0;
}
.login_item .col-sm-8 label{
	width: auto;
}
.login_item .col-sm-8 input{
	width: auto;
	margin-right: 10px;
}
.login_item .col-sm-4{
	width: 70px;
	text-align: right;
	padding: 0;
	display: flex;
    align-items: center;
}
.web_btn.login_btn{
	max-width: 440px;
	padding-top: 35px;
}


/*會員登入錯誤*/
.login_wrong{
	display: none;
}
.login_wrong, .login_wrong a{
	font-size: 19px;
	font-weight: bold;
}
.login_wrong img{
	max-width: 40px;
	display: block;
	margin: 0 auto 10px;
}
.wrong_cd{
	font-weight: bold;
	color: #ff0000;
	font-size: 19px;
}
.wrong_cd span{
	display: inline-block;
	margin: 0 2px;
	font-size: 19px;
}
.login_wrong.wrong5 span, .login_wrong.wrong_account span{
	font-size: 19px;
	color: #ff0000;
}


/*會員專區*/
.logininfo_form{
	display: none;
}
#logininfo{
	width: 100%;
	background-color: #fff;
	border-top: 8px solid #ffd702;
	border-bottom: 4px solid #ddd;
	padding-top: 35px;
	padding-bottom: 35px;
}
.logininfo_block{
	padding:35px;
}
.logininfo_block:first-child{
	border-bottom: 8px solid #f4f4f4;
}
.info_item{
	position: relative;
	margin: 0 auto 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e7e7e7;
}
.info_item label span.must{
	display: none;
}
.info_item.mustAns span.must{
	color: #ff0000;
	border: 1px solid #ff0000;
	width: auto;
	padding: 5px 10px;
	line-height: 1;
	margin-left: 10px;
}
.info_item.mustAns span.d_none.must{
	display: inline-block;
}
.info_item.mustAns span.d_small_block.must{
	display: none;
}
.logininfo_block .info_item:last-child, .sign_block .info_item:last-child, .info_item_noeffect{
	margin:0 auto;
	padding:0;
	border: none;
}
.info_item label, .info_item .listth{
	width: 215px;
	display: inline-block;
}
.info_item input, .info_item span{
	width: calc((100% - 215px) / 2 - 5px);
	display: inline-block;
}
.info_item.longtype input{
	width: 63%;
}
.info_item .listtd{
	width: calc(75% / 2 + 130px);
	display: inline-block;
}
.info_item .listtd input{
	width: calc(100% - 135px);
}
.info_item span{
	font-size: 14px;
	padding-left: 20px;
}
.sign_remark{
	width: 100%;
	font-size: 13px;
	padding-left: 220px;
	margin-top: 10px;
}
.sign_remark.remark_red, .sign_remark .remark_red{
	color: #ff0000;
}
.sign_remark .remark_red{
	display: inline-block;
	width: auto;
	padding:0;
}
.web_btn.logininfo_btn{
	margin: 35px auto 0;
}

/*組合式*/
.info_item.form_itemset{
	display: flex;
	flex-wrap: wrap;
}
.info_item.form_itemset div:nth-child(1){
	width: 60%;
}
.info_item.form_itemset div:nth-child(1) input{
	width: calc(100% - 215px - 5px);
}
.info_item.form_itemset div:nth-child(2){
	width: calc(100% - 60%);
}
.info_item.form_itemset div:nth-child(2) label{
	width: 100px;
	padding-right: 15px;
	text-align: right;
}
.info_item.form_itemset div:nth-child(2) input{
	width: calc(60% - 100px - 4px);
}


/*會員註冊*/
#fanuc .innerblock .container.page_inner.signup_inner{
	padding: 0;
	background-color: transparent;
	border: none;
}
.block_step{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.step_item{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 17px;
	background-color: #e2e2e2;
	width: calc(100% / 4);
}
.step_itemin{
	display: block;
	background-color: #fff;
	padding: 25px 20px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	z-index: 1;
}
.step_item, .step_itemin{
	position: relative;
	clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
	transition: all 0.5s ease 0s;
}
.step_item:first-child{
	margin-left: 0;
}
#fanuc .step_item h6{
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	margin: 0 auto 10px;
	line-height: 1.1;
	color: #777;
}
.step_item p{
	margin: 0 auto;
	line-height: 1.1;
	color: #777;
	font-weight: bold;
}

.step_item.step_now, .step_item.step_now .step_itemin{
	background-color: #ffd702;
}
#fanuc .step_item.step_now h6{
	color: #a62823;
}
.step_item.step_now p{
	color: #333;
}

.signup_notice {
    margin-top: 35px;
    line-height: 1.7;
}

#fanuc .sign_rule h6{
	text-align: left;
}
.sign_rule textarea{
	width: 100%;
	border: 1px solid #dadada;
	padding: 10px;
	font-size: 14px;
	margin: 15px auto;
}
.web_btn.signup_btn{
	margin-top:50px;
}
.signup_none{
	pointer-events: none;
	background-color: #f6f6f6 !important;
}
.web_btn button.signup_none a{
	color: #ccc !important;
}
.signup_must{
	display: block;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #ff0000;
	margin: 15px auto 0;
}
.signup_must_none{
	display: none !important;
}

.signup_inner .block_step, .sign_block{
	background-color: #fff;
	border-bottom: 4px solid #ddd;
	padding: 35px;
}
.sign_block form{
	width: 100%;
}

.info_check{
	display: flex;
}
.info_check span{
	line-height: 35px;
	font-size: 15px;
}
.info_check .subject{
	width: 215px;
	font-weight: bold;
}
.info_check .answer{
	width: calc(100% - 215px);
}

.signup_finish {
    padding: 80px 50px;
}
.signup_finish div ul{
	width: 80%;
	margin: 0 auto;
	line-height: 2;
	letter-spacing: 0.5px;
	padding-left: 0;
}
.signup_finish div ul li{
	list-style: none;
	position: relative;
	padding-left: 25px;
}
.signup_finish div ul li::before {
	content: "■";
	color: #a72822;
	position: absolute;
	left: 0;
	top: -2px;
}


/*footer*/
.scrolltop {
    background-color: #fff;
    color: #666;
    letter-spacing: 0.5px;
    text-align: right;
    padding: 15px 0;
}
.scrolltop img{
	max-width: 15px;
	display: inline-block;
	margin-left: 15px;
}
footer{
	background-color: #333;
	padding: 35px 0;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.8;
}
#fanuc footer h1{
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
}
footer .col-sm-6:nth-child(2){
	text-align: right;
}


/*banner*/
.web_banner{
	position: relative;
	display: block;
	width: 100%;
	height: 360px;
	background: #f1f1f1 url("../../images/banner.jpg") center center no-repeat;
	background-size: cover;
	margin-top: 77px;
}
.web_banner img {
    position: absolute;
    max-width: 100%;
    bottom: 23%;
}
.page_banner{
	position: relative;
	display: block;
	width: 100%;
	height: 160px;
	background: #f1f1f1 url("../../images/page_banner.jpg") center center no-repeat;
	background-size: cover;
	box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.15);
}


/*inner共用*/
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_minheight {
    min-height: 450px;
}

#fanuc h1, #fanuc h2, #fanuc h3, #fanuc h5, #fanuc h6{
	color: #333;
	font-weight: bold;
	margin: 0 auto;
}
#fanuc h2{
	font-size: 33px;
	text-align: center;
}
#fanuc h3{
	font-size: 30px;
	text-align: center;
}
#fanuc h5{
	font-size: 22px;
	text-align: center;
}
#fanuc h6{
	font-size: 19px;
	text-align: center;
}
#fanuc p{
	margin:0 auto;
	padding: 0;
}


.web_btn{
	font-size: 0;
	width: 100%;
	max-width: 500px;
	margin:0 auto;
	text-align: center;
}
.web_btn button{
	display: inline-block;
	border-radius: 5px;
	border: none;
	color: #fff;
	font-size: 15px;
	background-color: #a72822;
	width: calc(50% - 10px);
	transition: all 0.5s ease 0s;
}
.web_btn button a{
	padding: 10px;
	display: block;
	color: #fff !important;
}
.web_btn button:hover{
	background-color: #333;
}
.web_btn button + button{
	margin-left: 20px;
}
.web_btn button.btn_gray{
	background-color: #999;
	transition: all 0.5s ease 0s;
}
.web_btn button.btn_gray a{
	display: block;
	color: #fff !important;
}
.web_btn button.btn_gray:hover{
	background-color: #333;
}


/*首頁*/
.block_index{
	padding: 90px 0;
}


/*內頁*/
.font-bold{
	font-weight: bold;
}

#fanuc .page_title h3{
	color: #fff;
	font-size: 24px;
	text-align: left;
	letter-spacing: 1px;
	display: inline-block;
	min-width: 230px;
	border-bottom: 5px solid #a72822;
	margin: 0;
	padding-bottom: 15px;
}
.innerblock{
	padding-bottom: 85px;
	margin-top: -85px;
	position: relative;
}
#fanuc .innerblock .container.page_inner{
	max-width: 1130px;
	background-color: #fff;
	border-bottom: 4px solid #ddd;
	padding-top: 35px;
	padding-bottom: 35px;
}
#fanuc .innerblock.atleftsubmenu .container.page_inner{
	background-color: transparent;
	border-bottom: none;
	padding: 0;
	display: flex;
}


/*內頁左側選單*/
.left_submenu{
	position: relative;
	display: block;
	width: 230px;
}
.left_title {
    font-size: 18px;
    color: #fff;
    background-color: #111;
    padding: 15px;
}
.left_smmenu{
	display: none;
	position: absolute;
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.left_smmenu::after{
	content: "";
	display: block;
	position: absolute;
	background: transparent url(../../images/arrow-white.svg) center center no-repeat;
	background-size: contain;
	width: 12px;
	height: 7px;
	right: 15px;
	top: 42%;
	transform: rotate(90deg) translateY(-50%);
}
.left_submenu.left_submenu_visible .left_smmenu::after{
	top: 36%;
	transform: rotate(180deg) translateY(-50%);
}
#left_submenu{
	background: #e0e0e0;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
#left_submenu ul{
	list-style: none;
	padding: 0;
	margin: 0 auto;
}
#left_submenu a, .dropdown-btn {
	position: relative;
	padding: 10px 15px;
	color: #333;
	display: block;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
	border-bottom: 1px solid #bbb;
	overflow: hidden;
}
.dropdown-btn::after{
	content: "";
	display: block;
	position: absolute;
	background: transparent url(../../images/arrow-gray.svg) center center no-repeat;
	background-size: contain;
	width: 12px;
	height: 7px;
	right: 15px;
	top: 42%;
	transform: rotate(90deg) translateY(-50%);
}
.category-arrow{
	position: absolute;
	width: 12px;
	transform: rotate(90deg);
	right: 15px;
}
.dropdown-btn.arrow-change::after{
	top: 36%;
	transform: rotate(180deg) translateY(-50%);
}
.category-arrow img{
	max-width: 100%;
}
#left_submenu .dropdown-container {
	display: none;
	background-color: rgba(255,255,255,0.6);
}
#left_submenu .dropdown-container a{
	border-bottom: 1px solid #bbb;
	padding-left: 30px;
}
#left_submenu .dropdown-container li > ul a{
	padding-left: 45px;
}
#left_submenu .dropdown-container li > ul li > ul a{
	padding-left: 60px;
}
#left_submenu .dropdown-container li > ul li > ul li > ul a{
	padding-left: 75px;
}
.smmenu_black{
	display: none;
	position: fixed;
	z-index: 111;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	top: 0;
    left: 0;
}


.atleft_content{
	display: block;
	width: calc(100% - 230px - 45px);
	margin-left: 45px;
}


/**/
.page_select{
	margin-top: 20px !important;
}
.page_select .col-sm-6:nth-child(1){
	display: flex;
	align-items: flex-end;
}
#fanuc .pagination{
	margin: 0 -3px;
}
#fanuc .page-item{
	margin: 0 3px;
	border-radius: 2px;
}
#fanuc .page-link{
	background-color: #e5e5e5;
	border: none;
}
#fanuc .page-link:hover{
	color: #fff;
	background-color: #333;
}
#fanuc .page-item.active .page-link, #fanuc .page-end .page-link{
	background-color: #ffd702;
	border-color: transparent;
	color: #464646;
}

.change-visibleitem, .move-page {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.change-visibleitem select{
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 8px 5px;
	min-width: 60px;
	margin: 0 3px 0 20px;
}
.change-visibleitem{
	margin-bottom: 10px;
}
.pagebtn{
	min-width: 120px;
	background-color: #ddd;
	border: none;
	padding: 6.5px 15px;
	color: #333;
	border-radius: 3px;
	transition: all 0.5s ease 0s;
}
.pagebtn:hover{
	background-color: #333;
	color: #fff;
}
.move-page input:nth-child(1){
	width: 60px;
	padding: 0 5px;
	line-height: 30.5px;
	margin-right: 7px;
}


/*忘記密碼*/
.pwforget_form{
	width: 100%;
	max-width: 500px;
	margin:0 auto;
}
.pwforget_form label{
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
}
.pwforget_form input{
	width: 100%;
	margin: 30px auto 0;
}
.pwforget_form .web_btn{
	margin-top: 50px;
}


/*下載專區*/
.download_base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.download_baseitem{
	display: block;
	width: calc(100% / 4);
	margin: 20px 0;
	transition: all 0.5s ease 0s;
}
.download_baseitem img{
	display: block;
	margin: 0 auto;
}
#fanuc .download_baseitem h5{
	margin: 25px auto 5px;
}
.download_baseitem span{
	position: relative;
	display: block;
	color: #a72822;
	font-weight: bold;
	font-size: 13px;
	text-align: center;
}
.download_baseitem span::after{
	content: "＞";
	display: inline-block;
	position: relative;
	font-size: 15px;
	right: -5px;
	transition: all 0.5s ease 0s;
}
.download_baseitem:hover span::after{
	right: -15px;
}

/*檔案進階搜尋*/
.download_search{
	background-color: #fff;
	padding: 25px;
	margin-bottom: 30px;
	border-bottom: 4px solid #ddd;
}
.dl_searchitem{
	border-top: 1px solid #ddd;
	padding: 10px 0;
}
.dl_searchitem label{
	font-weight: normal;
}
.download_search .dl_searchitem:first-child{
	padding-top: 0;
	border-top: none;
}
.dl_searchitem img{
	width: 17px;
	margin-right: 10px;
}
.textinput{
	line-height: 30px;
	width: 100%;
	max-width: 400px;
	border: 1px solid #ccc;
	padding: 0 15px;
	margin-left: 10px;
}
.radioinput, .checkboxinput{
	margin-right: 15px;
}
.radioinput input, .checkboxinput input{
	margin: 0 5px 0 0;
}
.dl_btn {
    max-width: 380px;
    margin: 35px auto 0 0;
}
.dl_btn button{
	width: calc(50% - 5px);
}
.clearformbtn{
	display: inline-block;
	width: calc(50% - 5px);
	margin-right: 10px;
}
.clearformbtn input{
    display: block;
	border-radius: 5px;
	border: none;
	color: #fff;
	font-size: 15px;
	background-color: #999;
	width: 100%;
	padding: 10px;
	transition: all 0.5s ease 0s;
}
.clearformbtn input:hover{
	background-color: #333;
}


/*檔案下載*/
.dl_block {
    display: flex;
    justify-content: space-around;
    align-items: center;
	border: 1px solid #ccc;
	margin-top: 20px;
	background-color: #fff;
	word-break: break-word;
}
.dl_item{
	width: calc(100% - 160px);
}
.dl_btnblock{
	width: 160px;
	padding: 10px 20px;
	height: auto;
}
.dl_btnblock > span{
	font-size: 13px;
	display: block;
	margin-top: 5px;
}
.dl_item ul{
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	height: auto;
}
.dl_item ul li{
	padding: 10px;
	list-style: none;
	border: 1px solid #ccc;
	border-top: none;
	border-left: none;
	height: auto;
}
.dl_item ul li.dl_itemmix{
	padding: 0 !important;
	border: none;
}
.dl_item ul li.dl_itemmix ul{
	height: 100%;
	flex-wrap: nowrap;
}
.dl_item ul li.dl_itemmix ul li{
	width: 100% !important;
}
.dl_filever{
	--display: none;
}
@media screen and (min-width: 480px) {
	.dl_item > ul:last-child li{
		border-bottom: none;
	}
}
.dl_item > ul li:nth-child(1){
	width: 30%;
}
.dl_item > ul li:nth-child(2){
	width: 50%;
}
.dl_item > ul li:nth-child(3){
	width: 20%;
}
.dl_item > ul.dl_ulone li{
	width: 100%;
	padding: 0 0 10px 10px;
}
.dl_block.dl_blocktop .dl_item > ul.dl_ulone li{
	padding: 10px;
}

.dl_block.dl_blocktop{
	background-color: #ebebeb;
	border-color: #bbb;
}
.dl_block.dl_blocktop .dl_item ul li{
	border-color: #bbb;
	padding: 15px 10px;
}

.dl_tag {
    display: inline-block;
    font-size: 13px;
    border: 1px solid #ccc;
    background-color: #eee;
    padding: 2.5px 10px 0.5px;
}
.dl_ulone .dl_tag{
    margin-top: 10px;
    margin-right: 10px;
}
.dl_tag.tag_overview{
	float: right;
	margin: 0 0 5px 5px;
}
.dl_tag.tag_new{
	border-color: #b31700;
	background-color: #ff2100;
	color: #fff;
	margin-right: 5px;
	float: left;
}
.dl_tag.tag_file{
	border-color: #e6d0b5;
	background-color: #ffefdc;
	margin-right: 0px;
}
.dl_tag.tag_2d{
	border-color: #7ee79b;
	background-color: #c6ffd6;
}
.dl_tag.tag_3d{
	border-color: #928ee5;
	background-color: #c9c6ff;
}

.overview_window{
	display: none;
	position: fixed;
	z-index: 110;
	width: 85%;
	max-width: 1000px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 50px 70px;
	border-top: 8px solid #ffd702; 
    background-color: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
#fanuc .overview_window h5{
	text-align: left;
	margin-bottom: 20px;
}
.overview_item{
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.overview_item span:first-child{
	width: 80px;
}
.overview_item span:nth-child(2){
	width: calc(100% - 80px);
}
.overview_item textarea{
	margin-top: 15px;
	width: 100%;
}
.black_overlay{ 
    display: none; 
    position: fixed; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 100vh; 
    background-color: black; 
    z-index:100; 
    -moz-opacity: 0.7; 
    opacity:.70; 
    filter: alpha(opacity=70);
    /*pointer-events: none;*/
}
.window_close {
    display: block;
    position: absolute;
    width: 50px;
	height: 50px;
	top: 25px;
	right: 50px;
	z-index: 111;
}
.window_close::before{
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 50px;
	background-color: #999;
	transform: rotate(45deg);
	top: 0;
	right: 25px;
}
.window_close::after{
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 50px;
	background-color: #999;
	transform: rotate(-45deg);
	top: 0;
	right: 25px;
}

.dl_btnblock button {
	background-color: #b31700;
	width: 100%;
	border: none;
	border-radius: 5px;
	display: block;
	padding: 5px 10px;
	color: #fff !important;
	transition: all 0s ease 0s;
	cursor: pointer;
}
.dl_btnblock button img{
	display: none;
	width: 12px;
	margin-right: 10px;
}
	.dl_btnblock button.dlbtn_btn.dlbtn_visible {
		background-color: #ffd702;
		pointer-events: auto;
		color: #333 !important;
	}
.dl_btnblock button.dlbtn_btn.dlbtn_visible img{
	display: inline-block;
}
.dl_btnblock button.dlbtn_btn.dlbtn_visible span{
	display: none;
}


/*下載-搜尋錯誤*/
.dl_noitem{
	min-height: 240px;
	align-items: flex-end;
}
.dl_noitem > div{
	text-align: center;
}
.dl_noitem > div h5{
	text-align: center;
	margin-top: 25px !important;
}


/*聯絡我們*/
.contact_window { 
	position: relative;
	width: 100%;
}
.contact_form{
	position: relative;
}
.contact_form a{
	color: #0062ae !important;
}
.contact_form .col-sm-6, .contact_form .col-sm-12{
	padding:0 25px;
}
.contact_item{
	width: 100%;
	margin: 10px auto 25px;
	text-align: left;
	letter-spacing: 1px;
	position: relative;
	padding-left: 15px;
	font-size: 0;
}
.contact_item.mustAns::before{
	content: "*";
	position: absolute;
	display: block;
	color: red;
	left: 0;
	top: 5px;
	font-size: 15px;
}
.contact_item label{
	width: 100px;
}
.contact_item input{
	width: calc(100% - 101px);
	border: 1px solid #dadada;
	padding: 0 10px;
}
.contact_item select{
	width: calc(100% - 101px);
	border: 1px solid #dadada;
	line-height: 35px;
	padding: 0 6px;
	background-color: transparent;
	height: 35px;
}
.contact_item.textarea{
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}
.contact_item textarea{
	width: calc(100% - 100px);
	border: 1px solid #dadada;
	padding: 10px;
}
.captcha_item{
	display: flex;
	flex-wrap: nowrap;
}
.listtd{
	width: calc(100% - 106px);
}
.contact_item .listtd input{
	width: calc(50% - 80px);
}
.error {
    color: red;
    font-size: 13px;
    position: absolute;
    top: 23px;
    left: 15px;
}
.contact_item .answer{
	color: #333;
	font-size: 15px;
	position: relative;
	top: auto;
	left: auto;
}
.contact_item.row{
	margin: 40px auto 0 !important;
	padding-bottom: 35px;
}
.contact_item .col-sm-8{
	width: calc(100% - 70px);
	padding: 0;
}
.contact_item .col-sm-8 label{
	width: auto;
}
.contact_item .col-sm-8 input{
	width: auto;
	margin-right: 10px;
}
.contact_item .col-sm-4{
	width: 70px;
	text-align: right;
	padding: 0;
}
.contact_btn{
	padding: 35px 0 10px;
}
.login_btn input, .contact_btn input{
	display: block;
	border-radius: 5px;
	border: none;
	color: #fff;
	font-size: 15px;
	background-color: #a72822;
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
	padding: 15px 10px;
	line-height: 1;
	transition: all 0.5s ease 0s;
}
.login_btn input{
	width: calc(50% - 10px);
	display: inline-block;
	padding: 13.5px 10px;
	margin-left: 20px;
}
.login_btn input:hover, .contact_btn input:hover{
	background-color: #333;
}

/*以下新增*/

@charset "utf-8";
/*切換頁面不跳動*/

.wrap-outer {
margin-left: calc(100vw - 100%);
}
.wrap-outer {
padding-left: calc(100vw - 100%);
}
/**底圖**/
 body {
    font-family:sans-serif, "微軟正黑體", Microsoft JhengHei;   
    width: 100%;    
    margin: 0;
    padding: 0;  
    -moz-background-size: cover;
    background-size: cover; 
}
html{
  font-family:sans-serif, "微軟正黑體", Microsoft JhengHei;
  background-color: #fff;
  -moz-background-size: cover;
  background-size: cover; 
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: sans-serif, "微軟正黑體", Microsoft JhengHei;
}
/*連結不要底線*/
a {
    color: #eee;
    text-decoration: none;
}
a:focus, a:hover {
    color: rgb(179,23,0);
    text-decoration: underline;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 0px;
}
.idx_copyrught_txt{
	text-align:right;
}
/*廟包穴動畫*/
.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: .3s;
    transition-duration: .1s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.ssl_img{
	text-align:right;
}

/*頁尾*/
.footer {
  position: absolute;
    color: #333;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px 0 20px 30px;
    margin-top: 30px;
}
.col-lg-12{
    padding-right: 0px;
    padding-left: 0px;	
}
.col-md-12{
    padding-right: 0px;
    padding-left: 0px;	
}
.col-sm-12{
    padding-right: 0px;
    padding-left: 0px;	
}
.col-xs-12{
    padding-right: 0px;
    padding-left: 0px;	
}
.footer-convent{
  width:55%;
  margin: 0 auto;
}
.white-text{
    color:#fff;
}
/*.footer-text {
    position: absolute;
    color:#333;
    margin-left: 30px;
}*/

.headline{
  color:#333;
  text-align: center;
}
.headline-w{
  color:#fff;
  text-align: center;
}

/*首頁版面底圖*/
.home-item{
  display: block;
  height: auto;
    max-width: 100%;
    line-height: 1;
    width: 100%;
    color: #fff; 
    background: -webkit-linear-gradient(#fff,#ddd);/*漸層灰*/
    background: -o-linear-gradient(#fff,#ddd);
    background: -moz-linear-gradient(#fff,#ddd);
    background: linear-gradient(#fff,#ddd);
   padding: 10px 0px 20px 0px;

}

/*讓版面內的img隨螢幕縮放*/
.home-item .thumbnail img {
    display: block;
    max-width: 100%;
    height: auto;  
}

/**/
.home-img{
  width: 100%;  
  display: block;
  max-width: 100%;
  height: auto; 
}
/*首頁行事曆版面*/
.home-course {
    background-color: #333;
    padding: 0em 0em;
    color: #8d898c;
    height: 1200px;
    background: url(../img/f.jpg) center top no-repeat;
    display: block;
    height: auto;
    max-width: 100%;
    line-height: 1;
    width: 100%;
    background-position:center;
    -moz-background-size: cover;
    background-size: cover; 
}
@media (max-width:1600px){
	.footer-convent{
     width:72%;
     margin: 0 auto;
}
}
@media (max-width:1360px){
	.footer-convent{
     width:88%;
     margin: 0 auto;
}
}

@media (max-width:991px){
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 0px;
}
.row {
    margin-right: 10px;
    margin-left: 10px;
}
}
@media (max-width:988px){
.footer {
    position: absolute;
    color: #333;
    width: 100%;
    line-height: 60px;
    background-color: #f5f5f5;
    padding: 20px 0 20px 0;
	margin-top: 30px;
}
}
@media (max-width:936px){
.row {
    margin-right: 5px;
    margin-left: 5px;
}
}
@media screen and (max-width: 767px) { 
.row {
    margin-right:0px;
    margin-left: 0px;
}
.ssl_img{
	text-align:left;
	padding-bottom:12px;
}
.idx_copyrught_txt{
	text-align:left;
}
.icon-next{
	left:0;
}
.home-item{
  display: block;
  height: auto;
    max-width: 100%;
    line-height: 1;
    width: 100%;
    color: #fff; 
    background: -webkit-linear-gradient(#fff,#ddd);/*漸層灰*/
    background: -o-linear-gradient(#fff,#ddd);
    background: -moz-linear-gradient(#fff,#ddd);
    background: linear-gradient(#fff,#ddd);
   padding: 10px 0px 280px 0px

}
/*首頁行事曆版面*/
.home-course {
    background-color: #333;
    padding: 0em 0em;
    color: #8d898c;    
    background: url(../img/f.jpg) center bottom no-repeat;
    display: block;
    height: auto;
    max-width: 100%;
    line-height: 1;
    width: 100%;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    margin-top: 0px;
}
/*頁尾*/
.footer {
 /*   position: absolute;*/
    bottom: auto;
    width: 100%;
    line-height: 60px;
    background-color: #f5f5f5;
    margin-top: 30px;

}
.footer-convent{
  width:90%;
  margin: 0 auto;
}
.foot-text {
    text-align: left !important;
}
}  

@media screen and (max-width: 736px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
}
@media screen and (max-width: 667px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
}
@media screen and (max-width: 646px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
/*頁尾*/
}
@media (max-width: 643px) {
/*頁尾*/
.footer {
  /*  position: absolute;*/
    bottom: auto;
    width: 100%;
    line-height: 60px;
    background-color: #f5f5f5;
    padding: 20px 0 20px 10px;
	margin-top: 30px;
}
}
@media screen and (max-width: 640px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
/*頁尾*/
	.footer-convent{
     width:95%;
     margin: 0 auto;
}
}
@media screen and (max-width: 605px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}    
}
@media screen and (max-width: 568px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
}
@media screen (max-width: 480px) {
 /*頁尾*/
 	.footer-convent{
     width:100%;
     margin: 0 auto;
}
}
@media screen and (max-width: 414px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
/*頁尾*/
}
@media (max-width: 413px){
    /*頁尾*/
}
}
@media screen and (max-width: 375px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
}
@media screen and (max-width: 320px) {
/*首頁行事曆版面*/
.home-course { 
    height: auto;
}
}
@media (max-width: 228px) {

}
@media (max-width: 137px) {

}

.hide {
    display: none;
}





