/* CSS Document */


/* ========== CSS Reset，重置样式，清除浏览器默认样式 ========== */


/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */

@font-face {
    font-family: 'iconfont';
    src: url('../fonts/iconfont.eot');
    /* IE9*/
    src: url('../fonts/iconfont.eot') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/iconfont.woff') format('woff'), /* chrome、firefox */
    url('../fonts/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url('../fonts/iconfont.svg#uxiconfont') format('svg');
    /* iOS 4.1- */
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    color: #000;
}

body {
    min-width: 1200px;
    background: #ecf5fd url(../images/bj.jpg) repeat center top;
}


/* 内外边距通常让各个浏览器样式的表现位置不同 */

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;
}


/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* HTML5 媒体文件跟 img 保持一致 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}


/* 要注意表单元素并不继承父级 font 的问题 */

body,
button,
input,
select,
textarea {
    font: 12px/1.5 "Microsoft YaHei", "微软雅黑", "Tahoma", "Arial", "宋体", "sans-serif";
}

input,
select,
textarea {
    font-size: 100%;
}


/* 去掉浏览器默认的外轮廓 */

input,
button,
select,
textarea {
    outline: none;
}


/* 去掉各Table  cell 的边距并让其边重合 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* IE bug fixed: th 不继承 text-align*/

th {
    text-align: inherit;
}


/* 去除默认边框 */

fieldset,
img {
    border: 0;
}


/* ie6 7 8(q) bug 显示为行内表现 */

iframe {
    display: block;
}


/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
    border: 0;
    font-variant: normal;
}


/* 一致的样式 */

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;
}


/* 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}


/* 在<q>标签之间的文字两头加上引号 */

q:before,
q:after {
    content: '';
}


/* 统一上标和下标 */

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* 正常链接 未访问、已访问 */

a {
    color: #426cad;
}


/* 鼠标悬停 */

a:hover {
    color: #ff5500;
}


/* 默认不显示下划线，保持页面简洁 */

ins,
a {
    text-decoration: none;
}


/* 清理浮动 */

.f-clear:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
}

.f-clear {
    zoom: 1;
    /* for IE6 IE7 */
}


/* ========== CSS Reset End ========== */


/* ========== Layout CSS ========== */

.toparea {
    width: 100%;
    height: 162px;
    background-color: #fff;
}


/*  顶部  */

.topbar {
    width: 100%;
    height: 36px;
    color: #666;
    background-color: #fbfbfb;
    border-bottom: 1px solid #d9d9db;
}

.topbar .tb-main {
    position: relative;
    width: 1180px;
    height: 36px;
    margin: 0px auto;
}

.topbar .tb-main .tb-left,
.topbar .tb-main .tb-right {
    position: absolute;
    height: 36px;
    line-height: 36px;
}

.topbar .tb-main .tb-left {
    left: 0px;
}

.tb-main .tb-left em {
    color: #ff5500;
}

.tb-main .tb-left a {
    margin-right: 10px;
}

.topbar .tb-main .tb-right {
    right: 0px;
}

.tb-main .tb-right a {
    float: left;
    height: 35px;
    line-height: 34px;
    padding: 0px 13px;
    color: #666;
}

.tb-main .tb-right a:hover,
.tb-main .tb-right a.current {
    text-decoration: underline;
    background-color: #eee;
}

.tb-main .tb-right a.current {
    padding: 0px 12px;
    border-left: #ddd 1px solid;
    border-right: #ddd 1px solid;
}

.tb-main .download-box {
    position: absolute;
    top: 35px;
    right: 100px;
    display: none;
    z-index: 20;
    width: 300px;
    height: 170px;
    padding: 10px 20px;
    border: #ddd 1px solid;
    background-color: #fff;
}

.tb-main .tb-right a.current .download-box {
    display: block;
}

.download-box dl {
    float: left;
    width: 340px;
    margin-top: 10px;
}

.download-box dl dt,
.download-box dl dd {
    display: block;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #333;
}

