@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Lato:100,400,900); /* font */
@import url(https://fonts.googleapis.com/css?family=Monda:400,700); /* font */

/* CSS Document */
body, html { height:100%; }
body {
	font-family: 'Lato', '微軟正黑體', sans-serif; /*自行增減使用 */
	font-size: 16px;
	line-height:1.5;
	color: #333;
}
a { color:#000; text-decoration: none; }
a:hover { color:#777; 
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition:  all .3s linear; /*連結淡入淡出*/
}

/*---------------------- 基礎設定 ----------------------*/
/*反白設定
::selection { background: #666; color: #FFF; }
::-moz-selection { background: #666; color: #FFF; }
*/

/* CSS3 style  陰影圓角範例，可自行增減使用 */
.css-radius {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
} 
.css-shadow {
	-webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0px 0px 6px rgba(0, 0, 0, .4);
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .4);
}
.imgholder img{
	transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	
	transition:transform 0.5s ease-in-out, opacity 0.5s;
	-moz-transition:-moz-transform 0.5s ease-in-out, opacity 0.5s;
	-webkit-transition:-webkit-transform 0.5s ease-in-out, opacity 0.5s;
}
.imgholder:hover img{
	transform:scale(1.05, 1.05);
	-ms-transform:scale(1.05, 1.05);
	-moz-transform:scale(1.05, 1.05);
	-webkit-transform:scale(1.05, 1.05);
	-o-transform:scale(1.05, 1.05);
}
.rotation360 {
	transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.rotation360:hover {
	transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
}
.fadeout img {  filter:alpha(opacity=100); -moz-opacity:1; opacity: 1;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;    
    transition: opacity .5s ease-in-out; }
.fadeout:hover img { filter:alpha(opacity=70); -moz-opacity:0.7; opacity:0.7; }


/*元件(共用)*/
.input1, .textarea, .select { background: #FFF; border: 1px solid #CCC; font-family: 'Lato', '微軟正黑體', sans-serif; font-size:15px; line-height:1.1; color:#555; }
.input1:focus, .textarea:focus, .select:focus { border:1px solid #000; }

/*頁碼*/
.page_01{ clear:both; text-align:center; margin:2em 0 1em 0;}
.page_01 a{ margin:0 5px; display:inline-block; width:25px; height:25px; line-height:24px; color:#999; }
.page_01 a:hover, .page_01 a.on{ border:1px solid #0076c0; color:#0076c0; text-decoration:none;}


/*線(共用)*/
hr { height:1px; background:#CCC; }

/*文字樣式(共用)*/
.white { color: #FFF; }
.gray { color:#999; }
.black { color:#000; }
.blue-t{ color: #0097de; font-weight:bold; }
.red { color: #be0000; }
.green { color: #19a568; }
.orange { color: #FF6600; }
.yellow { color: #FFFF00; }
.purple { color:#6633CC; }
.brown { color:#6e453c; }

.flt{ float:left;}
.flr{ float:right;}
.center{ text-align:center;}

/* 回頂端 */
#goTop {
	border:1px solid #fff;
	color:#fff;
	background:#0076c0;
	text-align:center;
	position:fixed;
	bottom:20px;
	right:20px;
	width:50px;
	height:50px;
	line-height:50px;
	cursor:pointer;
	display:none;
	font-family:Verdana, Geneva, sans-serif;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%; 
	border-radius: 100%; 
	-webkit-box-shadow: #EEE 0px 0px 5px; 
	-moz-box-shadow: #EEE 0px 0px 5px;
	 box-shadow: #EEE 0px 0px 5px; 
}
#goTop:hover { background:#999; color:#FFF; }
.clear{ clear:both;}


/*---------------------- 頁面開始 ----------------------*/
/*全頁佈局*/
.wrapper { margin:3em 0 0 0; }
.container { width:auto; max-width:1200px; margin:0 auto;  }

/*頁首*/
.header { position: fixed; right: 0; left: 0; z-index: 1030;}
.header ul { list-style:none; padding:0; margin:0; }

/*主選單*/
.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0,0,0,.3);
    text-transform: uppercase;
	/*padding:10px 0;*/
}
.navbar-brand{ padding:0;}
.navbar-custom .navbar-brand {
    font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
    outline: 0;
}
.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}
.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}
.navbar-custom a {
    color: #fff;
}
.navbar-custom .nav li > a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
	font-size:13px; padding:14px 10px;
}
.navbar-custom .nav li > a:hover {
    outline: 0;
    color: #fff;
    background-color: rgba(255,255,255,.3);
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}
.navbar-custom .nav li.active {
    outline: 0;
}
.navbar-custom .nav li.active > a {
    background-color: rgba(255,255,255,.3);
}
.navbar-custom .nav li.active > a:hover {
    color: #fff;
}
.navbar-fixed-top{ top:80px;}
/*top*/
.top_area{ background-color: #fff;  width:100%;}
.top_box{ max-width:1100px; margin:auto; overflow:hidden;}
h1.logo{ float:left; line-height:0; margin:10px 0 0 10px; padding:0;}
.top_icon{ float:right;}
.top_icon ul{ overflow:hidden; margin:0; padding:0;}
.top_icon ul li{ float:left; margin: 30px 1px; width: 35px; text-align: center;}
.top_icon ul li a{ display:block; color:#0076c0; font-size:14px; line-height:24px;}
.top_icon ul li a .fa{font-size:17px;}
.top_icon ul li a:hover, .top_icon ul li a.on{ text-decoration:none; background-color:#0076c0; color:#fff; border-radius: 4px;}

/*menu*/
ul.menu_list{ width:100%; text-align:center;}
.navbar-nav>li{ float:none;}
ul.menu_list >li{ /*width:16.6%;*/ display:inline-block; text-align:center; margin:0 4px;}
ul.menu_list >li .fa{ margin-left:8px;}
.dropdown-menu{ min-width:100%; background-color:#0076c0;}
.dropdown-menu>li>a{ color:#fff; padding: .8em 20px;}
.navbar-brand > .logo_img2{ display:none;}
.navbar-nav > li.lang{ display:none;}

@media(min-width:820px) {
	.navbar-custom {
		/*padding: 20px 0;*/
		border-bottom: 0;
		letter-spacing: 1px;
		-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
		-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
		transition: background .5s ease-in-out,padding .5s ease-in-out;
		background-color:#0076c0;
	}
	.navbar-custom.top-nav-collapse {
		padding: 0;
		border-bottom: 1px solid rgba(255,255,255,.3);
		background: #000;
	}
}

.nav .open > a, 
.nav .open > a:hover,
.nav .open > a:focus { background:none; }


/*次選單*/
.submenu { }
.submenu li { }

/*頁尾*/
.footer { padding-top: 2.5em; }
.footer a:hover{ text-decoration:none; color:#0076c0;}
.footer_item{ /*border-bottom:3px #c4c4c4 solid;*/ min-height:150px;}
.footer_item a{ font-size:16px; font-weight:bold;}
.footer_contact{ text-align:right; /*border-bottom:3px #2a86c5 solid;*/  min-height:150px;}
.footer_contact h3{ margin-bottom:20px; line-height:0px;}
.tel_txt{ font-size:27px; color:#2a86c5;}
.footer_contact a{ color:#828282; display:block;}
ul.footer_list, ul.footer_list2{ overflow:hidden; list-style-type:none; margin:0; padding:0;}
ul.footer_list li{ width:50%; float:left;}
ul.footer_list li a, ul.footer_list2 li a{ font-size:14px; color:#828282; font-weight:100;}
.copyright{ text-align:center; color:#aaaaaa; font-size:12px; margin:1em 0 1.5em 0;}
.footer_btn{ list-style-type:none; margin:0; padding:0;}
.footer_btn li{ float:left;}
.footer_btn li a{ font-size:15px;}
.footer_btn li span{ display:block; width:1px; height:20px; background:#ccc; margin:0 10px;}
.footer_wrap{ position:relative; border-bottom:3px solid #c4c4c4; display:block;}
.footer_wrap:before{ display:block; position:absolute; height:3px; width:267px; background:#2a86c5; content:""; right:0; bottom:-3px; }
.footer_wrap::after{content:""; display:block; clear:both;}
.sgs_box{ text-align:right;}
/*按鈕*/
.btnWrap { margin:2em 0; text-align:center; }


/*----banner---*/
.banner { height:300px; }
.carousel {  /*height: 549px;*/ padding-top:85px;}
.carousel:hover .carousel-control {
	display:block;
}
.carousel .item,
.carousel .item.active,
.carousel .carousel-inner {
    height: 100%;
}
.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.carousel .carousel-control {
	background:none;
	display:none;
}
.carousel-control .icon-prev::before,
.carousel-control .icon-next::before {
	content:'';
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
	width:30px;
	height:60px;
	margin:-30px 0 0 0;
}
.carousel-control .icon-prev {
	background:url(../images/all/control-icon.png) 0 0 no-repeat;
}
.carousel-control .icon-next {
	background:url(../images/all/control-icon.png) -30px 0 no-repeat;
}

/*首頁*/
.index_contant{ overflow:hidden;}
.index_t{ background:url(../images/index/bg.jpg) repeat-x #3b5587;}
.index_about{ background:url(../images/index/bg2.png) right center no-repeat; height:210px; margin-right: -15px; margin-left: -15px; overflow: hidden; font-size:14px; }
.index_aboutInfo{ width: 525px; padding: 1.5em 10em 0 0; float:right; color:#fff;}
.index_r{ background:url(../images/index/bg_r.jpg) repeat-x #80a979;}
.index_service{ width:550px; font-size:14px; height:210px; color:#fff;}
.index_service .col-xs-4{ padding-left:0px; padding-right:0px;}
.index_service .col-xs-8{ padding: 1.5em 0 0 1.5em;}
ul.service_list{ list-style-type:none; margin:0; padding:0; overflow:hidden;}
ul.service_list li{ float:left; width:50%; margin-bottom:10px;}
.sgs_img{ max-width:100%; }
.help_tx{ position:relative; padding:1px 0; color:#FFF; text-align:center;  font-size:22px; font-weight:bold; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3690f0+0,0076c0+100 */
background: #3690f0; /* Old browsers */
background: -moz-linear-gradient(top, #3690f0 0%, #0076c0 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #3690f0 0%,#0076c0 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #3690f0 0%,#0076c0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3690f0', endColorstr='#0076c0',GradientType=0 ); /* IE6-9 */}
.help_tx span{ display:block; position:absolute; width:2px; height:50px; left:50%; margin-left:-1px; bottom:-50px; background:#0076c0;/*left:50%; bottom:-10px; margin-left:-10px; width: 0; height: 0;border-style: solid;border-width: 12px 10px 0 10px;border-color: #0076c0 transparent transparent transparent;*/}
.help_an{ text-align:center; font-weight:bold; margin-top:50px; font-size:36px; letter-spacing:1px;}
.index_help{ padding:0; margin:0;}
.index_help .m_t{ margin-top:0;}
/*關於*/
.page_mt{ min-height:135px;}
.about .row{ margin-left:0px; margin-right:0px;}
.about .col-sm-6{ padding-left:0px; padding-right:0px;}
.about_area{ overflow:hidden;}
.about_info, .about_info3{ max-width:550px; float:right; padding-right:5em;}
.about_info h2, .about_info2 h2{ margin-top:1.8em;}
.about_img{ max-width:100%; float:right; margin-top:3.5%; margin-bottom:2em;}
.about_bg{ background:url(../images/p1/about_bg1.jpg) no-repeat center;}
.about_info2, .about_info4{ max-width:550px; overflow:hidden;}
.about_img2{ max-width:100%; float:right; margin-bottom:2em;}
.about_bg2{ background:url(../images/p1/about_bg2.jpg) no-repeat center; min-height:600px;}
.about_info3 h2{ margin-top:3em;}
.about_img3{ max-width:100%; float:right; margin:6em 0;}
.about_imgbg{ background:url(../images/p1/about_imgbg.jpg) no-repeat left center; height:511px;}
.about_infoimg{ display:none;}

/*產品*/
.site{ text-align:right; font-size:14px; color:#888888;}
.m_t{ margin-top:2em;}
.m_d{ margin-bottom:2em;}
h2.title{ border-bottom:1px #ccc solid; margin:1em 0 .5em 0; padding-bottom:.5em;}
.pro_area{ max-width:90%; margin:0 auto; position:relative;}
.pro_infoArea{ position:absolute; bottom:150px; right:0; width:40%; background-color:rgba(0,118,192,.88); color:#fff; padding:1em 2.5em 2em 2.5em; min-height:250px;}
.pro_infoArea2{ position:absolute; bottom:150px; left:0; width:40%; background-color:rgba(0,118,192,.88); color:#fff; padding:1em 2.5em 2em 2.5em; min-height:250px;}
/*效果*/
.pro_listArea{ max-width:70%; margin:2em auto;}
.services-scroll .owl-carousel{ padding:0 70px;}
.pro_item{ text-align:center; position:relative; margin:0 auto; width:76px;}
.pro_imgs{ width:76px; height:56px;}
.search_icon{ position:absolute; top:0; left:0; background-color:rgba(0,0,0,.7); font-size:20px; width:76px; height:56px; line-height:56px; display:none;}
.item a{ color:#fff;}
.item a:hover .search_icon{ display:block;}
.img_style{ max-width:100%; max-height:100%;}
.services-scroll .owl-controls .owl-buttons div {
    position: absolute;
    left: 1%;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #888;
    font-family: 'FontAwesome';
    font-size: 60px;
}
.owl-theme .owl-controls .owl-buttons div{ background-color:#fff;}
.services-scroll .owl-controls .owl-buttons .owl-next {
    left: auto;
    right: 1%;}
.services-scroll .owl-controls .owl-buttons div:before { content: "\f100"; }
.services-scroll .owl-controls .owl-buttons .owl-next:before { content: "\f101";}

/*---------sidebar--------------*/
.sidebar { /*max-width:90%;*/ margin:0 auto; }
.sidebar .mtitle { background-color: #f9f9f9; font-size: 22px; text-align: center; margin-bottom: .4em; border: 1px #cccccc solid; border-radius: 5px; line-height: 40px; color: #aaaaaa;} 
.sidebar .navbar-toggle { display:none; width:100%; float:inherit; text-align:left; margin:0; padding-left:1em; color: #5e5e5e; position:relative; }
.sidebar .navbar-toggle .fa-caret-down { position:absolute; right:15px; top:15px; color:#5e5e5e; }
.sidebar .navbar{ overflow:hidden;}
.sidebar .navbar > li {/* width:13.5%; margin:1em 3px;*/ width:18%; margin:1em 8px; text-align:center; border-radius: 22px; text-align:center; background-color:#cfcfcf; float:left;}
.sidebar .navbar > li > a { color:#5e5e5e; display:block; border-radius: 22px;}
.sidebar .navbar > li > a:hover, .sidebar .navbar > li > a.active{ background-color:#0076c0; border-radius: 22px; text-decoration:none; color:#fff;}
.sidebar .navbar > .active { background-color:#0076c0; color:#fff; }
.sidebar .navbar > .active >a{ color:#fff;}

/*聯絡我們*/
.contact_bg{ background:url(../images/p6/bg.jpg) no-repeat top center;}
.contact_area{ background-color:rgba(256,256,256,.8); padding:0 1em;}
.contact_info h3{ color:#0076c0; font-weight:bold;}
.in_arrow{ float:right; border: 1px #ccc solid; text-align: center; padding: .5em 0; margin: 0 0 5em 12px;}
.contact_info i{ width: 40px; height: 40px; border: 1px #0076c0 dashed; text-align: center; vertical-align: middle; line-height: 40px; color: #0076c0; font-size: 20px; border-radius: 20px; margin-right: 8px;} 
.add_all { overflow:hidden;}
p.add{padding-left: 8px; display: inline-table; vertical-align: -webkit-baseline-middle;}
.add_all i{ float:left;}
.add_all p{ float:left; max-width:380px; padding:0;}
.p_t{ padding-top:1.5em;}
.page_form{overflow: hidden; margin-bottom:15px;}
.page_form .name{ text-align:right; padding-right:0px;}
.page_form .text{ }
.input1, .input2, .input3{ border: 0px; color: #555; border-bottom: 2px #779fb7 solid; padding: 0 0 0 8px; background-color: #fff;}
.input1{ height: 36px; width: 100%;}
.input2{ width:100%;}
.input3{ height: 36px; width: 30%;}
#renew{	font-size:18px; margin:0 0 0 .5em; color:#555;}
#renew:hover .fa{ color:#0076c0;}
.btn_send{ background-color:#0076c0; color:#fff; border:1px #0076c0 solid;}
.btn_send:hover{ background-color:#478eba; color:#fff; border:1px #0076c0 solid;}

/*產品設計*/
.p3_row{ display:table; width:100%; overflow:hidden;}
.p3_row .cell{display: table-cell; vertical-align: middle; padding: 0 20px 8px 20px;}
.p3_img{ width:50%;}
.p3_info{ width:50%;}
.p3_imgbox{border: 2px #ccc solid; border-radius: 50%; box-shadow: 2px 5px 5px #ccc; width:80%; margin:0 auto;}
.p3_imgbox2{width:80%; margin:0 auto; box-shadow: 2px 5px 5px #ccc; border-radius: 50%;}
.p3_row h3{color:#0076c0; }
.profession{ margin:5em 0;}
h3.page_title { color:#0076c0; text-align:center; font-size:30px; /*letter-spacing:2px;*/}
h3.page_title::after{background: #bdbdbd; content: " "; display: block; height: 3px; margin: 10px auto 0; width: 100px;}
.txt_h4{ display:inline-block; padding:6px 12px; background-color: #ce4949; border-radius: 25px; color: #fff; line-height: 1.5; font-size: 20px; /*width: 140px;*/ margin: 0 auto 15px auto; text-align: center;}
ul.p3_list{ list-style-type:none; margin:0; padding:0;}
ul.p3_list li{ margin-bottom:10px;}
.list_box{ color:#0076c0;}
.list_txt{ padding-left:23px; display: block;}
.list_box .fa{ margin-right:8px;}
.profession_pad{ margin:30px 0 0 0;}

/*全方位解決方案*/
.plan{ margin-bottom:5em;}
.merit_img{ width:100%; margin:0 auto; position:relative;}
.merit_img img{ margin:2em 0; padding:8px; background-color:#fff; border:1px #ccc solid; border-radius: 50%; box-shadow: 2px 5px 5px #ccc; max-width:100%;}
.merit{ position: absolute; bottom: 20px; right: 0; background-color: #0076c0; color: #fff; font-size: 20px; border: 1px #5da9d8 solid; /*width: 80px; height: 80px;*/ text-align: center; line-height: 1.5;  box-shadow: 2px 3px 3px #e8e8e8;border-radius: 6px; padding:12px;}
.merit2{ line-height:1.2; }
.merit2 span{ display:block;}
.plan .txt_h4{ /*width:100%;*/}
.img_style{ max-width:100%;}
/*製造流程*/
.p4_row{ display:table; width:100%; overflow:hidden;}
.p4_row .cell{display: table-cell; vertical-align: middle; padding: 0 20px;}
.p4_img{ width:50%;}
.p4_info{ width:50%;}
.p4_imgbox{border: 2px #ccc solid; border-radius: 50%; box-shadow: 2px 5px 5px #ccc; width:80%; margin:0 auto 10px auto; }
.p4_imgbox2{width:80%; margin:0 auto;}
.p4_row h3{ color:#0076c0;}
.p4_row2{ overflow:hidden; margin-left:-15px;}
.p4_row2 .txt_h4 { /*width:100%;*/}
.process{ margin-bottom:5em;} 
.pic_pad{ padding:2em 0; overflow:hidden;}

h3.blue_tx{ display:inline-block; color:#fff; background:#0076c0; -webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px; padding:4px 14px;}
.p3_row .plan_pad{ padding:35px 0 0 0;}

@media (max-width: 1220px) {
.sidebar { max-width:100%;}
}

@media (max-width: 1130px) {
.about_info, .about_info3{ max-width:90%; padding-right:9%;}
}

@media (max-width: 1100px) {
.footer .row, .footer .col-sm-9, .footer .col-sm-3 {
    padding-left: 0px;
    padding-right: 0px;
}	
.index_aboutInfo, .index_service{ width:100%;}	
.index_aboutInfo{ padding-left:1.5em;} 
.about_img3{ margin-right:2em;}

/*產品*/
.pro_area{ max-width:100%;}

.navbar ul.menu_list li a {
    padding: 15px 0px;
}

}


@media (max-width: 1024px) { 
.about_imgbg{ background:url(../images/p1/about_01.jpg) no-repeat;}
}

@media (max-width: 996px) { 
.navbar>.nav>li>a{padding: 15px 0px;}
.navbar ul.menu_list li a{padding: 15px 0px;}
ul.service_list li { float:none; width: 100%; margin-bottom: 5px; }
.navbar-nav>li>.dropdown-menu >li > a{ /*padding-left:20px;*/ text-align:center;}

/*---------sidebar--------------*/
.sidebar { float:inherit; width:auto; border-radius:3px; border:1px solid #dfded6;  margin-bottom: 2.5em; }
.sidebar .mtitle { display:none; }
.sidebar .navbar-toggle { display:block; }
.sidebar .navbar > li { margin:0; border:0px; border-bottom: 1px #cfcfcf solid; border-radius: 0px; width:100%; background-color:#fff;}
.sidebar .navbar > li > a { border-radius: 0px;}
.sidebar .navbar > li > a:hover, .sidebar .navbar > li > a.active{ border-radius: 0px; color:#fff;}
.sidebar .navbar > .active { background-color:#0076c0; color:#fff; }
.sidebar .navbar > .active >a{ color:#fff;}
.navbar{margin-bottom: 0px;}

/*產品*/
.pro_infoArea, .pro_infoArea2{ min-height: 200px;}

}
@media (max-width: 950px) {
.tel_txt{ font-size:24px;}
}

@media (max-width: 920px) {
/*.footer .row, .footer .col-sm-9, .footer .col-sm-3{ padding-left:0px; padding-right:0px;}*/
.footer .footer_item .col-xs-3, .footer .footer_item .col-xs-4, .footer .footer_item .col-xs-2{ padding-right: 5px; padding-left: 5px; }
.plan .txt_h4{ font-size:18px;}
.header .container .navbar-collapse{ margin-right: -15px; margin-left: -15px;}

}
@media (max-width: 820px) {
/*menu*/
.navbar-header{ background-color:#0076c0;}
.navbar-brand >.logo_img{ display:none;}
.navbar-brand >.logo_img2{ display:block;}
.navbar-header .navbar-toggle{ position:absolute; top:-75px; right:0;}
.navbar-custom{ border-bottom:0px; margin-top: -1px;}
.top_icon{ margin-right: 55px;}
ul.menu_list{ background-color:#0076c0;}
ul.menu_list >li{ width:100%; border-bottom:1px #ccc solid; margin:0;}
/*.navbar-nav>li>.dropdown-menu >li > a{ padding-left:0px; text-align:center;}*/
.top_area{border-bottom: 1px #0076c0 solid;}
.page_mt{ min-height: 85px;}

.page_item{ width:100%;}
/*產品*/
.pro_infoArea, .pro_infoArea2{ min-height:inherit;}
.pro_listArea{max-width: 85%;}


/*連絡我們*/
.in_arrow{ display:none;}

/*產品設計*/
.p3_row{ display:block; width:auto; padding-bottom: 10px;}
.p3_img{ display:block; width:40%; text-align:center;}
.p3_info{ display:block; width:auto; margin:3em 0;}
.p3_img img{ max-width:100%; }
.p3_row .cell { padding:0 10px;}
.p3_imgbox, .p3_imgbox2{ width:100%;}
.clear820{ clear:both;}
.plan .txt_h4{ margin-top:1em;}

/*製造流程*/
.p4_row{ display:block; width:auto;}
.p4_img{ display:block; width:40%; text-align:center;}
.p4_info{ display:block; width:auto; margin:3em 0;}
.p4_img img{ max-width:100%; }
.p4_row .cell { padding:0 10px; vertical-align:top;}
.p4_imgbox, .p4_imgbox2{ width:100%;}
.p4_row2 .col-xs-3{ width:50%;}

.navbar .container{ padding-right: 0px; padding-left: 0px;}
.navbar-collapse{ padding-right: 0px; padding-left: 0px;}

.footer .row, .footer .col-sm-9, .footer .col-sm-3{ padding-left:15px; padding-right:15px;}
.footer_contact{ border:0px; text-align:left; min-height: initial;}
.footer_contact h3{ font-size:20px;}
.copyright{ text-align:right; margin-top:80px;}


}

@media (max-width: 800px) {
/*.navbar .container{ padding-right: 0px; padding-left: 0px;}
.navbar-collapse{ padding-right: 0px; padding-left: 0px;}*/

.p4_row2 .col-xs-6{ float:none; width:100%; margin:0 0 30px 0;}
}

@media (max-width: 768px) { 
/*首頁*/
ul.service_list li { float: left; width: 50%; margin-bottom: 10px; }
.index_help .col-xs-3{ width:50%;}
.merit2{ padding:5px 10px; width:auto; height:auto;}
.merit2 span{ display:inline-block;}
.index_help .merit_img img{ margin:0 0 2em 0;}

/*footer*/
.footer .row, .footer .col-sm-9, .footer .col-sm-3{ padding-left:10px; padding-right:10px;}
.footer .footer_item .col-xs-3, .footer .footer_item .col-xs-4, .footer .footer_item .col-xs-2{ padding-right: 10px; padding-left: 10px; }
.footer_btn{ float:left; width:50%;}
.footer_btn li{ float:none; width:100%;}
.footer_btn li span{ display:none;}
.footer_item{  min-height:inherit; padding-bottom:20px;}
.footer_wrap{ border-bottom:none;}
.footer_wrap:before{ display:none;}

.footer_wrap .footer_btn::after{content:""; display:block; clear:both;}
.sgs_box{ float:left; }
.footer .footer_contact{ float:left; width:100%;  border-top: 3px solid #c4c4c4; }
.footer .col-xs-7{ width:100%; float:none;}
.footer .copyright{ text-align:center;     margin: 0 0 1em 0;}

/*關於*/
.about .flr{ float:inherit;}
/*.page_mt{ min-height:0px;}*/
.about_infoimg{  display:block; max-width:100%; }
.about_imgbg{ background:url(../images/p1/about_imgbg.jpg) none; height:auto}
.about_info2 { max-width: 80%; overflow: hidden; margin: 0 auto; padding: 0 2em; background-color: rgba(256,256,256,.5); }
.about_info3 h2{ margin-top:1.5em;}
.about_img3{ margin:2em 0; float:inherit; max-width:40%;}
.about_info4{ max-width:80%; margin:0 auto;} 
/*.about_bg2{ background:url(../images/p1/about_bg2.jpg) no-repeat;}*/
/*產品*/
.pro_infoArea, .pro_infoArea2{ padding:1em;}

.merit{ position:inherit; border: 0px #ccc solid; height:auto; line-height:inherit; border-radius:inherit; margin:0 auto; box-shadow: none;}

.navbar-nav .open .dropdown-menu>li>a{ line-height:inherit; padding-top: 15px; padding-bottom:15px; text-align:center;}
}

@media (max-width: 640px) {
.navbar-brand >.logo_img2{ max-width: 75%; margin: .3em 0 0 .5em;}	
.footer .row, .footer .col-sm-9, .footer .col-sm-3{ padding-left:15px; padding-right:15px;}
/*.footer .footer_item .col-xs-3{ width:40%; } 
.footer .footer_item .col-xs-4, .footer .footer_item .col-xs-2{ width:60%; }
*/
.footer .footer_itemG .col-xs-6, .footer .footer_itemG .col-xs-3{ width:33.33%;  padding:0;}
/*.footer .footer_itemG {float: left; width: 30%;}*/
.footer .footer_item .footer_itemStyle { width:100%; margin-top:1em; padding:0;}
.footer .footer_item .footer_itemStyle2 {width: 50%; margin-top:1em; margin-bottom:1em; padding:0;}
.footer .col-xs-5, .footer .col-xs-7{ width:100%; text-align:center;}
.footer_contact h3{ font-size:24px;}
.copyright{ text-align:center;  margin-top:0px;}

.m_640{ margin-top:1em; margin-bottom:1em;}
/*產品*/
.pro_area .col-xs-8, .pro_area .col-xs-4{ width:100%; float:none;}
.pro_infoArea, .pro_infoArea2{ position:inherit; width:inherit; min-height:inherit; margin-right: 15px; margin-left: 15px;}

/*產品設計*/
.p3_row .cell { display:block; width:100%;}
.p3_imgbox, .p3_imgbox2{ width:60%;}
.plan_pad img{ width:90%;}
.p3_info{margin:0;}

/*全方位解決方案*/
.plan .col-xs-4{ width:100%; float:inherit;}
.merit_img{ width:60%;}
.plan .col-xs-4 p{ text-align:center;}

/*製造能力*/
.p4_row .cell { display:block; width:100%;}
.p4_imgbox, .p4_imgbox2{ width:70%;}
.p4_info{margin:0;}
.p4_info p:nth-child(1){ margin-top:2em;}


}

@media (max-width: 500px) {
ul.service_list li { float:none; width: 100%; margin-bottom: 5px; }	
.add_all p{ float:left; max-width:300px; padding:0;}

}


@media (max-width: 480px) { 
.navbar-nav > li.lang{ display:block; clear: both; overflow: hidden; border-bottom: 0; padding: 20px 0 10px 0;}
.navbar-nav > li >.lang_w{ width: 50%; text-align: center; border: 1px #fff solid; display: initial; padding: 5px 40px; margin: 5px 0; background-color: rgba(256,256,256,.1);}
.navbar ul.menu_list li.lang a{padding: 5px 40px;}
.top_icon{ display:none;}
.top_box{ height:84px;}
/*關於*/
.about_bg{ background-size:cover;}
.about_info2 { max-width: 90%; padding:0 1em;}
.about_info2 h2{ margin-top:6px;}
/*產品*/
.pro_listArea{max-width:inherit;}


/*連絡我們*/
.page_form .name, .page_form .text{float: initial; width: 100%; text-align: left;}
.plan .col-xs-6{ width:100%; float:inherit;} 
.plan{margin-bottom: 2.5em;}
.about_bg2{ background:url(../images/p1/about_bg2.jpg) no-repeat; padding-bottom:20px; min-height:auto;}

.index_help .col-xs-3{ width:100%; float:none;}
.txt_h4{ border-radius: 0px;}
.add_all p{ max-width:280px;}

}

@media (max-width: 420px) { 
.index_aboutInfo{padding: 1.5em 1.5em 0 1.5em;}
/*.footer .footer_item .col-xs-3{ width:100%;} */
.footer .footer_item .col-xs-4{ width:100%; float:inherit;}
/*.footer .footer_item .itme_xs,  .footer .footer_item .col-xs-2{width:50%;}*/
.m_420{ margin-top:1em;}
.c_420{ display:none;}
/*.a_m420{ margin-right:2.5em;}*/
.about_img3{ max-width:70%; }
.p4_row2 .col-xs-3{ width:100%; float:inherit;}
.process .col-xs-6{width:100%; float:inherit;}
.footer .footer_itemG .col-xs-6, .footer .footer_itemG .col-xs-3 {
    width: 50%;
}
}
@media (max-width: 360px) {
.a_m420{ margin-right:1.2em;}
.pro_listArea {
    max-width: 85%;
}
.footer .row, .footer .col-sm-9, .footer .col-sm-3 { padding-left: 5px; padding-right: 5px;}
.footer_btn li{ float:none; width:100%; text-align:center; background:#f2f2f2; margin-bottom:1px; padding:5px 0; }
.footer_btn li:nth-child(even){ display:none;}
.footer_btn{ float:none; width:100%;}
.sgs_box{ float:none; text-align:center;}
}
@media (max-width: 320px) { 

}
