@charset "utf-8";
/****reset style*****/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-family:'宋体', 'Microsoft YaHei', '微软雅黑', Verdana, Geneva, sans-serif !important;
    font-weight: bold!important;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    cursor: default;
    background: url("../images/body-bg.png");
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, blockquote, pre, p, a, address, em, img, strong, dl, dt, dd, ol, ul, li, form, label, legend, table, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    line-height: 1.5;
    word-break: break-all;
    word-wrap: break-word;
}

a {
    color: #006aad;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

em {
    font-style: normal;
}

img {
    border: 0 none;
    vertical-align: bottom;
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], input[type="file"] {
    padding: 6px 8px;
    font-size: 14px;
    color: #303d3f;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    /*box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1) inset;*/
    vertical-align: middle;
}

select {
    width: 120px;
    /*height:30px;*/
    /*line-height:30px;*/
    /*[;height:30px;line-height:30px;];*/
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: none;
    outline: none;
    border: 1px solid #ccc;
    /*很关键：将默认的select选择框样式清除*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../images/arrow-down.png) right 8px center no-repeat;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 18px;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
    display: none;
}

select:hover, textarea:hover, input[type="text"]:hover, input[type="password"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="date"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, input[type="number"]:hover, input[type="email"]:hover, input[type="url"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="color"]:hover, input[type="file"]:hover {
    border-color: #bbb;
}

select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, input[type="file"]:focus {
    color: #696969;
    border-color: #f59942;
    background-color: #fff;
    outline: 0;
}

textarea {
    resize: none;
}

button, .btn, input[type="button"], input[type="submit"] {
    display: inline-block;
    padding: 6px 5px;
    font-size: 14px;
    color: #fff;
    background: #2d9651;
    border: 1px solid #0c692b;
    border-radius: 3px;
    vertical-align: middle;
    cursor: pointer;
}

button i, .btn i {
    margin-right: 4px;
}

.btn-disable {
    cursor: not-allowed;
    background: #eaeaea !important;
    color: #777 !important;
    border-color: #aaa !important;
}

input:focus, textarea:focus, button:focus {
    outline: 0;
}

input[readonly] {
    color: #939192;
    background: #f5f5f5 !important;
    cursor: default;
}

/*清除type=password时默认的眼睛*/
input::-ms-reveal {
    display: none;
}

/*清除type=text时默认的清空 小× */
input::-ms-clear {
    display: none;
}

ol, ul, li {
    list-style: none;
}

ol:after, ul:after {
    content: "";
    display: block;
    clear: both;
}


/*******浮动设置********/
.box-l {
    float: left;
}

.box-r {
    float: right;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.no-border {
    border: none;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

/*******透明遮罩层*********/
.layer-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
    filter: alpha(opacity=30);
    z-index: 99;
    display: none;
}

/*******重置placeholder颜色*********/
::-webkit-input-placeholder {
    color: #ccc;
}

:-moz-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
}

:-ms-input-placeholder {
    color: #ccc;
}

/****css****/
.web {
    /* padding-top: 245px; */
}

.safe-width {
    width: 1200px;
    margin: 0 auto;
}


.top {
    height: 42px;
    background: #e3e3e2;
    text-align: right;
    position: relative;
    width: 100%;
    min-width: 1200px;
    /* top: 0; */
    z-index: 99;
}

.top li {
    display: inline-block;
    line-height: 42px;
    position: relative;
}

.top li img {
    vertical-align: middle;
    margin: -3px 2px 0;
}

.top li:first-child {
    margin-right: 20px;
    font-size: 18px;
}

.top li span {
    position: absolute;
    top: 42px;
    left: 50%;
    margin-left: -54px;
    display: none;
    background: #fff;
}

.top li span img {
    margin: 0px;
}

.top li span a {
    display: inline-block;
    width: 100px;
    vertical-align: middle;
    margin-right: 8px;
}

.top li span a img {
    width: 88px;
    margin: 5px;
}

.top li span a h6 {
    font-size: 12px;
    font-weight: normal;
    color: #333;
    text-align: center;
    line-height: 16px;
}

.top li:hover span {
    display: block;
}

.top li.weixin span {
    width: 220px;
}

.header {
    width: 100%;
    min-width: 1200px;
    background: url(../images/body-bg.png);
    background-color: #fff;
    position: relative;
    z-index: 98;
}

.header .logo {
    float: left;
    padding: 16px;
}

.header .logo-r {
    float: right;
    padding-top: 30px;
}

.nav {
    width: 100%;
    clear: both;
}

.nav li {
    float: left;
    margin: 0 1px;
    background: #d1353b;
    width: 198px;
    height: 53px;
    line-height: 53px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    letter-spacing: 3px;
    cursor: pointer;
}

.nav li:hover {
    background: #b51920;
}

.nav li img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 38px;
}

.nav li span {
    color: #fff;
}

.nav2 {
    display: none;
}

.nav2 dd {
    height: 40px;
    background: #fff;
    line-height: 40px;
}

.nav2 dd a {
    font-size: 16px;
    color: #d1353b;
    letter-spacing: 0;
    display: block;
    text-align: left;
    padding-left: 24px;
    transition: 0.3s;
}

.nav2 dd a img {
    margin-right: 18px;
}

.nav li:hover .nav2 {
    display: block;
}

.nav2 dd a:hover {
    background: #b51920;
    color: #fff;
}

.nav2 dd a .icon-white {
    display: none;
}

.nav2 dd a:hover img {
    display: none;
}

.nav2 dd a:hover .icon-white {
    display: inline-block;
}

.top-nav {
    height: 53px;
    background: #d1353b;
    /* position: fixed; */
    z-index: 999;
	font-size: 22px;
	font-weight: bold;
}

.top-nav li {
    margin: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.top-nav li:first-child {
    border-left: none;
}

.top-nav .last {
    border-right: none;
}

.footer {
    width: 100%;
    min-width: 1200px;
    background: url(../images/foot-bg.png);
    padding: 20px 0;
    text-align: center;
    clear: both;
}

.footer p {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
}

.h-box-title {
    padding: 72px 24px 20px;
    width: 100%;
    min-width: 1200px;
}

.h-box-title h1 {
    font-size: 30px;
    color: #d33336;
    font-weight: normal;
    /*margin-bottom: 20px;*/
    padding-left: 20px;
}

.h-box-content {
    padding: 0 24px;
}


.h-box-foot {
    text-align: center;
}

.page {
    height: 50px;
    margin-top: 70px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
    display: inline-block;
}

.page a {
    padding: 5px 13px;
    border: solid 1px #d6d6d5;
    border-radius: 4px;
    background-color: #f3f2ef;
    margin: 0 3px;
    color: #777;
    cursor: pointer;
    font-size: 20px;
    float: left;
}

.page .current {
    background-color: #d33336;
    border: solid 1px #d33336;
    color: #FFFFFF;
}

.page a:hover {
    background-color: #d33336;
    border: solid 1px #d33336;
    color: #FFFFFF;
}

.page span {
    font-size: 20px;
    color: #1e1e1e;
    float: left;
    line-height: 38px;
    margin: 0 4px;
}

.page .input {
    cursor: default;
    display: inline-block;
    /* padding: 5px 4px; */
    border: solid 1px #d6d6d5;
    border-radius: 4px;
    background-color: #f3f2ef;
    margin: 0 5px;
    color: #777;
    font-size: 24px;
    line-height: 31px;
    float: left;
}

.page .input input {
    width: 38px;
    height: 38px;
    font-size: 20px;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    text-align: center;
    line-height: 38px;
}


.hbanner {
    width: 100%;
    height: 423px;
    min-width: 1200px;
    position: relative;
    overflow: hidden;
    clear: both;
    z-index: 97;
}

.hbanner .hpic {
    width: 1920px;
    height: 423px;
    position: absolute;
    left: 50%;
    margin-left: -960px;
}

.hbanner .hpic img {
    width: 100%;
    height: 100%;
}

.p-box {
    clear: both;
}

.p-box-title {
    text-align: center;
}

.p-box-title h1 {
    line-height: 150px;
}

.p-box-title h1 a {
    font-size: 30px;
    color: #000;
    position: relative;
    font-weight: normal;
}

.p-box-title h1 a:before {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -11px;
    left: 50%;
    margin-left: -26px;
}

.exe-box-cont .item .cont1 .sfgkUl a{
	font-size: 23px;
}

.exe-box-cont .item .cont1 .sfgkUl img{
	width: 35px;
}