.download-box dl dd a {
    float: left;
    height: 30px;
    line-height: 30px;
    padding: 0px 20px;
    margin-right: 10px;
    border: #ddd 1px solid;
    color: #666;
    font-size: 12px;
    background-color: #f9f9f9;
}

.download-box dl dd a:hover {
    color: #fff;
    border: #2e8df7 1px solid;
    background-color: #2e8df7;
}


/*  头部  */

.header {
    width: 1180px;
    height: 116px;
    margin: 0px auto;
}


/*  logo  */

.header .logo {
    float: left;
    width: 280px;
    height: 116px;
    margin-right: 20px;
}

.header .logo a {
    float: left;
    width: 410px;
    height: 80px;
    margin: 20px 0px;
    font-size: 0px;
    line-height: 0px;
    background: url(../images/logo3.png) no-repeat center center;
    background-size:100%;
}


/*  搜索  */

.header .search {
    position: relative;
    float: right;
    width: 490px;
    height: 40px;
    padding: 38px 0px;
    margin-left: 60px;
}

.search .search-nav,
.search .search-area,
.search .search-button {
    float: right;
    height: 38px;
}

.search .search-nav {
    position: relative;
    width: 110px;
    border: #eee 1px solid;
    background-color: #fff;
    z-index: 6;
}

.search-nav .mkey {
    position: absolute;
    float: left;
    width: 80px;
    padding: 0px 15px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #666;
    z-index: 3;
}

.search-nav .iconfont {
    position: absolute;
    right: 12px;
    top: 8px;
    color: #999;
    font-size: 15px;
    z-index: 2;
}

.search-nav .sea-ul {
    position: absolute;
    top: 38px;
    left: -1px;
    width: 110px;
    padding: 6px 0px;
    overflow: hidden;
    border: #eee 1px solid;
    background-color: #fff;
}

.search-nav .sea-ul li,
.search-nav .sea-ul li a {
    float: left;
    width: 110px;
    height: 32px;
    line-height: 32px;
}

.search-nav .sea-ul li a {
    width: 80px;
    padding: 0px 15px;
    color: #666;
    font-size: 14px;
}

.search-nav .sea-ul li a:hover {
    color: #0E90FE;
    background-color: #f3f3f3;
}

.search .search-area {
    width: 338px;
    height: 38px;
    border: #eee 1px solid;
    font-size: 14px;
}

.search .search-area input {
    padding: 0px 15px;
    width: 308px;
    height: 38px;
    line-height: 38px;
    border: none;
    *margin-top: -1px;
    color: #333;
}

.search .search-button {
    position: absolute;
    right: 0;
    top: 38px;
    width: 40px;
    height: 40px;
}

.search .search-button button {
    width: 40px;
    height: 40px;
    line-height: 38px;
    border: none;
    color: #a4a2a3;
    cursor: pointer;
    background-color: #d4d4d4;
}

.search .search-button button i {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-weight: normal
}

.search .search-button button:active {
    background-color: #999;
}


/*  客服热线  */

.hotline {
    float: right;
    width: 260px;
    height: 66px;
    margin: 28px 0 0 0;
}

.hotline p {
    height: 30px;
    line-height: 30px;
    text-align: right;
}

.hotline p+p {
    padding-top: 6px;
}

.hotline p em {
    font-size: 18px;
    color: #ff8800;
}

.hotline p .iconfont {
    font-size: 23px;
    margin-right: 5px;
}

.hotline p a {
    float: right;
    margin-left: 10px;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #555;
    border-radius: 2px;
}


/*.hotline p a:hover {background-color: #f5f5f5;}*/

.hotline p a .iconfont {
    margin-right: 2px;
    font-size: 18px;
    color: #ff8800;
}


/* 导航 */

.navigate {
    width: 100%;
    background: #0E90FE;
    z-index: 2;
    position: relative;
}

.menu {
    width: 1200px;
    height: 46px;
    margin: 0 auto;
}

.menu li {
    width: 140px;
    height: 46px;
    line-height: 46px;
    float: left;
}

.menu li.m1cur,
.menu li:hover {
    height: 46px;
    line-height: 46px;
    overflow: hidden;
    background: #CCCCCC
}

