/*== 安全区域 ==*/
.conAuto{ width: 1200px; min-width: 1200px; margin-left: auto; margin-right: auto; }/* 安全区域 */
.minwidth{ min-width: 1200px; }
/*== 布局 ==*/
.tl{ text-align: left; }
.tc{ text-align: center; }
.tr{ text-align: right; }
.pr{ position: relative; }
.pa{ position: absolute; }
.pf{ position: fixed; }
.fl{ float: left; }
.fr{ float: right; }
i{font-style: normal}
.block{ display: block; }
.displayTable{ display: table; }
.displayTableCell{ display: table-cell; }
.inlineblock{ display: inline-block; }
.none{ display: none; }
.hidden{ visibility: hidden; }
.zoom{zoom: 1;}
.width100{ width: 100%; }
.bc{ margin-left: auto; margin-right: auto; }/*块水平居中*/
.vm{ vertical-align: middle; }
.imgVertical{height: 100%; width: 0; display: inline-block; vertical-align: middle;}/* 图片水平垂直居中 */
/*== 鼠标状态==*/
.cp{cursor: pointer; }
.cd{cursor: default;}
/*== 字号 ==*/
.f12{ font-size: 12px; }
.f13{ font-size: 13px; }
.f14{ font-size: 14px; }
.f15{ font-size: 15px; }
.f16{ font-size: 16px; }
.f18{ font-size: 18px; }
.f20{ font-size: 20px; }
.fb{ font-weight: bold; }
.fn{ font-weight: normal; }
/*== 字色 ==*/
.text-white{ color: #fff; }
.text-gray3{ color: #333; }
.text-gray6{ color: #666; }
.text-gray9{ color: #999; }
/*== 圆角 ==*/
.br2{ border-radius: 2px; }
.br4{ border-radius: 4px; }
.br6{ border-radius: 6px; }
.br8{ border-radius: 8px; }
.br10{ border-radius: 10px; }
.circle{ border-radius: 50%; }
/*== 内外边距 ==*/
.m5{margin: 5px;}
.m10{margin: 10px;}
.m15{margin: 15px;}
.m30{margin: 30px;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt25{margin-top: 25px;}
.mt30{margin-top: 30px;}
.mt35{margin-top: 35px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt100{margin-top: 100px;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}
.mb25{margin-bottom: 25px;}
.mb30{margin-bottom: 30px;}
.mb35{margin-bottom: 35px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mb100{margin-bottom: 100px;}
.ml5{margin-left: 5px;}
.ml10{margin-left: 10px;}
.ml15{margin-left: 15px;}
.ml20{margin-left: 20px;}
.ml25{margin-left: 25px;}
.ml30{margin-left: 30px;}
.ml35{margin-left: 35px;}
.ml40{margin-left: 40px;}
.ml50{margin-left: 50px;}
.ml100{margin-left: 100px;}
.mr5{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr15{margin-right: 15px;}
.mr20{margin-right: 20px;}
.mr25{margin-right: 25px;}
.mr30{margin-right: 30px;}
.mr35{margin-right: 35px;}
.mr40{margin-right: 40px;}
.mr50{margin-right: 50px;}
.mr100{margin-right: 100px;}
.p5{padding: 5px;}
.p10{padding: 10px;}
.p15{padding: 15px;}
.p30{padding: 30px;}
.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt15{padding-top: 15px;}
.pt20{padding-top: 20px;}
.pt25{padding-top: 25px;}
.pt30{padding-top: 30px;}
.pt35{padding-top: 35px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}
.pt100{padding-top: 100px;}
.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb15{padding-bottom: 15px;}
.pb20{padding-bottom: 20px;}
.pb25{padding-bottom: 25px;}
.pb30{padding-bottom: 30px;}
.pb35{padding-bottom: 35px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}
.pb100{padding-bottom: 100px;}
.pl5{padding-left: 5px;}
.pl10{padding-left: 10px;}
.pl15{padding-left: 15px;}
.pl20{padding-left: 20px;}
.pl25{padding-left: 25px;}
.pl30{padding-left: 30px;}
.pl35{padding-left: 35px;}
.pl40{padding-left: 40px;}
.pl50{padding-left: 50px;}
.pl100{padding-left: 100px;}
.pr5{padding-right: 5px;}
.pr10{padding-right: 10px;}
.pr15{padding-right: 15px;}
.pr20{padding-right: 20px;}
.pr25{padding-right: 25px;}
.pr30{padding-right: 30px;}
.pr35{padding-right: 35px;}
.pr40{padding-right: 40px;}
.pr50{padding-right: 50px;}
.pr100{padding-right: 100px;}
/*=== 文本溢出隐藏 单行 ===*/
.textoverflow{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
}
/*=== 文本溢出隐藏 多行 ===*/
.paraoverflow2{
	display: -webkit-box !important;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp: 2;
}
.paraoverflow3{
	display: -webkit-box !important;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp: 3;
}
.paraoverflow4{
	display: -webkit-box !important;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp: 4;
}
/*== 动画 ==*/
.transi{/* 过度动画 */
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.scale:hover{/* 鼠标划上放大效果 */
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	transform: scale(1.2,1.2);
}
.upward:hover{/* 鼠标划上上升效果 */
	-webkit-transform:translate(0,-10px);
	-moz-transform:translate(0,-10px);
	-ms-transform:translate(0,-10px);
	-o-transform:translate(0,-10px);
	transform:translate(0,-10px);
}
/* 按钮 样式*/
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
	margin-right: 11px;
}
.btn-default,
.btn-default.btn[disabled]:hover{
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn-primary,
.btn-primary.btn[disabled]:hover{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}
.btn-success,
.btn-success.btn[disabled]:hover{
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}
.btn-warning,
.btn-warning.btn[disabled]:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn-danger,
.btn-danger.btn[disabled]:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.btn[disabled]{
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}
.onlineKf:hover{
	color: #fff;
	background-color: #fa974e;	
}
.f_d{ color: #ddd; }
.f_f85{color: #f85c26;}
/*====== tool ======*/
.tool {
	background:#f8f8f8;
    position:relative;
    z-index:50;
}
/*leftBox*/
.toolCon .leftBox ul li{
	height: 40px;
	line-height: 40px;
}
.toolCon .leftBox a.loginButton{
	color: #fa8936;
	background:  url(../images/common/tool_line.jpg) no-repeat right center;
}
.toolCon .leftBox a.loginButton:hover{
	color: #fa974e;
}
.toolCon .leftBox > ul > li > a,.toolCon .rightBox > ul > li > a{
	color: #666;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
}
/*rightBox*/
.toolCon .rightBox > ul li{
	height: 40px;
	line-height: 40px;
}
.toolCon .rightBox ul .aboutzh{
	width: 81px;
}
.toolCon .rightBox ul .aboutzh .titless,
.toolCon .rightBox ul .QCup01 .titless,
.toolCon .rightBox ul .QCup02 .titless{
	border-left:1px solid  transparent;
	border-right:1px solid transparent;
}
.toolCon .rightBox ul .aboutzh .titless{
	top: 1px;
	width: 59px;
	z-index: 10005;
}
.toolCon .rightBox ul .aboutzh:hover .titless,
.toolCon .rightBox ul .QCup01:hover .titless,
.toolCon .rightBox ul .QCup02:hover .titless{
	border-left:1px solid  #ddd;
	border-right:1px solid #ddd;
	background-color: #fff;
	color: #308bd8;
}
.toolCon .rightBox .QCicon01{
	width: 79px;
	height: 79px;
	top: 40px;
	right: 0px;
}
.toolCon .rightBox .QCicon02{
	width: 79px;
	height: 79px;
	top: 40px;
	right: 0px;
}
.toolCon .rightBox > ul li a:hover,.toolCon .leftBox > ul li a:hover{ 
	color: #308bd8;
}
.toolCon .rightBox ul .siteNav{
	width: 92px;
	height: 40px;
}
.toolCon .rightBox ul .siteNav:hover .title{
	border-left:1px solid  #ddd;
	border-right:1px solid #ddd;
	background-color: #fff;
	color: #308bd8;
	background-image:  url(../images/common/icon_downBlue.png);
}
.toolCon .rightBox ul .siteNav .title{
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	padding: 0 13px;
	background: url(../images/common/icon_downGrey.png) no-repeat 76px center;
	top: 1px;
	width: 64px;
	z-index: 10000005;
    margin: 0px;
}
.aboutZHBox {
    background: #fff;
    width: 150px;
    padding: 10px;
    right: 0px;
    top: 40px;
    border: 1px solid #ddd;
    z-index: 10000;
}
.aboutZHBox ul li{
	height: 20px !important;
	line-height: 20px !important;
}
.aboutZHBox ul li.liLeft{
	border-right: 1px solid #ddd;
	margin-left: 3px;
	padding-right: 18px;
}
.aboutZHBox ul li a:hover{
	color: #308bd8;
}
.aboutZHBox .bbn{
	border-bottom: 0;
}
.aboutZHBox dl dt a{
	height: 24px;
	line-height: 24px;
	padding:5px 4px 0;
}
.siteNav{
	z-index:10000000;
}
.siteNavBox{
	background: #fff;
	width: 1200px;
	padding: 25px 0;
	right: 0px;
	top: 40px;
	border: 1px solid #ddd;
	z-index: 10000003;
	height: 180px;
}
.siteNavBox ul li{
	height: 20px;
	line-height: 20px;
	padding: 0 10px;
	font-size: 13px;
	border-right: 1px solid #ddd;
	margin-left: 3px;
}
.toolCon .siteNav dl{
	border-right: 1px dotted #e1e1e1;
	height: 186px;
}
.toolCon .siteNav dl.bdr_none{
	border-right: none;
}
.toolCon .siteNav .site_title{
	width: 100%;
	height: 21px;
	line-height: 21px;
}
.toolCon .siteNav dd a{
	height: 30px;
	line-height: 18px;
	width: 100%;
}
.toolCon .siteNav .width90px{
	width: 90px;
}
.toolCon .siteNav .width60px{
	width: 60px;
}
/*登录后状态*/
.afterLogin{
	z-index:900;
	border-left: 1px solid #f8f8f8;
	border-right: 1px solid #f8f8f8;
	border-bottom: 1px solid #f8f8f8;	
}
.afterLogin.on{
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;	
	background:#fff;
}
.afterLogin .memberName{
	height: 39px;
	line-height: 39px;
	padding: 0 20px 0 10px;
	margin-right:10px;
	background: url(../images/common/arr_down.png) no-repeat right center;	
}
.afterLoginBox{
    z-index:1000;
	left: -1px;
	top: 40px;
	background: #fff;
}
.toolCon .rightBox .afterLoginBox li{
	border-bottom: 1px solid #eee;
	height: 34px;
}
.afterLoginBox li a{
	display: block;
	text-align: center;
	width: 95px;
	height: 34px;
	line-height: 34px;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}
.afterLoginBox li a:hover{
	color: #308bd8;
}
/*logo&search start*/
#second_navBar {
    height: 100px;
    background: #308bd8;
    position: relative;
    z-index: 40;
}
#second_navBar .logoBox {
    width: 177px;
    height: 100px;
    margin-right: 34px;
}
#second_navBar .logoBox .logoLink{
	width: 177px;
    height: 56px;
    display: block;
	margin-top: 23px;
}
#second_navBar .navBox > li {
    margin-top: 25px;
    margin-left: 36px;
    padding: 0 2px;
    height: 60px;
    position: relative;
}
#second_navBar .navBox > li > a {
    height: 60px;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    display: block
}
#second_navBar .navBox .active em{
	display: block;
	background: url(../images/common/icon_navLine.png) no-repeat;
	background-size: 100% 3px;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 40px;
	left: 0;
}
#second_navBar .navBox .sub{
	background: url(../images/common/icon_navBg2.png) no-repeat;
	padding-top: 13px;
    width: 92px;
    position: absolute;
	border-radius: 3px;
	top: 44px;
	left: -11px;
	height: 92px;

}
#second_navBar .navBox .sub a{
    line-height: 24px;
    text-align: center;
    display: block;
}
#second_navBar .navBox .sub a:hover{
	color: #308BD8;
}
img{
    display: inline-block;
}
#second_navBar .navBox .sub2{
	background: url(../images/common/icon_navBg.png) no-repeat;
	padding-top: 13px;
	width: 92px;
	border-radius: 3px;
	top: 44px;
	left: -11px;
	height: 92px;
}
#second_navBar .navBox .sub2 a{
	line-height: 24px;
}
#second_navBar .navBox .sub2 a:hover{
	color: #308BD8;
}

