@charset "utf-8";

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

/*---------------------- 基礎設定 ----------------------*/
/*反白設定
::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; }

/*線(共用)*/
hr { margin-top: 1.5em;  margin-bottom: 0;  padding-top: 1em; border-top: 1px dashed #d3d3d3;}

/*文字樣式(共用)*/
.white { color: #FFF; }
.gray { color:#757575; }
.black { color:#000; }
.blue { color: #3c6ad3; }
.red { color: #b81542; }
.bred { color: #b81542; }
.green { color: #6ab851; }
.orange { color: #FF6600; }
.yellow { color: #FFFF00; }
.purple { color:#6633CC; }
.brown { color:#6e453c; }

/* 回頂端 */
#goTop {
	border:1px solid #fff;	color:#fff;
	background:#81d8d0;	text-align:center;
	position:fixed;	bottom:20px; right:20px;
	width:50px;	height:50px; line-height:50px;
	font-size:2rem; cursor:pointer;	display:none;
	font-family:Verdana, Geneva, sans-serif;
	-webkit-box-shadow: #EEE 0px 0px 5px; 
	-moz-box-shadow: #EEE 0px 0px 5px;
	 box-shadow: #EEE 0px 0px 5px; 
}
#goTop:hover { background:#49ada4; color:#fff; }

/*表單*/
input { color: #666666; padding: 3px 10px; }
.form-control { background: #ffffff; border-color: #e6e6e6;  margin-bottom: 15px;}


/*---------------------- 頁面開始 ----------------------*/
/*全頁佈局*/
.wrapper { padding: 5em 0 9em; text-align: center; }
.container { width:100%; max-width:1100px; margin:0 auto; }
.imgg { max-width:100%; display:block; margin:0 1em 1em 0; }


/*表頭*/
header{ border-top: 4px solid #b91440; padding: 1em 0;}

/*表尾*/
footer{ border-top: 4px solid #b91440; padding: 1em 0; font-size: 13px; }
footer a { color:#666; }
footer a:hover { color:#b91440; }

/*標題*/
.major-title{ color: #fff;  text-shadow: 0 0 10px #000; margin: 0 0 .8em .5em; font-size: 36px;}
.major-title:after{ content: ''; height: 2px;  width: 70px; background: rgba(255, 255, 255, 0.8);  display: block;
   					margin-top: 10px;  margin-left: -13px;  transform-origin: bottom; transform: skewX(-70deg); }
.main-title{ color: #b91440; margin-bottom: 2em;}
.main-title:after { content: ''; height: 2px; width: 70px;  background: #b91440;  display: block;  
    				 transform-origin: bottom;  transform: skewX(-70deg);  margin: 20px auto;}


/*按鈕*/
.btnWrap { padding-top: 2em; }
.btnWrap i { margin-right: 6px; }
.btnWrap a { padding: 8px 50px;  display: inline-block;  margin-bottom: 5px; }
.btnWrap a:focus { color:#fff; text-decoration:none; }
.rebox .btn_red,.rebox .btn_gray{ float: right; }
.btn_red,.btn_gray{ margin: 0; padding: 8px 25px; border-radius: 0px; color:#FFF; font-size: 16px; }
.btn_red {  background:#b81542; border: 2px solid #d13660; }
.btn_red:hover { background:#9e0e36;color:#FFF; }
.btn_gray { background: #888888; border: 2px solid #b3b3b3;  margin-right: 1em; }
.btn_gray:hover { background:#696969; color:#FFF; }


/*  ----------------------------------------------------------------  */

/*開門頁*/
.rebg{ background: url(../images/all/bg1.jpg) center center no-repeat; height: 830px;  padding: 11em 2em 0;  overflow: hidden; }
.rebox { background: rgba(255, 255, 255, 0.7); padding: 2em;  box-shadow: 0 0 8px #969696; width: 46%; overflow: hidden; }

.login_title { font-size:2rem; font-weight:bold; text-align:left; color:#b81542;}
.login_title p{font-size:1.5rem; color: #000; }
.login_field { position: relative;}
.login_field i { position: absolute; left:15px; top:40%; color:#b81542;}
.login_right { display:table-cell; vertical-align:top; width:47%; padding-left:3%;}
.form_input { clear:both;}
.form_input p { clear:both; width:100%;}
.form_input .login_input { margin:10px 0; padding:10px 5px 10px 38px; width:100%; max-width:100%; border:1px solid #d6d6d6; background-color:#fff;}
.form_input .code { float:left; width:200px;}
.form_input .pw_box { float:left; margin-bottom:15px; font-size:16px;}
.form_input .pw_box i { color: #b81542; margin: 6px; }

/*---------登入狀態--------------*/
.h_login { line-height: 23px;  font-size: 1.4rem;  font-weight: bold;  position: absolute; right: 105px;  top: -40px;  color: #666; }
.h_login .f_right span{ color: #000; font-size: 1.5rem; margin:0 5px; }
.h_login a { padding: 2px 8px; background: rgba(255, 255, 255, 0.5); color: #b81542; text-decoration: none;}
.h_login a:hover { background: #484848; color: #fff; }

/*---------sidebar--------------*/
.sidebar{ margin-bottom: 8px; position: relative; }
.sidebar ul{ list-style-type:none; margin:0; padding:0; clear: both; }
.sidebar .choice_item>li{ box-shadow: none; background:none; }
.sidebar .choice_item>li>a{ display:block; color:#fff; padding:.3em .5em; text-decoration:none; font-size: 20px;}
.sidebar .choice_item>li.panel{ margin-bottom:0; width: 140px; display: inline-block; background: #b7b7b7; border-radius: inherit; border: none;}
.sidebar .choice_item>li>a:hover, .sidebar .choice_item>li>a.on{ text-decoration:none; background: #b81542; }

/*會員專區*/
.mainnav{    color: #dddddd;
background: #383838; /* Old browsers */
background: -moz-linear-gradient(top,  #3c3c3c 0%, #585858 62%, #3e3e3e 87%, #2b2b2b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #3c3c3c 0%,#585858 62%,#3e3e3e 87%,#2b2b2b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #3c3c3c 0%,#585858 62%,#3e3e3e 87%,#2b2b2b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3c3c', endColorstr='#2b2b2b',GradientType=0 ); /* IE6-9 */
}
.member-grid { background: url(../images/all/mainbg.png) no-repeat #ececec;}
.member-grid .main { background: rgba(255,255,255,0.8); padding: 20px; width: 80%; margin: 0 auto; overflow: hidden; }
.member-grid .form_input p { width:60%; margin: 0 auto; }
.member-grid .login_tb1 { display:table; }
.member-grid .login_tb1_tr { display:table-row; width:100%;}
.member-grid .login_tb1_td1,.member-grid .login_tb1_td2 { display:table-cell; width:50%;  padding: 10px; }
.member-grid .login_tb1 ul { margin:0; padding:0; list-style:none;}
.member-grid .login_tb1 li { float:left; margin-right:20px;}
.member-grid .login_title1 { margin-bottom:15px; padding-bottom:10px; color:#272727; font-size: 2.2rem; font-weight: bold; border-bottom:2px solid #e2e2e2}
.member-grid .login_title1:before,.member-grid .loginicon:before { content: '\f234'; display: inline-block;  font-family: FontAwesome; margin-right: .5em; border-radius: 99%;   border: 1px solid;   width: 40px;   height: 40px;  line-height: 40px;  text-align: center; }
.member-grid .loginicon:before{ content: '\f090';}
.member-grid .login_txt { overflow:hidden; margin-bottom:20px;}

.member-grid .input_box_sub1 { margin:5px 0 10px 0;}
.member-grid .input_title { float:left; font-weight:bold; padding:5px 0 0 0; }
.member-grid .input_element { margin: 5px 0 10px 85px; }
.member-grid .input_general { width:100%;}
.member-grid .input_code { width:50%;}
.member-grid .input_box_sub2 { margin:5px 0 20px 0; font-size:1.2rem;}

.member-grid .input_box_sub3 { display:table; margin:5px 0 0 0;}
.member-grid .btn_box { display:table-cell; vertical-align:middle;}
.member-grid .btn_add, .member-grid .btn_login, .member-grid .btn_sutmit, .member-grid .btn_sutmit2 {
	padding:5px 15px; background:#2098d1; border-radius:5px; color:#FFF; font-size:1.6rem;}
.member-grid .btn_add:hover,.member-grid .btn_login:hover, .member-grid .btn_sutmit:hover, .member-grid .btn_sutmit2:hover {
	background:#2478c0; color:#FFF;}
.member-grid .btn_add { margin-right:30px;}

.member-grid .input_box_sub4 { display:table; margin:20px 0 0 0; width:100%;}
.member-grid .bt_pw { color:#405edb;}
.member-grid .bt_pw:hover { color:#5e98fb;}
.member-grid .btn_login { float:right;}
.member-grid .member_box { width:70%;}
.member-grid .member_box2 { width:60%;margin: 0 auto;}
.member-grid .member_icon { margin-right:20px; width:100px; height:100px; border: 4px solid #5e98fb; border-radius:50%; text-align:center;}
.member-grid .member_icon i { color:#5e98fb; font-size:6rem; line-height:90px;}

/* 會員權益   */
.member-grid .txt_box0 { overflow:hidden; margin:20px 0;  text-align: left; }
.member-grid .txt_box1 { clear:both; margin:10px 0 0 0; padding:0 0 10px 10px; border-bottom: 1px dashed #E5E5E5;}
.member-grid .txt_box1:before {content: '\f046'; display: inline-block;  font-family: FontAwesome; margin-right: .5em; color: #b81542; float: left;}
.member-grid .txt_box1 ol { margin:0; padding:0 0 0 20px; }
.member-grid .txt_box1 p { padding-left: 25px; }

/* 加入會員   */
.member-grid .join_txt { margin:0 0 20px 0;}
.member-grid .txt_title1 { margin-bottom:20px; padding:10px; background:#F2F2F2; border-radius:8px;}
.member-grid .field_box1 { display:table; margin:0 0 10px 0; padding:0 0 10px 0; width:100%;}
.member-grid .field_title1,.member-grid .field_title2,.member-grid .field_title3 { text-align: left; display:table-cell; padding:0 0 0 15px; width:126px; font-weight:bold; }
.member-grid .field_title2 { padding-top:6px; vertical-align:top;}
.member-grid .field_data1 { display:table-cell; text-align: left; width: auto; position: relative; }
.member-grid #datepicker .fa { position: absolute;  right: 22%;  top: 10px;  font-size: 14px;  color: #575757;}
.member-grid .input-daterange input:first-child { text-align: left; }
.member-grid .fd_input, .member-grid .fd_input2, .member-grid .fd_input3, .member-grid .fd_input4, .member-grid .fd_select, .member-grid .fd_select2, .member-grid .fd_textarea { margin:0; padding:5px; border:1px solid #CCCCCC;}
.member-grid .fd_input, .member-grid .fd_select { width:60%;}
.member-grid .fd_input2 { width:auto;}/*驗証碼*/
.member-grid .fd_input3 { width:60%;}/*地址*/
.member-grid .fd_input4, .member-grid .fd_select4 { width:80%;}/*產品註冊*/
.member-grid .fd_input4.code{  width: 28%;  display: inline-block; margin: 0 10px 10px 0; }
.member-grid .fd_input6 { margin:0; padding:0px; font-size: 1.6rem;}/*上傳檔案*/
.member-grid .fd_select3 { margin:0; padding:1px 0; border:1px solid #CCCCCC;}
.member-grid .field_data1 label { display:inline-block; margin-bottom:0px; margin-right: 1em;  max-width:100%; font-weight:normal;}
.member-grid .field_data1 span { margin:0; }
.member-grid .btn_sutmit2 { margin:0 10px;}

/* 忘記密碼   */
.member-grid .forget_box, .member_box { margin:0px auto; padding:20px; border-collapse: collapse; border-spacing:0;}
.member-grid .input_box_sub5 { margin:20px 0 0 0; text-align:center;}
.member-grid .forgeticon:before{ content: '\f128';}
.member-grid .forget_box .field_box { width:60%; margin:0 auto; }

/* 修改密碼   */
.member-grid .chg_pw_box { margin:50px auto 0 auto; width:80%;}

/* 保固資訊   */
.txtlist { padding-left: 25px; }
.nlist {  list-style: none; padding: 0;  margin-bottom: 1em; }
.nlist span{ float: left; }
.nlist p{ padding-left: 32px; margin: 0; }
.slist {  padding-left: 25px;  margin-bottom: 1em; }
table.member_box2 td {  padding: 10px; }
.table-container { width: 100%; overflow-y: auto; _overflow: auto; margin: 0 0 1em;}
.tab-content table td { min-width: 80px;  padding: 3px 6px; }
.tab-content .tx01 { margin-bottom: 1em; }

/* 客服信箱   */
.page_form .form-control { font-size: 1em; }
.page_form .en_txt{ color: #9b9b9b; margin-left: .5em; }
.page_form .en_txt:before {  content: '/'; margin-right: .2em; color: #ccc;}
.page_form .name .fa { margin-right: 10px; margin: 0 8px 0 0;  color: #b81542; }
.page_form input.form-control.code { width: 20%; min-width: 66px; border-radius: 5px; margin: 2px 0 13px 0; padding: 0 5px; height: 36px; display: inline-block;}

/* 保固記錄查詢   */
.orderbox { margin:20px auto; width:90%; border-collapse: collapse; border-spacing:0; border:2px solid #f2f2f2;}
.orderbox th { padding:8px 0; color:#fff; font-weight: bold; text-align: center; border:1px solid #717171;
    background: #383838;
    background: -moz-linear-gradient(bottom, #4e4d4d 0%,#686868 100%);
    background: -webkit-linear-gradient(bottom, #4e4d4d 0%,#686868 100%);
    background: linear-gradient(to bottom, #4e4d4d 0%,#686868 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3c3c', endColorstr='#2b2b2b',GradientType=0 );
}	
.orderbox td { padding:7px 0; border:1px solid #eaeaea; }
.orderbox .td_bg1 { background:#fff; text-align: center; }
.orderbox .td_bg2 { background:#f2f2f2; text-align: center; }

/*  ----------------------------------------------------------------  */


@media (max-width: 1024px) { 
/* 開門頁   */
.rebox{ width: 80%; float: inherit; margin: 0 auto; }
.major-title{ text-align: center; }
.major-title:after{ text-align: center; margin: 10px auto; }
}

@media (max-width: 992px) { 

}

@media (max-width: 768px) {
/*會員專區*/
.member-grid .member_box { width:100%;}
.member-grid .login_tb1 { display:block;}
.member-grid .login_tb1_tr { display: block;}
.member-grid .login_tb1_td1 { display: block; width:auto;  margin-bottom: 1.5em; }
.member-grid .login_tb1_td2 { display: block; width:auto;}
.member-grid .field_title1, .member-grid .field_title2, .member-grid .field_title3 { display:block; width:100%;padding: 0;}
.member-grid .member_box2 .field_title1 {  display: table-cell;  width: 124px; padding: 0;}
.member-grid table.member_box2 .field_title1 {  display: block; }
.member-grid .field_data1 { display:block; margin:10px 0 0 15px;}
.member-grid .fd_input, .member-grid .fd_input3,.member-grid .fd_input4, .member-grid .fd_input6, .member-grid .fd_textarea { display:block; width:100%;}
.member-grid .field_remark { display:block; margin:10px 0 0 0;}
.member-grid .btn_sutmit2 { display:block; margin:10px 0 0 0; width:100%;}
.member-grid .chg_pw_box { width:100%;}
.member-grid .btn_sutmit { display:block; width:100%;}
.member-grid .table1 { width: 100%; }

.sidebar { width: 80%;  margin: 0 auto 8px; }
.sidebar .choice_item>li.panel { margin-bottom: 5px; }

.orderbox { width: 100%; }
.orderbox .td_mobile { text-align: left;  font-size: 14px;  color: #4d4d4d; }
.orderbox .td_mobile li { padding-bottom: .5em; }
.orderbox .td_mobile strong { color: #b81542; }
.orderbox .tr_bg2 { background: #f2f2f2; }

.member-grid #datepicker .fa { right: 2%; }
}

@media (max-width: 640px) {
/*開門頁*/
.rebg { width: 100%; float: inherit; }

/*會員專區*/
.h_login { right: 0; }
.member-grid .member_icon {  margin: 0 auto; }
.member-grid .forget_box .field_box { width:100%; margin:0 auto; }
.sidebar .choice_item>li.panel{ width: 100%; margin-bottom: 2px; }
.member-grid .txt_title1 span.red{ display: block; }

.member-grid .member_box2 { width:100%;}
.member-grid .member_box2 .field_title1 {  display: block;  width: 100%; }
.member-grid table.member_box2 .field_title1 {  width: 90px; }

}

@media (max-width: 600px) {
/*按鈕*/
.btnWrap a { display: block; }
.btn_red, .btn_gray{ width: 100%; float: inherit;  margin: 5px 0;  padding: .8em; }

}	


@media (max-width: 480px) { 
.wrapper{ padding:3em 0; }
.main-title { margin-bottom: 1em; }

/*開門頁*/
.rebg { padding-top: 5em; }

/*sidebar*/
.sidebar ul { margin:1em 0 0 0; }

/*會員專區*/
.h_login { top: 0; position: inherit;}
.h_login a { display:block; padding: 6px 8px; width: 90px; margin: 5px auto; }
.member-grid .form_input p{ width: 100%; }
.member-grid .input_title { float:none; }
.member-grid .input_element { margin-left: auto;}
.member-grid .btn_box { display: block; margin-bottom:15px;}
.member-grid .btn_add { display:block; width:100%;}
.member-grid .btn_login,.member-grid .input_box_sub3 { float:inherit; display:block; width:100%;}
.member-grid select#Research { width: 100%; }
}

@media (max-width: 400px) { 
.orderbox .td_mobile strong { display: block;  margin-right: 2em; }
.member-grid .fd_input4.code{  width:50%; display: block; }

}


@media (max-width: 320px) { 
/*開門頁*/
.rebox { width: 100%; padding: 1em; }

/*會員專區*/
.member-grid .main{  width: 100%; }

}

        /* 提示框樣式 */
        .suggestions {
            border: 1px solid #ccc;
            display: none;
            position: absolute;
            background-color: white;
            z-index: 1000;
            max-height: 150px;
            overflow-y: auto;
        }
        .suggestion-item {
            padding: 10px;
            cursor: pointer;
        }
        .suggestion-item:hover {
            background-color: #f0f0f0;
        }