.menu li a {
    display: block;
    padding: 0 12px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    text-decoration: none;
}


/*banner*/

.indexBanner {
    display: block;
    width: 100%;
    height: 400px;
    background-color: #f1f3f5;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slide {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: absolute;
    top: 0;
    display: block;
}

.slide .m-hd {
    border: none;
    background: none;
    z-index: 1;
    position: absolute;
    left: auto;
    top: 0;
    right: auto;
    width: 100%;
}

.slide .m-hd ul,
.slide .m-hd2 ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}

.slide .m-hd ul {
    width: 1200px;
    height: 16px;
    float: none;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    padding-top: 335px;
    text-align: center;
}

.slide .m-hd ul li {
    display: inline-block;
    margin-right: 10px;
    width: 12px;
    height: 12px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    background-color: #0E90FE;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    border-radius: 50%;
}

.slide .m-hd ul li.on {
    background-color: #0E90FE;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.slide .m-bd {
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 0;
    background-color: #FFF;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 1px;
    padding-left: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #cfcfcf;
}

.slide .m-bd li,
.slide .m-bd li a {
    width: 100%;
    height: 400px;
    float: left;
    z-index: 2;
}

.slide .m-bd li a.sb01 {
    background: url(../images/1s.jpg) no-repeat center 0;
}


/* login */

.login {
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    position: relative;
}

.login-list {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 400px;
    background-color: rgba(8, 8, 8, 0.6);
    z-index: 9999;
    text-align: center;
}

.login-list div {
    margin-top: 85px;
}

.login .log-a {
    color: #fff;
    font-size: 14px;
}

.login em {
    color: #78828a;
    font-size: 20px;
    margin: 0 10px;
}

.login .log-a:hover {
    color: #f08200;
}

.login-list p {
    margin: 70px 38px 60px 38px;
    font-size: 14px;
    color: #fff;
}

.login-list>a {
    width: 220px;
    height: 45px;
    display: block;
    color: #fff;
    line-height: 48px;
    text-align: center;
    margin: 18px auto 18px auto;
    font-size: 18px;
    border-radius: 3px;
}

.login-list>a:nth-child(2) {
    background-color: #0E90FE;
    margin-top: 40px;
}

.login-list>a:nth-child(3) {
    background-color: #cc9999;
}


/*numbers*/

.numbers {
    background-color: #fff;
}

.numbers .container {
    width: 1200px;
    margin: 0 auto;
    height: 82px;
}

.numbers .container>div {
    display: inline-block;
    width: 24%;
    text-align: center;
    padding-top: 12px;
}

.numbers .container>div i {
    font-size: 16px;
    font-style: normal
}

.numbers .container>div i.num {
    font-size: 24px;
    font-style: normal;
    margin-right: 5px;
}

.numbers .container>div p {
    color: #999;
}

.numbers .n1 i {
    color: #39b6f0
}

.numbers .n2 i {
    color: #f97070
}

.numbers .n3 i {
    color: #eab160
}

.numbers .n4 i {
    color: #7cc472
}


/*主体*/

.dl-main {
    width: 1200px;
    margin: 0 auto;
    height: 850px;
}

.dl-main .left {
    width: 850px;
    float: left;
}

.dl-main .right {
    width: 320px;
    float: right;
}

.dl-main .title {
    height: 43px;
    padding-top: 35px;
    border-bottom: 2px solid #FF8C00;
}

.dl-main .title h2 {
    font-size: 16px;
    line-height: 41px;
    display: inline-block;
    width: 115px;
    height: 43px;
    text-align: center;
    background-color: #0E90FE;
    color: #fff
}

.dl-main .title .category {
    width: 200px;
}

.dl-main .title a {
    float: right;
    margin-right: 15px;
    color: #666;
    font-size: 14px;
    margin-top: 9px;
}

.dl-main .title a:hover {
    color: #0E90FE;
}


/*采购分类*/

.dl-main .wrap1 .content {
    width: 850px;
    height: 370px;
    background-color: #fff;
    padding-top: 15px;
}