/* 搜索组件  样式 开始*/
#second_navBar .searchContent{
    position: relative
}
#second_navBar .searchBtn {
    width: 27px;
    height: 26px;
    line-height: 26px;
    margin-top: 36px;
    margin-right: 17px;
    cursor: pointer;
    background: url(../images/common/icon_navSearch.png) no-repeat left center;
}
#second_navBar .searchTool {
    width: 300px;
    background: #308bd8;
    z-index: 900;
    right: 3px;
    top: 30px;
    height: 38px;
    position: absolute;
}
#second_navBar .searchTool .searchBox {
    border-radius: 30px;
    width: 300px;
    height: 38px;
    background: #fff;
    border: 1px solid #308bd8;
}

#second_navBar .searchTool .closeBtn {
    width: 26px;
    height: 26px;
    cursor: pointer;
    top: 7px;
    right: -31px;
    background: url(../images/common/icon_navSearchClose.png) no-repeat;
    margin-left: 5px;
    position: absolute;
}

#second_navBar .searchBox .filterBox {
    width: 78px;
    height: 38px;
    z-index:1500;
}
#second_navBar .searchBox .filterBox .filterTxt {
    cursor: pointer;
    line-height: 38px;
    text-align: center;
    background: url(../images/common/icon_navSearchArr.png) no-repeat 65px center;
}
#second_navBar .searchBox .filterBox .filterListBox{
	top: 23px;
	padding-top: 20px;
    z-index:1500;
}
#second_navBar .searchBox .filterBox .filterList {
    width: 80px;
    background: #fff;
    border: 1px solid #308bd8;
    z-index:1500;
}
#second_navBar .searchBox .filterBox .filterList > li.icon_Arr {
    width: 10px;
    height: 6px;
    left: 50%;
    margin-left: -5px;
    top: -6px;
    background: url(../images/common/icon_navSearchArr2.png) no-repeat center center;
}

