﻿﻿@charset "utf-8";


#wrap {
    position: relative;
    min-height: 100%;
    height: auto;
    /* Negative indent footer by its height */
    margin: 0 auto -40px;
    /* Pad bottom by footer height */
    padding: 50px 0 40px;
}

/*颜色常用*/
.yellow-color {
    color:#ef7c1b;
}
.fire-color {
    color:#ea1a1a;
}


/*页面头部*/
#page-top {
    width: 100%;
    padding-top: 15px;
    display: table;
}
div.brand-logo img{
    width:200px;
    height:auto;
}
.mask {
    width: 100%;
    height:100%;
    background-color: rgba(0,0,0,0.55);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* 内间距 */
.padding-middle {
    padding:15px;
}
.padding-small {
    padding:7px;
}
.padding-large {
    padding:30px;
}
/* 上下间距*/
.margin-small {
    margin-top: 15px;
    margin-bottom: 15px;
}
.margin-middle {
    margin-top: 25px;
    margin-bottom: 25px;
}
.margin-large {
    margin-top: 40px;
    margin-bottom: 40px;
}
/* 行内盒子 */
.inline-box {
    display: inline-block;
}
.table-box {
    display: table;
    width: 100%;
}
.table-cell {
    display: table-cell;
}
.table-row {
    display: table-row;
}

/* bottom-line */
.bottom-border {
    border-bottom:solid 1px #d6d6d5;

}
/* 定位盒子  */
.relative-box {
    display: block;
    position: relative;
}
.absolute-box {
    display: block;
    position: absolute;
}
.middle-box {
    position: absolute;
    display: block;
    top:0;
    bottom:0;
    right: 0;
    left: 0;
    margin:auto;
}
.middle-img {
    position: absolute;
    display: block;
    top:-9999px;
    bottom:-9999px;
    right: -9999px;
    left: -9999px;
    margin:auto;
    min-width: 100%;
    min-height: 100%;
}


/* tag */
.tags {
    margin-top:12px;
}
.tag {
    display:inline-block;
    border:solid 1px #e8e8e8;
    color:#ef7c1b;
    /*color:#3CF;*/
    margin-left:10px;
    margin-bottom: 10px;
    padding:5px 7px;
}
.tag:hover {
    color:#fff;
    background-color:#ef7c1b;
}
/* title */
a.title {
    color:#333;
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
    word-wrap: break-word;
}
a.title:hover {
    color:#ef7c1b;
}
/* 盒子下方的标题模块 */
.caption {
    position: relative;
    margin-top: 15px;
    font-size: 12px;
}
.caption .title {
    font-size: 14px;
    margin-bottom: 7px;
}
.caption .divider {
    position: absolute;
    top:0;
    right: 0;
    left: 0;
    height: 1px;
    background-color:#cacaca;
    box-shadow: 0 0 2px #cacaca;
    margin-bottom: 15px;
}
.caption .brief {
    margin-bottom: 15px;
}
/* shadow */
.shadow {
    box-shadow: 0 3px 3px #cacaca;
}
/* 序数标签 比如 01 02 11 等 */
span.num {
    display: inline-block;
    padding:2px 4px;
    background-color: #C45409;
    color:#fff;
}
.small-indicator {
    font-weight:bold;
    color:#333;
}
/* 全站的按钮 */
.my-btn {
    display: inline-block;
    font-size: 14px;
    padding: 10px 30px;
    border:solid 1px #ccc;
    border-radius: 30px;
    text-decoration: none;
}
.my-btn-green {
    color:#96b72d;
    border-color:#96b72d;
}
.my-btn-green:hover {
    color:#fff;
    background-color: #96b72d;
}
.my-btn-blue {
    color:#fff;
    background-color: #76b8d0;
}
.my-btn-blue:hover {
    color:#76b8d0;
    border-color:#76b8d0;
}

.my-btn-orange {
    color:#fff;
    background-color:#ef7c1b;
}
.my-btn-orange:hover {
    color:#ef7c1b;
    border-color:#fd992f;
}
.my-btn-flat {
    padding:7px 21px;
    border-radius:0px;
}
/* 在项目上贴标签，比如热门 */
span.red-tag {
    position: absolute;
    display: inline-block;
    padding: 2px 5px;
    letter-spacing: 2px;
    background-color: #c42109;
    color:#fff;
    z-index:15;
}

/* 微信分享指示 */
.sbg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 30px;
  line-height: 1.7em;
  background: rgba(0,0,0,0.9);
}
.sbg .arron {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 100px;
  height: 100px;
  background: url(http://www.cice.zvucoff.com/images/arron.png) no-repeat;
  background-size: 100px 100px;
}

/*线性渐变样式*/
.linear.active,
.linear:hover {
    background-image: -webkit-linear-gradient(top, rgba(17, 16, 14, 0.01) 0%, rgba(28, 24, 19, 0.1) 100%);
    background-image: -o-linear-gradient(top, rgba(17, 16, 14, 0.01) 0%, rgba(28, 24, 19, 0.1) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 16, 14, 0.01)), to(rgba(28, 24, 19, 0.1)));
    background-image: linear-gradient(to bottom, rgba(17, 16, 14, 0.01) 0%, rgba(28, 24, 19, 0.1) 100%);
}