.dl-main .wrap1 .content a {
    width: 800px;
    height: 40px;
    margin-left: 15px;
    padding-left: 15px;
    display: inline-block;
    font-size: 14px;
    color: #333;
    line-height: 40px;
}

.dl-main .wrap1 .content a:hover {
    background-color: #fcfcfc;
    color: #0E90FE;
}

.dl-main .wrap1 .content a>span {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 84px;
    float: right;
    color: #bebebe;
    font-size: 15px;
}

.dl-main .wrap1 .content a>span:first-child {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 520px;
    float: left;
    color: #333;
}

.dl-main .wrap7 {
    margin-bottom: 20px;
}

.dl-main .wrap2 {
    margin-bottom: 20px;
}

.dl-main .wrap2 .info-box {
    position: relative;
}

.wrap2 .info-box .tbbg {
    background: url("../images/imagebg.png")no-repeat 0 0;
    width: 182px;
    height: 185px;
    position: absolute;
    top: -2px;
    right: -12px;
}

.content-index .slideBlock {
    display: block;
    width: 773px;
    height: 434px;
    background-color: #fff;
    position: relative;
    margin-bottom: 35px;
}

.content-index .slideBlock:last-child {
    margin-bottom: 0;
}

.slideBlock .m-hd {
    display: block;
    position: relative;
}

.slideBlock .m-hd ul {
    position: absolute;
    left: 235px;
    top: 40px;
    height: 30px;
}

.slideBlock .m-hd ul li {
    float: left;
    padding: 0 15px;
    height: 28px;
    line-height: 26px;
    cursor: pointer;
}

.slideBlock .m-hd ul li span {
    font-size: 13px;
    color: #0E90FE;
    text-decoration: none;
    border: 1px solid #0E90FE;
    display: inline-block;
    width: 82px;
    height: 26px;
    text-align: center;
}

.slideBlock .m-hd ul li .more {
    display: none;
}

.slideBlock .m-hd ul li .more a {
    margin-top: 0;
}

.slideBlock .m-hd ul li.on .more {
    display: block;
    position: absolute;
    right: -410px;
    top: -12px;
    padding: 0 21px;
    height: 53px;
    line-height: 53px;
    cursor: pointer;
}

i.arrow-more {
    font-size: 12px;
    color: #0E90FE;
    display: inline-block;
    width: 12px;
    height: 13px;
}

.slideBlock .m-hd ul li.on span {
    color: #fff;
    background-color: #0E90FE;
}

.slideBlock .m-bd ul li a:hover {
    background-color: #fcfcfc;
    color: #0E90FE;
}

.slideBlock .m-bd {
    padding: 15px 25px;
}

.slideBlock .tempWrap {
    margin: 0 25px;
}

.slideBlock .slidebox {
    background-color: #fff;
    border: 1px solid #ededed;
    border-top: none;
	height: 300px;/*mark20180409修改：加入高度264*/
}

.slideBlock .m-bd ul li {
    height: 44px;
    line-height: 44px;
}

.slideBlock .m-bd ul li:last-child {
    border: none;
}

.slideBlock .m-bd ul li a {
    display: block;
    height: 44px;
    line-height: 44px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.slideBlock .m-bd ul li a .bidLink {
    display: inline-block;
    width: 36em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
}

.slideBlock .m-bd ul li a .bidLink2.on {
    color: #0E90FE;
}

.slideBlock .m-bd ul li a .bidLink2 {
    display: inline-block;
    width: 6em;
    margin-left: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    color: #999;
}

.slideBlock .m-bd ul li a .bidDate {
    display: inline-block;
    float: right;
    color: #bebebe;
}

.slidebox {
    padding: 20px 0 20px 0;
}


/*滚动*/

.wrap2 {
    border: 1px solid #ededed;
    border-top: 2px solid #2079db;
    background-color: #fff;
    padding: 0 12px 0 15px;
}

.wrap2 .wrap2box {
    padding: 0 25px 25px 25px;
}

.wrap2box li a {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 240px;
    font-size: 13px;
}

.wrap2box li a:hover {
    color: #2079db
}

.wrap2 h3 {
    font-size: 16px;
    padding-left: 40px;
    position: relative;
    font-weight: bold;
    margin-top: 15px;
}

.wrap2 h3 i.icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 2px;
    background: url("../images/icon.jpg") no-repeat 0 0;
}