#second_navBar .searchBox .filterBox .filterList > li a {
    cursor: pointer;
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

#second_navBar .searchBox .filterBox .filterList > li a.on {
    color: #308bd8;
}

#second_navBar .searchBox .filterBox .filterList > li:hover a {
    color: #308bd8;
}

#second_navBar .searchBox .searchInput1 {
    width: 167px;
    height: 30px;
    line-height:30px;
    border: none;
    color: #999;
    padding-left: 13px;
}

#second_navBar .searchBox .searchButton {
    width: 21px;
    height: 22px;
    border: none;
    cursor: pointer;
    margin: 8px 20px 0 0;
    background: url(../images/common/icon_navSearchBlue.png) no-repeat center center;
}
.toolCon .siteNav .site_title a:hover{
    color:#333;
}
/*浏览路径 start*/
.pathbox {
    z-index: 100;
    line-height: 50px;
    height: 50px;
    color: #333;
    background: #f3f5f7;
}
.pathbox a:hover {
    color: #308bd8;
}
/*浏览路径 end*/
/*footer start*/
.footerCon_icons a.mt8{
    margin-top:8px;
}
.footerCon{
	width: 100%;
	background: #292e32;
	color: #cfcfd1;
	padding: 20px 0 0px 0;
}
.footerCon .quickEntry{
	width: 250px;
	
}
.footerCon .tit{
	margin: 0 0 12px 0;
}
.footerCon .quickEntry li{
	margin: 0 26px 0 0;
}
.footerCon .quickEntry li.mr13{
	margin-right: 13px;
}
.footerCon .quickEntry li a{
	height: 26px;
	color: #b3b3b3;
	font-size: 13px;
}
.footerCon .quickEntry li a:hover{
	color: #fff;
}
.footerCon .linkUs{
	width: 483px;
}
.footerCon .linkUs li{
	height: 26px;
	color: #b3b3b3;
    width:500px;
}
.footerCon .weichat{
	width: 181px;
	height: 100px;
	margin: 0 16px 0 0 ;
}
.footerCon_bottom {
    height: 40px;
    line-height: 40px;
    color: #cfcfd1;
    background-color: #22282c;
}
.police_icon {
    display: inline-block;
    background: url(../images/common/icon_police.png) no-repeat right center;
    padding-right: 20px;
    margin-left: 220px;
    color: #b3b3b3;
}
.mt3{
	margin-top: 3px;
}
.f_b3{
	color: #b3b3b3;
}
/*footer end*/
/* footer start 2020-6-24 by wrq*/
.footer{
    background: #00162e;
    width: 100%;
    min-width: 1200px;
    padding-top: 8px;
    height: 75px;
}
.footer p{
    line-height: 29px;
    color: #fff;
}
.footer span{
    color: #fff;
}
/* footer end 2020-6-24 by wrq*/
.zh_popUpbg{
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-image: url(../../images/PopUp/alertBg.png);
}
.zh_popUpcon{
	background-color: #fff;
	width: 360px;
	max-height: 450px;
	box-shadow: 0 2px 3px 2px #ccc;
	margin: 0 auto;
	top: 30%;
	z-index: 101;
}
.zh_popUpcon h2{
	padding-left: 12px;
	line-height: 34px;
	background-color: #308BD8;
	border-radius: 4px 4px 0 0;
}
.zh_alertCloseBtn{
	position: absolute;
	top: 10px;
	right:10px;
	display:block;
	width:20px;
	height: 20px;
	background: url(../../public/images/icons/close_icon.png) no-repeat center center;
	outline: none;
	cursor: pointer;
	border: none;
}			
/*å¼¹çª—å…³é—­æŒ‰é’®*/
.zh_alertCloseBtn{
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	-moz-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all 218ms;
	-ms-transition: all 218ms;
	-o-transition: all 218ms;
	-moz-transition: all 218ms;
	transition: all 218ms;
	}
