﻿@charset "utf-8";
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    background: white;
    color: black;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
    font: 12px/150% tahoma,arial,Microsoft YaHei,Hiragino Sans GB,"\u5b8b\u4f53",sans-serif;
    -webkit-font-smoothing: antialiased;
}
input,
select,
textarea {
    font-size: 100%;
}
/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ie bug：th 不继承 text-align */
th {
    text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
    border: none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
    border: none;
    font-variant: normal;
}
/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}
/* 去掉列表前的标识，li 会继承 */
ol,
ul {
    list-style: none;
}
/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
    text-align: left;
}
/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}
q:before,
q:after {
    content: '';
}
/* 统一上标和下标 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
    text-decoration: none;
    color:#000;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
    text-decoration: none;
}
/* 去除 ie6 & ie7 焦点点状线 */
a:focus,
*:focus {
    outline: none;
}
/* 清除浮动 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
    overflow: hidden;
}
.clearfix {
    zoom: 1;
    /* for ie6 & ie7 */
}
.clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}

/* 设置浮动，减少浮动带来的 bug */
.fl,
.fr {
    display: inline;
}
.fl {
    float: left;
}
.fr {
    float: right;
}

.wrapper{
    padding:15px;
    line-height: 24px;
    background:#fff;
}

.tz-title{
}
.tz-title h2,
.tz-title h3{
    color: #666;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
}
.tz-title h2{
    margin-top:5px;
}
.tz-content,
.tz-author{
    font-size:14px;
    color:#333;
    line-height: 26px;
    margin-top:10px;
}
.tz-author{
    text-align: right;
}
.tz-content-content{
    text-indent:2em;
}
.title{
    font-size:16px;
    font-weight: bold;
    color:#666;
    border-bottom:1px solid #0296f9;
    padding:0 0 5px 0;
    letter-spacing: 1px;
}

.f-item{
    line-height:24px;
    border-bottom:1px solid #ddd;
    font-size:14px;
}
.f-item-left{
    padding:6px 0;
}
.f-name{
    text-align:right;
}
.f-value{
    width: calc(100% - 44px);
}
.f-value1{
    width: calc(100% - 124px);
}
.f-val{
}
.f-itm{
    padding:2px 5px 2px 0;
}
.gk-tabs{
    border-bottom:1px solid #3db4ff;
}
.gk-tab{
    width:50%;
    text-align:center;
}
.gk-tab label{
    display: inline-block;
    line-height: 33px;
    width: 120px;
    color: #3db4ff;
    font-size: 16px;
    cursor:pointer;
}
.gk-tab input[type='radio']{
    display: none;
}
.gk-tab input[type='radio']:checked + label{
    background-image:url(../images/t_bg.png);
    background-size: contain;
    color:#fff;
}
.gk-list{
    margin:10px 0;
    display:none;
}
.gk-list ul,
.gk-list ul li{
    list-style:none;
}

.gk-list ul li{
    padding:10px 0 5px 20px;
    background-image:url(../images/dot.png);
    background-repeat: no-repeat;
    background-position: 0 17px;
    border-bottom:1px solid #ddd;
}

.gk-list ul li p:first-child{
    line-height: 24px;
    font-size: 14px;
    color:#333;
}

.gk-list ul li p:last-child{
    margin-top:5px;
    line-height: 24px;
    font-size: 14px;
    color:#666;
}
/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display: none;
}
.block {
    display: block;
}



.bs-wrapper{
    color:#333;
    padding-bottom:10px;
}

.bs-more{
    text-align:center;
    background:#fff;
    margin-top:-1px;
    padding:5px 0;
}
.bs-more a{
    background-image:url(../images/down.png);
    background-repeat: no-repeat;
    background-size:contain;
    padding: 6px 12px;
}
.bs-more a.up{
    background-image:url(../images/up.png);
    background-repeat: no-repeat;
    background-size:contain;
    padding: 6px 12px;
}
.bs-utility{
    margin:5px 0;
}
.bs-utility > div{
    float:left;
    width:25%;
}

.bs-yy,
.bs-sq,
.bs-sc,
.bs-fx{
    display: block;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-size: 22px 100%;
    color:#333;
}
.bs-yy{
    background-image:url(../images/yue.png);
}
.bs-sq{
    background-image:url(../images/content.png);
}
.bs-sc{
    background-image:url(../images/save.png);
}
.bs-fx{
    background-image:url(../images/share.png);
}
.bs-utility>div a.disabled{
    color:#999;
    cursor:default;
}
.bs-yy.disabled{
    background-image:url(../images/noyue.png);
}
.bs-sq.disabled{
    background-image:url(../images/nocontent.png);
}
.bs-sc.disabled{
    background-image:url(../images/save.png);
}
.bs-fx.disabled{
    background-image:url(../images/share.png);
}
.bs-divider{
    height:15px;
    background:#EFEFEF;
}
.bs-footer{
    padding:5px 15px 15px;
}
.bs-f-content ul,
.bs-f-content ul li{
    list-style: none;
}

.bs-f-content ul li a{
    font-size: 14px;
    color: #333;
    display: block;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    background-image: url(../images/right.png);
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-size: 11px 18px;
}
.bs-f-content ul li:last-child a{
    border-bottom:none;
}
.bs-f-content ul li .hide h2{
	font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}
.bs-f-content ul li .hide .f-item{
	padding: 10px 0;
}
.bs-f-content ul li .hide .f-item>div{
	color: #666;
}
.bs-f-content ul li .hide .img{
	margin: 10px 0;
	width: 100%;
	overflow: auto;
}
.bs-f-content ul li .hide .f-item>div b{
	color: #000;
	font-weight: normal;
}
.bs-f-content ul li .hide .f-item>div a{
	background: none;
	border: none;
	display: inline-block;
	color: red;
	line-height: normal;
	margin-right: 10px;
}
.bread {
	color: #333;
	font-size: 14px;
	margin-bottom: 10px;
}
.bread span{
	color: #666;
}
