@charset "utf-8";
/*==========@@HTML默认 开始@@==========*/
/*基本*/
* {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}

body {
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	background-color: #FFF;
	color: #000;
	font-size: 16px;
	font-family: Microsoft YaHei,Helvitica,Verdana,Tohoma,Arial,san-serif;
}

div {
	margin: 0;
	padding: 0;
	border: 0;
	color: #333333;
}

img {
	margin: 0;
	padding: 0;
	border: 0;
}

p {
	margin: 0px 0px 1em 0;
}

b,strong {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
/* Remove most spacing between table cells.*/
}

li {
	list-style: none outside none;
}

/*链接*/
a {
	outline: none;
	background: transparent;
	color: #000;
	text-decoration: none;
}

a:visited {
}

a:focus {
	outline: none;
}

a:hover, a:active {
	outline: none;
	color: #F00;
}

/*标题*/
h1 {
	margin: 0;
	font-size: 1.2em;
	line-height: 1.5em;
	text-align: center;
}

h2 {
	margin: 0;
	font-size: 1.2em;
}

h3 {
	margin: 0;
	font-size: 1.17em;
}

h4 {
	margin: 0;
	font-size: 1em;
}

h5 {
	margin: 0;
	font-size: 0.83em;
}

h6 {
	margin: 0;
	font-size: 0.67em;
}

/*表单*/
form {
	margin: 0;
}

button,input,select,textarea {
	margin: 0;
}

button,select {
	text-transform: none;
}

input {
	margin: 3px 0px;
	padding: 5px 3px;
	width: 99%;
	border: 1px solid #E8E8E8;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #FFFFFF;
	line-height: normal;
	-o-border-radius: 5px;
}

textarea {
	-moz-box-sizing: border-box;
	margin: 3px 0px;
	padding: 5px 3px;
	width: 99%;
	border: 1px solid #E8E8E8;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #FFFFFF;
	-o-border-radius: 5px;
}

/*其它*/
blockquote {
	margin: 1em 40px;
}

dfn {
	font-style: italic;
}

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

code, kbd, pre, samp {
	font-size: 1em;
}

pre {
	margin: 1em 0;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

small {
	font-size: 80%;
}

sub,sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 1em 0;
}

dd {
	margin: 0 0 0 40px;
}

audio:not([controls]) {
	display: none;
	height: 0;
}
/*==========@@HTML默认  结束@@==========*/


/*==========@@通用 开始@@==========*/
/*常用颜色*/
.blue {
	color: #00F !important;
}

.green {
	color: #0F0 !important;
}

.red {
	color: #F00 !important;
}

.black {
	color: #000000 !important;
}

.white {
	color: #FFFFFF !important;
}

.gray {
	color: gray;
}

.purple {
	color: purple;
}