.zh_alertCloseBtn:hover{
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
}
/*å¼¹çª—å‡ºçŽ°åŠ¨ç”»*/
.animated {
  -webkit-animation-duration: .7s;
  animation-duration: .7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.zh_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*å¼¹çª—æ¶ˆå¤±åŠ¨ç”»*/
.zh_fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
}
/*å¼¹çª—å°ºå¯¸æŽ§åˆ¶*/
.zh_popUpbgWidthSma .zh_popUpcon{
	width: 360px;
}
.zh_popUpbgWidthCen .zh_popUpcon{
	width: 560px;
}
.zh_popUpbgWidthBig .zh_popUpcon{
	width: 800px;
}
/*æ–‡æœ¬å¼¹çª—æ ·å¼*/
.zh_popUpText{
	padding: 10px 10px 0;
}
.scroll-bar {
	overflow: auto;
}

*.scroll-bar {
	overflow-x: hidden;
}

.scroll-bar::-webkit-scrollbar {
	width: 5px;
}

.scroll-bar::-webkit-scrollbar-thumb {
	width: 5px;
	height: 10px;
	border-radius: 20px;
	background: #ddd;
}
.tagName {
	width: 100px;
	height: 34px;
	line-height: 34px;
	text-align: right;
	margin-right: 5px;
}
.lineheightNone{
	line-height: normal;
}
.txtInput,.selectOption{
	width: 200px;
	height: 32px;
	border: 1px solid #ccc;
	padding: 0 10px;
	border-radius: 2px;
}
.textarea{
	width: 560px;
	height: 100px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 2px;
}
input[type=radio],input[type=checkbox]{
	margin-top: 4px;
	margin-right: 5px;
}
.f_red {
    color: #FF0000;
}
.mr5 {
    margin-right: 5px;
}
.fb {
    font-weight: bold;
}
.tagName {
    width: 120px;
    height: 34px;
    line-height: 34px;
    text-align: right;
    margin-right: 5px;
}