.wrap7 h3 i.icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 2px;
    background: url("../images/icon.png") no-repeat 0 0;
}

.wrap7 .conUs p em {
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    width: 215px;
}

.wrap7 .conUs p span {
    vertical-align: top;
    display: inline-block;
}

.wrap2 h3 i.icon2 {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 2px;
    background: url("../images/icon.jpg") no-repeat -24px 0;
}

.wrap2 h3 i.icon3 {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 2px;
    background: url("../images/icon.jpg") no-repeat -48px 0;
}

.wrap2 .info-box>div {
    height: 124px;
    margin-top: 35px;
}

.wrap2 .info-box h3 {
    margin-bottom: 15px;
}

.wrap2 .info-box p {
    margin-bottom: 15px;
}

.wrap2 .info-box p a {
    font-size: 13px;
    color: #333;
    padding-left: 10px;
}

.wrap2 .info-box p a:hover {
    color: #2079db
}

.wrap2 .info-box p i {
    margin-left: 13px;
}

.ads {
    width: 320px;
    height: 155px;
    margin: 20px 0 25px 0;
}

.ads img {
    width: 320px;
    height: 155px;
}

.ad-right {
    width: 320px;
    height: 80px;
    margin: 30px 0;
}

.ad-right img {
    width: 320px;
    height: 80px;
}

.ad-left {
    width: 860px;
    height: 80px;
    margin: 30px 0;
}

.ad-left img {
    width: 860px;
    height: 80px;
}


/*咨询中心*/

.wrap4 {
    width: 860px;
    margin-top: 30px;
    border-top: 2px solid #2079db;
}

.wrap4 .content {
    height: 265px;
    background-color: #fff;
    padding-left: 30px;
}

.wrap4 .content .contentBox .title {
    margin-bottom: 0;
}

.wrap4 .content .contentBox:first-child {
    width: 400px;
}

.wrap4 .content .contentBox {
    width: 343px;
    display: inline-block;
    float: left;
}

.wrap4 .content .contentBox.middle {
    margin: 0 40px;
}

.wrap4 .content .contentBox h2 {
    border: none;
    font-size: 16px;
    padding-left: 0;
}

.wrap4 .content .contentBox>a .bidLink,
.wrap4 .content .contentBox>p .bidLink {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 320px;
    float: left;
}

.wrap4 .content .contentBox>a .bidDate,
.wrap4 .content .contentBox>p .bidDate {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 50px;
    float: right;
    color: #a9a9a9;
}

.wrap4 .content .contentBox>a,
.wrap4 .content .contentBox>p {
    display: block;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.wrap4 .content .contentBox>p .bidDate2 {
    display: block;
    float: left;
    width: 300px;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    margin-bottom: 5px;
    cursor: default;
}

.wrap4 .content .contentBox a:hover {
    color: #2079db;
}

.wrap4 .content .contentBox a:hover .bidLink {
    color: #2079db;
}

.wrap4 .content .contentBox.right {
    margin-right: 10px;
}

.wrap4 .content .contentBox.middle>a .bidLink,
.wrap4 .content .contentBox.right>a .bidLink {
    width: 343px;
}

.wrap4 .contentBox .title a {
    margin-right: 5px;
}

.wrap4 .info-title {
    height: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.wrap4 .info-title h2 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    padding-left: 5px;
    float: left;
}

.wrap4 .info-title a {
    float: right;
    color: #666;
    font-size: 14px;
}

.wrap4 .point {
    margin-left: 0;
    margin-right: 8px;
    margin-top: 17px;
}

.wrap5 .content {
    height: 165px;
    background-color: #fff;
    padding-top: 25px;
    margin-bottom: 20px;
}

.wrap5 .content li {
    margin-bottom: 10px;
}

i.point {
    float: left;
    width: 2px;
    height: 2px;
    margin-left: 20px;
    margin-top: 10px;
    background-color: #333;
}

.wrap5 .content li a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 280px;/*mark20190925修改：修改高度240为280*/
    font-size: 14px;
    color: #333;
    padding-left: 10px;
}