/*主题色*/
.subject-color{
    color:#fb9526;
}
.subject-title{
    /*主标题fb9526*/
    margin-top: 0px;
    padding:15px;
    display: inline-block;
    border-radius:4px;
    color:#fff;
    background-color:#fb9526;
    color:#ffe3c4;
}
/* 工具提示的样式 */
.tooltip-inner {
  background-color: #db6a1e;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #db6a1e;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #db6a1e;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #db6a1e;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #db6a1e;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}


/*页面浮动的QQ联系以及微信扫码，回到顶部的样式*/





#sticky {
    z-index: 999;
    position: absolute;
    overflow:hidden;
	margin-top: -75px;
	margin-left: 0px;
	padding:3px;
	background: rgba(255,255,255,1);
	width: auto;
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		border-radius: 7px;
}

#sticky:hover {
	background: #ffffff;
	background: rgba(154,154,154,0.80);
}




div#float-btn-box {
    /*移动设备不可见  ef7c1b   background-color: #ef7c1b;*/
    width:100px;
    position:fixed;
    background-color: #201C1B;
    top:400px;
    right:5px;  
    z-index: 999;
    font-size: 13px;
    display: none;
}

#float-btn-box a {
    display: block;
    position: relative;
    text-align: center;
    padding: 11px;
    color:#fff;
    text-decoration: none;
}

#float-wechat-qrcode img{
    right:75px;
    width: 0px;
    top:0;
    height: 120px;
}

#float-btn-box .icon:before {
    font-size: 30px;
}

#float-btn-box a:hover {
    color:#A01B76;
    background-color: #ffffff;
}



.btop
{
    background:url("style2_res/btophover.png") no-repeat;
    height:55px; 
    width:55px;
    display:block;
    position: relative;
    text-align: center;
    margin-left: 6px;
    border:0px;
}

.btop:hover
{
    background:url("style2_res/btop.png") no-repeat;
    height:55px; 
    width:55px;
    display:block;
    position: relative;
    text-align: center;
    margin-left: 6px;
    border:0px;
}


.bdown
{
    background:url("style2_res/bdownhover.jpg") no-repeat;
    height:55px; 
    width:55px;
    display:block;
    position: relative;
    text-align: center;
    margin-left: 6px;
    border:0px;
}

.bdown:hover
{
    background:url("style2_res/bdown.jpg") no-repeat;
    height:55px; 
    width:55px;
    display:block;
    position: relative;
    text-align: center;
    margin-left: 6px;
    border:0px;
}


.navdiv {
    height: 35px;
    margin-top: 25px; 
    margin-bottom: 30px;
    background-image: url('style2_res/mbx_di.jpg');
}

.navhome {
    margin-left: 25px;
    color: #535353;
    font-size: 16px;
}

.navhome2 {
    color: #535353;
    font-size: 16px;
}

.navcontent {
    color: #000000;
    font-size: 16px;
    text-decoration:underline;
}


.navredcontent {
    width: 200px;
    color: #B51E23;
    font-size: 30px;
    background-color: #ffffff;
}

.navgreencontent {
    width: 200px;
    color: #298843;
    font-size: 30px;
    background-color: #ffffff;
}

.navgraycontent {
    width: 200px;
    color: #414141;
    font-size: 30px;
    background-color: #ffffff;
}
#home .module .breadcrumb a{display: inline}
#wp_paging_w22 .wp_paging { display:block; margin:0; padding:0; list-style:none; font-size:13px;font-family:'Microsoft Yahei', Verdana, Geneva, sans-serif; color:#494949; float:right;}
#wp_paging_w22  .wp_paging input {font-size:12px;*font-size:100%;}
#wp_paging_w22 .wp_paging li { display:inline-block; height:25px; line-height:25px; float:left; margin-top:5px;}
#wp_paging_w22 .wp_paging li span,.wp_paging li a { display:inline-block; float:left; margin-left:10px; }
#wp_paging_w22 .wp_paging li em { font-style:normal;}
#wp_paging_w22 .wp_paging li a { cursor:pointer; color:#666; line-height: 25px; height: 25px;background: none!important;}
#wp_paging_w22 .wp_paging li a:hover { color:#000; }
#wp_paging_w22 .wp_paging li a span{ margin:0;}
#wp_paging_w22 .wp_paging li input { font-size:12px;*font-size:100%; width:24px; height:15px; line-height:15px; border:1px solid #d5d5d5; background:#fff; margin-top:4px; text-align:center;}
#wp_paging_w22 .wp_paging li input:focus{ outline:none;}


#wp_paging_w23 .wp_paging { display:block; margin:0; padding:0; list-style:none; font-size:13px;font-family:'Microsoft Yahei', Verdana, Geneva, sans-serif; color:#494949; float:right;}
#wp_paging_w23  .wp_paging input {font-size:12px;*font-size:100%;}
#wp_paging_w23 .wp_paging li { display:inline-block; height:25px; line-height:25px; float:left; margin-top:5px;}
#wp_paging_w23 .wp_paging li span,.wp_paging li a { display:inline-block; float:left; margin-left:10px; }
#wp_paging_w23 .wp_paging li em { font-style:normal;}
#wp_paging_w23 .wp_paging li a { cursor:pointer; color:#666; line-height: 25px; height: 25px;background: none!important;}
#wp_paging_w23 .wp_paging li a:hover { color:#000; }
#wp_paging_w23 .wp_paging li a span{ margin:0;}
#wp_paging_w23 .wp_paging li input { font-size:12px;*font-size:100%; width:24px; height:15px; line-height:15px; border:1px solid #d5d5d5; background:#fff; margin-top:4px; text-align:center;}
#wp_paging_w23 .wp_paging li input:focus{ outline:none;}
.possplit{background: none;text-indent: 0}
.possplit:before{    padding: 0 0 0 10px;
    content: "/\00a0";}
#home .module .breadcrumb a,#home .module .breadcrumb span{color: #999999}