/*清除浮动*/
.clear {
	clear: both;
	display: block;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

/*对齐方式*/
.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

/*其它*/
.hide {
	display: none;
}  /*隐藏*/
.more {
	float: right;
	padding-right: 10px;
} /*more链接*/
.more a {
	color: #FFF;
}

.code_image {
	padding-bottom: 6px;
	cursor: pointer;
} /*验证码图片样式*/

/*必须输入，主要*/
.required {
	color: red;
	font-weight: bold;
}

.form_text_verifycode {
	width: 80px;
}

.form_radio {
	width: auto;
	border: 0;
}

.form_checkbox {
	width: auto;
	border: 0;
}

/*按钮*/
.btn {
	display: block;
	margin: 5px 0px;
	padding: 9px 0px;
	width: 100%;
	border: 1px solid #4D4D4D;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #ccc;
	background-image: -o-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -moz-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -webkit-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -ms-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #505050 ),color-stop(1, #9E9E9E ));
	background-image: linear-gradient(bottom,  #505050  0%, #9E9E9E  100%);
	-webkit-box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	cursor: pointer;
	-o-border-radius: 5px;
}

.btn_download {
	display: block;
	margin: 0px;
	width: 80px;
	border: 1px solid #4D4D4D;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #ccc;
	background-image: -o-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -moz-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -webkit-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -ms-linear-gradient(bottom, #505050  0%, #9E9E9E  100%);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #505050 ),color-stop(1, #9E9E9E ));
	background-image: linear-gradient(bottom,  #505050  0%, #9E9E9E  100%);
	-webkit-box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	box-shadow: 0 1px 0 #7D7D7D  inset, 0 1px 2px rgba(0, 0, 0, 0.5);
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	-o-border-radius: 5px;
}


/*箭头*/
.arrow {
	float: right;
	display: block;
	width: 30px;
	height: 30px;
	background: url(../images/system/arrow1.png) center center no-repeat;
	background-size: 14px;
	vertical-align: middle;
}
/*==========@@通用 结束@@==========*/


/*==========@@布局  开始@@==========*/
body_index, .body_single, .body_article, .body_picture, .body_download, .body_video, .body_product,  .body_job, .body_guestbook, .body_feedback {
}

.index, .single, .article, .picture, .download, .video, .product, .job, .guestbook, .feedback {
	margin: 0 auto;
	width: 99%;
}

#top, #logo, #navigation, #banner, #location, #announcement, #link, #copyright {
	margin: 0px auto;
	width: 100%;
}

.left_title {
	clear: both;
	height: 35px;
	border: 1px solid #45b9e8;
	border-radius: 5px 5px 0 0;
	background: #45b9e8;
	text-indent: 1em;
	font-weight: bold;
	line-height: 35px;
}

.left_title a {
	float: left;
	overflow: hidden;
	width: 106px;
	height: 35px;
	color: #FFF;
	text-align: center;
}

.left_body {
	overflow: hidden;
	padding: 3px 5px;
	border: 1px solid #45b9e8;
	border-radius: 0 0 5px 5px;
	line-height: 1.5em;
}

.left_bottom {
	clear: both;
	height: 5px;
}
/*==========@@布局  结束@@==========*/


/*==========@@公共模块 开始@@==========*/
/*Logo部分*/
#logo {
}

#logo .WebLogo {
	text-align: center;
}

#logo .WebLogo img {
	display: block;
/*解决img底部空白的bug*/
	margin: 0 auto;
	max-width: 100%;
}

/*导航*/
#navigation {
	clear: both;
	overflow: hidden;
	padding: 4px 0;
	width: 99%;
	border-radius: 10px;
	background: #45b9e8;
}

#navigation table {
 /*边框颜色*/
	margin: 0 auto;
	width: 100%;
	border-collapse: separate;
	border-spacing: 1px;
}

#navigation td {
}

#navigation .td1, #navigation .td5 {
	background: none;
}

#navigation a {
	display: block;
	overflow: hidden;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
}

#navigation a.current {
	border-radius: 5px;
	background: #F00;
	color: #FFF;
}

.table {
	margin: 0px;
	border: 0px;
	border-collapse: collapse;
}

.table td {
	padding: 0px;
}

/*当前位置*/
#location {
	clear: both;
	margin: 0;
	padding: 5px 0;
	height: 1.5em;
	color: #390;
	text-indent: 1em;
	font-weight: bold;
	line-height: 1.5em;
}

#location a {
	color: #390;
}

/*搜索 */
.search {
	margin: 0px auto;
	width: 98%;
}

.searchresult {
	font-weight: bold;
	font-size: 16px;
}
.gywm {
	color: #3C3C3C;
	white-space: normal;
	font-size: 14px;
}
.gywm img {
	float: left;
	margin: 3px;
	width: 115px;
	border: 1px solid #999;
}	
/*评论*/
.comment {
}

.CommentList {
	padding: 5px 0;
	border-bottom: 1px #999999 dotted;
	font-weight: bold;
} /*评论列表标题*/
.LeaveComment {
	padding: 5px 0;
	border-bottom: 1px #999999 dotted;
	font-weight: bold;
} /*我要评论标题*/
.CommentTime {
}

.CommentContent {
	color: #999999;
}

table.comment_table {
	margin: 0px;
	width: 99%;
	border: 0px;
	border-collapse: collapse;
}

table.comment_table	.t1 {
	width: 28%;
	text-align: left;
}

table.comment_table	.t2 {
	height: 71%;
	text-align: left;
}