.wrap5 .content li a:hover {
    color: #2079db
}

.wrap5 .content li .on {/*mark20190226修改 ：新增new标识图*/
	max-width: 240px;
	overflow: hidden;
	float: left;
	padding-right: 40px;
	background: url(../images/new.png) no-repeat center right;
}

.wrap6 .content {
    height: 177px;/*mark20180511修改 ：210改333*/

    background-color: #fff;
    padding: 20px 0 6px 0;
}

.wrap6 .content>div {
    height: 210px;
    overflow: hidden;
}

.wrap6 .title.laws {
    padding-top: 0px;
}

.wrap6 .content li {
    margin-bottom: 10px;
}

.wrap6 .content li a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 240px;
    font-size: 14px;
    color: #333;
    padding-left: 10px;
}

.wrap6 .content li a:hover {
    color: #2079db
}


/*联系我们*/

.conUs {
    border: 1px solid #ededed;
    border-top: 2px solid #2079db;
    background-color: #fff;
    padding-left: 20px;
    height: 300px;/*mark20180511修改 ：358改235*/
}

.conUs h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 12px 0;
    padding-left: 31px;
    position: relative;
}

.conUs p.top-p {
    font-size: 15px;
    color: #3f72ae;
    margin-bottom: 10px;
}

.conUs span.mail {
    margin-left: 30px;
    margin-bottom: 15px;
    display: inline-block
}

.conUs .line {
    height: 1px;
    border-bottom: 1px solid #ededed;
    margin-top: 13px;
    margin-bottom: 15px;
}

.conUs p {
    font-size: 13px;
    margin-bottom: 5px;
    /* width: 95%; */
    line-height: 25px;
}

.content {
    border: 1px solid #ededed;
    border-top: none
}


/*conpanys*/

.conpanys {
    margin-bottom: 55px;
}

.conpanys .container {
    width: 1200px;
    margin: 0 auto;
    height: 150px;
}

.conpanys .container h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #2079db;
}

.conpanys .links {
    background-color: #fff;
    border: 1px solid #ededed;
}

.conpanys a {
    display: inline-block;
    height: 110px;
    width: 295px;
}
.conpanys .c1 {
    background: #fff url("../images/c1.jpg") no-repeat center center;
}
.conpanys .c2 {
    background: #fff url("../images/c2.jpg") no-repeat center center;
}

.conpanys .c3 {
    background: #fff url("../images/c3.jpg") no-repeat center center;
}

.conpanys .c4 {
    background: #fff url("../images/c4.jpg") no-repeat center center;
}

.conpanys .c5 {
    background: #fff url("../images/c5.png") no-repeat center center;
}

.conpanys .c6 {
    background: #fff url("../images/c6.png") no-repeat center center;
}

.conpanys .c7 {
    background: #fff url("../images/c7.png") no-repeat center center;
	margin-left: 100px;
}

/*footer*/

.footer {
    background: #0E90FE;
    height: 40px;
    text-align: center;
    padding: 40px 0;
}

.footer p,
.footer p a {
    color: #fff;
}

.footer p {
    margin-bottom: 15px;
}

.footer p span {
    margin-right: 15px;
}

.fixed {
    position: fixed;
    right: 0;
    width: 50px;
    height: 130px;
    bottom: 100px;
    display: none;
}

.fixed div {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #fff;
}

.fixed .top:hover {
    background-color: #efefef;
    cursor: pointer
}

.fixed .qq:hover {
    background-color: #4982eb;
}

.fixed .qq p {
    width: 30px;
    margin-top: 5px;
}

.fixed .qq:hover img {
    display: none;
}

.fixed .top i {
    color: #334049;
    font-weight: bold;
    font-size: 20px;
    line-height: 50px;
}

.fixed .top,
.fixed .qq {
    background-color: #efefef;
}

.fixed .top p,
.fixed .qq p {
    display: none;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
}

