﻿@charset "utf-8";
body{line-height: 150%;  /* 150% ~ 200% */}
a:link , a:visited{
	text-decoration: none;
	transition: color 0.5s;transition: all 0.5s;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	color: #FF6600;
}
a.mainLink:link , a.mainLink:visited{
	text-decoration: none; 
	transition: color 0.5s;
	color: #0099CC;
}
a.mainLink:hover{
	text-decoration: none;
	color: #a11939;
}
/*卷軸樣式  https://developer.mozilla.org/zh-CN/docs/Web/CSS/::-webkit-scrollbar  */
::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color:#ccc;
} 
i{ margin-right:5px;margin-left:3px;}
img{
	vertical-align: middle;
}
a img {
	border: none;
	vertical-align: middle;
}
.imgOutline{
	border: 1px solid #666;
	padding:5px;
}
ul, ol, dl {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
ol{
	list-style-type: decimal;
	padding-left: 30px;
}
p{
	padding-top: 5px;
	padding-bottom: 5px;
}
table{border-spacing: 1px;border-collapse: separate;} 
 input:focus, textarea:focus, select:focus{
        outline: none;
    }
button{ cursor:pointer;} 
::placeholder{color: #868E96;font-size:0.9em;}

/* 排列樣式 */
.padding10{padding: 10px;}
.padding5{padding: 5px;}
 
/* 排列樣式 --------------------到此*/

/* 字型樣式 */
.txtArial{font-family: Arial, "微軟正黑體", "新細明體";}
.txt09em {
	font-size: 0.9em;
	line-height: 1em;
}
.txt10em {
	font-size: 1em;
	line-height: 1.2em;
}
.txt12em {
	font-size: 1.2em;
	line-height: 1.2em;
}
.txt15em {
	font-size: 1.5em;
	line-height: 1.8em;
}
.txt20em {
	font-size: 2em;
	line-height: 2em;
}
.txtbold{font-weight: bold;}
 
/* 字型樣式 --------------------到此*/

/* 顏色樣式 -------------------------*/
.colorRed{color: #d93621;}
.colorBule{color: #0099FF;}
.colorOrange{color: #F60;} 
.colorYellow{color: #f7e901;} 
.colorPurple{color: #b962de;} 
.colorPink{color: #fa6aa4;} 
.colorCoffee{color: #482c12;}
.colorLatte{color: #a88e75;}
.colorGreen{color: #107661;}
.colorGray70{color: #333333;}
.colorGray50{color: #999999;}
.colorWhite{color: #fff;}

.colorbg_gray10{background-color: #efefef;}
.colorbg_white{background-color: #fff;}
.colorbg_lightblue{background-color: #8bf6ff;}
.colorbg_yellow{background-color: #ffe300;}
/* 顏色樣式 --------------------到此*/

/* 線條樣式 -------------------*/
.TOPdashline{
	border-top: dashed 1px #d4d4d4; 
}
.BOTTOMdashline{
	border-bottom: 1px dashed #d4d4d4;
}
.TOPsolidline{
	border-top: solid 1px  #d4d4d4d;
}
.BOTTOMsolidline{
	border-bottom: solid 1px  #d4d4d4; 
}
.solidline{
	border: 1px solid #d4d4d4;
}
.dashline{
	border: 1px dashed #d4d4d4;
}
/* 線條樣式 --------------------到此*/

.linebreak{word-break:break-all;}
.nobreak{word-break:keep-all;}

.overflow{
	overflow: auto;
}
.clearfloat {
	clear: both;
}
.clearfloat::after{content: "";display: block;clear: both;}

  
/* 限制內容字數 */
.wordLimit{
overflow:hidden;
white-space: nowrap;
text-overflow: ellipsis;
/*上面三個一定要 寬度自己訂*/ 
}