/*分页条*/
.page {
	clear: both;
	margin-top: 5px;
	padding: 1px;
	height: auto;
	text-align: center;
	line-height: 0.5em;
}

.page a, .page span {
	margin: 3px 0px 3px 4px;
	padding: 2px 3px;
	border: 1px solid #D3D1D1;
	background-color: #FFFFFF;
	line-height: 22px;
}

.page a:link, .page_turner a:visited {
	text-decoration: none;
}

.page a:hover {
	background: #CC0001;
	color: #ff9900;
}

.page .current {
	background: #CC0001;
	color: #FFF;
}

.page #total {
	color: red;
}

.page .pageinfo {
	display: none;
}

.page .pagefirst {
	display: none;
}

.page .pageend {
	display: none;
}

/*分享按钮*/
.tool {
	margin: 0px auto;
	width: 95%;
	text-align: center;
}

.tool a {
	color: #000;
	font-size: 16px;
}

.tool table {
	margin: 5px 0px;
	width: 100%;
}

.tool td {
	padding: 3px 5px;
	width: 50%;
	text-align: center;
}

/*分享到朋友圈弹出框提示*/
#guide {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

#guide img {
	position: fixed;
	top: 5px;
	right: 18px;
	z-index: 20001;
	width: 260px;
	height: 180px;
}


/*版权信息*/
#copyright {
	margin-bottom: 50px;
	padding: 3px 0px;
	border: 0px solid red;
	color: #666;
	text-align: center;
	font-size: 14px;
}

#copyright a {
	color: #666;
	font-size: 14px;
}

#copyright .TechnicalSupport {
	padding-bottom: 5px;
	text-align: center;
	font-size: 14px;
}

#copyright .TechnicalSupport a {
	font-size: 14px;
}

#copyright .bottom_copyright {
	padding: 3px 0px;
	font-size: 14px;
}

#copyright .bottom_navigation {
	display: none;
	height: 35px;
	background: #71C6A0;
	text-align: center;
	font-size: 14px;
	line-height: 35px;
}

#copyright .bottom_navigation a {
	color: #000;
	font-weight: normal;
}

#copyright .Mobile {
	margin: 0 auto;
	width: 99%;
	height: 35px;
	border-radius: 5px;
	background: #B70910;
	text-align: center;
	line-height: 35px;
}

#copyright .Mobile a {
	color: #fff;
	font-weight: normal;
	font-weight: bold;
}

#copyright .Language {
	padding: 10px 0px 0px 0px;
	color: #666;
	text-align: center;
}

/*底部固定工具条*/
#tool {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul.toollist {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
	display: block;
	margin: auto;
	height: 48px;
}

.toollist li {
	position: static!important;
	float: left;
	-webkit-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	width: auto;
	width: 20%;
	height: 100%;
	border-radius: 0!important;
	background: none;
	box-shadow: none!important;
	-webkit-box-flex: 1;
	box-flex: 1;
}

.toollist li a {
	position: relative;
	display: block;
	padding-top: 2px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	line-height: 20px;
}

.toollist li a img {
	width: 24px;
	height: 24px;
}

.toollist li a p {
	display: block!important;
	margin: 1px 0 1px 0;
	text-align: center;
	font-size: 14px;
	line-height: 18px;
}
/*绿色主题*/
.toollist {
	background: #B70910;
}

.toollist li {
	border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.toollist li a {
	color: #fff;
}
/*==========@@公共模块 结束@@==========*/


/*==========@@频道页面 开始@@==========*/
/*===公共字段 开始===*/
.ChannelName {
	vertical-align: middle;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5em;
}

.ChannelContent {
	clear: both;
	padding: 3px;
	line-height: 1.8em;
}

.ChannelSContent {
}

.InfoTitle {
}

.InfoTime {
	padding: 2px 0px;
	height: 25px;
	color: #999;
	text-align: left;
	font-size: 14px;
}

.InfoContent {
	font-size: 16px;
	line-height: 2em;
}

.InfoContent p {
	font-size: 16px;
}

#info_around {
	padding: 5px;
	border: 1px solid #E3E3E3;
	background: #F0F0F0;
}