.fixed .top:hover p,
.fixed .qq:hover p {
    display: inline-block;
    cursor: pointer;
}


/* 登录新增 */

.login-conCenter {
    display: block;
    width: 100%;
    height: 90px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.login-conCenter .l-bd {
    width: 1200px;
    margin: 0 auto;
    height: 90px;
    text-align: center;
}

.login-conCenter .block {
    display: inline-block;
    margin: 20px 25px 0 25px;
    position: relative;
    padding: 6px 0 0 60px;
    text-align: left;
}

.login-conCenter .block .img {
    display: block;
    width: 44px;
    height: 44px;
    position: absolute;
    left: 0px;
    top: 0px;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}

.login-conCenter .block:hover .img {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.login-conCenter .block .t1 {
    display: block;
    font-size: 14px;
    color: #226ec7;
}

.login-conCenter .block .t2 {
    display: block;
    font-size: 12px;
    color: #5c97dd;
}

.login-conCenter .block .img {
    background: url(../images/loginbg.png) no-repeat 0 0;
}

.login-conCenter .block2 .img {
    background: url(../images/loginbg.png) no-repeat -44px 0;
}

.login-conCenter .block3 .img {
    background: url(../images/loginbg.png) no-repeat -88px 0;
}

.login-conCenter .block4 .img {
    background: url(../images/loginbg.png) no-repeat -132px 0;
}

.login-conCenter .block5 .img {
    background: url(../images/loginbg.png) no-repeat -176px 0;
}


/* 二级菜单*/

.subMenu {
    width: 185px;
    border-top: none;
    background-color: #edf5ff;
    padding: 10px 0px;
    box-shadow: #bbb 1px 1px 3px;
    z-index: 999;
    float: left;
    display: none;
    position: absolute;
    top: 46px;
}

.subMenu li,
.subMenu li a {
    width: 185px;
    height: 46px;
    line-height: 46px;
    float: left;
}

.subMenu li a {
    width: 140px;/*mark20180412修改：125px;改140px*/
    padding: 0px 25px;/*mark20180412修改：30px改25px*/
    color: #333;
    background: none;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

.subMenu li a:hover {
    background-color: #fff2d2;
    color: #ff6e00;
    font-weight: bold;
}


/*典型案例*/

.case {
    height: 155px;
    width: 1200px;
    float: left;
    border: 1px solid #ededed;
    border-top: 2px solid #2079db;
    background-color: #fff;
}

.law li .title span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border: 2px #666 solid;
    border-radius: 50%;
    margin: 4px 6px 0 0;
}

.law li a:hover .title span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border: 2px #c51c1c solid;
    border-radius: 50%;
    margin: 4px 6px 0 0;
}

.caTitle {
    float: left;
    height: 20px;
    width: 1160px;
    margin-top: 8px;
    margin-left: 21px;
    font-size: 16px;
    color: #0f5dc5;
    margin-bottom: 18px;
    color: #333;
    font-weight: bold;
}

.caTitle a {
    float: right;
    color: #666;
    font-size: 14px;
    margin-right: 2px;
    font-weight: normal;
}

.caTitle a:hover {
    color: #2079db;
}

.case .list {
    float: left;
    height: 160px;
    width: 1100px;
    margin-left: 37px;
    overflow: hidden;
}

.case .line {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    float: left;
    height: 2px;
    width: 708px;
    background-position: -138px -266px;
}

.case .list a {
    float: left;
    height: 93px;
    width: 174px;
    margin-right: 25px;
    color: #2d73d3;
}

.case .list a:hover {
    margin-right: 25px;
    color: #1c63c3;
}

.case .list a .img {
    float: left;
    height: 42px;
    width: 164px;
    margin: 6px 5px 14px 5px;
}

.case .list a .img img {
    display: block;
    height: 42px;
    width: 164px;
}

.case .list a .word {
    font-size: 14px;
    text-align: center;
    float: left;
    height: 18px;
    width: 152px;
    padding: 0 10px;
    margin-left: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mbox {
    font-size: 14px;
    margin-top: 20px;
}