.InfoPicture {
	text-align: center;
}

.InfoPicture img {
	width: 100%;
}

.f1 {
}

.f2 {
}

.f3 {
}

.f4 {
}

.f5 {
}

.ShowInfo {
	padding-top: 5px;
	height: 30px;
	border-top: 1px solid #bdbec1;
	color: #000000;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.5em;
}

#ReadLevelTip {
	color: red;
	font-weight: bold;
}

.Tag {
	text-align: left;
}

.Tag a {
	padding: 0 5px;
	text-decoration: none;
	font-weight: normal;
}

.InfoContent img, .ChannelContent img {
	max-width: 100%;
}
/*===公共字段 结束===*/

/*招聘*/
.job {
}

table.job_table {
	margin: 8px 0px;
	padding: 0px;
	width: 100%;
	border: 0px solid #16b7b7;
	border-collapse: collapse;
	text-align: center;
}

table.job_table td {
	padding: 5px 2px;
}

table.job_table th {
	color: #C00;
}

.JobName {
	padding: 3px 8px;
	border-bottom: 1px dotted #999;
	font-weight: bold;
	font-size: 16px;
}

/*留言*/
.guestbook {
}

.guestbook .ChannelName h1 {
	padding: 5px 0px;
	border-bottom: 1px dotted #CCCCCC;
}

table.guestbook_table {
	margin: 0px;
	width: 100%;
	border: 0px;
	border-collapse: collapse;
}

table.guestbook_table .t1 {
	width: 25%;
	text-align: left;
}

table.guestbook_table .t2 {
	width: 75%;
	text-align: left;
}

/*反馈*/
.feedback {
}

.feedback .ChannelName h1 {
	border-bottom: 1px dotted #CCCCCC;
}

table.feedback_table {
	width: 100%;
}

table.feedback_table .t1 {
	width: 25%;
	text-align: left;
}

table.feedback_table .t2 {
	width: 75%;
	text-align: left;
}

/*订购*/
.order {
	margin: 0px auto;
	width: 98%;
}

.order .WantOrder {
	padding: 5px 0px;
	border-bottom: 1px dotted #999999;
	font-weight: bold;
}

.order .f1 {
	float: right;
	color: red;
}

.order table.order_table {
	margin: 0px;
	width: 100%;
	border: 0px;
	border-collapse: collapse;
}

.order table.order_table .t1 {
	width: 28%;
	text-align: left;
}

.order table.order_table .t2 {
	height: 72%;
	text-align: left;
}

/*地图*/
.sitemaplist li {
	padding: 0.5em 8px;
	border-bottom: 1px dashed #d0d1d4;
	background-color: #FFF;
}

.sitemaplist li .ChannelName {
	font-weight: bold;
}

.sitemaplist li .ChannelDepth1 {
	font-weight: bold;
}

.sitemaplist li .ChannelDepth2 {
	text-indent: 2em;
}

.sitemaplist li .ChannelDepth3 {
	text-indent: 4em;
}

.sitemaplist li .ChannelDepth4 {
	text-indent: 6em;
}

.sitemaplist li .ChannelDepth5 {
	text-indent: 8em;
}
/*==========@@频道页面 结束@@==========*/

/*==========@@通用列表 开始@@==========*/
/*列表全局样式*/
.textlist li, .gridlist li, .wxlist li, .thumblist li {
	overflow: hidden;
	background-color: #FFF;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.5em;
}

.textlist li:hover, .thumblist li:hover, .gridlist li:hover {
	cursor: pointer;
}

/*文本列表*/
.textlist li {
	padding: 5px 0px;
	border-bottom: 1px dotted #999;
	text-indent: 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.textlist li.first {
	padding-left: 3px;
	background: none;
}

.textlist li .InfoTime {
	display: none;
}

.textlist li .InfoContent {
	color: #3C3C3C;
	white-space: normal;
	font-size: 14px;
}

.textlist li img {
	float: left;
	margin-right: 5px;
	width: 115px;
	border: 1px solid #999;
}

/*带缩略图文本列表*/
.thumblist {
}

.thumblist li {
	overflow: hidden;
	margin-bottom: 5px;
	width: 100%;
	border-bottom: 1px dotted #999;
	line-height: 1.8em;
}

.thumblist li img {
	float: left;
	margin-right: 8px;
	width: 104px;
	height: 60px;
	border: 1px solid #999999;
}

.thumblist li a:hover img {
	border: 1px solid #034b9f;
}

.thumblist li .InfoTitle a {
	color: #900;
	font-size: 16px;
	font-weight: bold;
}

.thumblist li p {
	overflow: hidden;
	margin: 0px;
	height: 3em;
	color: #3C3C3C;
	line-height: 1.5em;
}

/*橱窗列表*/
.gridlist li {
	float: left;
	padding: 5px;
	overflow: hidden;
	width: 46%;
}

.gridlist li .InfoTitle {
	overflow: hidden;
	padding: 0px 5px;
	height: 20px;
	text-align: center;
	line-height: 20px;
}

.gridlist li .InfoTitle a {
	font-size: 14px;
}

.gridlist li .InfoPicture {
	padding: 0px 5px;
}

.gridlist li .InfoPicture img {
	border: 1px solid #999;
}

/*微信列表*/
.wxlist li {
	overflow: hidden;
	margin: 10px auto;
	padding: 8px 8px;
	border: 0px solid #d0d1d4;
	-webkit-border-radius: 5px 5px 10px 10px;
	-moz-border-radius: 5px 5px 10px 10px;
	border-radius: 5px 5px 10px 10px;
	-o-border-radius: 5px 5px 10px 10px;
}

.wxlist li .InfoTime {
}

.wxlist li .GoTop {
	height: 30px;
	color: #000;
	text-align: center;
	font-weight: bold;
	line-height: 30px;
}

.wxlist li .InfoPicture, .wxlist li .ChannelPicture {
	border: 0px solid red;
}

.wxlist li .InfoPicture img, .wxlist li .ChannelPicture img {
	width: 100%;
}

.wxlist li .InfoSContent, .wxlist li .ChannelSContent {
	padding: 5px 2px;
	border: 0px solid #900;
	color: #222222;
	font-size: 14px;
	line-height: 1.5em;
}

.wxlist li .ShowInfo {
}
/*侧边时间显示*/
.wxlist .InfoTimeSide {
	position: relative;
	float: left;
	margin: 10px 8px 0px 0px;
	padding: 5px;
	width: auto;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	background-color: #505050;
	-webkit-box-shadow: 0 2px 1px 0 rgba(0,0,0,0.14);
	-moz-box-shadow: 0 2px 1px 0 rgba(0,0,0,0.14);
	box-shadow: 0 2px 1px 0 rgba(0,0,0,0.14);
	font-size: 14px;
	font-family: Georgia,"Times New Roman",Times,serif;
	-o-border-radius: 12px;
	-o-box-shadow: 0 2px 1px 0 rgba(0,0,0,0.14);
}

.wxlist  InfoTimeSide p {
	color: #FFF;
}

.wxlist  .InfoTimeSide p b {
	font-size: 16px;
}

.wxlist  .InfoTimeSide p i {
	font-size: 14px;
}

.wxlist  .InfoTimeSide span {
	position: absolute;
	top: 10px;
	right: -4px;
	width: 12px;
	height: 12px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #505050;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

/*频道列表*/
.subchannellist {
	margin: 0px auto;
	width: 99%;
	border: 0px solid red;
}

.subchannellist li {
	float: left;
	width: 30%;
	border: 0px dashed blue;
	text-align: center;
}

.subchannellist li a {
	display: block;
	margin: 8px 3px;
	padding: 5px 0px;
	border: 1px solid #CBCBCB;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #E9E9E9;
	-webkit-box-shadow: 0px 1px 3px rgb(190, 190, 190);
	-moz-box-shadow: 0px 1px 3px rgb(190, 190, 190);
	box-shadow: 0px 1px 3px rgb(190, 190, 190);
	-o-border-radius: 3px;
	-o-box-shadow: 0px 1px 3px rgb(190, 190, 190);
}

.subchannellist #current a {
	color: #F00;
}
/*==========@@通用列表 结束@@==========*/