﻿/*==========@@HTML默认 开始@@==========*/
/*基本*/
* {
  padding: 0px;
  margin: 0px;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  color: #666;
  margin: 0px auto;
  font-family: "Arial", "Microsoft YaHei";
  font-size: 14px;
  background: #fff;
  min-width: 1200px;
}
div {
  margin: 0;
  padding: 0;
  border: 0;
}
img {
  margin: 0;
  padding: 0;
  border: 0;
}
p {
  margin: 0px;
  line-height: 2em;
}
b,
strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0; /* Remove most spacing between table cells.*/
}
li {
  list-style: none outside none;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #aaa;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ddd;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.6);
}

/*链接*/
a {
  text-decoration: none;
  color: #444;
  background: transparent;
  outline: none;
}
a:focus {
  outline: none;
}
a:hover {
  color: #00c0ff;
}
a:active {
  outline: none;
}

/*标题*/
h1 {
  font-size: 1.3em;
  margin: 0;
}
h2 {
  font-size: 1.2em;
  margin: 0;
}
h3 {
  font-size: 1.17em;
  margin: 0;
}
h4 {
  font-size: 1em;
  margin: 0;
}
h5 {
  font-size: 0.83em;
  margin: 0;
}
h6 {
  font-size: 0.67em;
  margin: 0;
}

/*表单*/
form {
  margin: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0px;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
select {
  text-transform: none;
}
input {
  padding: 2px;
  background-color: #f5f5f5;
  border: none;
  outline: none;
  width: 99%;
  line-height: normal;
}
textarea {
  padding: 2px;
  color: #000000;
  background-color: #f0f0f0;
  width: 99%;
  outline: none;
  border: none;
}

/*其它*/
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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; /* Prevent `sub` and `sup` affecting `line-height` in all browsers.*/
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
/*==========@@HTML默认  结束@@==========*/

/*==========@@元件 开始@@==========*/
/*常用颜色*/
.blue {
  color: #00f !important;
}
.green {
  color: #0f0 !important;
}
.red {
  color: #f00 !important;
}
.black {
  color: #000000 !important;
}
.white {
  color: #ffffff !important;
}
.gray {
  color: gray !important;
}
.purple {
  color: purple !important;
}

/*浮动*/
.clear {
  display: block;
  clear: both;
  height: 3px;
  overflow: hidden;
  line-height: 3px;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}

/*对齐方式*/
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}

/*hd*/
.hd_round {
  text-align: center;
  margin-top: 40px;
}
.hd_round ul {
}
.hd_round ul li {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  overflow: hidden;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 15px;
  font-size: 0px;
  background: #ddd;
  cursor: pointer;
}
.hd_round ul li:hover {
  background: #a5a5a5;
}
.hd_round ul li.on {
  background: #00c0ff;
}

/*按钮*/
.btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  height: 32px;
  line-height: 32px;
  padding: 0px 20px;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
  cursor: pointer;
  border: 1px solid #d4d4d4;
  color: #666666;
}
/*默认样式*/
.btn {
  background-color: #00c0ff;
  color: #fff;
}
.btn:hover {
  background-color: #13a6ff;
  color: #fff;
}
.btn:active {
  background: #13a6ff;
  color: #fff;
}
/*按钮大小*/
.btn-large {
  font-size: 19px;
  height: 40px;
  line-height: 40px;
  padding: 0px 26px;
}
.btn-small {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0px 24px;
}
.btn-tiny {
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  padding: 0px 13px;
  margin: 0 5px;
}
/*块按钮*/
.btn-block {
  display: block;
}

/*表单类*/
.form_text,
.form_text:hover,
.form_text_verifycode,
.form_text_verifycode:hover {
  border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
  border-width: 1px;
  height: 30px;
  line-height: 30px;
  padding: 2px;
  color: #000000;
}
.form_text {
  width: 100%;
  background-position: 0px 0px;
  box-sizing: border-box;
}
.form_text:hover {
  background-position: 0px -37px;
}
.form_text_verifycode {
  width: 50px;
  margin-right: 3px;
  background-position: 0px 0px;
}
.form_text_verifycode:hover {
  background-position: 0px -37px;
}
.form_radio {
  width: auto;
  border: 0;
}
.form_checkbox {
  width: auto;
  border: 0;
}
.form_select {
  height: 25px;
}
.form_textarea {
  width: 100%;
  height: 80px;
  border-color: #a0a0a0 #cbd9eb #cbd9eb #a0a0a0;
  border-width: 1px;
  padding: 5px 2px;
  box-sizing: border-box;
}
.form_button {
  width: auto;
  vertical-align: middle;
  border: 0 none; /*解决ie焦点是有黑色边框*/
}
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
  padding: 0;
}
.required {
  color: red;
  font-weight: bold;
  text-align: left;
  padding-left: 3px;
}
#Birthday {
  height: 36px;
}

/*其它*/
.hide {
  display: none;
} /*隐藏*/
.more {
  float: right;
} /*more链接*/
.code_image {
  cursor: pointer;
} /*验证码图片样式*/

/*动画缓动*/
.delay_1 {
  transition: all ease-out 0.1s;
  -webkit-transition: all ease-out 0.1s;
  -moz-transition: all ease-out 0.1s;
  -ms-transition: all ease-out 0.1s;
}
.delay_2 {
  transition: all ease-out 0.2s;
  -webkit-transition: all ease-out 0.2s;
  -moz-transition: all ease-out 0.2s;
  -ms-transition: all ease-out 0.2s;
}
.delay_3 {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
}
.delay_5 {
  transition: 0.5s ease 0s;
  -webkit-transition: 0.5s ease 0s;
  -moz-transition: 0.5s ease 0s;
  -ms-transition: 0.5s ease 0s;
}

/*动画延迟*/
.wait_0 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s; /* Safari 和 Chrome */
}
.wait_1 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s; /* Safari 和 Chrome */
}
.wait_2 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s; /* Safari 和 Chrome */
}
.wait_3 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s; /* Safari 和 Chrome */
}

/*频道*/
.ChannelContent {
  line-height: 2em;
  font-size: 16px;
}
.ChannelSContent,
.ChannelSContent p {
  line-height: 1.8em;
}
.ChannelContent a {
  color: #ff9d02;
}
.ChannelContent p {
  color: #777;
  font-size: 13px;
  line-height: 24px;
}
.ChannelContent strong {
  color: #777;
}
.ChannelSContent {
  color: #fff;
  line-height: 25px;
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
}
.ChannelSContent a {
  color: #ff9d02;
}
.ChannelSContent img,
.InfoContent img {
  max-width: 100%;
}
.ChannelAlbum {
  overflow: hidden;
}

/*信息*/
.InfoTitle {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}
.InfoTitle h1 {
  font-size: 18px;
  line-height: 1.5em;
  color: #444;
}
.InfoTitle1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.InfoTime {
  text-align: left;
}
.InfoContent,
.InfoContent p {
  line-height: 2em;
  font-size: 16px;
}
.InfoAttachment {
  padding: 10px 0px;
  text-align: center;
  width: 81px;
  margin: 0 auto;
}
.InfoPicture {
  text-align: center;
}
.InfoPicture img {
  width: 100%;
  max-width: 100%;
}
.imgscale {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.imgscale_animate {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.imgscale_animate img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
}
.imgscale_animate:hover img {
  transform: scale(1.1, 1.1);
}

.info_wrap {
}
.info_from_wrap {
  padding: 0;
  text-align: left;
  font-size: 12px;
  color: #aaa;
  border: 0px dashed #ccc;
  line-height: 30px;
  margin-bottom: 20px;
}
.info_from_wrap a {
  color: #aaa;
}
.info_from_wrap a:hover {
  color: #555;
}
#ReadLevelTip {
  font-weight: bold;
  color: red;
}
.Tag {
  text-align: left;
  font-weight: bold;
}
.Tag a {
  padding: 0 3px;
  font-weight: normal;
  text-decoration: none;
}
.info_previous_next_wrap {
  background: #f5f5f5;
  padding: 5px 10px;
  color: #666;
  line-height: 1.8em;
  margin-top: 10px;
}
.Next a {
}
.Previous a {
}
/*==========@@元件 结束@@==========*/

/*==========@@模块  开始@@==========*/
/*左侧*/
/*主体左侧样式*/
.left_title {
}
.left_title h2 {
  font-size: 16px;
  color: #01673a;
}
.left_body {
  overflow: hidden;
  zoom: 1;
  color: #01673a;
  padding: 10px 10px 5px;
  border-top: 0;
  border-bottom: 0px;
}
.left_bottom {
  height: 15px;
  margin-bottom: 5px;
}
/*样式1*/
.left_title1 {
  width: 1170px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.left_title1 .ChannelName {
  float: left;
  height: 40px;
  line-height: 40px;
  margin: 55px 0;
}
.left_title1 .ChannelName h2 {
  float: left;
  font-size: 24px;
  color: #555;
  font-weight: normal;
}
.left_title1 .ChannelName i {
  margin: 0 10px;
}
.left_title1 .ChannelName span {
  color: #b7b7b7;
}
.left_title1 a div {
  height: 34px;
  line-height: 34px;
  border: 1px solid #f0f0f0;
  padding: 0 15px;
  margin: 57px 0 57px 5px;
  color: #898989;
  background: #fff;
  min-width: 60px;
  text-align: center;
  font-size: 12px;
}
.left_title1 a.more div {
  color: #00c0ff;
}
.left_title1 a div:hover {
  color: #00c0ff;
}
.left_title1 p {
  position: absolute;
  width: 36px;
  height: 40px;
  top: 60px;
  left: 0;
  border-bottom: 2px solid #00c0ff;
}
.left_body1 {
}
.left_bottom1 {
  clear: both;
  height: 5px;
  margin-bottom: 0px;
}
/*样式2*/
.left_title2 {
  text-align: center;
  padding: 20px 0 40px;
}
.left_title2 div {
  line-height: 32px;
}
.left_title2 div h2 {
  font-size: 24px;
  color: #555;
  font-weight: normal;
}
.left_title2 p {
  margin: 5px 0;
  color: #a8a8a8;
  line-height: 16px;
}
.left_body2 {
  width: 780px;
  margin: 0 auto;
}
.left_body2 .ChannelContent {
  color: #898989;
  font-size: 14px;
  text-align: justify;
  line-height: 24px;
}
.left_body2 a {
  display: block;
}
.left_body2 .more {
  width: 120px;
  margin: 20px auto 40px;
  padding: 10px 30px;
  background: #ffffff;
  text-align: center;
  color: #898989;
  border: 1px solid #e1e1e1;
  float: none;
}
.left_body2 .more:hover {
  background: #00c0ff;
  color: #fff;
}
.left_bottom2 {
  clear: both;
  margin-bottom: 0px;
}
.left_bottom2 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*主体右侧*/
/*样式1*/
.right_title {
  display: none;
}
.right_title h2 {
  font-size: 26px;
  font-weight: normal;
  padding: 40px 0 0;
  color: #414141;
}
.right_title h2 a {
  color: #414141;
}
.right_title p {
  color: #939393;
  margin-top: 10px;
}
.right_body {
  padding: 40px 0px 10px;
  overflow: hidden;
  zoom: 1;
  border-top: 0;
  border-bottom: 0;
}
.right_bottom {
}
/*==========@@模块  结束@@==========*/

/*==========@@频道布局  开始@@==========*/
/*模型body*/
.body_index,
.body_article,
.body_download,
.body_picture,
.body_product,
.body_single,
.body_video,
.body_job,
.body_feedback,
.body_guestbook {
}
.index,
.single,
.article,
.picture,
.download,
.video,
.product,
.job,
.guestbook,
.feedback {
  width: 1170px;
  margin: 5px auto;
  min-height: 350px;
}
#top,
#logo,
#banner,
#announcement,
#link,
#copyright,
#bottom,
#floor_1,
#floor_3,
#floor_4,
#floor_2,
#floor_5,
#floor_6 {
  width: 1170px;
  margin: 0 auto;
  overflow: hidden;
  border: 0px dashed red;
}
#left {
  float: left;
  width: 250px;
}
#right {
  float: left;
  width: 1170px;
  border-left: 0px solid #e5e5e5;
  padding-left: 0px;
  min-height: 350px;
}
#right1 {
  width: 1200px;
  margin: 0 auto;
}
/*===首页 开始===*/
#floor_1_main {
  overflow: hidden;
  position: relative;
  z-index: auto;
}
#floor_1 {
  width: 1270px;
}
#floor_2_main {
  width: 100%;
  background: #eef3f7;
}
#floor_2 {
}
#floor_3_main {
  padding: 0 0;
}
#floor_3 {
  padding: 40px 0 80px;
}
#floor_4_main {
  background: #f5f9fa;
  padding: 0 0 25px;
}
#floor_4 {
}
#floor_5_main {
}
#floor_5 {
}

/*===产品模型内页 开始===*/
.product .info_product_detail_wrap {
  line-height: 2.2em;
  margin-bottom: 20px;
}
.product .info_product_detail_wrap span {
  color: #666;
  margin-right: 10px;
}
.product .info_product_detail_wrap table.detail_table {
  width: 100%;
}
.product .info_product_detail_wrap table.detail_table th {
  width: 200px;
}
.product .ProductDescription {
  height: 40px;
  color: #01673a;
  margin-top: 10px;
  padding-left: 35px;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  display: none;
}
.product .info_product_detail_wrap img {
  height: 162px;
  float: left;
  text-align: left;
  margin-right: 10px;
}
.product .InfoTitle {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding: 10px 0px;
}
.product .InfoTitle span {
  color: #888;
  margin-right: 0;
  font-size: 14px;
}
.product .f2 {
  padding: 5px 0px;
}
.product .f1 {
  padding: 5px 0px;
}
.product .InfoHit {
  padding: 5px 0px;
  font-weight: bold;
  color: #990000;
}
.product .InfoTime {
  padding: 5px 0px;
}
/*===产品模型 结束===*/

/*===招聘频道  开始===*/
.job {
}
.joblist {
}
.joblist li {
  overflow: hidden;
}
table.job_table {
  margin: 8px 0px;
  padding: 0px;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
}
table.job_table td {
  padding: 8px 5px;
  border: 1px solid #dadbd6;
}
table.job_table .Requirement {
  text-align: left;
  padding: 8px 5px;
  line-height: 1.5em;
}
table.job_table th {
  color: #333;
  font-weight: bold;
  text-align: center;
  border: 1px solid #dadbd6;
}
table.job_table .t1 {
  font-weight: bold;
  padding: 5px 0;
  width: 20%;
}
table.job_table .t2 {
  text-align: left;
  width: 25%;
}
table.job_table .t3 {
  font-weight: bold;
  width: 25%;
}
table.job_table .t4 {
  text-align: left;
  width: 25%;
}
table.job_table .operation {
  text-align: center;
  margin: 0 auto;
}
/*应聘*/
table.resume_table {
  margin: 3px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  border-collapse: collapse;
}
table.resume_table th {
  font-weight: bold;
  text-align: left;
  width: 100px;
}
table.resume_table td {
  text-align: left;
}
table.resume_table .operation {
  text-align: center;
}
table.resume_table #Detail {
  height: 200px;
}
/*===招聘频道  结束===*/

/*===留言频道  开始===*/
.guestbook {
}
.guestbooklist {
}
.guestbooklist li {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.MessageTitle {
  color: #227bad;
  line-height: 1.5em;
  font-weight: bold;
}
.MessageContent {
  padding: 5px;
  margin-bottom: 10px;
}
table.guestbook_table {
  width: 100%;
}
table.guestbook_table th {
  width: 100px;
  text-align: left;
}
table.guestbook_table td {
  text-align: left;
}
table.guestbook_table .operation {
  text-align: center;
}
table.guestbook_table tr {
  width: 40%;
}

/*管理员回复*/
.answer_wrap {
  padding: 5px;
  border-top: 1px dashed #ccc;
  line-height: 1.5em;
}
.answer_title {
}
.answer_body {
}
.Administrator {
  text-align: right;
}
.Reply {
  text-align: right;
}
.AnswerTime {
  color: #999;
}

/*留言表单*/
.message_title {
  padding-left: 8px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background: #00c0ff;
  margin: 40px 0 20px;
}
.message_body {
  padding: 0 40px;
  color: #626262;
}
.message_bottom {
}
/*===留言频道  结束===*/

/*===反馈频道 开始===*/
.feedback {
}
table.feedback_table {
  width: 99%;
  text-align: center;
  margin: 0 auto;
}
table.feedback_table th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}
table.feedback_table td {
  text-align: left;
}
table.feedback_table .operation {
  text-align: center;
}
/*===反馈频道 结束===*/
/*==========@@频道布局  结束@@==========*/

/*==========@@公共板块  开始@@==========*/
#logo_main {
  background: #fff;
  width: 100%;
  text-align: center;
}
#logo {
  overflow: hidden;
  width: auto;
  min-width: 1170px;
  text-align: center;
}
/* 顶部 */
#top_1 {
  display: inline-block;
  zoom: 1;
  *display: inline;
  text-align: center;
  margin-left: 10px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
}
#top_2 {
  display: inline-block;
  zoom: 1;
  *display: inline;
  text-align: center;
  height: 60px;
  margin: 0 0px;
  overflow: hidden;
}
#top_1 a {
  display: block;
  float: left;
  min-width: 50px;
  padding: 0 5px;
  height: 60px;
  color: #222;
  font-size: 16px;
  overflow: hidden;
}
#top_1 a.MemberLogin {
  border-left: 1px #f5f5f5 solid;
  border-right: 1px #f5f5f5 solid;
}
#top_1 a:hover {
  background: #00c0ff;
  color: #fff;
}
#top_2 a {
  color: #666;
  display: block;
  width: 90px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #999;
  margin-top: 13px;
  color: #666;
  font-size: 14px;
}
#top_2 a:hover {
  background: #00c0ff;
  color: #fff;
  border-color: #00c0ff;
}

/*Logo*/
.WebLogo {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.WebLogo img {
  display: block;
}

/*导航*/
#navigation {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0 20px;
}
#navigation ul.navigationlist li {
  float: left;
  text-align: center;
}
#navigation ul.navigationlist li a {
  display: block;
  color: #666;
  height: 60px;
  position: relative;
  line-height: 60px;
  padding: 0 20px;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 15px;
}
#navigation ul.navigationlist li:hover a {
  color: #fff;
  background: #00c0ff;
}
#navigation ul.navigationlist li a.current {
  color: #fff;
  background: #00c0ff;
}
#navigation ul.navigationlist li a span {
  display: inline-block;
  position: relative;
}
#navigation ul.navigationlist li a img {
  vertical-align: middle;
  margin-left: 10px;
}
/*导航栏下拉*/
#navigation ul.subnavigationlist {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
#navigation ul.subnavigationlist li {
  float: none;
  padding: 0px;
  display: inline;
}
#navigation ul.subnavigationlist li a {
  display: block;
  white-space: nowrap;
  font-weight: normal;
  color: #bbb9b9;
  line-height: 44px;
  text-align: left;
  margin: 0 17px;
  font-size: 14px;
  height: 44px;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
  background: #fff url(../images/right2.png) no-repeat right;
}
#navigation li:hover ul.subnavigationlist li a {
  border-top: none;
  color: #bbb9b9;
  background: #fff;
}
#navigation li ul.subnavigationlist li a:hover {
  color: #00c0ff;
  background: #fff;
}

/*Js幻灯片样式*/
#banner_main {
  position: relative;
  border: 0px solid blue;
}
#banner {
  border: 0px solid red;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
.bannerlist {
}
.bannerlist li {
  text-align: center;
  border: 0px dashed red;
  overflow: hidden;
  display: block;
}
.bannerlist li img {
  margin: 0 auto;
  display: block;
}
#banner_main .hd {
  width: 100%;
  position: relative;
  bottom: 35px;
  left: 0;
  height: 10px;
  line-height: 10px;
  text-align: center;
  border: 0px solid red;
}
#banner_main .hd ul li {
  cursor: pointer;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 10px;
  height: 10px;
  border: 1px solid #666;
  margin-right: 15px;
  overflow: hidden;
  font-size: 0px;
  border-radius: 100%;
}
#banner_main .hd ul li.on {
  background: #00c0ff;
  border-color: #00c0ff;
}
#banner_main .hd ul li:hover {
  background: #00c0ff;
  border-color: #00c0ff;
}
#banner_main .prevNext {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  color: #fff;
  line-height: 42px;
  text-align: center;
  margin-top: -23px;
  top: 50%;
  cursor: pointer;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
}
#banner_main .prevNext:hover {
  background-color: #00c0ff;
}
#banner_main .prev {
  left: 4%;
  background: #000 url(../images/left2.png) no-repeat center;
  background-color: rgba(0, 0, 0, 0.3);
}
#banner_main .next {
  left: 96%;
  background: #000 url(../images/right2.png) no-repeat center;
  background-color: rgba(0, 0, 0, 0.3);
}

/*内页幻灯片*/
#Channelbanner {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#Channelbanner img {
  min-width: 1170px;
  display: block;
}
.banner_title {
  position: absolute;
  width: 1170px;
  left: 50%;
  top: 50%;
  margin: -35px 0 0 -580px;
  color: #fff;
  z-index: 5;
}
.banner_title h2 {
  font-size: 26px;
  font-weight: normal;
}
.banner_title p {
  font-size: 15px;
}

/*子频道列表*/
#subchannel {
  width: 1170px;
  overflow: hidden;
  margin: 0 auto;
  line-height: 50px;
  height: 50px;
  border-bottom: 1px solid #e9e9e9;
}
.subchannellist {
  text-align: center;
}
.subchannellist li {
  display: inline;
  border-left: 1px solid #ccc;
}
.subchannellist li.n0 {
  border: 0;
}
.subchannellist li a {
  padding: 10px 5px;
  margin: 0 25px;
  color: #333;
  font-size: 16px;
}
.subchannellist li a:hover {
  color: #00c0ff;
  text-decoration: none;
}
.subchannellist li.current a {
  color: #00c0ff;
}

/*搜索 */
table.search_table {
  width: 99%;
  text-align: center;
}
table.search_table th {
  vertical-align: middle;
  text-align: center;
  padding: 0px 3px;
}
table.search_table td {
  vertical-align: middle;
  width: 60px;
  padding: 0px 3px;
}

/*联系我们*/
.contact_wrap {
  line-height: 40px;
  font-size: 12px;
}
.contact_wrap span {
  margin: 0 0 0 30px;
}
.contact_wrap .Company {
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
  margin: 10px 0 15px;
  color: #444;
}
.contact_wrap .WeChat {
  margin-bottom: 10px;
}

/*公共百度地图*/
#Map {
  overflow: hidden;
  width: 100%;
}
#Map .MapInfo {
  float: left;
  border: 1px dashed #ccc;
  padding: 8px;
}
#Map .MapInfo #MapContainer {
  width: 855px;
  height: 390px;
}
#Map .ContactInfo {
  width: 300px;
  float: right;
  line-height: 2.7em;
  color: #777;
}
#Map .ContactInfo .Company {
  font-size: 24px;
  margin-bottom: 8px;
}
#Map .ContactInfo img {
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

/*订购*/
.order {
  margin: 0px auto;
}
.order .WantOrder h1 {
  border-bottom: 1px dotted #999999;
  padding: 5px 0px;
}
.order .f1 {
  float: right;
  color: red;
}
table.order_table {
  width: 98%;
}
table.order_table th {
  width: 100px;
  text-align: left;
}
table.order_table td {
  text-align: left;
}
table.order_table .operation {
  text-align: center;
}

/* 友情链接 */
#link_main {
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
#link {
  padding: 0;
  position: absolute;
  width: 1170px;
  height: 210px;
  z-index: 5;
  top: 0;
  left: 50%;
  margin-left: -600px;
}
.link_title {
  line-height: 59px;
  height: 59px;
  color: #fff;
}
.link_title h2 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  text-indent: 15px;
}
.link_body {
  overflow: hidden;
  zoom: 1;
  z-index: 1;
  margin-top: 55px;
  height: 100px;
}
.link_body .album {
  width: 1070px;
  float: left;
  overflow: hidden;
}
.link_body .prevnext {
  display: block;
  width: 40px;
  height: 90px;
  margin-top: 3px;
  cursor: pointer;
  z-index: 5;
}
.link_body .prev {
  background: url(../images/left1.png) no-repeat center;
  margin-right: 10px;
  float: left;
}
.link_body .next {
  background: url(../images/right1.png) no-repeat center;
  margin-left: 10px;
  float: right;
}
.link_body .prevnext:hover {
  background-color: #00c0ff;
  opacity: 1;
}
.link_bottom {
}
/*图片链接列表*/
.linkpiclist {
  overflow: auto;
  zoom: 1;
}
.linkpiclist li {
  float: left;
  padding: 1px 5px;
  text-align: center;
}
.linkpiclist li img {
  padding: 2px;
  width: 200px;
  height: 90px;
}
/*文字链接列表*/
.linktextlist {
  overflow: hidden;
  zoom: 1;
  padding: 8px 0 8px 0;
}
.linktextlist li {
  float: left;
  text-align: center;
  padding: 1px 15px;
  overflow: hidden;
  white-space: nowrap;
}
.linktextlist li a {
  line-height: 22px;
  color: #666;
}
.linktextlist li a:hover {
  line-height: 22px;
  color: #c11b33;
}

/*底部区域*/
#bottom_main {
  color: #777;
  padding: 40px 0;
  background: #eee;
}
#bottom {
  padding: 0;
}
.bottom_navigation {
  overflow: hidden;
  float: left;
}
.bottom_navigation li {
  float: left;
  width: 120px;
  margin-right: 15px;
  overflow: hidden;
}
.bottom_navigation li a {
  display: block;
  text-align: left;
  font-size: 18px;
  margin-bottom: 10px;
  color: #f0f0f0;
  font-weight: bold;
}
.bottom_navigation li a:hover {
  color: #fff;
}
.bottom_navigation .subnavigationlist1 li {
  float: none;
  padding: 0;
  line-height: 28px;
  display: block;
}
.bottom_navigation .subnavigationlist1 li a {
  color: #f0f0f0;
  display: block;
  line-height: 30px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  font-size: 13px;
  text-align: left;
}
.bottom_navigation .subnavigationlist1 li a:hover {
  color: #fff;
}
#bottom_2 {
  float: right;
  width: 34%;
}
#bottom_2 .WeChat img {
  float: left;
  width: 102px;
  padding: 20px 30px 0 0;
}
.bdsharebuttonbox {
  display: none;
}
#bottom_2 .bdsharebuttonbox .LShare {
  display: block;
  line-height: 24px;
  height: 24px;
  cursor: pointer;
  margin: 6px 6px 6px 0;
  font-size: 16px;
  color: #f0f0f0;
}
.bdshare-button-style0-24 {
}
#WxQrcode {
  float: right;
}
#WxQrcode .Qrcode2 {
}
#WxQrcode .Qrcode2 img {
  display: block;
  width: 100px;
  margin: 0px 20px;
}
#WxQrcode .Qrcode2 p {
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.roll_area {
  overflow: hidden;
}
.roll_area .roll {
  width: 1170px;
  float: left;
  overflow: hidden;
}
.roll_area .prevnext {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-top: 150px;
  cursor: pointer;
  z-index: 5;
}
.roll_area .prev {
  background: url(../images/left.png) no-repeat center;
  margin-right: 10px;
  float: left;
}
.roll_area .next {
  background: url(../images/right.png) no-repeat center;
  margin-left: 10px;
  float: right;
}
.roll_area .prevnext:hover {
}
.roll_area .hd {
  height: 20px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.roll_area .hd li {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  width: 8px;
  height: 8px;
  line-height: 50px;
  background: #fbfbfb;
  margin: 20px 6px 0;
  border: 1px solid #c8c8c8;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
}
.roll_area .hd li.on {
  background: #00c0ff;
  border-color: #00c0ff;
}

/* 版权信息 */
#copyright_main {
  color: #fff;
  background-color: #737373;
}
#copyright_main2 {
  color: #fff;
  background-color: #737373;
  width: 100%;
}
#copyright {
  line-height: 40px;
  font-size: 12px;
}
#copyright a {
  color: #f0f0f0;
  text-decoration: none;
}
#copyright a:hover {
  color: #111;
  text-decoration: none;
}
#copyright .bottom_info {
  text-align: center;
  padding-top: 5px;
  padding-right: 30px;
  line-height: 20px;
}
#copyright .TechnicalSupport {
  margin-left: 30px;
  float: right;
}

/*分页样式*/
.page {
  padding: 0;
  text-align: center;
  clear: both;
  color: #888;
}
.page a,
.page span {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  border: 1px solid #d3d1d1;
  padding: 0 3px;
  margin-left: 4px;
  line-height: 36px;
  color: #666;
  min-width: 24px;
  margin-top: 40px;
}
.page a:link,
.page a:visited {
  text-decoration: none;
}
.page a:hover {
  background: #00c0ff;
  color: #fff;
  border-color: #00c0ff;
}
.page .current {
  background: #00c0ff;
  color: #fff;
  border-color: #00c0ff;
}
.page #total {
  color: #00c0ff;
  font-weight: 500;
}

/*会员*/
/*会员登录*/
td {
  padding: 5px 0;
}
table.login_table {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
table.login_table th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}
table.login_table td {
  text-align: left;
}
table.login_table .operation {
  text-align: center;
  padding-top: 20px;
}
table.login_table .quick_login td {
  text-align: left;
  padding: 10px 0;
}
table.login_table .quick_login td img {
  margin-right: 8px;
  float: left;
}

/*会员注册*/
table.reg_table {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
table.reg_table th {
  width: 140px;
  text-align: left;
  font-weight: bold;
}
table.reg_table td {
  text-align: left;
}
table.reg_table .operation {
  text-align: center;
}
table.reg_table .MemberCode {
  text-align: left;
  width: 70px;
}
table.reg_table #SmsCode {
  width: 50px;
}

/*忘记密码 第一步*/
table.forget_table1 {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
table.forget_table1 th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}
table.forget_table1 td {
  text-align: left;
}
table.forget_table1 .operation {
  text-align: center;
}
/*忘记密码 第二步*/
table.forget_table2 {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
table.forget_table2 th {
  width: 100px;
  text-align: left;
  font-weight: bold;
}
table.forget_table2 td {
  text-align: left;
}
table.forget_table2 .operation {
  text-align: center;
}
table.forget_table2 #SmsCode {
  width: 60px;
}
table.forget_table2 .PasswordQuestion,
table.forget_table2 .MemberMobile,
table.forget_table2 .FindPwdWay {
  padding: 3px 0;
}

/*网站地图列表*/
.maplist {
}
.maplist li {
  padding: 1px;
}
.maplist li a {
  background: #d1e8fc;
  line-height: 25px;
  display: block;
  padding: 0 20px;
  border: 0px solid #a6cc93;
}
.maplist li a:hover {
  text-decoration: none;
  background: #fff;
}
.maplist .depth1 {
  font-weight: bold;
  text-indent: 0px;
  font-weight: bold;
}
.maplist .depth2 {
  text-indent: 2em;
}
.maplist .depth3 {
  text-indent: 4em;
}
.maplist .depth4 {
  text-indent: 6em;
}
.maplist .depth5 {
  text-indent: 8em;
}
.maplist .depth6 {
  text-indent: 10em;
}
/*==========@@公共板块  结束@@==========*/

/*==========@@通用列表 开始@@==========*/
/*文字列表*/
.textlist {
}
.textlist li {
  line-height: 28px;
  height: 28px;
  text-indent: 8px;
  background: url(http://www.xajili.com/App/Tpl/Home/Default/Public/images/textlist.gif)
    no-repeat 0 center;
  overflow: hidden;
  width: 100%; /*解决ie6bug*/
  padding: 4px 0;
}
.textlist li a {
}
.textlist li:hover {
  background-color: #eee;
}
.textlist li .InfoTime {
  float: right;
}

/*橱窗列表*/
.gridlist {
}
.gridlist li {
  width: 370px;
  float: left;
  margin: 0 30px 20px 0;
}
.gridlist li.n2 {
  margin-right: 0;
}
.gridlist li a {
  display: block;
}
.gridlist li .imgscale_animate {
  position: relative;
}
.gridlist li a img {
  width: 100%;
  display: block;
}
.gridlist li .imgscale_animate .item_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transform: rotateX(180deg) scale(0.5, 0.5);
  transform: rotateX(180deg) scale(0.2, 0.2);
}
.gridlist li .imgscale_animate .item_mask .item_link_icon {
  width: 38px;
  height: 38px;
  background: url(../images/link.png) no-repeat center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -21px 0 0 -21px;
}
.gridlist li:hover .imgscale_animate .item_mask {
  opacity: 1;
  -webkit-transform: rotateX(0deg) scale(1, 1);
  transform: rotateX(0deg) scale(1, 1);
  background: #444;
  background: rgba(2, 31, 75, 0.3);
  transition: all 1s cubic-bezier(0.23, 1, 0.38, 1) 0s;
}
.gridlist li .info_wrap {
}
.gridlist li .info_wrap .InfoTitle1 {
  height: 24px;
  font-size: 16px;
  color: #333;
  margin: 16px 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.gridlist li:hover a .info_wrap .InfoTitle1 {
  border-color: #00c0ff;
}
.gridlist li .info_wrap .InfoTitle1 span {
  font-size: 12px;
  color: #9f9f9f;
  margin-left: 10px;
}
.gridlist li .info_wrap p {
  font-size: 13px;
  line-height: 24px;
  height: 50px;
  overflow: hidden;
  color: #878787;
}

/*带缩略图文字列表*/
.thumblist {
  padding: 20px 0 40px;
  overflow: hidden;
}
.thumblist li {
  float: left;
  width: 282px;
  margin: 0 0 30px 14px;
}
.thumblist li.n0 {
  margin-left: 0;
}
.thumblist li:hover {
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
}
.thumblist li .InfoTitle {
  background: #fff;
  border-top: 5px solid #e3e3e3;
  padding: 15px 30px;
  font-size: 15px;
  color: #333;
  line-height: 20px;
  height: 40px;
}
.thumblist li:hover .InfoTitle {
  border-color: #00c0ff;
}
.thumblist li .imgscale_animate {
  position: relative;
}
.thumblist li .imgscale_animate img {
  width: 100%;
}
.thumblist li .item_mask {
  content: "";
  width: 100%;
  height: 100%;
  background: #444;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform-origin: 50% 0;
  transition: all ease-out 0.3s;
}
.thumblist li:hover .item_mask {
  top: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.38, 1) 0s;
}
.thumblist li .item_link_icon {
  width: 38px;
  height: 38px;
  background: url(../images/link.png) no-repeat center;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -50px;
  margin: -21px 0 0 -21px;
}
.thumblist li:hover .item_link_icon {
  top: 50%;
}

/*带缩略图文字列表*/
.thumblist1 {
  overflow: hidden;
}
.thumblist1 li {
  float: left;
  width: 560px;
}
.thumblist1 li.n0 {
  margin: 0 50px 30px 0;
}
.thumblist1 li .imgscale_animate {
  float: left;
  position: relative;
  width: 32%;
  margin-right: 4%;
}
.thumblist1 li .imgscale_animate img {
  height: 148px;
}
.thumblist1 li .item_mask {
  content: "";
  width: 100%;
  height: 100%;
  background: #444;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform-origin: 50% 0;
  transition: all ease-out 0.3s;
}
.thumblist1 li:hover .item_mask {
  top: 0;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.38, 1) 0s;
}
.thumblist1 li .item_link_icon {
  width: 38px;
  height: 38px;
  background: url(../images/link.png) no-repeat center;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -50px;
  margin: -21px 0 0 -21px;
}
.thumblist1 li:hover .item_link_icon {
  top: 50%;
}
.thumblist1 li .info_wrap {
  float: right;
  width: 64%;
  margin-top: 10px;
}
.thumblist1 li .InfoTitle1 {
  background: #fff;
  font-size: 16px;
  color: #222;
}
.thumblist1 li:hover .InfoTitle1 {
  color: #00c0ff;
}
.thumblist1 li .InfoTime {
  font-size: 12px;
  color: #bfbfbf;
  border-bottom: 1px dotted #d3d3d3;
  padding: 5px 0;
  line-height: 24px;
}
.thumblist1 li p {
  font-size: 12px;
  color: #878787;
  padding: 0 0 10px;
  line-height: 22px;
  height: 56px;
  overflow: hidden;
  margin-top: 20px;
}

/*带缩略图文字列表*/
.thumblist2 {
  overflow: hidden;
}
.thumblist2 li {
  float: left;
  width: 100%;
  margin: 0 0 20px 0;
}
.thumblist2 li .imgscale_animate {
  float: left;
  position: relative;
  width: 16%;
}
.thumblist2 li .imgscale_animate img {
  height: 150px;
}
.thumblist2 li .info_wrap {
  float: right;
  width: 80%;
  margin-top: 10px;
}
.thumblist2 li .InfoTitle1 {
  background: #fff;
  font-size: 16px;
  color: #222;
}
.thumblist2 li:hover .InfoTitle1 {
  color: #00c0ff;
}
.thumblist2 li .InfoTime {
  font-size: 12px;
  color: #bfbfbf;
  border-bottom: 1px dotted #d3d3d3;
  padding: 5px 0;
  line-height: 24px;
}
.thumblist2 li p {
  font-size: 12px;
  color: #878787;
  padding: 0 0 10px;
  line-height: 22px;
  height: 56px;
  overflow: hidden;
  margin-top: 20px;
}

/*频道相册列表*/
.channelalbumlist {
  overflow: hidden;
}
.channelalbumlist li {
  float: left;
  margin-top: 10px;
}
.channelalbumlist li img {
  display: block;
  width: 290px;
  margin-right: 10px;
}

/*视频列表*/
.videolist {
  margin-top: 5px;
}
.videolist li {
  float: left;
  width: 280px;
  margin: 0 0 10px 14px;
  text-align: center;
}
.videolist li:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.videolist li.n0 {
  margin-left: 0;
}
.videolist li img {
  width: 100%;
}
.videolist li a {
  display: block;
  position: relative;
}
.videolist li .InfoTitle1 {
  display: block;
  padding: 10px 20px;
  text-align: center;
}
.videolist li .InfoTitle1 a {
  white-space: nowrap;
}
.videolist li i {
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/play.png) center 40px no-repeat;
  cursor: pointer;
}
.videolist li:hover i {
  opacity: 1;
  background-position-y: center;
}
/*==========@@通用列表  结束@@==========*/

/*slide样式*/
.fp-slidesNav.bottom {
  bottom: 100px !important;
}
.section .fp-slidesNav.bottom ul li {
  width: 40px;
  margin: 0 10px;
}
.section .fp-slidesNav.bottom ul li a span {
  width: 36px;
  height: 2px;
  background: #fff;
  margin: -1px 0 0 -18px;
  border-radius: 0;
}
.section .fp-slidesNav.bottom ul li a.active span {
  background: #00c0ff;
  border-radius: 0;
  width: 36px;
  height: 2px;
  margin: -1px 0 0 -18px;
}

@charset "utf-8";

/* Style Reset
-----------------------------------------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  padding: 0px;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
html button::-moz-focus-inner {
  border-color: transparent !important;
}
input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}
ul,
li,
dl,
dt,
dd,
ol {
  display: block;
  list-style: none;
}
fieldset,
img {
  border: 0;
}
iframe {
  background-image: none;
}
input,
textarea {
  outline: none;
}
.clear {
  clear: both;
  height: 0px;
}
.clear-fix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
img {
  border: 0px;
}
body {
  /*font-family:simsun;*/
  color: #333333;
  font-weight: 400;
  overflow-x: hidden;
  min-width: 1180px;
  -webkit-text-size-adjust: none;
  font-size: 12px;
  background: #fff;
  background-size: cover;
}
a {
  text-decoration: none;
  color: #333333;
  transition: all 0.5s ease;
}
a:hover {
  color: #c31224;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.none {
  display: none;
}
.ani5 {
  transition: all ease-in-out 0.5s;
}
.h10px {
  height: 10px;
  width: 100%;
  clear: both;
}
.h15px {
  height: 15px;
  width: 100%;
  clear: both;
}
.h25px {
  height: 25px;
  width: 100%;
  clear: both;
}
.h50px {
  height: 50px;
  width: 100%;
  clear: both;
}

.mt15px {
  margin-top: 15px;
}
.mt20px {
  margin-top: 20px;
}
.w1180 {
  width: 1180px;
  margin: 0 auto;
}
.blod {
  font-weight: bold;
}
html {
  -webkit-text-size-adjust: none;
  font-size: 12px;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
center {
  text-align: center;
  line-height: 60px;
  font-family: "微软雅黑";
}
em {
  font-style: normal;
}
.tecen {
  text-align: center !important;
}
.red {
  color: red;
}
i,
em {
  font-style: normal;
}
.hiden {
  display: none;
}
/*
内容样式开始

头部信息
*/
#top {
  background: #f4f4f4;
}
.top_con {
  height: 35px;
  font: 400 12px/35px "微软雅黑";
  color: #333333;
}
.top_lf {
  float: left;
}
.top_lf a {
  display: inline-block;
  background: url(../images/t_home.png) left 5px no-repeat;
  padding-left: 32px;
  margin: 0 18px 0 3px;
  color: #333;
}
.top_lf a:hover {
  color: #fb550b;
}
.top_ri {
  float: right;
}
.top_ri a {
  color: #333;
  margin: 0 20px;
}
.top_ri a:hover {
  color: #fb550b;
}
#head {
  height: 94px;
  padding: 26px 0 0;
  position: relative;
  z-index: 2;
}
.logo {
  display: block;
  float: left;
  width: 144px;
  height: 57px;
  margin: 0 16px 0 0;
}
.h_adv {
  float: left;
  margin: 20px 0 0;
  width: 270px;
}
.h_sear {
  float: left;
  width: 470px;
  padding: 8px 0 0;
}
.h_sear form {
  height: 40px;
}
.h_sear .idiv {
  float: left;
  margin-right: 2px;
  height: 36px;
  border: #5b78c2 solid 2px;
  width: 380px;
  cursor: pointer;
}
.h_sear .idiv .typ {
  float: left;
  width: 63px;
  height: 36px;
  font: bold 14px/36px "微软雅黑";
  color: #5479d6;
  background: url(../images/h_ico.jpg) 63px center no-repeat;
  text-align: center;
  padding-right: 20px;
  position: relative;
}
.h_sear .idiv .sub {
  position: absolute;
  left: -1px;
  top: 36px;
  background: #fff;
  border: #5b78c2 solid 1px;
  width: 100%;
  text-align: center;
  display: none;
}
.h_sear .idiv .sub p {
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #666;
  cursor: pointer;
}
.h_sear .idiv .sub p:hover {
  background: #f5f6f8;
}
.h_sear input {
  float: left;
  width: 295px;
  height: 36px;
  border: none;
  font: 400 14px/36px "微软雅黑";
  color: #787878;
}
.h_sear input.btn {
  width: 70px;
  height: 40px;
  border: #4d70c7 solid 1px;
  background: #4d70c7;
  cursor: pointer;
  text-align: center;
  float: left;
  font: 400 16px/40px "微软雅黑";
  color: #fff;
}
.h_sear .hot {
  overflow: hidden;
  height: 28px;
  font: 400 12px/28px "微软雅黑";
  color: #6b6b6b;
}
.h_sear .hot a {
  color: #6b6b6b;
  margin-right: 20px;
}
.h_sear .hot a:hover {
  color: #fb550b;
}
#box {
  display: none;
  width: 84px;
  height: 100px;
  background: #fcfcfc;
  margin-top: -35px;
  text-align: center;
  position: absolute;
  z-index: 10;
  white-space: nowrap;
}
#nav {
  background: #4d70c7;
  position: relative;
  z-index: 9;
  width: 100%;
}
.top_ri > li {
  float: left;
}
.nav_con {
  height: 36px;
  position: relative;
  z-index: 1;
}
.nav_type {
  width: 216px;
  float: left;
  position: relative;
  height: 36px;
}
.nav_type h3 {
  text-align: center;
  height: 42px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fb550b;
  font: 400 18px/42px "微软雅黑";
  color: #fff;
}
/*.nav_ty{border: #e2e2e2 solid 1px; position: absolute; left: 0; top: 36px; width: 198px; background: #fff; height: 356px; padding: 0 8px; display: none;}
.nav_ty dl{border-bottom: #c2c2c2 dotted 1px; height: 80px; padding: 6px 8px 0; background: url(../images/ty_ico2.jpg) 191px 16px no-repeat; overflow:hidden}
.nav_ty dl dt{background: url(../images/ty_ico1.jpg) left center no-repeat; height: 28px; font: 400 16px/28px "微软雅黑"; padding-left: 20px;}
.nav_ty dl dt a{color: #2F2F2F;}
.nav_ty dl dt a:hover{color: #fe6d2c;}
.nav_ty dl dd{font: 400 14px/24px "微软雅黑"; color: #2f2f2f; padding-left: 20px;}
.nav_ty dl dd a{color: #2f2f2f; margin-right: 12px;}
.nav_ty dl dd a:hover{color: #fe6d2c;}*/

.nav_ty {
  border: #e2e2e2 solid 1px;
  position: absolute;
  left: 0;
  top: 36px;
  width: 212px;
  background: #f1f1f1;
  height: 356px;
  padding: 0 1px;
  display: none;
  position: relative;
}
.nav_ty dl {
  height: 41px;
  padding: 0 8px;
  background: url(../images/ty_ico2.jpg) 191px center no-repeat;
}
.nav_ty dl dt {
  background: url(../images/ty_ico1.jpg) 8px center no-repeat;
  height: 41px;
  font: 400 16px/41px "微软雅黑";
  padding-left: 30px;
  border-bottom: #c2c2c2 dotted 1px;
}
.nav_ty dl dt a {
  color: #2f2f2f;
}
.nav_ty dl dt a:hover {
  color: #fe6d2c;
}
.nav_ty dl .sub {
  position: absolute;
  left: 211px;
  top: -1px;
  padding-left: 3px;
  background: none;
  display: none;
}
.nav_ty dl .sub_nr {
  width: 717px;
  height: 356px;
  border: #fb550b solid 1px;
  background: #fff;
  position: relative;
}
.nav_ty dl .sub_nr .ckmore {
  display: block;
  position: absolute;
  bottom: 0;
  left: 240px;
  font: 400 14px/32px "微软雅黑";
  color: #fb550b;
}
.nav_ty dl .sub_lf {
  float: left;
  width: 508px;
  margin: 12px 0 0 22px;
  font: 400 14px/38px "微软雅黑";
  color: #999;
  background: url(../images/ty_bg.jpg);
  height: 312px;
  overflow: hidden;
}
.nav_ty dl .sub_lf a {
  color: #5c5c5c;
  margin: 0 10px;
  display: inline-block;
  vertical-align: top;
  height: 39px;
}
.nav_ty dl .sub_lf a:hover {
  color: #fb550b;
}
.nav_ty dl .sub_ri {
  float: right;
  width: 141px;
  background: #f6f6f6;
  padding: 0 12px;
  height: 356px;
}
.nav_ty dl .sub_ri .tit {
  height: 31px;
  border-bottom: #cbcbcb solid 1px;
  padding: 3px 0 0;
  text-align: center;
  font: bold 14px/30px "微软雅黑";
  color: #4a4a4a;
}
.nav_ty dl .sub_ri .pp {
  display: block;
  width: 139px;
  height: 49px;
  border: #e1e1e1 solid 1px;
  margin-top: 10px;
}
.nav_ty dl.on {
  background: #fff url(../images/ty_ico2x.jpg) 191px center no-repeat;
}

.nav_con ul {
  float: right;
}
.nav_con > ul > li {
  float: left;
  height: 38px;
  font: 400 16px/36px "微软雅黑";
}
.nav_con ul li a {
  display: block;
  color: #fff;
  padding: 0 22px;
}
.nav_con ul li a:hover {
  background: #4d70c7;
}
.nav_con ul li.hover a {
  background: #4d70c7;
}
.nav_con #box1 {
  background: #fe6d2c;
}
/*
首页内容
 * */
#imain {
  padding: 8px 0 0;
}
.im_con1 {
  height: 375px;
}
.im_ban {
  margin-left: 225px;
  width: 710px;
  height: 350px;
  float: left;
  position: relative;
  overflow: hidden;
}
.im_ban .rslides {
  width: 710px;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.im_ban .rslides li {
  height: 350px;
}
.im_ban .rslides a {
  display: block;
}
.im_ban .rslides_tabs {
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 10px;
  width: 100%;
  text-align: center;
}
.im_ban .rslides_tabs li {
  display: inline-block;
  vertical-align: top;
  height: 8px;
  width: 8px;
  margin-right: 10px;
  border: #fff solid 1px;
  background: ;
  border-radius: 50em;
}
.im_ban .rslides_tabs a {
  display: block;
  overflow: hidden;
  text-indent: 100px;
  width: 8px;
  height: 8px;
}
.im_ban .rslides_tabs .rslides_here {
  border: #fff solid 1px;
  background: #fff;
}

.im_c1ri {
  float: right;
  width: 237px;
}
.im_c1rqh {
  height: 154.5px;
  border: #e2e2e2 solid 1px;
  margin-bottom: 12px;
}
.im_c1rqh .qhul {
  height: 32px;
  border-bottom: #e2e2e2 solid 1px;
  background: #f7f7f7;
}
.im_c1rqh .qhul li {
  width: 235px;
  border-left: #e2e2e2 solid 1px;
  height: 32px;
  text-align: center;
  font: 400 16px/32px "微软雅黑";
  color: #2f2f2f;
  cursor: pointer;
}
.im_c1rqh .qhul li.hover {
  background: #fff;
  border-top: #4d70c7 solid 2px;
  border-right: #e2e2e2 solid 1px;
  border-bottom: #e2e2e2 solid 1px;
  line-height: 30px;
  margin: -1px -1px;
  height: 32px;
}
.im_c1rqh .qhbd {
  padding: 13px 0 0 14px;
}
.im_c1rqh .qhbd li {
  height: 33px;
}
.im_c1rqh .qhbd li .ico {
  width: 31px;
  height: 31px;
  border: #e2e2e2 solid 1px;
  float: left;
  background: url(../images/dl_ico1.jpg) center center no-repeat;
}
.im_c1rqh .qhbd li .ico2 {
  width: 31px;
  height: 31px;
  border: #e2e2e2 solid 1px;
  float: left;
  background: url(../images/dl_ico2.jpg) center center no-repeat;
}
.im_c1rqh .qhbd li input {
  border: #e2e2e2 solid 1px;
  float: left;
  height: 31px;
  padding: 0 10px;
  width: 115px;
  line-height: 30px;
  color: #666;
}
.im_c1rqh .qhbd li.wz {
  text-align: center;
  padding-right: 28px;
  font: 400 12px/30px "微软雅黑";
  color: #999999;
}
.im_c1rqh .qhbd li.wz a {
  color: #3cb1fb;
  font-weight: bold;
  margin-left: 18px;
}
.im_c1rqh .qhbd li input.btn {
  background: #4d70c7;
  width: 50px;
  height: 80px;
  border: none;
  cursor: pointer;
  color: #fff;
  font: bold 14px/32px "微软雅黑";
  margin-top: -115px;
  float: right;
}
.im_c1rnum {
  height: 56px;
  border: #e2e2e2 solid 1px;
  background: url(../images/i_ico3.jpg) right center no-repeat;
  font: 400 14px/26px "微软雅黑";
  color: #424242;
  padding: 10px 0 0 12px;
}
.im_c1rnum b {
  font-size: 22px;
  font-family: arial;
  color: #fe6d2c;
}
.im_c1rnum.bg2 {
  background: url(../images/i_ico4.jpg) right center no-repeat;
  border-top: none;
}

.im_con2 {
  height: 266px;
  padding: 5px 0 0;
}
.im_c2lf {
  float: left;
  width: 944px;
}
.im_c2ltit {
  height: 31px;
  border-bottom: #4a4a4a solid 2px;
}
.im_c2ltit h3 {
  float: left;
  font: 400;
  background: url(../images/i_icox.jpg) left top no-repeat;
  padding-left: 48px;
  font: 400 24px/27px "微软雅黑";
  color: #2f2f2f;
  width: 108px;
}
.im_c2ltit .adv {
  float: left;
  padding: 5px 0 0;
}
.im_c2ltit .more {
  float: right;
  font: 400 14px/24px "微软雅黑";
  color: #2f2f2f;
}
.im_c2lnr {
  padding: 18px 0 0;
  height: 192px;
  border: #e2e2e2 solid 1px;
  border-top: none;
}
.im_c2lnr li {
  width: 200px;
  position: relative;
  padding: 0 17px;
  height: 180px;
  float: left;
}
.im_c2lnr li .t1 {
  height: 40px;
  border-bottom: #999999 dotted 1px;
  font: 400 12px/28px "微软雅黑";
  color: #8a8a8a;
}
.im_c2lnr li .t1 a {
  color: #333;
  float: left;
  font-size: 18px;
}
.im_c2lnr li .t1 a:hover {
  color: #ff9c42;
}
.im_c2lnr li .text {
  padding: 12px 6px 0;
}
.im_c2lnr li .txt {
  font: 400 18px/32px "微软雅黑";
  color: #494949;
  display: block;
  height: 32px;
}
.im_c2lnr li .pric {
  height: 44px;
  font: 400 14px/42px "微软雅黑";
  color: #494949;
}
.im_c2lnr li .pric font {
  color: #fe6d2c;
}
.im_c2lnr li .bj {
  display: block;
  width: 186px;
  height: 38px;
  border: #fe6d2c solid 1px;
  border-radius: 3px;
  text-align: center;
  font: 400 20px/38px "微软雅黑";
  color: #fe6d2c;
}
.im_c2lnr li .bj:hover {
  color: #fff;
  background: #fe6d2c;
}
.im_c2lnr li i {
  position: absolute;
  top: 15px;
  right: 0;
  height: 63px;
  width: 1px;
  background: #dbdbdb;
}

.im_c2ri {
  float: left;
  width: 236px;
}
.im_c2ri .tit {
  height: 31px;
  border-bottom: #fe6d2c solid 2px;
  background: url(../images/i_ico1.jpg) 8px 2px no-repeat;
  padding-left: 40px;
  font: 400 22px/30px "微软雅黑";
  color: #2f2f2f;
}
.im_c2rnr {
  border: #e2e2e2 solid 1px;
  border-top: none;
  height: 210px;
  padding: 0 12px;
  overflow: hidden;
}
.im_c2rnr dl {
  border-bottom: #999 dotted 1px;
  height: 52px;
}
.im_c2rnr dl dt {
  height: 24px;
  font: 400 14px/24px "微软雅黑";
  padding: 3px 0 0;
}
.im_c2rnr dl dt a {
  color: #494949;
  float: left;
}
.im_c2rnr dl dt a:hover {
  color: #fb550b;
}
.im_c2rnr dl dt span {
  float: right;
  color: #4d70c7;
}
.im_c2rnr dl dd {
  height: 22px;
  font: 400 14px/22px "微软雅黑";
  color: #fb550b;
}
.im_c2rnr dl dd p {
  display: inline-block;
  vertical-align: middle;
  width: 135px;
  color: #494949;
}

.im_con3 {
  height: 610px;
}
.im_tit {
  height: 35px;
  border-bottom: #fe6d2c solid 2px;
}
.im_tit i {
  display: block;
  width: 27px;
  height: 27px;
  background: url(../images/i_ico.jpg) left top no-repeat;
  padding-right: 17px;
  float: left;
  text-align: center;
  font: 400 20px/26px "微软雅黑";
  color: #fff;
}
.im_tit h3 {
  float: left;
  font: 400 24px/26px "微软雅黑";
  color: #2f2f2f;
}
.im_tit a {
  float: right;
  font: 400 14px/26px "微软雅黑";
  color: #2f2f2f;
}
.im_tit a:hover {
  color: #fe6d2c;
}
.ipro {
  border: #cacaca solid 1px;
  margin: 25px -1px 0;
  height: 441px;
  overflow: hidden;
}
.ipro .hdp {
  width: 471px;
  height: 220px;
  border-right: #cacaca solid 1px;
  border-bottom: #cacaca solid 1px;
  float: left;
}
.ipro .pic1,
.ipro .pic2 {
  width: 235px;
  height: 220px;
  border-bottom: #cacaca solid 1px;
  border-right: #cacaca solid 1px;
}
.ipro .pic3 {
  width: 235px;
  height: 220px;
  border-bottom: #cacaca solid 1px;
}
.ipro .pic4,
.ipro .pic5,
.ipro .pic6,
.ipro .pic7 {
  width: 235px;
  height: 220px;
  border-right: #cacaca solid 1px;
}
.ipro div {
  position: relative;
  float: left;
}
.ipro .txt {
  display: block;
  width: 185px;
  padding: 0 25px;
  height: 26px;
  font: 400 16px/26px "微软雅黑";
  color: #3c3c3c;
  position: absolute;
  left: 0;
  top: 12px;
}
.ipro .txt2 {
  position: absolute;
  left: 0;
  top: 38px;
  font: 400 12px/24px "微软雅黑";
  width: 185px;
  padding: 0 25px;
  color: #ff8313;
  height: 24px;
  overflow: hidden;
  display: none;
}
.ipp {
  height: 84px;
  border: #cacaca solid 1px;
  border-bottom: #cacaca solid 2px;
  border-top: none;
  margin: 0 -1px;
}
.ipp li {
  float: left;
  width: 235px;
  border-right: #d4d4d4 dotted 1px;
  height: 84px;
}
.ipp li a {
  display: block;
}

.ipro2 {
  border: #cacaca solid 1px;
  margin: 25px -1px 0;
  height: 441px;
  overflow: hidden;
}
.ipro2 .hdp {
  width: 235px;
  height: 441px;
  border-right: #cacaca solid 1px;
  border-bottom: #cacaca solid 1px;
  float: left;
}
.ipro2 .pic1,
.ipro2 .pic2,
.ipro2 .pic3 {
  width: 235px;
  height: 220px;
  border-bottom: #cacaca solid 1px;
  border-right: #cacaca solid 1px;
}
.ipro2 .pic4 {
  width: 235px;
  height: 220px;
  border-bottom: #cacaca solid 1px;
}
.ipro2 .pic5,
.ipro2 .pic6,
.ipro2 .pic7 {
  width: 235px;
  height: 220px;
  border-right: #cacaca solid 1px;
}
.ipro2 .pic8 {
  width: 235px;
  height: 220px;
}
.ipro2 div {
  position: relative;
  float: left;
}
.ipro2 .txt {
  display: block;
  width: 185px;
  padding: 0 25px;
  height: 26px;
  font: 400 16px/26px "微软雅黑";
  color: #3c3c3c;
  position: absolute;
  left: 0;
  top: 12px;
}
.ipro2 .txt2 {
  position: absolute;
  left: 0;
  top: 38px;
  font: 400 12px/24px "微软雅黑";
  width: 185px;
  padding: 0 25px;
  color: #ff8313;
  height: 24px;
  overflow: hidden;
  display: none;
}

.i_adv {
  height: 126px;
}

/*
 底部信息
 * */
#foot {
  background: #f5f6f8;
}
.ft_con {
  height: 84px;
  padding: 24px 0 0;
}
.ft_con li {
  float: left;
  height: 62px;
  text-indent: 85px;
}
.ft_con li {
  float: left;
  font: 400 18px/62px "微软雅黑";
  color: #454545;
}
.ft_con li.li1 {
  background: url(../images/bt_ico1.jpg) left top no-repeat;
  margin-left: 8px;
  width: 340px;
}
.ft_con li.li2 {
  width: 278px;
  background: url(../images/bt_ico2.jpg) left top no-repeat;
}
.ft_con li.li3 {
  width: 317px;
  background: url(../images/bt_ico3.jpg) left top no-repeat;
}
.ft_con li.li4 {
  width: 236px;
  background: url(../images/bt_ico4.jpg) left top no-repeat;
}
#boot {
  /*height: 360px;*/
  padding: 20px 0;
}
.bt_nav {
  min-height: 140px;
  border-bottom: #e9ebf0 solid 1px;
  padding-bottom: 16px;
}
.bt_nav dl {
  width: 20%;
  float: left;
  text-align: center;
}
.bt_nav dl dt {
  height: 38px;
  font: bold 16px/38px "微软雅黑";
  color: #454545;
}
.bt_nav dl dd {
  height: 30px;
  font: 400 14px/30px "微软雅黑";
}
.bt_nav dl dd a {
  color: #454545;
}
.bt_nav dl dd a:hover {
  color: #fb550b;
}
.bt_dh {
  height: 40px;
  text-align: center;
  font: 400 14px/40px "微软雅黑";
  padding: 15px 0 0;
  color: #4f4f4f;
}
.bt_wl {
  font: 400 14px/40px "微软雅黑";
  padding: 15px 0px 15px 84px;
  color: #4f4f4f;
  border-top: 1px solid #999;
}
.bt_wl a {
  color: #4f4f4f;
  margin: 0 10px;
}
.bt_wl a:hover {
  color: #fb550b;
}
.bt_wl span {
  margin-right: 10px;
}
.bt_dh a {
  color: #4f4f4f;
  margin: 0 17px;
}
.bt_dh a:hover {
  color: #fb550b;
}
.bt_copy {
  height: 56px;
  text-align: center;
  font: 400 12px/40px "微软雅黑";
  color: #4f4f4f;
}
.bt_copy a {
  color: #4f4f4f;
}
.bt_copy a:hover {
  color: #fb550b;
}
.bt_pic {
  display: block;
  margin: 0 auto;
}

/*
 委托采购
 * */
#nmain {
    padding: 20px 0;
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 50px;
}
.n_adv {
  height: 111px;
  background: url(../images/wt_bg.jpg);
}
.n_adv .pic1 {
  width: 229px;
  float: left;
}
.n_adv .pic2 {
  float: left;
  padding: 23px 0 0 35px;
  width: 310px;
}
.n_adv .div3 {
  float: left;
  width: 600px;
  padding: 10px 0 0;
}
.n_adv .div3 form {
  height: 72px;
}
.n_adv .div3 form textarea {
  width: 368px;
  padding: 9px 10px;
  border: #fcba9b solid 2px;
  background: #fff;
  height: 44px;
  font: 400 12px/22px "微软雅黑";
  color: #777;
  float: left;
  margin-right: 5px;
}
.n_adv .div3 form input {
  float: left;
  width: 66px;
  height: 66px;
  background: #fe6d2c;
  text-align: center;
  font: 400 16px/24px "微软雅黑";
  padding: 0 9px;
  color: #fff;
  border: none;
  cursor: pointer;
}
.n_adv .div3 form .inp {
  float: left;
  width: 120px;
  height: 70px;
}
.n_adv .div3 form .inp input {
  width: 95px;
  height: 26px;
  background: #fff;
  border: #fcba9b solid 1px;
  font: 400 12px/24px "微软雅黑";
  color: #777;
  margin-bottom: 10px;
  text-align: left;
}
.n_adv .div3 .wtbz {
  height: 21px;
  background: url(../images/wt_adv3.png) left center no-repeat;
}
.n_adv .div3 .wtbz li {
  float: left;
  width: 118px;
  text-align: center;
  font: 400 12px/20px "微软雅黑";
  color: #fff;
}

.wt_con {
  border: #e2e2e2 solid 1px;
  padding: 20px 45px;
  font: 400 14px/200% "微软雅黑";
  color: #444;
  min-height: 400px;
  margin: 22px 0;
}
.wt_con img {
  max-width: 100%;
  display: block;
}
.wt_con .tit {
  text-align: center;
  font: 400 24px/58px "微软雅黑";
  color: #444;
}

/*
 供应商
 * */
.gys_con1 {
  border: #e2e2e2 solid 1px;
  border-top: #e2e2e2 solid 2px;
  height: 47px;
  padding: 19px 0 0;
}
.gys_con1 p {
  float: left;
  padding-left: 15px;
  font: 400 14px/28px "微软雅黑";
  color: #2f2f2f;
}
.gys_con1 select {
  height: 26px;
  border: #d6d6d6 solid 1px;
  padding: 0 5px;
  min-width: 82px;
  float: left;
}
.gys_con1 select.da {
  width: 100px;
}
.gys_con1 form {
  float: right;
}
.gys_con1 form input {
  float: left;
  width: 135px;
  padding: 0 10px;
  height: 26px;
  border: #d6d6d6 solid 1px;
  font: 400 14px/26px "微软雅黑";
  color: #2f2f2f;
}
.gys_con1 form input.btn {
  margin-left: 10px;
  background: url(../images/sear_btn1.jpg) 9px center no-repeat #f54f4f;
  width: 70px;
  border: #f54f4f solid 1px;
  color: #fff;
  cursor: pointer;
  line-height: 22px;
}
.gys_con1 form input.btn-1 {
  margin-left: 10px;
  width: 60px;
  border: none;
  color: #333;
  cursor: pointer;
  line-height: 22px;
  background: #fff;
}
.gys_conbt {
  border: #d6d6d6 solid 1px;
  margin: 20px 0 0;
}
.gys_conbt li {
  float: left;
  font: 400 16px/43px "微软雅黑";
  color: #444;
  text-align: center;
}
.gys_conbt li.gysw1 {
  text-align: center !important;
}
.gysw1 {
  width: 285px;
  text-align: left !important;
}
.gysw2 {
  width: 122px;
}
.gysw3 {
  width: 115px;
}
.gysw4 {
  width: 340px;
  padding: 0 15px;
}
.gysw5 {
  width: 152px;
}
.gysw6 {
  width: 123px;
  padding-left: 10px;
}
.gys_con2 {
  padding-bottom: 20px;
  border-bottom: #d6d6d6 solid 2px;
}
.gys_con2 dl {
  border-bottom: #d6d6d6 dotted 1px;
  height: 61px;
}
.gys_con2 dl dd {
  float: left;
  font: 400 18px/60px "微软雅黑";
  color: #333;
  text-align: center;
  overflow: hidden;
  height: 61px;
}
.gys_con2 dl dd a {
  color: #333;
}
.gys_con2 dl dd input {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.gys_con2 dl dd i {
  width: 85px;
  background: url(../images/star.jpg);
  height: 16px;
  margin: 25px auto 0;
  display: block;
}
.gys_con2 dl dd i.s4 {
  width: 68px;
}
.gys_con2 dl dd i.s3 {
  width: 51px;
}
.gys_con2 dl dd i.s2 {
  width: 34px;
}
.gys_con2 dl dd i.s1 {
  width: 17px;
}
.gys_con2 dl dd i.s0 {
  width: 1px;
}
.gys_con2 dl dd .zyxm {
  margin: 12px 0 0;
  font: 400 14px/20px "微软雅黑";
  text-align: left;
  height: 40px;
  overflow: auto;
}
.gys_con2 dl dd.yz0 {
  background: url(../images/yzsb0.jpg) center center no-repeat;
}
/*.gys_con2 dl dd.yz1{background: url(../images/yzsb1.jpg) center center no-repeat;}*/
.gys_con2 dl dd.yz1 {
  background: url(../images/yzsb1.png) center center no-repeat;
}
.gys_con2 dl dd.yz2 {
  background: url(../images/yzsb2.png) center center no-repeat;
}
.gys_con2 dl dd .show {
  width: 80px;
  height: 36px;
  background: #4d70c7;
  display: block;
  margin: 12px auto 0;
  text-align: center;
  color: #fff;
  font: 400 12px/36px "微软雅黑";
}

.star {
  width: 85px;
  background: url(../images/star.jpg);
  height: 16px;
  margin: 25px auto 0;
  display: block;
}
.star.s4 {
  width: 68px;
}
.star.s3 {
  width: 51px;
}
.star.s2 {
  width: 34px;
}
.star.s1 {
  width: 17px;
}
.star.s0 {
  width: 1px;
}
.page {
  text-align: center;
  padding: 30px 0;
  font: 400 14px/28px "微软雅黑";
  color: #303030;
}
.page a {
  display: inline-block;
  vertical-align: middle; /* border: #999999 solid 1px;*/
  margin: 0 3px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  color: #303030;
}
.page a:hover {
  color: #f36201;
}
.page a.hover {
  font-weight: bold;
  color: #f36201;
}
.page a.auto {
  width: auto;
  padding: 0 12px;
}
.page form {
  display: inline-block;
  vertical-align: middle;
  height: 28px;
  margin-left: 10px;
}
.page form input {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 26px;
  border: #999999 solid 1px;
  text-align: center;
  color: #3b57a6;
  font: 400 14px/26px "微软雅黑";
  margin: 0 10px;
}
.page form input.btn {
  width: 60px;
  background: #f1f1f1;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  color: #333;
}
.page span {
  padding: 0 5px;
}

.gys_adv {
  height: 91px;
  padding-bottom: 25px;
}
.gys_adv a {
  display: block;
}

/*供应商名片 
 * */
.gys_left {
  width: 937px;
  float: left;
}
.gys_lcon1 {
  border: #d6d6d6 solid 1px;
  padding: 0 20px;
  margin-bottom: 26px;
}
.gys_lsjxx {
  height: 195px;
}
.gys_lsjxx .tit {
  height: 44px;
  padding: 10px 0 0;
  font: 400 24px/44px "微软雅黑";
  color: #444;
}
.gys_lsjxx .con {
  font: 400 16px/36px "微软雅黑";
  color: #444;
  padding: 8px 0 0;
  height: 76px;
}
.gys_lsjxx .con i {
  display: inline-block;
  vertical-align: middle;
  margin: 0 !important;
}
.gys_ltit {
  width: 102px;
  height: 32px;
  background: #fe6d2c;
  text-align: center;
  font: 400 16px/32px "微软雅黑";
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
}
.gys_lwb {
  background: #f7f7f7;
  padding: 20px;
  margin-bottom: 20px;
  font: 400 14px/24px "微软雅黑";
  color: #444;
  text-align: justify;
  text-justify: inter-ideograph;
  min-height: 80px;
}
.gys_lzs {
  padding-bottom: 20px;
}
.gys_lzs div {
  display: block;
  width: 100px;
  height: 75px;
  text-align: center;
  border: #d6d6d6 solid 1px;
  font: 400 14px/30px "微软雅黑";
  color: #444;
  margin-right: 13px;
  margin-bottom: 5px;
  float: left;
}
.gys_lzs div img {
  cursor: pointer;
}

.gys_pj {
  border: #d6d6d6 solid 1px;
}
.gyspjrq {
  color: #999;
}
.gys_pj .tit {
  height: 36px;
  border-bottom: #d6d6d6 solid 2px;
  background: #f7f7f7;
}
.gys_pj .tit h3 {
  width: 34px;
  border-top: #fe6d2c solid 2px;
  margin-top: -1px;
  width: 125px;
  background: #fff;
  text-align: center;
  font: bold 16px/34px "微软雅黑";
  color: #333;
  border-right: #d6d6d6 solid 1px;
}
.gys_bd {
  padding: 20px 22px;
}
.gys_bd .gyspj {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.gys_bd li {
  font: 400 16px/30px "微软雅黑";
  color: #333;
}
.gys_bd li.da {
  height: 82px;
}
.gys_bd li .bdstar {
  display: inline-block;
  vertical-align: middle;
  margin: 0 !important;
}
.gys_bd li input {
  width: 80px;
  height: 36px;
  background: #4d70c7;
  display: block;
  border: #4d70c7 solid 1px;
  text-align: center;
  color: #fff;
  font: 400 16px/32px "微软雅黑";
  cursor: pointer;
}
.gys_bd li.da textarea {
  border: #e2e2e2 solid 1px;
  padding: 5px 10px;
  font: 400 14px/30px "微软雅黑";
  color: #333;
  width: 655px;
  height: 60px;
}
.gys_list {
  padding: 0 22px;
}
.gys_list dl {
  padding: 5px;
  border-bottom: #999 dotted 1px;
  font: 400 14px/26px "微软雅黑";
}
.gys_list dt {
  color: #444;
}
.gys_list dd {
  color: #666;
}
.gys_list dd .tim {
  width: 185px;
  float: left;
}
.gys_list dd .star {
  margin: 5px !important;
  float: left;
}
.gys_list dd .name {
  float: left;
  width: 580px;
  overflow: hidden;
  height: 26px;
}

.gys_right {
  float: right;
  width: 216px;
  border: #d6d6d6 solid 1px;
  border-top: #fe6d2c solid 2px;
  padding-bottom: 20px;
  min-height: 800px;
}
.gys_right h3 {
  border-bottom: #d6d6d6 solid 1px;
  height: 35px;
  text-align: center;
  font: 400 18px/35px "微软雅黑";
  color: #2f2f2f;
  background: #f9f9f9;
}
.gys_ricon {
  padding: 14px 9px 0;
}
.gys_ricon dl {
  border-bottom: #999999 dotted 1px;
  height: 75px;
  padding: 15px 0 0;
}
.gys_ricon dl dt {
  border: #d6d6d6 solid 1px;
  width: 60px;
  height: 60px;
  float: left;
}
.gys_ricon dl dt a {
  display: block;
}
.gys_ricon dl dd {
  padding: 0 0 0 10px;
  float: left;
  width: 125px;
  font: bold 14px/22px "微软雅黑";
  color: #fe6d2c;
}
.gys_ricon dl dd .txt {
  display: block;
  color: #444;
}
.gys_ricon dl dd p {
  padding-bottom: 5px;
}
.gys_ricon dl dd .star {
  margin: 0 !important;
}

/*
 采购信息
 * */
.gys_con1.cg form {
  float: none;
}
.gys_con1.cg select.da2 {
  width: 110px;
}
.gys_con1.cg p {
  margin-left: 10px;
}
.gys_con1.cg input.btn {
  float: left;
}
.gys_con1.cg input.reset {
  background: #f8f8f8;
  border: #e2e2e2 solid 1px;
  margin-left: 10px;
  width: 70px;
  color: #333;
  cursor: pointer;
  text-align: center;
  line-height: 22px;
  float: left;
}
.cg_lf {
  margin: 20px 0 0;
  float: left;
  width: 850px;
  min-height: 800px;
}
.cg_lf dl {
  border: #d6d6d6 solid 1px;
  height: 342px;
  margin-bottom: 12px;
}
.cg_lf dl dd {
  width: 536px;
  float: left;
  padding: 0 15px;
  margin-top: 13px;
  border-right: #d6d6d6 dotted 1px;
  height: 205px;
}
.cg_lf dl dd .c1 {
  height: 28px;
  font: 400 12px/28px "微软雅黑";
  color: #666;
  padding-left: 5px;
}
.cg_lf dl dd .cj1 {
  height: 42px;
  font: 400 12px/28px "微软雅黑";
  color: #666;
}
.cg_lf dl dd .c1 em {
  color: #fe6d2c;
}
.cg_lf dl dd .cj1 em {
  color: #fe6d2c;
}
.cg_lf dl dd .equip em {
  color: #fe6d2c;
}
.cg_lf dl dd .c1 p {
  width: 190px;
  float: left;
}
.cg_lf dl dd .cj1 p {
  width: 540px;
  float: left;
  overflow: hidden;
}
.cg_lf dl dd .cj1 span {
  width: 540px;
  float: left;
  overflow: hidden;
}
.cg_lf dl dd .fj {
  display: block;
  float: right;
  width: 80px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  font: 400 12px/30px "微软雅黑";
  color: #fff;
}
.cg_lf dl dd .txt {
  display: block;
  height: 46px;
  font: 400 24px/46px "微软雅黑";
  color: #4d70c7;
}
.cg_lf dl dd .addpri {
  height: 84px;
  font: 400 16px/42px "微软雅黑";
  color: #666;
  overflow: hidden;
}
.cg_lf dl dd .addpri1 {
  height: 84px;
  font: 400 16px/42px "微软雅黑";
  color: #666;
  overflow: hidden;
}
.cg_lf dl dd .equip {
  height: 42px;
  font: 400 16px/42px "微软雅黑";
  color: #666;
  overflow: hidden;
}
.cg_lf dl dd .equip a {
  height: 42px;
  font: 400 16px/42px "微软雅黑";
  color: #666;
  overflow: hidden;
}
.cg_lf dl dd .equip p {
  float: left;
}
.cg_lf dl dd .addpri font {
  font-size: 24px;
  color: #fe6d2c;
  margin-right: 15px;
  display: inline-block;
  vertical-align: -3px;
}
.cg_lf dl dd .addpri1 font {
  color: #fe6d2c;
  margin-right: 15px;
  display: inline-block;
}
.cg_lf dl dd .lx {
  font: 400 14px/44px "微软雅黑";
  color: #666;
}
.cg_lf dl dd .lx img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.cg_lf dl dt {
  float: left;
  text-align: center;
  width: 280px;
  font: 400 14px/42px "微软雅黑";
  color: #444;
}
.cg_lf dl dt span {
  font: 400 22px/46px "微软雅黑";
  color: #fe6d2c;
}
.cg_lf dl dt .tim {
  height: 53px;
  font: 400 14px/46px "微软雅黑";
  color: #444;
}
.cg_lf dl dt .tim span {
  display: inline-block;
  vertical-align: middle;
  min-width: 25px;
  height: 21px;
  background: #fe6d2c;
  border-radius: 3px;
  color: #fff;
  margin-right: 8px;
  line-height: 20px;
}
.cg_lf dl dt .gh {
  width: 212px;
  height: 50px;
  background: #fe6d2c;
  margin: 0 auto;
  color: #fff;
  font: 400 18px/50px "微软雅黑";
  display: block;
}
.cg_lf dl dd .gh {
  width: 100px;
  height: 35px;
  background: #fe6d2c;
  margin: 0 auto;
  color: #fff;
  font: 300 16px/35px "微软雅黑";
  display: block;
  text-align: center;
  float: right;
}

.cg_ri {
  width: 303px;
  float: right;
  border: #d6d6d6 solid 1px;
  padding-bottom: 20px;
  border-top: #fe6d2c solid 2px;
  margin: 20px 0;
}
.cg_ri .tit {
  border-bottom: #d6d6d6 solid 1px;
  height: 35px;
  text-align: center;
  font: 400 18px/35px "微软雅黑";
  color: #2f2f2f;
  background: #f9f9f9;
}
.cg_ri img {
  width: 200px;
  height: 150px;
}
.cg_ri {
  margin: 0;
  padding: 0;
}
.atle {
  font: bold 15px/35px "微软雅黑";
  text-align: center;
  margin-top: -3px;
  display: block;
  margin: -3px 0px 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cg_hot {
  padding: 0 15px;
  height: 450px;
  overflow: hidden;
}
/*.cg_hot dl{border-bottom: #999 dotted 1px; height: 65px; padding: 4px 4px 0;}*/
.cg_hot dl {
  border-bottom: #999 dotted 1px;
  height: 32px;
  padding: 4px 4px 0;
}
.cg_hot dl dt {
  height: 34px;
  font: 400 16px/34px "微软雅黑";
}
.cg_hot dl dt a {
  color: #494949;
  float: left;
}
.cg_hot dl dt a:hover {
  color: #fb550b;
}
.cg_hot dl dt span {
  float: right;
  color: #4d70c7;
}
.cg_hot dl dd {
  height: 24px;
  font: 400 14px/24px "微软雅黑";
  color: #fb550b;
}
.cg_hot dl dd p {
  float: left;
  width: 150px;
  color: #494949;
  height: 24px;
  overflow: hidden;
}
.cg_hot dl dd span {
  float: right;
}
/*
 产品中心
 * */
#pmain {
  padding: 10px 0 0;
}
.p_dqwz {
  height: 36px;
  font: 400 16px/24px "微软雅黑";
  color: #333;
  padding-left: 10px;
  position: relative;
  z-index: 1;
}
.p_dqwz b {
  font: bold 18px/24px "微软雅黑";
}
.p_dqwz em {
  font-size: 14px;
  font-weight: normal;
  font-family: simsun;
}
.p_dqwz .ptype {
  border: #dddddd solid 1px;
  height: 22px;
  padding: 0 10px;
  position: relative;
  min-width: 50px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.p_dqwz .ptype p {
  background: url(../images/xia.jpg) right center no-repeat;
  padding-right: 18px;
  font-size: 12px;
  color: #666;
  font-family: simsun;
}
.p_dqwz .ptype .sub {
  position: absolute;
  left: -1px;
  top: 22px;
  border: #ddd solid 1px;
  background: #fff;
  width: 110%;
  font: 400 12px/24px simsun;
  display: none;
  min-width: 120px;
}
.p_dqwz .ptype .sub a {
  display: block;
  padding: 0 10px;
  color: #666;
}
.p_dqwz .ptype .sub a:hover {
  background: #f8f8f8;
}
.p_dqwz.bb {
  border-bottom: #d6d6d6 solid 1px;
}
.p_page {
  border: #e2e2e2 solid 1px;
  padding: 5px 6px 0;
  height: 29px;
  font: 400 14px/25px "微软雅黑";
  color: #555;
  background: #f8f8f8;
}
.p_page b {
  font-size: #333;
  margin-left: 5px;
}
.p_page p {
  float: right;
  font: 400 12px/25px "微软雅黑";
  color: #333;
}
.p_page p a {
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 23px;
  border: #e3e3e3 solid 1px;
  text-align: center;
  background: #fcfcfc;
  color: #333;
  margin-left: 5px;
  font-family: simsun;
}
.p_page p em {
  font-weight: bold;
  color: #fe6d2c;
}
.p_pro {
  padding: 20px 0 10px 0;
  border-bottom: #e2e2e2 solid 2px;
}
.p_pro dl {
  width: 237px;
  height: 293px;
  margin-left: -1px;
  float: left;
}
.p_pro dl dt {
  width: 235px;
  height: 220px;
  border: #888888 solid 1px;
}
.p_pro dl dt a {
  display: block;
}
.p_pro dl dd {
  padding: 8px 6px 0;
}
.p_pro dl dd .txt {
  display: block;
  font: bold 16px/24px "微软雅黑";
  color: #2196f3;
}
.p_pro dl dd .txt:hover {
  color: #f44336;
}
.p_pro dl dd .cz {
  height: 20px;
  font: 400 12px/20px "微软雅黑";
  color: #fe6d2c;
}
.p_pro dl dd .cz a {
  color: #2e1d4c;
}
.p_pro dl dd .cz a:hover {
  color: #ff5722;
}
.p_pro dl dd .cz em {
  display: block;
  float: right;
  background: url(../images/eye.jpg) left center no-repeat;
  padding-left: 23px;
}

.pv_con1 {
  height: 457px;
  padding: 20px 0 0;
}
.pv_c1lf {
  width: 362px;
  float: left;
}
.jqzoom {
  width: 360px;
  height: 337px;
  position: relative;
  border: #d6d6d6 solid 1px;
  overflow: hidden;
}
#spec-n5 {
  overflow: hidden;
  margin-top: 7px;
  height: 85px;
}
#spec-list {
  height: 78px;
  overflow: hidden;
}
#spec-list ul li {
  width: 81px;
  height: 76px;
  cursor: pointer;
  float: left;
  border: #d6d6d6 solid 1px;
  margin-right: 6px;
}
#spec-list ul li img {
  width: 81px;
  height: 76px;
  display: block;
}
#spec-list ul li.hover {
  border: #fe6d2c solid 1px;
}

.zoomdiv {
  z-index: 100;
  position: absolute;
  top: 1px;
  left: 0px;
  border: 1px solid #d6d6d6;
  display: none;
  text-align: center;
  overflow: hidden;
  background: #fff;
}
.bigimg {
  width: 800px;
}
.jqZoomPup {
  z-index: 10;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  border: 1px solid #aaa;
  background: #fff 50% top no-repeat;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: alpha(Opacity=50);
  cursor: move;
}
.pv_c1cen {
  float: left;
  width: 580px;
  margin-left: 27px;
}
.pv_c1cen h2 {
  font: bold 20px/44px "微软雅黑";
  border-bottom: #d6d6d6 dotted 1px;
  color: #555;
  height: 44px;
  overflow: hidden;
}
.pv_c1cen .text {
  padding: 15px 0 0;
  font: 400 14px/26px "微软雅黑";
  color: #444;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
}
.pv_c1cen .c3 {
  background: #f9f9f9;
  padding-left: 22px;
}
.pv_c1cen .c3 dt {
  border-bottom: #fff solid 1px;
  height: 41px;
  font: 400 16px/41px "微软雅黑";
  color: #fe6d2c;
  background: url(../images/pv_eye.jpg) left center no-repeat;
  padding-left: 36px;
}
.pv_c1cen .c3 dd {
  font: 400 14px/56px "微软雅黑";
  color: #7b7b7b;
  height: 59px;
  background: url(../images/pv_bz.jpg) 3px 18px no-repeat;
  padding-left: 36px;
}
.pv_c1cen .c3 .qq {
  width: 124px;
  height: 40px;
  background: url(../images/pv_qq.jpg) 12px center no-repeat #fe6d2c;
  font: 400 16px/40px "微软雅黑";
  color: #fff;
  text-indent: 46px;
  display: block;
}
.pv_c1ri {
  float: right;
  width: 164px;
  padding: 0 10px;
  border-top: #fe6d2c solid 2px;
  background: #f9f9f9;
  height: 420px;
}
.pv_c1ri .tit {
  height: 40px;
  font: 400 18px/40px "微软雅黑";
  color: #2f2f2f;
  text-align: center;
}
.pv_c1ri li {
  width: 164px;
  height: 190px;
}
.pv_c1ri li .pic {
  display: block;
  width: 164px;
  height: 152px;
}
.pv_c1ri li .txt {
  display: block;
  font: bold 14px/30px "微软雅黑";
  color: #555;
  overflow: hidden;
  height: 30px;
  text-align: center;
}
.pv_c1ri li .txt:hover {
  color: #fb550b;
}

.gys_conbt.pv {
  background: #f9f9f9;
  margin: 0;
}
.gys_conbt.pv .gysw1 {
  background: #fff;
  border-top: #fe6d2c solid 2px;
  margin: -1px 0;
  background: #fff;
  border-right: #d6d6d6 solid 1px;
}
.gys_conbt.pv .gysw6 {
  width: 80px;
  padding-left: 33px;
}
.gys_con2.pv {
  border: #d6d6d6 solid 1px;
  border-top: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}
.gys_con2.pv dl {
  margin: 0 20px;
}
.gys_con2.pv .gysw1 {
  width: 265px;
}
.gys_con2.pv .gysw6 {
  width: 80px;
  padding-left: 33px;
}
.gys_con2.pv .page {
  padding: 20px 15px;
}

/*
 采购信息详细页面
 * */
.cgv_con {
  border: #d6d6d6 solid 1px;
  padding: 0 24px;
  min-height: 800px;
}
.cgv_c1 {
  height: 46px;
  border-bottom: #d6d6d6 dotted 1px;
  font: 400 14px/46px "微软雅黑";
  color: #666;
}
.cgv_c1 em {
  color: #fe6d2c;
}
.cgv_c1 p {
  float: left;
  width: 238px;
}
.cgv_c1 .fj {
  display: block;
  width: 80px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  font: 400 12px/30px "微软雅黑";
  color: #fff;
  float: right;
  margin: 9px 5px 0 0;
}
.cgv_c2 {
  min-height: 250px;
  padding: 13px 0 15px 5px;
  border-bottom: #d6d6d6 dotted 1px;
}
.cgv_c2lf {
  float: left;
  width: 365px;
}
.cgv_c2lf .tit {
  font: 400 24px/38px "微软雅黑";
  color: #4d70c7;
}
.cgv_c2lf .pric {
  height: 42px;
  padding: 5px 0 0;
  font: 400 24px/42px "微软雅黑";
  color: #fe6d2c;
}
.cgv_c2lf .nr {
  font: 400 16px/36px "微软雅黑";
  color: #444;
}
.cgv_c2ri {
  float: right;
  width: 370px;
  height: 212px;
  margin-right: 35px;
  text-align: center;
  border: #d6d6d6 solid 1px;
}
.cgv_c2ri h4 {
  font: 400 22px/56px "微软雅黑";
  color: #fe6d2c;
  padding-top: 10px;
}
.cgv_c2ri .tim {
  height: 63px;
  font: 400 14px/46px "微软雅黑";
  color: #444;
}
.cgv_c2ri .tim span {
  display: inline-block;
  vertical-align: middle;
  min-width: 25px;
  height: 21px;
  background: #fe6d2c;
  border-radius: 3px;
  color: #fff;
  margin-right: 8px;
  line-height: 20px;
}
.cgv_c2ri .gh {
  width: 212px;
  height: 50px;
  background: #fe6d2c;
  margin: 0 auto;
  color: #fff;
  font: 400 18px/50px "微软雅黑";
  display: block;
}
.cgv_c3 {
  padding: 15px 5px;
}
.cgv_c3tit {
  font: bold 20px/40px "微软雅黑";
  color: #444;
}
.cgv_c3lx {
  font: 400 14px/44px "微软雅黑";
  color: #666;
}
.cgv_c3lx img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.cgv_c3bt {
  font: bold 16px/30px "微软雅黑";
  padding: 10px 0 0;
}
.cgv_c3con {
  padding-bottom: 20px;
  font: 400 16px/200% "微软雅黑";
  color: #444;
  text-align: justify;
  text-justify: inter-ideograph;
  min-height: 300px;
}

/*
 我要供货
 * */
.gong {
  width: 490px;
  padding: 0 10px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.gongtit {
  height: 64px;
  background: url(../images/gh_ico-03.jpg) left bottom repeat-x;
  font: 400 24px/64px "微软雅黑";
  color: #fe6d2c;
  text-align: center;
}
.gongtit img {
  display: inline-block;
  vertical-align: -5px;
  margin-right: 15px;
}
.gongts {
  background: url(../images/fe6d2c.jpg) 25px center no-repeat;
  padding-left: 55px;
  font: 400 14px/52px "微软雅黑";
  color: #666;
}
.gongts em {
  color: #fe6d2c;
}
.gongul li {
  height: 45px;
}
.gongul li .bt {
  float: left;
  text-align: right;
  font: 400 16px/32px "微软雅黑";
  color: #686868;
  width: 140px;
  padding-right: 5px;
}
.gongul li .bt em {
  color: #fe6d2c;
}
.gongul li .wz {
  padding: 0 5px;
  font: 400 16px/32px "微软雅黑";
  color: #686868;
  float: left;
}
.gongul li input {
  border: #d6d6d6 solid 1px;
  width: 108px;
  height: 30px;
  padding: 0 10px;
  font: 400 14px/30px "微软雅黑";
  color: #686868;
  float: left;
}
.gongul li input.w70 {
  width: 70px;
}
.gongul li input.w40 {
  width: 40px;
  padding: 0;
  text-align: center;
}
.gongul li.da {
  height: 82px;
}
.gongul li.da textarea {
  border: #d6d6d6 solid 1px;
  padding: 5px 10px;
  width: 235px;
  height: 52px;
  font: 400 14px/28px "微软雅黑";
  color: #686868;
}
.gongul li .sc {
  width: 82px;
  height: 28px; /*background: #4d70c7;*/
  text-align: center;
  font: 400 14px/28px "微软雅黑";
  color: #fff;
  float: left;
  margin-left: 145px;
}
.gongul li .ts {
  float: left;
  padding-left: 15px;
  font: 400 14px/28px "微软雅黑";
  color: #b5b5b5;
}
.gongul li input.btn {
  width: 222px;
  margin-left: 145px;
  font-size: 16px;
  height: 44px;
  background: #fe6d2c;
  border: none;
  text-align: center;
  cursor: pointer;
  color: #fff;
}
.introduce {
  border: #dedede solid 1px;
  padding: 5px;
  font: 400 14px/24px "微软雅黑";
  color: #666;
  margin-bottom: 15px;
}
.introduce em {
  color: #fe6d2c;
}

/*
 专业咨询
 * */
.n_tit {
  height: 36px;
  border: #d6d6d6 solid 1px;
  background: #f7f7f7;
  margin: 20px 0;
}
.n_tit h3 {
  width: 34px;
  border-top: #fe6d2c solid 2px;
  margin-top: -1px;
  width: 125px;
  background: #fff;
  text-align: center;
  font: bold 16px/34px "微软雅黑";
  color: #333;
  border-right: #d6d6d6 solid 1px;
}

.con_con1 {
  height: 507px;
}
.con_c1lf {
  float: left;
  width: 200px;
  border: #d6d6d6 solid 1px;
  height: 460px;
  overflow: hidden;
}
.con_c1lf dl {
  padding-bottom: 1px;
}
.con_c1lf dt {
  height: 40px;
  border-bottom: #d6d6d6 solid 1px;
  background: #f9f9f9 url(../images/ty_ico1.jpg) 42px center no-repeat;
  padding-left: 58px;
  font: 400 18px/40px "微软雅黑";
  color: #2f2f2f;
}
.con_c1lf dt a {
  color: #2f2f2f;
}
.con_c1lf dt a:hover {
  color: #fe6d2c;
}
.con_c1lf dd {
  height: 36px;
  border-bottom: #999999 dotted 1px;
  margin: 0 5px;
  padding-left: 58px;
  font: 400 16px/36px "微软雅黑";
}
.con_c1lf dd a {
  color: #2f2f2f;
}
.con_c1lf dd a:hover {
  color: #fe6d2c;
}

.con_c1ri {
  float: right;
  width: 978px;
}
.con_c1ri ul {
  padding-bottom: 10px;
}
.con_c1ri li {
  width: 223px;
  height: 212px;
  float: left;
  margin-left: 21px;
}
.con_c1ri li .pic {
  display: block;
  width: 223px;
  height: 148px;
}
.con_c1ri li .txt {
  display: block;
  margin: 5px 6px 0;
  height: 26px;
  font: 400 16px/26px "微软雅黑";
  color: #333;
}
.con_c1ri li .txt:hover {
  color: #ff8149;
}
.con_c1ri li .name {
  margin: 0 6px;
  font: 400 12px/24px "微软雅黑";
  color: #ff8149;
  height: 24px;
  overflow: hidden;
}
.page.consu {
  border-top: #999 dotted 1px;
  margin-left: 21px;
}

.con_con2 {
  border: #e2e2e2 solid 1px;
  margin-bottom: 22px;
  height: 277px;
  border-top: #fe6d2c solid 2px;
}
.con_c2lf {
  border-right: #e2e2e2 solid 1px;
  width: 400px;
  height: 277px;
  background: #fff;
  float: left;
}
.con_c2lf .tit {
  height: 48px;
  font: 400 24px/48px "微软雅黑";
  color: #fe6d2c;
  padding-left: 162px;
  background: url(../images/zx_ico.jpg) 120px center no-repeat;
}
.con_c2lf .nr {
  height: 170px;
  background: url(../images/zx_bk.jpg) center top no-repeat;
}
.con_c2lf .btn {
  text-align: center;
  font: 400 14px/36px "微软雅黑";
}
.con_c2lf .btn a {
  display: inline-block;
  width: 103px;
  height: 36px;
  background: url(../images/zx_qq.jpg) 12px center no-repeat #4d70c7;
  text-indent: 30px;
  color: #fff;
  margin: 0 20px;
  border-radius: 3px;
}
.con_c2ri {
  float: left;
  border-left: #fff solid 1px;
  height: 277px;
  width: 770px;
}
.con_c2ri dt {
  height: 103px;
  padding: 24px 0 0;
}
.con_c2ri .bt {
  float: left;
  width: 120px;
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #444444;
  text-align: right;
}
.con_c2ri .bt em {
  color: #fe6d2c;
  padding: 0 5px;
}
.con_c2ri dt textarea {
  width: 545px;
  height: 82px;
  border: #d6d6d6 solid 1px;
  padding: 0 10px;
  font: 400 12px/24px "微软雅黑";
  color: #444444;
}
.con_c2ri .bt2 {
  width: 78px;
  float: left;
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #444444;
  text-align: right;
}
.con_c2ri .bt2 em {
  color: #fe6d2c;
  padding: 0 5px;
}
.con_c2ri dd {
  height: 47px;
}
.con_c2ri input {
  border: #d6d6d6 solid 1px;
  float: left;
  height: 26px;
  padding: 0 10px;
  width: 76px;
  font: 400 14px/26px "微软雅黑";
  color: #444;
}
.con_c2ri input.w100 {
  width: 100px;
}
.con_c2ri input.w169 {
  width: 169px;
}
.con_c2ri input.yzm {
  width: 41px;
}
.con_c2ri input.btn {
  width: 98px;
  height: 34px;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: 400 16px/30px "微软雅黑";
  color: #fff;
  margin-left: 70px;
  border: none;
}
.con_c2ri .yzmbtn {
  float: left;
}

.con_con3 {
  border: #e2e2e2 solid 1px;
  margin-bottom: 22px;
  min-height: 807px;
}
.qh_ul {
  height: 36px;
  border-bottom: #e2e2e2 solid 1px;
  background: #f8f8f8;
  margin-left: -1px;
}
.qh_ul li {
  float: left;
  width: 125px;
  padding: 0 1px;
  text-align: center;
  cursor: pointer;
  font: 400 16px/36px "微软雅黑";
  color: #333;
  overflow: hidden;
}
.qh_ul li.hover {
  background: #fff;
  border-top: #fe6d2c solid 2px;
  border-right: #e2e2e2 solid 1px;
  border-left: #e2e2e2 solid 1px;
  margin-top: -1px;
  padding: 0;
  height: 35px;
}
.con_c3ul {
  padding: 12px 30px 0;
}
.con_c3ul li {
  height: 47px;
  border-bottom: #999 dotted 1px;
  background: url(../images/zx_ico2.jpg) 7px center no-repeat;
  padding-left: 22px;
  font: 400 18px/46px "微软雅黑";
  color: #444444;
}
.con_c3ul li a {
  color: #444;
  float: left;
}
.con_c3ul li a:hover {
  color: #f36201;
}
.con_c3ul li span {
  font-size: 14px;
  color: #989898;
  float: right;
  margin-right: 10px;
}

/*
 行业论坛
 * */
.bhead {
  height: 76px;
  padding: 28px 0 0 0;
}
.blogo {
  display: block;
  float: left;
  margin: 0 36px 0 6px;
}
.bhname {
  float: left;
  border-left: #818181 solid 1px;
  height: 46px;
  padding-left: 31px;
  font: 400 24px/46px "微软雅黑";
  color: #4c4c4c;
}
.bhnav {
  float: right;
  padding: 7px 0 0;
}
.bhnav li {
  padding: 0 12px;
  font: 400 16px/38px "微软雅黑";
  float: left;
}
.bhnav li a {
  display: block;
  padding: 0 15px;
  color: #3e3d3d;
}
.bhnav li a:hover {
  background: #4d70c7;
  border-radius: 3px;
  color: #fff;
}
.bhnav li.hover a {
  background: #4d70c7;
  border-radius: 3px;
  color: #fff;
}
.bbsnavsh {
  width: 250px;
  height: 29px;
  margin-top: -5px;
  border: 2px solid #1f87e8;
  background: #fff;
  font: 400 15px/35px "微软雅黑";
}
.bbsnavsl {
  height: 33px;
  color: #1f87e8;
  border: 2px #1f87e8 solid;
  margin-top: -5px;
  margin-right: -26px;
}
.bbsnavsub {
  height: 33px;
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px;
  background: #1f87e8;
  border: none;
  margin: -4px 20px 0 -15px;
  color: #fff;
}
.bbsnavsub:hover {
  background: #42a4ff;
}
.bh_tit {
  float: right;
  height: 32px;
  padding: 15px 15px 0 0;
  font: 400 16px/32px "微软雅黑";
  color: #888888;
}
.bh_tit a {
  color: #444;
}

.bnav {
  height: 42px;
  background: ;
}
.bnav ul {
  padding-left: 2px;
}
.bnav ul li {
  width: 128px;
  padding-right: 2px;
  height: 42px;
  text-align: center;
  font: 400 16px/42px "微软雅黑";
  float: left;
}
.bnav ul li a {
  display: block;
  color: #fff;
}
.bnav ul li a:hover {
  background: #4ab344;
  text-decoration: none;
}
.bnav ul li.hover a {
  background: #4ab344;
  text-decoration: none;
}

.h_con1 {
  height: 260px;
  padding: 20px 0 0;
}
.h_c1lf {
  width: 353px;
  float: left;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.h_c1lf li {
  width: 353px;
  height: 240px;
}
.h_c1lf li .txt {
  width: 333px;
  padding: 0 10px;
  height: 45px;
  background: url(../images/bg32.png);
  padding: 0 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  font: 400 14px/45px "微软雅黑";
  color: #fff;
  display: block;
}
.h_c1lf .rslides_tabs {
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 10px;
  width: 100%;
  text-align: center;
  display: none;
}
.h_c1lf .rslides_nav {
  width: 25px;
  height: 39px;
  position: absolute;
  top: 93px;
  cursor: pointer;
  line-height: 39px;
  overflow: hidden;
  text-indent: 30px;
}
.h_c1lf .prev {
  background: url(../images/lf.png);
  left: 0;
}
.h_c1lf .next {
  background: url(../images/ri.png);
  right: 0;
}

.h_c1cen {
  float: left;
  width: 490px;
  height: 238px;
  padding: 0 18px;
  margin-left: 14px;
}
.bor {
  border: #e2e2e2 solid 1px;
}
.h_c1cen dl {
  height: 68px;
  border-bottom: #cccccc dotted 1px;
  padding: 8px 0 0;
}
.h_c1cen dl dt {
  height: 28px;
  font: bold 16px/28px "微软雅黑";
}
.h_c1cen dl dt a {
  color: #444444;
}
.h_c1cen dl dt a.ty {
  width: 44px;
  height: 18px;
  display: inline-block;
  text-align: center;
  font: 400 12px/18px simsun;
  background: #4d70c7;
  color: #fff;
  margin-right: 5px;
  vertical-align: 2px;
}
.h_c1cen dl dd {
  height: 36px;
  font: 400 14px/36px "微软雅黑";
  color: #444;
  overflow: hidden;
}
.h_c1ri {
  float: right;
  width: 270px;
  height: 238px;
  border: #e2e2e2 solid 1px;
  border-top: #4d70c7 solid 2px;
}
.h_c1ri .tit {
  height: 33px;
  border-bottom: #e2e2e2 solid 1px;
  background: #f9f9f9;
  padding-left: 20px;
  font: 400 16px/32px "微软雅黑";
}
.h_c1ri .tit em {
  color: #4d70c7;
}
.h_c1ri .bdul {
  padding: 13px 0 0;
}
.h_c1ri .bdul li {
  height: 48px;
}
.h_c1ri .bdul li .bt {
  float: left;
  text-align: right;
  width: 80px;
  font: 400 14px/32px "微软雅黑";
  color: #2f2f2f;
}
.h_c1ri .bdul li input {
  float: left;
  border: #e2e2e2 solid 1px;
  padding: 0 10px;
  height: 30px;
  width: 138px;
  font: 400 12px/30px simsun;
  color: #2f2f2f;
}
.h_c1ri .bdul li.da {
  height: 85px;
}
.h_c1ri .bdul li.da .wb {
  padding-left: 80px;
  font: 400 14px/48px "微软雅黑";
  clear: both;
}
.h_c1ri .bdul li.da .wb a {
  color: #9f9f9f;
}
.h_c1ri .bdul li.da .wb a.reg {
  color: #4d70c7;
  font-weight: bold;
}
.h_c1ri .bdul li input.btn {
  width: 218px;
  height: 32px;
  font: bold 14px/32px "微软雅黑";
  color: #fff;
  cursor: pointer;
  background: #4d70c7;
  margin-left: 25px;
  border: none;
}
.h_con2 {
  padding-bottom: 20px;
}
.h_c2lf {
  float: left;
  width: 892px;
}
.h_c2ltit {
  height: 40px;
  border-bottom: 2px solid #424242;
  margin-bottom: 10px;
}
.h_c2ltit h3 {
  min-width: 204px;
  height: 40px;
  border-bottom: #4d70c7 solid 2px;
  padding-left: 7px;
  font: 400 24px/40px "微软雅黑";
  color: #464646;
  float: left;
}
.h_c2ltit h3 em {
  color: #a4a4a4;
  font-family: arial;
  font-size: 20px;
  margin-left: 12px;
  text-transform: capitalize;
}
.h_c2ltit a {
  float: right;
  font: 400 14px/40px "微软雅黑";
  color: #666666;
  margin-right: 10px;
}
.h_c2nr {
  height: 354px;
}
.h_con2 .c2lf {
  width: 326px;
  padding: 3px 12px 0;
  height: 282px;
  float: left;
  overflow: hidden;
}
.h_con2 .c2lf li {
  height: 90px;
  border-bottom: #ccc dotted 1px;
}
.h_con2 .c2lf li .txt {
  display: block;
  height: 32px;
  margin: 4px 0 0;
  background: url(../images/zx_ico2x.jpg) left center no-repeat;
  padding-left: 14px;
  font: bold 16px/32px "微软雅黑";
  color: #444444;
}
.h_con2 .c2lf li .txt2 {
  font: 400 14px/24px "微软雅黑";
  color: #666;
  padding: 0 14px;
  overflow: hidden;
  height: 48px;
}
.h_con2 .c2ri {
  float: right;
  width: 498px;
  height: 277px;
  padding: 8px 14px 0;
  overflow: hidden;
}
.h_con2 .c2ri li {
  height: 39px;
  border-bottom: #cccccc dotted 1px;
  background: url(../images/bbs_ico2.jpg) left center no-repeat;
  font: 400 14px/38px "微软雅黑";
  padding-left: 16px;
}
.h_con2 .c2ri li a {
  color: #2f2f2f;
}
.h_c3nr {
  height: 354px;
}
.h_c3nr h3 {
  border-bottom: #ff6d6d solid 2px !important;
}
.h_c3nr .c2lf .txt {
  background: url(../images/bbs_ico3.jpg) left center no-repeat !important;
}

.h_c2ri {
  float: right;
  width: 272px;
}
.h_c2rnr1 {
  height: 335px;
  border: #e2e2e2 solid 1px;
  border-top: #4d70c7 solid 2px;
  background: #f8f8f8;
  margin: 16px 0;
  clear: both;
}
.h_c2rnr1.bt2 {
  border-top: #ff6d6d solid 2px;
}
.h_c2rnr1 .tit {
  height: 39px;
  border-bottom: #e2e2e2 solid 1px;
  font: 400 16px/38px "微软雅黑";
  color: #333;
  padding-left: 20px;
}
.h_c2rnr1 .list {
  padding: 10px 15px 0;
}
.h_c2rnr1 .list li {
  height: 40px;
  font: 400 14px/40px "微软雅黑";
}
.h_c2rnr1 .list li i {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -1px;
  background: #b9b9b9;
  font: 400 14px/16px simsun;
  color: #fff;
  text-align: center;
}
.h_c2rnr1 .list li a {
  color: #2f2f2f;
  margin-left: 10px;
}
.h_c2ri .bg1 {
  background: #4d70c7 !important;
}
.h_c2ri .bg2 {
  background: #6f8bd1 !important;
}
.h_c2ri .bg3 {
  background: #91a6da !important;
}
.h_c2ri .bg1x {
  background: #fe6d2c !important;
}
.h_c2ri .bg2x {
  background: #fd8955 !important;
}
.h_c2ri .bg3x {
  background: #fba47d !important;
}

/*
 专业咨询视频
 * */
#video {
  width: 720px;
  height: 590px;
  padding: 50px 50px 0;
  background: #fff;
  margin: 0 auto;
}
.vi_con {
  width: 720px;
  height: auto;
  padding-bottom: 30px;
}
.vi_tit {
  height: 65px;
  font: 400 20px/65px "微软雅黑";
  color: #2e2e2e;
  overflow: hidden;
}
.vi_name {
  font: 400 14px/200% "微软雅黑";
  color: #ff8149;
  padding: 0 0 15px;
}
.vi_con {
  font: 400 14px/200% "微软雅黑";
  color: #2e2e2e;
}

#v_main {
  border: #e2e2e2 solid 1px;
  padding: 20px;
  min-height: 500px;
  margin-bottom: 30px;
}
.v_tit {
  position: relative;
  background: url(../images/v_tbg.jpg) left bottom repeat-x;
  padding: 0 185px 17px;
  font: 400 20px/30px "微软雅黑";
  color: #333333;
  text-align: center;
}
.v_tit .btn {
  text-align: center;
  font: 400 14px/30px "微软雅黑";
  position: absolute;
  right: -10px;
  top: 0;
  background: #fff;
}
.v_tit .btn a {
  display: inline-block;
  width: 103px;
  height: 30px;
  background: url(../images/zx_qq.jpg) 12px center no-repeat #4d70c7;
  text-indent: 30px;
  color: #fff;
  margin: 0 10px;
  border-radius: 3px;
}
.v_tim {
  height: 34px;
  padding: 5px 0 0;
  text-align: center;
  font: 400 14px/34px "微软雅黑";
  color: #989898;
}
.v_tim .fx {
  display: inline-block;
  vertical-align: middle;
}
.v_ncon {
  padding: 0 30px 30px;
  text-align: justify;
  text-justify: inter-ideograph;
  font: 400 14px/200% "微软雅黑";
  color: #444444;
}
.v_updown {
  border-top: #999999 dotted 1px;
  padding: 15px 0;
  margin: 0 30px;
  font: 400 14px/30px "微软雅黑";
  color: #444444;
}
.v_updown a {
  color: #444444;
}

/*
 注册
 * */
#bgfbf9f8 {
  background: #fbf9f8;
}
.r_main {
  padding: 40px 0 0;
}
.r_mqh {
  height: 31px;
  padding: 0 0 0 237px;
}
.r_mqh li {
  float: left;
  width: 126px;
  height: 31px;
  text-align: center;
  font: 400 16px/30px "微软雅黑";
  color: #444444;
  margin-right: 6px;
}
.r_mqh li a {
  display: block;
  color: #444;
  border: #dddddd solid 1px;
  border-bottom: none;
  height: 31px;
}
.r_mqh li a:hover {
  background: #fff;
  padding: 3px 0 1px;
  margin: -3px 0 -1px;
  font-weight: bold;
  color: #4d70c7;
}
.r_mqh li.hover a {
  background: #fff;
  padding: 3px 0 1px;
  margin: -3px 0 -1px;
  font-weight: bold;
  color: #4d70c7;
}
.r_mcon {
  border: #ddd solid 1px;
  background: #fff;
}
.r_mqhnr {
  padding: 20px 25px;
  text-align: center;
  font: 400 12px/28px simsun;
  color: red;
}
.r_mqhnr a {
  color: #4c70c6;
}
.r_mbt {
  border-top: #dddddd solid 1px;
  background: #fbf9f8;
  height: 34px;
  padding-left: 28px;
  font: 400 16px/34px "微软雅黑";
}
.r_mul {
  padding: 30px 0 0 246px;
}
.r_mul li {
  height: 67px;
}
.r_mul li .bt {
  float: left;
  width: 130px;
  padding-right: 12px;
  line-height: 36px;
  color: #999;
  text-align: right;
  font-size: 14px;
}
.r_mul li .bt em {
  color: #fe6d2c;
  margin: 0 5px;
}
.r_mul li #pic1,
.r_mul li #pic2 {
  float: left;
  width: 100px;
  height: 65px;
  cursor: pointer;
  position: relative;
}
.r_mul li .Validform_checktip {
  margin-top: 5px;
}
.r_mul li .uploadNum {
  cursor: pointer;
}
.r_mul li #uploadList,
.r_mul li #uploadList_0 {
  width: 100px;
  height: 63px;
  border: #ccc solid 1px;
}
.r_mul li input {
  width: 248px;
  padding: 0 10px;
  height: 34px;
  border: #ddd solid 1px;
  line-height: 34px;
  color: #999;
  float: left;
}
.r_mul li .name {
  background: url(../images/dl_ico1.jpg) 242px center no-repeat;
}
.r_mul li .pwd {
  background: url(../images/dl_ico2.jpg) 242px center no-repeat;
}
.r_mul li select {
  float: left;
  height: 34px;
  line-height: 34px;
  margin-right: 5px;
  color: #999;
  min-width: 87px;
  border: #ddd solid 1px;
  padding: 0 5px;
}
.r_mul li input.w98 {
  width: 98px;
}
.r_mul li .yzmbtn {
  float: left;
  border: #ddd solid 1px;
  background: #fbf9f8;
  width: 120px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  color: #333;
  margin-left: 15px;
  cursor: pointer;
}
.r_mul li .yzmbtn #valid {
  width: 106px;
  height: 34px;
  cursor: pointer;
}
.hqyzmx {
  float: left;
  border: #ddd solid 1px;
  background: #fbf9f8;
  width: 106px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  color: #333;
  margin-left: 15px;
  cursor: pointer;
}

.r_mul li input.btn {
  width: 277px;
  height: 36px;
  cursor: pointer;
  color: #fff;
  background: #fe6d2c;
  font: 400 20px/36px "微软雅黑";
  margin-left: 142px;
  border: none;
}
.r_mul li select.w168 {
  width: 168px;
}
.r_mul li .picbtn {
  width: 68px;
  height: 26px;
  background: #5471cc;
  font: bold 14px/26px simsun;
  color: #fff;
  text-align: center;
  margin-left: 10px;
  float: left;
  margin-top: 5px;
}
.r_mul li input.dx {
  width: 12px;
  height: 12px;
  margin-right: 3px;
  float: none;
  display: inline-block;
  vertical-align: middle;
  border: #ddd solid 1px;
}
.r_mul li .zypro {
  /*float: left; min-width: 76px; margin-right:10px;*/
  line-height: 36px;
  color: #333;
  display: block;
  font: 400 14px/36px "Microsoft Yahei";
  color: #999;
  cursor: pointer;
}
.r_mul li .zypro.on {
  width: 100%;
}
.r_mul li .zypro.on div {
  width: 600px;
  display: inline-block;
  vertical-align: top;
  margin-left: 15px;
}
.r_mul li .zypro.on div label {
  float: left;
  min-width: 76px;
  margin-right: 10px;
  line-height: 36px;
  color: #333;
  display: block;
  font: 400 14px/36px "Microsoft Yahei";
  color: #999;
  cursor: pointer;
}
.r_mul li .zypro.on div:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.r_mul li.xzpro {
  height: auto;
  min-height: 67px;
}
.r_mul li.xzpro #pro_id {
  float: left;
  clear: none !important;
  width: 600px;
  margin-left: 30px !important;
  font: 400 14px/28px "微软雅黑";
  color: #666;
}
.r_mul li .xieyi {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  font: 400 14px/28px "微软雅黑";
  color: #666;
}
.r_mul li .prodx {
  float: left;
  width: 750px;
}

/*
 登录
 * */
.login form .layui-input-inline,
.login form .layui-input-inline button {
  width: 100%;
}
.login form .verify-box input {
  display: inline-block;
  width: 60%;
}
.login .layui-elip {
  margin-bottom: 15px;
}
.login form .verify-box img {
  display: inline-block;
  margin-left: 2%;
  width: 36%;
  height: 38px;
}
#login {
  background: #2e7db6 url(../images/log_bg.jpg) left bottom repeat-x;
}
.log_con {
  height: 430px;
  padding: 54px 0 0;
  background: url(../images/log_pic.jpg) 65px 10px no-repeat;
}
.log_con1 {
  height: 520px;
  padding: 54px 0 0;
}
.login {
  width: 400px;
  height: 370px;
  padding: 20px 20px 0;
  background: #fff;
  float: right;
  margin-right: 5px;
}
.log_tit {
  height: 41px;
  border-bottom: #d7d7d7 solid 2px;
}
.log_tit h3 {
  float: left;
  font: 400 20px/32px "微软雅黑";
  color: #5f5f5f;
}
.log_tit a {
  display: inline-block;
  float: right;
  background: url(../images/log_ico3.jpg) left center no-repeat;
  padding-left: 24px;
  font: 400 16px/32px "微软雅黑";
  color: #f54f4f;
}
.log_tit a:hover {
  padding-left: 20px;
}
.login ul {
  padding: 22px 0 0;
}
.login ul li {
  height: 60px;
  position: relative;
}
.login ul li .ico {
  width: 38px;
  height: 38px;
  float: left;
  border: #bdbdbd solid 1px;
  display: block;
  text-align: center;
  font: bold 14px/38px simsun;
  color: #d0d0d0;
  border-right: none;
  background: #f3f3f3;
}
.login ul li .ico1 {
  background: url(../images/log_ico1.jpg) center center no-repeat #f3f3f3;
}
.login ul li .ico2 {
  background: url(../images/log_ico2.jpg) center center no-repeat #f3f3f3;
}
.login ul li .fyzm {
  background: url(../images/find_ico1.jpg) center center no-repeat #f3f3f3;
}
.login ul li .false {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  right: 5px;
  top: 13px;
}
.login ul li input {
  border: #bdbdbd solid 1px;
  padding: 0 10px;
  height: 38px;
  width: 245px;
  font: 400 14px/38px "微软雅黑";
  color: #5f5f5f;
  float: left;
}
.login ul li.yzm {
  height: 73px;
}
.login ul li .fpwd {
  display: inline-block;
  font: 400 14px/32px "微软雅黑";
  color: #606060;
}
.login ul li input.yzm {
  width: 43px;
}
.login ul li input.btn {
  border: #f54f4f solid 1px;
  float: none;
  width: 306px;
  background: #f54f4f;
  cursor: pointer;
  text-align: center;
  font: 400 16px/32px "微软雅黑";
  color: #fff;
}
.login ul li .yzmbtn {
  float: left;
  height: 40px;
}
.login ul li input.yzmbtn {
  float: left;
  width: 186px;
  margin-left: 15px;
  cursor: pointer;
}

/*
 发布新帖
 * */
#bmain {
  padding: 20px 0;
  border-bottom: #e9ebf0 solid 1px;
}
.bfb_left {
  width: 885px;
  border: #e7e7e7 solid 1px;
  border-top: #fe6d2c solid 2px;
  float: left;
}
.bfb_tit {
  height: 32px;
  border-bottom: #d7d7d7 solid 1px;
  background: #f7f7f7;
}
.bfb_tit h3 {
  width: 125px;
  background: #fff;
  height: 33px;
  background: #fff;
  margin-bottom: -1px;
  border-right: #d7d7d7 solid 1px;
  text-align: center;
  font: bold 16px/32px "微软雅黑";
  color: #4b4b4b;
}
.bfb_bd {
  padding: 30px 0;
}
.bfb_bd dt {
  height: 46px;
}
.bfb_bd dt input {
  float: left;
  height: 26px;
  width: 300px;
  font: 400 14px/24px "微软雅黑";
  color: #4d70c7;
  border: #d7d7d7 solid 1px;
  padding: 0 10px;
}
.bfb_bd .bt {
  width: 98px;
  padding-right: 3px;
  height: 26px;
  font: 400 14px/26px "微软雅黑";
  color: #333;
  text-align: right;
  float: left;
}
.bfb_bd select {
  float: left;
  height: 26px;
  width: 87px;
  font: 400 14px/24px "微软雅黑";
  color: #4d70c7;
}
.bfb_bd .lz {
  float: left;
  padding-left: 16px;
  font: 400 14px/26px "微软雅黑";
  color: #333;
}
.bfb_bd dd {
  min-height: 333px;
  padding-bottom: 20px;
}
.bfb_bd .bj {
  width: 750px;
  min-height: 330px;
  float: left;
}
.bfb_bd .text {
  height: 32px;
  font: 400 14px/32px "微软雅黑";
  color: #9c9c9c;
  padding-left: 110px;
  float: left;
}
.bfb_bd .text a {
  color: #9c9c9c;
  text-decoration: underline;
}
.bfb_bd input.btn2 {
  width: 88px;
  height: 30px;
  background: #fe6d2c;
  text-align: center;
  font: bold 16px/30px "微软雅黑";
  color: #fff;
  border-radius: 3px;
  float: right;
  margin-right: 35px;
  border: none;
  cursor: pointer;
}

.bfb_ri {
  float: right;
  width: 272px;
}
.bfb_rnr {
  border: #e2e2e2 solid 1px;
  height: 237px;
  float: right;
  width: 270px;
  border-top: #ff6d6d solid 2px;
  margin-bottom: 20px;
}
.bfb_rnr h3 {
  height: 33px;
  border-bottom: #e2e2e2 solid 1px;
  background: #f8f8f8;
  font: 400 16px/32px "微软雅黑";
  color: #2f2f2f;
  padding-left: 20px;
}
.bfb_rnr em {
  color: #4d70c7;
}
.bfb_rnr .bd {
  padding: 23px 0 0 25px;
  height: 70px;
}
.bfb_rnr .bd .pic {
  width: 53px;
  height: 53px;
  float: left;
}
.bfb_rnr .bd .text {
  float: left;
  padding-left: 20px;
  width: 150px;
}
.bfb_rnr .bd .text .name {
  font: bold 14px/28px "微软雅黑";
  color: #333;
}
.bfb_rnr .bd .text .btn2 {
  font: 400 12px/24px simsun;
  color: #8b8b8b;
  margin-left: -10px;
}
.bfb_rnr .bd .text a {
  color: #8b8b8b;
  margin: 0 10px;
}
.bfb_rnr .bd .text a:hover {
  color: #4d70c7;
}
.bfb_rnr .ltwz {
  text-align: center;
  height: 52px;
  font: 400 18px/42px "微软雅黑";
  color: #4d70c7;
}
.bfb_rnr .fb {
  width: 218px;
  height: 32px;
  background: #4d70c7 url(../images/bbs_ico1.jpg) 61px center no-repeat;
  text-indent: 92px;
  font: bold 14px/32px "微软雅黑";
  color: #fff;
  display: block;
  margin: 0 auto;
}

/*
 商圈列表
 * */
.sq_lf {
  width: 887px;
  float: left;
}
.sq_qh {
  height: 36px;
  border: #d6d6d6 solid 1px;
  background: #f9f9f9;
}
.sq_qh li {
  float: left;
  width: 109px;
  text-align: center;
  border-right: #d6d6d6 solid 1px;
  height: 36px;
  cursor: pointer;
  font: 400 16px/36px "微软雅黑";
  color: #2f2f2f;
}
.sq_qh li.hover {
  background: #fff;
  border-top: #fe6d2c solid 2px;
  margin: -1px 0;
  line-height: 35px;
}
.sq_qh li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.sq_lbt {
  background: #f7f7f7;
  margin: 10px 0;
  font: 400 14px/32px "微软雅黑";
  color: #555555;
  padding-left: 36px;
}
.sq_lbt p {
  float: left;
}
.sq_lbt .w1 {
  width: 318px;
}
.sq_lbt .w2 {
  width: 410px;
}
.sq_lbt .w3 {
  width: 115px;
}
.sq_lbt .w4 {
  width: 100px;
}

.sq_list li {
  height: 42px;
  border-bottom: #cccccc dotted 1px;
  background: url(../images/bbs_ico2.jpg) 22px center no-repeat;
  font: 400 14px/42px "微软雅黑";
  color: #555555;
}
.sq_list li p {
  float: left;
  overflow: hidden;
  height: 42px;
}
.sq_list li p.p1 {
  width: 110px;
  text-align: center;
  color: #fe6d2c;
}
.sq_list li p.p2 {
  width: 550px;
  padding-left: 7px;
}
.sq_list li p.p3 {
  width: 220px;
}
.sq_list li p.p4 {
  width: 98px;
  line-height: 20px;
  font-size: 12px;
}
.sq_list li p a {
  color: #4d70c7;
}

/*
 申请投票
 * */
.tp_ltit {
  height: 34px;
  border-bottom: #e7e7e7 solid 2px;
}
.tp_ltit h3 {
  font: bold 16px/34px "微软雅黑";
  color: #4b4b4b;
  background: url(../images/tp_ico1.jpg) 3px center no-repeat;
  padding-left: 34px;
  float: left;
}
.tp_lcon {
  border: #e7e7e7 solid 1px;
  padding: 23px 49px;
  margin: 20px 0;
}
.tp_lbz {
  height: 37px;
  background: url(../images/tp_bg1.jpg) center center no-repeat;
  font: 400 16px/36px "微软雅黑";
  color: #fff;
}
.tp_lbz li {
  float: left;
  text-align: center;
  width: 25%;
}
.tp_lwz {
  height: 55px;
  font: 400 14px/54px "微软雅黑";
  color: #fe6d2c;
}
.tp_lsq {
  display: block;
  width: 167px;
  height: 37px;
  background: url(../images/tp_ico2.jpg) 33px center no-repeat #fe6d2c;
  text-indent: 67px;
  font: 400 18px/36px "微软雅黑";
  color: #fff;
  border-radius: 3px;
}
.tp_lsq:hover {
  color: #fff;
}
.tp_lsbt {
  font: 400 18px/46px "微软雅黑";
  color: #333;
  padding: 16px 0 0 18px;
}
.tp_lncon {
  font: 400 14px/200% "微软雅黑";
  color: #333;
  padding: 10px 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

.tp_ltit h3.jg {
  background: url(../images/tp_ico2x.jpg) 3px center no-repeat;
  padding-left: 32px;
  float: left;
}
.tp_ltit .sear {
  float: right;
}
.tp_ltit .sear input {
  width: 174px;
  height: 25px;
  border: #4d70c7 solid 2px;
  float: left;
  padding: 0 10px;
  font: 400 14px/25px "微软雅黑";
  color: #4d70c7;
  margin-right: 2px;
}
.tp_ltit .sear input.btn {
  width: 60px;
  height: 29px;
  line-height: 22px;
  background: url(../images/sear_ico.jpg) 6px center no-repeat #4d70c7;
  color: #fff;
  text-indent: 15px;
  cursor: pointer;
}

.rs_list {
  padding: 20px 0 0;
}
.rs_list dl {
  border: #e7e7e7 solid 1px;
  height: 75px;
  padding: 10px 0 10px 23px;
  margin-bottom: 15px;
}
.rs_list dl dt {
  width: 346px;
  border-right: #cccccc dotted 1px;
  float: left;
}
.rs_list dl dt .txt {
  display: block;
  height: 36px;
  font: bold 22px/36px "微软雅黑";
  color: #333333;
}
.rs_list dl dt .starp {
  float: left;
  font: 400 14px/36px "微软雅黑";
  color: #333;
}
.rs_list dl dt .star {
  margin: 10px 0 0 !important;
  float: left;
}
.rs_list dl dd {
  float: left;
  width: 486px;
  padding-left: 10px;
}
.rs_list dl dd .wz {
  border-bottom: #cccccc dotted 1px;
  height: 26px;
  font: 400 14px/22px "微软雅黑";
  color: #888888;
  padding-left: 74px;
}
.rs_list dl dd .wz b {
  font-size: 16px;
  margin-left: 15px;
  color: #fe6d2c;
}
.rs_list dl dd .wz b em {
  font-size: 22px;
}
.rs_list dl dd .gys {
  height: 36px;
  padding: 11px 0 0;
  font: 400 18px/36px "微软雅黑";
  color: #fe6d2c;
  padding-left: 74px;
  background: url(../images/yzsb2.jpg) 288px 11px no-repeat;
  text-align: left;
}
.rs_list dl dd .gys .yzp {
  width: 113px;
  height: 31px;
  border: #fe6d2c solid 2px;
  display: inline-block;
  vertical-align: middle;
}
.rs_list dl dd .gys.no {
  background: url(../images/tp_xl.jpg) 132px 15px no-repeat;
  color: #989898;
  padding-left: 180px;
}

/*
 投票进行中
 * */
.tp_ltit h3.tp {
  background: url(../images/tp_jx.jpg) left top no-repeat;
  padding-left: 32px;
}
.tp_list2 {
  padding: 20px 0 0;
}
.tp_list2 dl {
  border: #e7e7e7 solid 1px;
  height: 158px;
  padding: 10px 0;
  margin-bottom: 15px;
}
.tp_list2 dl dt {
  float: left;
  width: 346px;
  padding-left: 27px;
  height: 158px;
  border-right: #999999 dotted 1px;
}
.tp_list2 dl dt .txt {
  height: 34px;
  display: block;
  font: bold 22px/34px "微软雅黑";
  color: #333;
}
.tp_list2 dl dt .starnr {
  height: 38px;
  padding: 10px 0 0;
  font: 400 16px/28px "微软雅黑";
  color: #333333;
}
.tp_list2 dl dt .starnr .star {
  margin: 5px 0 0 !important;
  float: left;
}
.tp_list2 dl dt .tim {
  height: 44px;
  font: 400 16px/24px "微软雅黑";
  color: #333;
}
.tp_list2 dl dt .tim span {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 24px;
  text-align: center;
  margin: 0 5px;
  background: #fe6d2c;
  border-radius: 2px;
  color: #fff;
}
.tp_list2 dl dt .tpnum {
  background: url(../images/tp_zt.jpg) left center no-repeat;
  padding-left: 30px;
  font: bold 18px/25px "微软雅黑";
  color: #fe6d2c;
  margin-right: 15px;
  float: left;
}
.tp_list2 dl dt .tpbtn {
  width: 51px;
  height: 25px;
  background: #4d70c7;
  border-radius: 3px;
  text-align: center;
  float: left;
  font: 400 16px/25px "微软雅黑";
  color: #fff;
  cursor: pointer;
}
.tp_list2 dl dd {
  float: left;
  width: 478px;
  padding-left: 17px;
}
.tp_list2 dl dd .wb {
  height: 31px;
  border-bottom: #999999 dotted 1px;
  font: bold 14px/30px "微软雅黑";
  color: #fe6d2c;
}
.tp_list2 dl dd .yj {
  height: 112px;
  overflow: hidden;
  padding: 10px 0 0;
  font: 400 14px/24px "微软雅黑";
  color: #444444;
}

/*
 商圈详细页面
 * */
.sq_vtit {
  border-bottom: #cccccc dotted 1px;
  padding: 0 6px;
}
.sq_top {
  text-align: center;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 50px;
}
.sq_zuoz {
  margin-left: 15px;
  margin-right: 15px;
}
.sq_vlf {
  /*width: 600px; float: left;*/
  padding: 0 0 4px;
}
.sq_vtit h2 {
  font: bold 25px/32px "微软雅黑";
  color: #474747;
}
.sq_vlf .num {
  font: 400 12px/22px "微软雅黑";
  color: #666666;
}
.sq_vlf .bbs_js {
  font: 400 18px/32px "微软雅黑";
  color: #666666;
  word-wrap: break-word;
  word-break: break-all;
  overflow: hidden;
}
.sq_vlf .bbs_js img {
  max-width: 100%;
}
.pos-re {
  margin-top: 50px;
  margin-bottom: 20px;
  color: #999999;
}
.sq_vri {
  float: right;
  max-width: 300px;
  padding: 6px 0 0;
  font: 400 12px/28px simsun;
  color: #000;
  display: none;
}
.sq_vri form {
  display: inline-block;
  vertical-align: middle;
}
.sq_vri form input {
  width: 30px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  border: #e0dede solid 1px;
  text-align: center;
  font: 400 14px/24px simsun;
  color: #000;
}
.sq_vri form input.btn {
  width: 48px;
  height: 26px;
  border: #e0dede solid 1px;
  background: url(../images/btn_bg.jpg) left top repeat-x;
  cursor: pointer;
}
.sq_vri a,
.sq_vri span {
  color: #000;
  margin: 0 10px;
}

.sq_vlist {
  padding: 15px 0 0;
}
.sq_vlist dl {
  background: #f3f3f3;
  margin-bottom: 15px;
}
.sq_vlist dl dt {
  width: 80px;
  padding: 10px;
  font: 400 12px/24px "微软雅黑";
  color: #333;
  float: left;
}
.sq_vlist dl dt p {
  padding: 10px 0 0;
}
.sq_vlist dl dd {
  width: 742px;
  background: #fbfbfb;
  padding: 10px 20px 20px 24px;
  float: right;
}
.sq_vlist dl dd .text {
  border-bottom: #d1d1d1 dashed 1px;
  font: 400 16px/30px "微软雅黑";
  color: #333333;
  padding: 10px 10px 10px 0;
  word-wrap: break-word;
  word-break: break-all;
}
.sq_vlist dl dd .con1 {
  height: 28px;
  font: 400 12px/28px "微软雅黑";
  color: #aaaaaa;
  padding: 10px 0;
}
.sq_vlist dl dd .con1 .btn2 {
  float: right;
  color: #fe6d2c;
}
.sq_vlist dl dd .con1 .btn2 .zan {
  float: left;
  background: url(../images/sq_ico3.jpg) left center no-repeat;
  padding-left: 18px;
  text-decoration: underline;
}
.sq_vlist dl dd .con1 .btn2 .zanx {
  background: url(../images/sq_ico1.jpg) left center no-repeat;
  float: left;
  padding-left: 18px;
  text-decoration: underline;
}
.sq_vlist dl dd .con1 .btn2 .hui {
  float: left;
  background: url(../images/sq_ico2.jpg) left center no-repeat;
  padding-left: 15px;
  text-decoration: underline;
}
.sq_vlist dl dd .con1 .btn2 p {
  float: left;
  margin-right: 20px;
  cursor: pointer;
}
.sq_vlist dl dd .con2 {
  background: #f3f3f3;
  padding: 10px;
}
.sq_vlist dl dd .con2 .hfbt {
  font: 400 12px/24px "微软雅黑";
  color: #bcbcbc;
}
.sq_vlist dl dd .con2 .hfbt font {
  color: #333;
  margin-right: 20px;
}
.sq_vlist dl dd .con2 .hfnr {
  padding: 5px 0;
  font: 400 14px/18px "微软雅黑";
  color: #333;
}

.sq_vbd {
  height: 200px;
}
.sq_vcon {
  border: #f3f3f3 solid 1px;
  border-top: #fe6d2c solid 2px;
}
.sq_vc1 {
  height: 33px;
  background: #fbfbfb;
  border-bottom: #f3f3f3 solid 1px;
  font: 400 16px/32px "微软雅黑";
  color: #333;
  padding-left: 14px;
}
.sq_vc1 h3 {
  float: left;
  margin-right: 32px;
  font-weight: normal;
}
.sq_vc1 .picx {
  float: left;
  background: url(../images/btn_ico1.jpg) left center no-repeat;
  padding-left: 20px;
  font-size: 14px;
  margin-right: 16px;
  cursor: pointer;
}
.sq_vc1 .pic2 {
  float: left;
  background: url(../images/btn_ico2.jpg) left center no-repeat;
  padding-left: 20px;
  font-size: 14px;
  margin-right: 16px;
  cursor: pointer;
}
.sq_vcon textarea {
  width: 865px;
  height: 105px;
  padding: 5px 10px;
  font: 400 14px/28px "微软雅黑";
  color: #333;
  border: none;
}
.sq_vts {
  float: left;
  font: 400 14px/48px "微软雅黑";
  color: #9c9c9c;
  padding-left: 15px;
}
.sq_vts a {
  color: #9c9c9c;
  text-decoration: underline;
}
.sq_vbtn {
  width: 87px;
  height: 30px;
  float: right;
  margin: 5px 0 0;
  border: none;
  cursor: pointer;
  background: #fe6d2c;
  text-align: center;
  border-radius: 3px;
  font: bold 14px/30px "微软雅黑";
  color: #fff;
}

/*
 发布招标
 * */
#tender_cg {
  width: 950px;
  padding: 0;
  margin: 0 auto;
  background: #fff;
  position: relative;
  min-height: 300px;
}
#tender {
  width: 980px;
  padding: 0;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.te_tit {
  border-bottom: #fe6d2c solid 2px;
  height: 44px;
  font: 400 22px/40px "微软雅黑";
  padding: 6px 0 0 32px;
  background: url(../images/zb_ico.jpg) left 16px no-repeat;
  color: #fe6d2c;
}
.te_con1 {
  border: #e9e9e9 solid 1px;
  margin: 8px 0 0;
  min-height: 226px;
}
.te_con1 li {
  border-bottom: #dddddd dotted 1px;
  padding-top: 12px;
}
.te_con1 li.l1 {
  height: 37px;
  position: relative;
}
.te_con1 li .bt {
  float: left;
  font: 400 14px/26px "微软雅黑";
  color: #4d70c7;
  padding-left: 5px;
}
.te_con1 li .bt em {
  color: #ffd958;
  margin-right: 5px;
}
.te_con1 li div {
  float: left;
}
.te_con1 li select {
  border: #dfdfdf solid 1px;
  height: 26px;
  min-width: 85px;
  color: #666666;
  margin-left: 0px !important;
  float: left;
}
.te_con1 li select.w112 {
  min-width: 112px;
  margin-left: 10px !important;
}
.te_con1 li div span {
  float: none !important;
  color: #4d70c7;
  line-height: 2;
}
.te_con1 li .w130 {
  /*width: 130px !important;*/
}
.te_con1 li input {
  border: #dfdfdf solid 1px;
  height: 24px;
  float: left;
  padding: 0 10px;
  line-height: 24px;
  color: #666;
  width: 65px;
  color: #666666;
}
.te_con1 li input.te_btn2 {
  width: 84px;
  height: 26px;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: bold 14px/22px "微软雅黑";
  color: #fff;
  cursor: pointer;
  float: left;
  border: none;
  margin-left: 15px;
}
.te_con1 li input.w47 {
  width: 47px;
  padding: 0;
  text-align: center;
}
.te_con1 li .qx {
  float: left;
  width: 22px;
  text-align: center;
  line-height: 26px;
  color: #666;
}
.te_con1 li .addfj {
  width: 86px;
  height: 26px; /* background: #4d70c7; text-align: center; */
  font: bold 14px/26px "微软雅黑";
  color: #fff;
  margin-left: 24px;
  float: left;
  position: relative;
  float: left;
  cursor: pointer;
}
.te_con1 li.l2 {
  height: 65px;
}
.te_con1 li.l5 {
  height: 65px;
  border-bottom: none;
}
.te_con1 li textarea {
  width: 800px;
  padding: 0 10px;
  border: #dfdfdf solid 1px;
  height: 50px;
  float: left;
  line-height: 24px;
  color: #666;
}
.te_con1 li input.w173 {
  width: 173px;
}
.te_con1 li input.w120 {
  width: 120px;
}
.te_con1 li input.reset {
  width: 50px;
  height: 26px;
  background: #eaeaea;
  margin-left: 20px;
  cursor: pointer;
}
.te_con1 li.l3 {
  height: 37px;
}
.te_con2 {
  height: 42px;
  padding: 16px 0 0;
  font: bold 14px/26px "微软雅黑";
  color: #fe6d2c;
}
.te_con2 .xzbtn {
  width: 114px;
  height: 26px;
  background: #4d70c7;
  float: right;
  margin-right: 110px;
  text-align: center;
  font: bold 14px/26px "微软雅黑";
  color: #fff;
  cursor: pointer;
}
.te_btn {
  width: 84px;
  top: 270px;
  height: 26px;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: bold 14px/22px "微软雅黑";
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 24px;
  border: none;
}
.te_btn1 {
  width: 84px;
  top: 320px;
  height: 26px;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: bold 14px/22px "微软雅黑";
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 24px;
  border: none;
}
.te_c2bd {
  padding: 10px 0;
  height: 26px;
}
.te_c2bd input {
  float: left;
  height: 24px;
  border: #dedede solid 1px;
  width: 300px;
  padding: 0 10px;
  font: 400 14px/24px "微软雅黑";
  color: #333;
  margin-right: 10px;
}
.te_c2bd input.btn {
  width: 60px;
  height: 26px;
}

.te_list {
  border: #e9e9e9 solid 1px;
  height: 340px;
}
.te_conbt {
  border-bottom: #e9e9e9 solid 1px;
  background: #f9f9f9;
}
.te_conbt li {
  float: left;
  font: 400 16px/43px "微软雅黑";
  color: #444;
  text-align: center;
}
.te_conbt li.tew1 {
  background: #fff;
  border-top: #fe6d2c solid 2px;
  margin: -1px 0;
  background: #fff;
  border-right: #d6d6d6 solid 1px;
}
.tew1 {
  width: 211px;
}
.tew2 {
  width: 123px;
}
.tew3 {
  width: 112px;
}
.tew4 {
  width: 325px;
  padding: 0 12px;
}
.tew5 {
  width: 132px;
}
.gys_con2.te {
  margin: 0;
  border: none;
  padding: 0;
  overflow: hidden;
  height: 295px;
}
.te_sjnum {
  text-align: right;
  padding-right: 122px;
  padding-top: 18px;
  font: 400 14px/26px "微软雅黑";
  color: #444;
}

/*
 我的订单
 * */
#mhead {
  background: #fe6d2c;
}
.mh_con {
  height: 68px;
  padding: 24px 0 0;
}
.m_logo {
  display: block;
  float: left;
  width: 130px;
  height: 48px;
  margin: 0 36px 0 6px;
}
.m_htit {
  border-left: #fff solid 1px;
  padding-left: 30px;
  height: 48px;
  font: 400 24px/48px "微软雅黑";
  color: #fff;
  float: left;
}
.m_hnav {
  float: right;
  padding: 7px 0 0;
}
.m_hnav ul {
  background: url(../images/bbs_navline.jpg) left top repeat-y;
}
.m_hnav li {
  width: 128px;
  padding-right: 2px;
  height: 42px;
  background: url(../images/bbs_navline.jpg) right top repeat-y;
  text-align: center;
  font: 400 16px/42px "微软雅黑";
  float: left;
}
.m_hnav li a {
  display: block;
  color: #fff;
}

#mmain {
  padding: 20px 0;
}
.m_left {
  width: 180px;
  background: #fff;
  border: #ececec solid 1px;
  border-top: #fe6d2c solid 2px;
  padding: 0 12px 50px;
  float: left;
}
.m_lnav dt {
  height: 36px;
  padding: 8px 0 0;
  text-indent: 37px;
  background: url(../images/lf_mico1.jpg) 11px 17px no-repeat;
  font: bold 16px/36px "微软雅黑";
  color: #fe6d2c;
  border-bottom: #e2e2e2 solid 1px;
}
.m_lnav dt a {
  display: block;
  color: #fe6d2c;
}
.m_lnav dd {
  color: #444;
  height: 36px;
  text-indent: 37px;
  border-bottom: #dddddd dotted 1px;
}
.m_lnav dd a {
  display: block;
  font: 400 14px/36px "微软雅黑";
}
.m_lnav dd a:hover {
  color: #fe6d2c;
  font-weight: bold;
}
.m_lnav dt.d2 {
  background: url(../images/lf_mico2.jpg) 11px 15px no-repeat;
}
.m_lnav dt.d3 {
  background: url(../images/lf_mico3.jpg) 11px 15px no-repeat;
}
.m_lnav dt.d4 {
  background: url(../images/lf_mico4.jpg) 11px 16px no-repeat;
}

.m_right {
  float: right;
  width: 950px;
}
.m_rcon1 {
  height: 142px;
  padding: 12px 0;
  background: #fff;
  margin-bottom: 20px;
}
.m_rc1lf {
  float: left;
  padding: 0 0 0 20px;
  width: 300px;
  border-right: #ddd dotted 1px;
  height: 142px;
}
.m_rc1lf .pic {
  width: 67px;
  height: 67px;
  border: #e1e1e1 solid 2px;
  float: left;
  margin: 14px 0 5px;
}
.m_rc1lf .text {
  float: right;
  width: 185px;
}
.m_rc1lf .text .name {
  font: 400 20px/26px "微软雅黑";
  margin: 10px 0 0;
  color: #333;
}
.m_rc1lf .text .lx {
  background: url(../images/mem_ico.jpg) left center no-repeat;
  height: 22px;
  font: 400 12px/22px "微软雅黑";
  color: #4d71c9;
  padding-left: 22px;
  margin-top: 5px;
}
.m_rc1lf .text .tel {
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #4d71c9;
}
.m_rc1lf .text .txt2 {
  font: 400 14px/26px "微软雅黑";
  color: #4d71c9;
}
.m_rc1lf .text .txt2 em {
  color: #fe6d2c;
}
.m_rc1lf .txt {
  clear: both;
  font: 400 14px/28px "微软雅黑";
  color: #4d71c9;
  height: 28px;
  overflow: hidden;
}
.m_rc1ri {
  float: left;
  padding: 26px 0 0 56px;
}
.m_rc1ri ul {
  background: url(../images/m_ico2.jpg) center top no-repeat;
}
.m_rc1ri ul.b2 {
  background: url(../images/m_icox.jpg) center top no-repeat;
}
.m_rc1ri ul li {
  height: 98px;
  float: left;
  text-align: center;
  width: 124px;
  font: 400 14px/42px "微软雅黑";
}
.m_rc1ri ul li a {
  display: block;
  padding: 56px 0 0;
  color: #676767;
}
.m_rc1ri ul li a b {
  color: #fe6d2c;
  margin-left: 5px;
}
.m_rc1ri.gys {
  padding: 26px 0 0 0;
}
.m_rc1ri.gys ul {
  background: url(../images/m_ico2x.jpg) 30px top no-repeat;
}

.m_rcon2 {
  background: #fff;
  padding: 0 18px 30px;
  min-height: 200px;
  margin-bottom: 20px;
}
.m_rc2t {
  height: 40px;
  padding: 6px 0 0;
}
.m_rc2t h3 {
  font: bold 16px/40px "微软雅黑";
  color: #333;
  float: left;
}
.m_rc2t h3 em {
  margin-left: 5px;
  font-weight: bold;
  color: #fe6d2c;
}
.m_rc2t h3 font {
  margin-left: 5px;
  font-weight: bold;
  color: #afafaf;
}
.m_rc2t .ztpx {
  float: right;
  padding: 6px 0 0;
}
.m_rc2t .ztpx .zt {
  min-width: 42px;
  padding: 0 10px;
  height: 23px;
  border: #cccccc solid 1px;
  border-radius: 3px;
  margin-right: 10px;
  float: left;
  position: relative;
  text-align: center;
  line-height: 23px;
  cursor: pointer;
}
.m_rc2t .ztpx .zt img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.m_rc2t .ztpx .ztsub {
  position: absolute;
  left: -1px;
  top: 23px;
  background: #fff;
  border: #ccc solid 1px;
  border-radius: 3px;
  width: 100%;
  display: none;
}
.m_rc2t .ztpx .ztsub a {
  display: block;
  height: 26px;
  line-height: 26px;
  color: #323232;
  padding: 0 5px;
}
.m_rc2t .ztpx .ztsub a:hover {
  background: #c7dded;
  text-decoration: none;
}
.m_rc2t .ztpx .zt.ztzt img {
  margin: 0 5px 0 0;
}

.m_rc2list {
  border: #dddddd solid 1px;
  border-bottom: none;
}
.m_rc2list dl {
  border-bottom: #ddd solid 1px;
  height: 35px;
  font: 400 14px/35px "微软雅黑";
}
.m_rc2list .ggg1 {
  border-bottom: #ddd solid 1px;
  height: 70px;
  font: 400 14px/35px "微软雅黑";
}
.m_rc2list .ggg2 {
  border-bottom: #ddd solid 1px;
  height: 70px;
  font: 400 14px/35px "微软雅黑";
}
.m_rc2list dl dd {
  float: left;
  text-align: center;
  line-height: 35px;
  color: #333;
  height: 35px;
  overflow: hidden;
  border-right: #ddd solid 1px;
}
.m_rc2list dl dt {
  float: left;
  text-align: center;
  line-height: 35px;
  color: #4d71c9;
  height: 35px;
  border-right: #ddd solid 1px;
}
.m_rc2list dl dd.h {
  color: #fe6d2c;
}
.m_rc2list dl dd img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}
.m_rc2list .w1 {
  width: 153px;
}
.m_rc2list .w11 {
  width: 213px;
}
.m_rc2list .w2 {
  width: 247px;
}
.m_rc2list .w3 {
  width: 351px;
}
.m_rc2list .w31 {
  width: 211px;
}
.m_rc2list .w33 {
  width: 398px;
}
.m_rc2list .w4 {
  width: 61px;
}
.m_rc2list .w5 {
  width: 56px;
}
.m_rc2list .w6 {
  width: 94px;
}
.m_rc2list .w7 {
  width: 84px;
  border-right: none !important;
}
.m_rc2list dl dd a {
  color: #fe6d2c; /*display:block;*/
  cursor: pointer;
}
.m_rc2list dl dd.over a {
  color: #747474;
}
.bt_line {
  height: 1px;
  background: #e9ebf0 scroll 1px;
}
.m_rc2list .w2x {
  width: 295px;
  height: 35px;
  overflow: hidden;
}
.m_rc2list .w3x {
  width: 60px;
}
.m_rc2list .w4x {
  width: 79px;
}
.m_rc2list .w5x {
  width: 110px;
}
.m_rc2list .w6x {
  width: 86px;
}
.m_rc2list .w7x {
  width: 112px;
  border-right: none !important;
}
.m_rc2list dl dd.over {
  color: #747474;
}
.m_rc2list .tw1 {
  width: 26px;
  border-right: none !important;
}
.m_rc2list .tw2 {
  width: 138px;
}
.m_rc2list .tw3 {
  width: 286px;
}
.m_rc2list .tw4 {
  width: 143px;
}
.m_rc2list .tw5 {
  width: 142px;
}
.m_rc2list .tw6 {
  width: 80px;
}
.m_rc2list .tw7 {
  width: 130px;
  border-right: none !important;
}
.m_rc2list .n2x {
  width: 80px;
  height: 35px;
  overflow: hidden;
}
.m_rc2list .n3x {
  width: 100px;
}
.m_rc2list .n4x {
  width: 100px;
}
.m_rc2list .n5x {
  width: 110px;
}
.m_rc2list .n7x {
  width: 160px;
  border-right: none !important;
}
.m_rc2list .g1 {
  width: 100px;
  border-right: white;
}
.m_rc2list .g2 {
  width: 200px;
}
.m_rc2list .g3 {
  width: 200px;
}
.m_rc2list .g4 {
  width: 501px;
}
.m_rc2list .g5 {
  width: 910px;
}
.m_rc2list .g6 {
  width: 301px;
}
.m_rc2list .ww2 {
  width: 501px;
  height: 70px;
  line-height: 18px;
}
.m_rc2list .ww1 {
  width: 301px;
  height: 70px;
}
.m_rc2list .ww3 {
  width: 101px;
  border-right: white;
  height: 70px;
  line-height: 65px;
}
.m_rc2list .gg1 {
  width: 100px;
  border-right: white;
  height: 70px;
  line-height: 65px;
}
.m_rc2list .gg2 {
  width: 200px;
  height: 70px;
  line-height: 18px;
}
/*
 报价详情
 * */
#bjshow {
  background: #fff;
  width: 952px;
  height: 720px;
  padding: 0 34px;
}
.bj_tit {
  height: 35px;
  border-bottom: #fe6d2c solid 2px;
  padding: 15px 0 0;
  margin-bottom: 15px;
}
.bj_tit h3 {
  float: left;
  background: url(../images/bj_ico.jpg) left top no-repeat;
  padding-left: 32px;
  font: 400 22px/24px "微软雅黑";
  color: #fe6d2c;
}
.bj_tit p {
  float: right;
  font: 400 16px/32px "微软雅黑";
  color: #252525;
}
.bj_con {
  height: 578px;
  overflow: hidden;
}

.bj_btn input.btn {
  width: 104px;
  height: 26px;
  margin-left: 30px;
  border: none;
  text-align: center;
  cursor: pointer;
  font: bold 14px/26px "微软雅黑";
  color: #fff;
  background: #fe6d2c;
}
.bj_con input.dx {
  width: 12px;
  height: 12px;
  float: right;
  margin: 12px 0 0 0;
}

/*
 个人信息
 * */
.per_con {
  background: #fff;
  padding: 8px 28px;
  min-height: 400px;
}
.per_tit {
  height: 26px;
  border-bottom: #ededed solid 2px;
  padding-left: 3px;
  font: bold 14px/26px "微软雅黑";
  color: #444;
  overflow: hidden;
}
.per_bd {
  position: relative;
  padding: 20px 0;
}
.per_bd li {
  height: 48px;
}
.per_bd li select {
  float: left;
  height: 24px;
}
.per_bd li .bt {
  font: 400 14px/30px "微软雅黑";
  color: #666;
  text-align: right;
  width: 130px;
  padding-right: 6px;
  float: left;
}
.per_bd li .name {
  float: left;
  font: 400 14px/30px "微软雅黑";
  color: #666;
}
.per_bd li .name em {
  color: #8f8f8f;
  margin-left: 10px;
  font-size: 12px;
}
.per_bd li .bt em {
  color: #fe6d2c;
  margin-right: 5px;
}
.per_bd li input {
  width: 105px;
  height: 28px;
  border: #ccc solid 1px;
  padding: 0 6px;
  float: left;
  font: 400 14px/28px "微软雅黑";
  color: #333;
}
.per_bd li input.dx {
  width: 12px;
  height: 12px;
  float: none !important;
  margin: 5px 10px 0 0;
}
.per_bd li label {
  float: left;
  margin-right: 20px;
}
.per_bd li i {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.per_bd li i.true {
  background: url(../images/true.jpg) center center no-repeat;
}
.per_bd li a {
  color: #4d71c9;
  margin-left: 5px;
  font-size: 12px;
}
.per_bd li input.da2 {
  width: 155px;
}
.per_bd li input.da {
  width: 215px;
}
.per_bd li.da {
  height: 112px;
}
.per_bd li.da .pic {
  width: 87px;
  height: 87px;
  float: left;
  border: #e1e1e1 solid 2px;
  text-align: center;
  line-height: 86px;
  font-weight: bold;
  font-size: 80px;
  color: #999;
  overflow: hidden;
  cursor: pointer;
}
.per_bd li input.btn {
  width: 52px;
  height: 24px;
  border: #bfd6af solid 1px;
  border-radius: 2px;
  background: #edf7e5;
  font-family: simsun;
  cursor: pointer;
  text-align: center;
  color: #333;
  margin-left: 136px;
  line-height: 20px;
  font-size: 12px;
}
.uploadNum {
  display: block;
  width: 86px;
  text-align: center;
}

.per_bline {
  width: 0;
  border-left: #dddddd dotted 1px;
  height: 152px;
  position: absolute;
  left: 500px;
  top: 20px;
}
.per_bshow {
  position: absolute;
  top: 20px;
  right: 0;
  padding-left: 25px;
  width: 270px;
  height: 150px;
  border: #ddd solid 1px;
}
.per_bshow .pic {
  width: 87px;
  height: 87px;
  border: #e1e1e1 solid 2px;
  float: left;
  margin: 20px 0 5px;
}
.per_bshow .text {
  float: right;
  width: 158px;
}
.per_bshow .text .name {
  font: 400 20px/26px "微软雅黑";
  margin: 10px 0 0;
  color: #333;
}
.per_bshow .text .lx {
  background: url(../images/gys.jpg) left center no-repeat;
  height: 22px;
  font: 400 12px/22px "微软雅黑";
  color: #4d71c9;
  padding-left: 22px;
}
.per_bshow .text .tel {
  font: 400 14px/26px "微软雅黑";
  color: #4d71c9;
}
.per_bshow .text .tel em {
  color: #fe6d2c;
}
.per_bshow .txt {
  clear: both;
  font: 400 14px/28px "微软雅黑";
  color: #4d71c9;
  height: 28px;
  overflow: hidden;
}

/*									
 评价
 * */
.gys_list.pj {
  padding: 10px 0 !important;
}
.gys_list.pj dl {
  padding: 5px 90px 5px 5px !important;
  position: relative;
}
.gys_list.pj dl .name {
  width: 515px;
}
.gys_list .hbtn {
  width: 78px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  cursor: pointer;
  font: bold 14px/30px "微软雅黑";
  color: #fff;
  border-radius: 3px;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.gys_list .hnr {
  background: #f6f6f6;
  margin: 5px 0 5px 20px;
  padding: 5px 0;
  position: relative;
}
.gys_list .hnr.tx {
  display: none;
}
.gys_list .hnr textarea {
  width: 750px;
  padding: 5px 10px;
  font: 400 14px/24px "微软雅黑";
  color: #444;
  border: none;
  background: #f6f6f6;
  resize: none;
}
.gys_list .hnr input.btn {
  width: 52px;
  height: 24px;
  border: #bfd6af solid 1px;
  border-radius: 2px;
  background: #edf7e5;
  font-family: simsun;
  cursor: pointer;
  text-align: center;
  color: #333;
  margin-left: 136px;
  line-height: 20px;
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  right: 5px;
  font-weight: normal;
}
.gys_list .htit {
  font: 400 12px/24px "微软雅黑";
  color: #777777;
  padding: 5px 10px;
}
.gys_list .hfnr {
  margin: 0 10px 5px 30px;
  font: 400 12px/24px "微软雅黑";
  color: #444444;
}

/*								
 报价
 * */
#bao {
  width: 1150px;
  height: 322px;
  padding: 66px 35px;
  margin: 0 auto;
}

.blfx {
  width: 362px;
  float: left;
}
.blf2 {
  width: 330px;
  height: 203px;
  border: #e9e9e9 solid 1px;
  padding: 0 15px;
}
.blf2 .dh {
  height: 38px;
  font: 400 14px/38px "微软雅黑";
  color: #919191;
  border-bottom: #ddd dotted 1px;
}
.blf2 .dh em {
  color: #fe6d2c;
}
.blf2 .nr1 {
  border-bottom: #ddd dotted 1px;
  height: 76px;
  padding: 12px 0 0 3px;
}
.blf2 .nr1 .txt {
  height: 32px;
  font: 400 24px/32px "微软雅黑";
  color: #4c70c6;
}
.blf2 .nr1 .pric {
  font: 400 18px/36px "微软雅黑";
  color: #fe6d2c;
}
.blf2 .nr2 {
  padding: 5px 0 0;
}
.blf2 .nr2 dl {
  height: 33px;
  font: 400 14px/32px "微软雅黑";
}
.blf2 .nr2 dl dt {
  width: 60px;
  text-align: right;
  float: left;
  color: #4d71c9;
}
.blf2 .nr2 dl dd {
  width: 260px;
  float: left;
  padding-left: 5px;
  color: #5d5d5d;
}
.blf2 .nr2 dl dd b,
.blf .nr2 dl dd em {
  color: #fe6d2c;
}

.bcen2 {
  width: 330px;
  height: 110px;
  padding: 0 15px;
  margin: 5px 0 0;
  border: #e9e9e9 solid 1px;
  font: 400 14px/32px "微软雅黑";
  color: #666;
}
.bcen2 .tit {
  font: 400 22px/40px "微软雅黑";
  color: #fe6d2c;
  padding: 3px 0 0;
}
.bcen2 .tim {
  padding: 8px 0 0;
  height: 52px;
  text-align: center;
  font: 400 14px/22px "微软雅黑";
  color: #444;
}
.bcen2 .tim span {
  display: inline-block;
  vertical-align: middle;
  height: 22px;
  width: 24px;
  margin: 0 5px;
  background: #fe6d2c;
  color: #fff;
  border-radius: 2px;
}
.bcen2 .num {
  height: 61px;
  background: url(../images/mc_pic.jpg) 88px top no-repeat;
  padding-left: 120px;
  font: bold 18px/24px "微软雅黑";
  color: #fe6d2c;
}
.bcen2 .pric {
  height: 32px;
}

.bri2 {
  width: 780px;
  height: 319px;
  border: #e9e9e9 solid 1px;
  float: right;
  border-top: #fe6d2c solid 2px;
}
.bri2 .tit {
  height: 32px;
  border-bottom: #e9e9e9 solid 1px;
  background: url(../images/bj_icox.jpg) 10px center no-repeat;
  font: bold 18px/32px "微软雅黑";
  color: #333333;
  padding-left: 35px;
}
.brtit2 {
  height: 30px;
  border-bottom: #e9e9e9 dotted 1px;
  text-align: center;
  font: bold 14px/30px "微软雅黑";
  color: #4d70c7;
}
.bri2 .bw1 {
  width: 92px;
}
.bri2 .bw2 {
  width: 100px;
}
.bri2 .bw3 {
  width: 98px;
}
.bri2 .bw4 {
  width: 82px;
}
.bri2 .bw5 {
  width: 252px;
}
.bri2 .bw6 {
  width: 90px;
}
.bri2 .bw40 {
  width: 40px;
}
.brnr2 dl dd.bw40 {
  width: 40px;
}
.bri2 .bw6 a {
  display: block;
  line-height: 28px;
  color: red;
  background: #f0f9e8;
  border: #bed6b2 solid 1px;
  border-radius: 2px;
}
.bri2 .bw2 a,
.bri2 .bw3 a {
  display: block;
  width: 66px;
  height: 20px;
  margin: 10px auto 0;
  background: #5470cb;
  font: 400 14px/20px "微软雅黑";
  color: #fff;
}
.brtit2 p {
  float: left;
}
.brnr2 {
  overflow: auto;
  height: 214px;
}
.brnr2 dl {
  border-bottom: #e9e9e9 dotted 1px;
  height: 36px;
  overflow: hidden;
}
.brnr2 dl dd {
  float: left;
  text-align: center;
  font: 400 14px/36px "微软雅黑";
  color: #333;
  overflow: hidden;
  height: 30px;
}
.brnr2 dl dd.bw5 {
  font: 400 12px/14px "微软雅黑";
  padding: 4px 0;
  height: 32px;
}
.brnr2 dl dd.bw5 em {
  color: #999;
}
.bri2 input.btn {
  width: 90px;
  height: 32px;
  background: #f56a1e;
  text-align: center;
  border: none;
  cursor: pointer;
  font: bold 14px/32px "微软雅黑";
  color: #fff;
  margin-left: 485px;
}

.blf {
  float: left;
  width: 490px;
  min-height: 320px;
  border: #e9e9e9 solid 1px;
  padding: 0 15px;
}
.blf .dh {
  height: 38px;
  font: 400 14px/38px "微软雅黑";
  color: #919191;
  border-bottom: #ddd dotted 1px;
}
.blf .dh em {
  color: #fe6d2c;
}
.blf .nr1 {
  border-bottom: #ddd dotted 1px;
  height: 76px;
  padding: 12px 0 0 3px;
}
.blf .nr1 .txt {
  height: 32px;
  font: 400 24px/32px "微软雅黑";
  color: #4c70c6;
}
.blf .nr1 .pric {
  font: 400 18px/36px "微软雅黑";
  color: #fe6d2c;
}
.blf .nr2 {
  padding: 5px 0 0;
}
.blf .nr2 dl {
  height: 33px;
  font: 400 14px/32px "微软雅黑";
}
.blf .nr2 dl dt {
  width: 98px;
  text-align: left;
  float: left;
  color: #4d71c9;
}
.blf .nr2 dl dd {
  width: 385px;
  float: left;
  padding-left: 5px;
  color: #5d5d5d;
}
.blf .nr2 dl dd b,
.blf .nr2 dl dd em {
  color: #fe6d2c;
}

.bcen {
  width: 271px;
  padding: 0px 20px;
  height: 320px;
  border: #e9e9e9 solid 1px;
  float: left;
  margin-left: 11px;
  font: 400 14px/32px "微软雅黑";
  color: #666;
}
.bcen .tit {
  text-align: center;
  font: 400 22px/60px "微软雅黑";
  color: #fe6d2c;
  padding: 20px 0 0;
}
.bcen .tim {
  padding: 8px 0 0;
  height: 52px;
  text-align: center;
  font: 400 14px/22px "微软雅黑";
  color: #444;
}
.bcen .tim span {
  display: inline-block;
  vertical-align: middle;
  height: 22px;
  width: 24px;
  margin: 0 5px;
  background: #fe6d2c;
  color: #fff;
  border-radius: 2px;
}
.bcen .num {
  height: 61px;
  background: url(../images/mc_pic.jpg) 88px top no-repeat;
  padding-left: 120px;
  font: bold 18px/24px "微软雅黑";
  color: #fe6d2c;
}
.bcen .pric {
  height: 32px;
}
.bcen .bt {
  float: left;
  width: 82px;
  text-align: right;
  font: bold 14px/25px "微软雅黑";
  color: #fe6d2c;
}
.bcen .bd {
  float: left;
  background: #fe6d2c;
  width: 140px;
  height: 25px;
}
.bcen .bdwz {
  font: bold 14px/25px "微软雅黑";
  color: #fff;
  text-align: center;
}
.bcen .bdwz .jg {
  float: left;
  width: 85px;
}
.bcen .bdwz .xg {
  width: 55px;
  float: left;
  background: #4d70c7;
  height: 25px;
  cursor: pointer;
}
.bcen .bdbd {
  display: none;
}
.bcen .bdbd input {
  text-align: center;
  float: left;
  width: 85px;
  background: #e9e9e9;
  height: 25px;
  border: none;
  font: 400 14px/25px "微软雅黑";
  color: #333;
}
.bcen .bdbd input.btn {
  width: 55px;
  background: #4d70c7;
  cursor: pointer;
  color: #fff;
}
.bcen .ts {
  padding-left: 26px;
  font: 400 12px/26px "微软雅黑";
  color: #8e8e8e;
}
.bcen .s_time,
.bcen .success_company,
.bcen .success_price {
  padding: 0 10px;
}

.bri {
  width: 292px;
  height: 319px;
  border: #e9e9e9 solid 1px;
  float: right;
  border-top: #fe6d2c solid 2px;
}
.bri .tit {
  height: 32px;
  border-bottom: #e9e9e9 solid 1px;
  background: url(../images/bj_icox.jpg) 10px center no-repeat;
  font: bold 18px/32px "微软雅黑";
  color: #333333;
  padding-left: 35px;
}
.brtit {
  height: 30px;
  border-bottom: #e9e9e9 dotted 1px;
  text-align: center;
  font: bold 14px/30px "微软雅黑";
  color: #4d70c7;
}
.bri .bw1 {
  width: 105px;
}
.bri .bw2 {
  width: 82px;
}
.bri .bw3 {
  width: 105px;
}
.brtit p {
  float: left;
}
.brnr {
  overflow: hidden;
  height: 254px;
}
.brnr dl {
  border-bottom: #e9e9e9 dotted 1px;
  height: 36px;
}
.brnr dl dd {
  float: left;
  text-align: center;
  font: 400 14px/36px "微软雅黑";
  color: #333;
}
.brnr dl dd.bw3 {
  font: 400 12px/14px "微软雅黑";
  padding: 4px 0;
}
.brnr dl dd.bw3 em {
  color: #999;
}

/*
 账户设置
 * */
.acc_jb {
  background: #fffdee;
  margin: 5px 20px;
  padding: 0 10px;
  font: 400 12px/30px simsun;
  color: #fd6c03;
}
.acc_jb b {
  color: #666664;
}
.acc_jb .jd {
  width: 68px;
  height: 10px;
  display: inline-block;
  vertical-align: 0px;
  background: #d9d9d7;
}
.acc_jb .jd div {
  height: 10px;
  width: 50%;
  background: #fc9836;
}

.acc_list {
  padding: 0 20px;
}
.acc_list dl {
  border-bottom: #e6e6e6 solid 1px;
  height: 32px;
  padding: 36px 0;
}
.acc_list dl dt {
  width: 203px;
  border-right: #e6e6e6 solid 1px;
  height: 32px;
  font: bold 20px/32px "微软雅黑";
  color: #60636c;
  float: left;
}
.acc_list dl dt .ico1 {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin: 0 25px;
}
.acc_list dl dd {
  float: left;
  width: 560px;
  padding-left: 15px;
  line-height: 32px;
  color: #9b9b9b;
}
.acc_list dl .hong {
  color: #c40109;
}
.acc_list dl dd .wz {
  width: 480px;
  float: left;
}
.acc_list dl dd .xg {
  display: block;
  width: 78px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #0060aa;
  float: left;
}
.acc_list dl dd .yz {
  display: block;
  width: 76px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  background: #f0f9e8;
  border: #bed6b2 solid 1px;
  border-radius: 2px;
  float: left;
}
.acc_list dl dt.jiav {
  background: url(../images/ac_ico4.jpg) 166px center no-repeat;
}
.acc_list dl dt.jiav2 {
  background: url(../images/ac_ico5.jpg) 166px center no-repeat;
}

/*
 公司信息
 * */
.info {
  padding: 20px 0;
}
.info li {
  min-height: 48px;
  font: 400 14px/30px "微软雅黑";
  color: #666666;
}
.info li em {
  color: #fe6d2c;
  margin: 0 5px;
}
.info li .bt {
  float: left;
  width: 130px;
  text-align: right;
  padding-right: 6px;
}
.info li input {
  width: 272px;
  padding: 0 10px;
  border: #ccc solid 1px;
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #333;
  float: left;
}
.info li input.dx {
  width: 12px;
  height: 12px;
  float: none;
  margin-right: 5px;
}
.info li textarea {
  width: 600px;
  padding: 5px 10px;
  border: #ccc solid 1px;
  height: 118px;
  font: 400 14px/28px "微软雅黑";
  color: #333;
  float: left;
}
.info li label {
  float: left;
  margin-right: 15px;
}
.info li select {
  height: 30px;
  padding: 0 3px;
  min-width: 100px;
  margin-right: 5px;
  border: #ccc solid 1px;
}
.info li .ts {
  color: #999;
  float: left;
  font-size: 12px;
}
.info li .pic {
  display: block;
  float: left;
  width: 90px;
  height: 120px;
  margin-right: 20px;
}
.info li .pic2 {
  margin-left: 136px;
  cursor: pointer;
}
.info li .picnr {
  float: left;
  width: 740px;
}
.info li input.btn {
  width: 52px;
  height: 23px;
  line-height: 20px;
  text-align: center;
  background: #f0f9e8;
  border: #bed6b2 solid 1px;
  border-radius: 2px;
  cursor: pointer;
  margin-left: 136px;
}
.info li select.da {
  width: 168px;
}
.info li .piclist {
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  height: 130px;
}
.info li .piclist span {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border: #ccc solid 1px;
  border-radius: 50em;
  background: #fff;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 12px;
  text-align: center;
  color: red;
  cursor: pointer;
}
#pro_id {
  clear: both;
  margin-left: 136px;
  position: relative;
}
#pro_id input {
  width: 12px !important;
  height: 12px !important;
  float: none;
  display: inline-block;
  margin-right: 5px;
}
#pro_id .Validform_checktip {
  float: none !important;
  position: absolute;
  top: 50%;
  left: 450px;
}

#classids input {
  width: 12px !important;
  height: 12px !important;
  float: none;
  display: inline-block;
  margin-right: 5px;
}
#classids .Validform_checktip {
  float: none !important;
  position: absolute;
  top: 50%;
  left: 450px;
}

/*
 劳务市场
 * */
.rc_list {
  padding: 22px 0 0;
  min-height: 500px;
}
.rc_list dl {
  width: 295px;
  height: 200px;
  float: left;
}
.rc_list dl dt {
  width: 150px;
  height: 175px;
  position: relative;
  float: left;
}
.rc_list dl dd {
  float: right;
  width: 135px;
}
.rc_list dl dd .js {
  font: 400 14px/30px "微软雅黑";
  color: #333;
  height: 155px;
  margin-top: -10px;
}
.rc_list dl dd #BizQQWPAX {
  width: 91px;
  height: 24px;
  background: url(../images/xqq.jpg) 5px center no-repeat #f56a1e;
  display: inline-block;
  vertical-align: 0;
  border-radius: 3px;
  font: 400 12px/24px "微软雅黑";
  color: #fff;
  text-indent: 26px;
  cursor: pointer;
}
.rc_list dl dd .show {
  width: 90px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  font: 400 12px/30px "微软雅黑";
  color: #fff;
  text-align: center;
  display: block;
}

.rc_left {
  border: #e4e0dd solid 1px;
  width: 248px;
  float: left;
}
.rc_lpic {
  width: 226px;
  height: 302px;
  border: #e4e0dd solid 1px;
  margin: 10px;
}
.rc_ltit {
  background: #fe6d2c;
  height: 38px;
  padding: 0 15px;
  font: 400 14px/38px "微软雅黑";
  color: #fff;
}
.rc_ltit b {
  font-size: 18px;
}
.rc_xx {
  padding: 5px 15px;
  font: 400 12px/30px simsun;
  color: #333;
  background: #faf8f6;
  border: #fff solid 1px;
}
.rc_xx #BizQQWPAX {
  width: 91px;
  height: 24px;
  background: url(../images/xqq.jpg) 5px center no-repeat #f56a1e;
  display: inline-block;
  vertical-align: 0;
  border-radius: 3px;
  font: 400 12px/24px "微软雅黑";
  color: #fff;
  text-indent: 26px;
  cursor: pointer;
}

.rc_cen {
  border: #e4e0dd solid 1px;
  float: right;
  margin-left: 15px;
  width: 912px;
}
.rc_ctit {
  height: 34px;
  border-bottom: #e4e0dd solid 1px;
  padding-left: 20px;
  font: bold 16px/34px "微软雅黑";
  color: #4d70c7;
  background: #f9f9f9;
}
.rc_ccon {
  padding: 20px;
  font: 400 14px/200% "微软雅黑";
  color: #2f2f2f;
  min-height: 150px;
}

.rc_ri {
  float: right;
  border: #e4e0dd solid 1px;
  width: 294px;
  border-top: none;
}
.rc_rtit {
  height: 33px;
  border-top: #fe6d2c solid 2px;
  border-bottom: #e4e0dd solid 1px;
  text-align: center;
  font: bold 16px/34px "微软雅黑";
  color: #4d70c7;
  background: #f9f9f9;
}
.rc_rlist {
  padding: 12px 0 0 12px;
}
.rc_rlist dl {
  width: 280px;
  height: 202px;
}
.rc_rlist dl dt {
  width: 150px;
  height: 175px;
  float: left;
}
.rc_rlist dl dd {
  float: right;
  width: 120px;
}
.rc_rlist dl dd .js {
  font: 400 12px/30px "微软雅黑";
  color: #333;
  height: 155px;
  margin-top: -10px;
}
.rc_rlist dl dd .show {
  width: 90px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  font: 400 12px/30px "微软雅黑";
  color: #fff;
  text-align: center;
  display: block;
}

/*
 原材料
 * */
.p_page {
  position: relative;
}
.p_page ul {
  position: absolute;
  left: 10px;
  top: 5px;
  font: 400 12px/23px "微软雅黑";
  height: 30px;
}
.p_page li {
  float: left;
  padding: 0 12px;
  height: 23px;
  border: #e4e0dd solid 1px;
  margin-left: -1px;
  background: #fff;
}
.p_page li a {
  display: block;
  color: #666;
}
.p_page li a:hover {
  color: #fff;
}
.p_page li:hover {
  border: #f75001 solid 1px;
  background: #f75001;
  color: #fff;
}
.p_page li.hover {
  border: #f75001 solid 1px;
  background: #f75001;
  color: #fff;
}
.p_page li.hover a {
  color: #fff;
}

.mat_list {
  padding: 18px 0;
  border-bottom: #e2e2e2 solid 2px;
  margin-bottom: 15px;
}
.mat_list dl {
  width: 237px;
  height: 293px;
  float: left;
  margin-left: -1px;
}
.mat_list dl dt {
  width: 235px;
  height: 220px;
  border: #d6d6d6 solid 1px;
}
.mat_list dl dd {
  padding: 8px 4px 0;
}
.mat_list dl dd .txt {
  display: block;
  font: bold 14px/24px "微软雅黑";
  height: 24px;
  color: #555;
}
.mat_list dl dd .add {
  float: left;
  font: bold 12px/22px "微软雅黑";
  color: #fe6d2c;
}
.mat_list dl dd .eye {
  float: right;
  padding-left: 26px;
  font: 400 12px/22px "微软雅黑";
  color: #fe6d2c;
  background: url(../images/eye.jpg) left center no-repeat;
}

.pv_c1cen .text2 {
  height: 210px;
  overflow: hidden;
  padding: 10px 10px 0;
  font: 400 14px/36px "微软雅黑";
  color: #444444;
}
.pv_c1cen .text2 font {
  color: #fb550b;
}
.pv_c1cen ul li {
  float: left;
  font: 300 14px/30px "微软雅黑";
}
.pv_c1cen .text2 .fz18 {
  font-size: 18px;
}
.pv_c1cen .text2 .fz24 {
  font-size: 24px;
}

.pv_c2con {
  border: #d6d6d6 solid 1px;
  border-top: none;
  padding: 20px;
  font: 400 14px/200% "微软雅黑";
  color: #666;
  min-height: 300px;
  margin-bottom: 30px;
}
/*------------上传 start------------*/
.sc {
  position: relative;
  left: 0px;
  top: 0px;
}
.divUpload {
  height: 28px;
  float: left;
  position: relative;
  width: 100%;
}
.uploadF {
  font-size: 12px;
  width: 80px;
  line-height: 28px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: #5470cb;
  height: 28px;
  display: block;
}
.uploadF a {
  color: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.uploadF input {
  margin: 0 0 0 -40px !important;
  width: 80px !important;
  height: 28px !important;
  line-height: 28px !important;
  padding: 0 !important;
}
.fileSub {
  position: absolute;
  z-index: 100;
  margin-left: -100px;
  height: 50px;
  font-size: 35px;
  opacity: 0;
  filter: alpha(opacity=0);
  margin-top: -5px;
  cursor: pointer;
}
.submitUplod {
  position: absolute;
  left: 60px;
  width: 60px;
  line-height: 28px;
  text-align: center;
  border: 0px;
  color: #fff;
  margin-left: 10px;
  cursor: pointer;
  background: #2ca763;
  border-radius: 4px;
  height: 28px;
  display: none;
  z-index: 999;
}
.FName {
  position: absolute;
  left: 100px;
  line-height: 24px;
  top: 0;
  background: #f3f3ed; /*border:1px solid #e2e3cb;border-radius:4px;*/
}
.FName a {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -5px;
  font-size: 12px;
  color: #000;
  z-index: 3;
  width: 30px;
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
.addts {
  float: left;
  font: 400 12px/26px "微软雅黑";
  color: #999;
}

/*-----------上传end---------*/

.Validform_checktip {
  float: left;
}

.cglf {
  float: left;
  margin-left: 10px;
}
.bgfff {
  background: #fff;
}

.dlok {
  padding: 10px 0 10px 10px;
  font: 400 12px/24px "Microsoft Yahei";
  color: #666;
}
.ppic {
  width: 90px;
  float: left;
  height: 85px;
}
.ptxt {
  width: 134px;
  float: left;
  height: 85px;
}
.ptxt .name {
  font: 400 20px/24px "微软雅黑";
  height: 26px;
  margin: 5px 0 0;
  color: #333;
}
.ptxt .lx {
  background: url(../images/mem_ico.jpg) left center no-repeat;
  height: 22px;
  font: 400 12px/22px "微软雅黑";
  color: #4d71c9;
  padding-left: 22px;
  margin-top: 15px;
}
.ptxt .tel {
  height: 28px;
  font: 400 14px/28px "微软雅黑";
  color: #4d71c9;
}
.ptxt .txt2 {
  font: 400 14px/26px "微软雅黑";
  color: #4d71c9;
}
.ptxt .txt2 em {
  color: #fe6d2c;
}
.pname {
  clear: both;
  font: 400 12px/24px "微软雅黑";
  color: #666;
}

#zgao {
  position: relative;
  z-index: 9;
}

.xy_bt {
  height: 48px;
  border-bottom: #fe6d2c solid 3px;
  font: 400 24px/48px "微软雅黑";
  color: #fe7031;
}
.xieyinr {
  width: 950px;
  padding: 10px;
  height: 550px;
  overflow: auto;
  background: #fff;
  margin: 20px auto 0;
  position: relative;
  font: 400 14px/28px "Microsoft Yahei";
  color: #666;
}
.xieyinr1 {
  width: 600px;
  padding: 30px;
  height: 350px;
  overflow: auto;
  background: #fff;
  position: relative;
  font: 400 14px/28px "Microsoft Yahei";
  color: #666;
}
.xytit {
  text-align: center;
  font: bold 16px/32px "Microsoft yahei";
  color: #666;
}

.xybtn {
  height: 44px;
  padding: 20px;
  background: #fff;
}
.xybtn1 {
  height: 44px;
  padding: 20px;
  background: #fff;
}
.xybtn p {
  width: 300px;
  height: 44px;
  margin: 0 auto;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: 400 16px/44px "微软雅黑";
  color: #fff;
}
.xybtn1 p {
  width: 200px;
  height: 44px;
  margin: 0 auto;
  background: #fe6d2c;
  text-align: center;
  cursor: pointer;
  font: 400 16px/44px "微软雅黑";
  color: #fff;
}

#pfcon {
  width: 48px;
  height: 196px;
  position: fixed;
  bottom: 30%;
  right: 10px;
}
#pfcon .div {
  width: 48px;
  height: 48px;
  cursor: pointer;
  border: #d1d1d1 solid 1px;
  margin-top: -1px;
  position: relative;
  background: #fff;
}
#pfcon .div p {
  text-align: center;
  padding: 6px;
  font: 400 14px/16px "微软雅黑";
  color: #666;
}
#pfcon .div i {
  display: none;
  width: 7px;
  height: 10px;
  background: url(../images/pf_ico.jpg);
  position: absolute;
  left: 0;
  top: 19px;
}
#pfcon .div:hover.p1 {
  background: #ff8149;
}
#pfcon .div:hover.p1 p {
  color: #fff;
}
#pfcon .div.p2 {
  background: url(../images/pf_ico1.jpg) center center no-repeat #fff;
}
#pfcon .div:hover.p2 {
  background: url(../images/pf_ico1.png) center center no-repeat #ff8149;
}
#pfcon .div.p3 {
  background: url(../images/pf_ico2.jpg) center center no-repeat #fff;
}
#pfcon .div:hover.p3 {
  background: url(../images/pf_ico2.png) center center no-repeat #ff8149;
}
#pfcon .div.p4 {
  background: url(../images/pf_ico3.jpg) center center no-repeat #fff;
  margin-bottom: 0;
}
#pfcon .div:hover.p4 {
  background: url(../images/pf_ico3.png) center center no-repeat #ff8149;
}
#pfcon .div.p5 {
  background: url(../images/pf_ico4.jpg) center center no-repeat #fff;
  margin-bottom: 0;
}
#pfcon .div:hover.p5 {
  background: url(../images/pf_ico4.png) center center no-repeat #ff8149;
}
#pfcon .sub {
  width: 194px;
  height: 194px;
  position: absolute;
  border: #ccc solid 1px;
  bottom: 83px;
  right: 47px;
  display: none;
}
#pfcon .div:hover i {
  display: block;
}
#pfcon .text {
  width: 133px;
  height: 105px;
  border: #cccccc solid 1px;
  background: #fff;
  padding: 10px 0 0 15px;
  font: 400 12px/18px "微软雅黑";
  color: #666;
  position: absolute;
  bottom: 66px;
  right: 47px;
  display: none;
}
#pfcon .qq {
  display: none;
  position: absolute;
  top: 0;
  right: 47px;
  width: 90px;
  height: 47px;
  background: url(../images/pf_qq.png);
  font: 400 14px/46px "微软雅黑";
  color: #fff;
  text-indent: 20px;
}

#lcpf {
  width: 50px;
  position: fixed;
  left: 50%;
  margin-left: -650px;
  top: 50%;
  margin-top: -200px;
  background: #fff;
}
#lcpf li {
  height: 44px;
  text-align: center;
  font: 400 16px/42px "微软雅黑";
  color: #ff6d2b;
  margin-top: -1px;
}
#lcpf li a {
  display: block;
  color: #ff6d2b;
  height: 42px;
  border: #d6d6d6 solid 1px;
}
#lcpf li a:hover {
  background: #ff8149;
  border: #ff8149 solid 1px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
#lcpf li a.hover {
  background: #ff8149;
  border: #ff8149 solid 1px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.classlist {
  border: #d7d7d7 solid 1px;
  font: 400 14px/35px "simsun";
  color: #666;
  margin-top: -1px;
}
.classlist h3 {
  float: left;
  width: 65px;
  font: 400 16px/35px "微软雅黑";
  text-align: right;
  padding-right: 5px;
}
.classlist .nr {
  float: left;
  width: 1100px;
}
.classlist a {
  display: block;
  float: left;
  margin-right: 25px;
  color: #666;
}
.classlist a:hover {
  color: #6078c5;
}
.classlist a.on {
  color: #6078c5;
}

#tpfbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg32.png);
  display: none;
}
.tpfcon {
  width: 500px;
  height: 275px;
  overflow-y: auto;
  margin: 30px auto;
  font: 400 14px/200% "微软雅黑";
  color: #666;
  padding: 20px;
  background: #fff;
}
.pfgb {
  border-bottom: #eb6600 solid 3px;
  height: 36px;
}
.pfgb em {
  display: inline-block;
  vertical-align: middle;
  border-radius: 50em;
  border: #ccc solid 1px;
  text-align: center;
  color: #333;
  width: 20px;
  line-height: 20px;
  float: right;
}
.pfgb h3 {
  display: inline-block;
  vertical-align: middle;
  font: bold 18px/36px "微软雅黑";
  color: #333;
  margin-left: 10px;
}

.wrap {
  width: 1200px;
  margin: 0 auto;
}
.undo {
  opacity: 0;
}
.overflow {
  overflow: hidden;
}
.fixtool {
  width: 0px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #1f87e8;
  z-index: 99999999;
  transition-duration: 0.5s;
}
.fixtool img {
  max-width: 100%;
}
.fixtool .fixbtn {
  width: 35px;
  min-height: 100px;
  margin: -70px 0 0 0;
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-family: "微软雅黑";
  line-height: 25px;
  position: absolute;
  top: 50%;
  left: -35px;
  background: #1f87e8;
  box-shadow: -4px 5px 1px -1px rgba(31, 135, 232, 0.6);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.fixtool .fixbox {
  width: 200px;
  height: 100%;
  padding: 50px 0 0 0;
  background: #1f87e8;
}
.fixtool:hover {
  transform: translate(-200px);
}
.fixtool .fixbox dl {
  margin: 15px 15px 0 15px;
  padding: 12px 0;
  border-bottom: 1px solid #66abea;
}
.fixtool .fixbox dl:last-child {
  border-bottom: 0;
}
.fixtool .fixbox dt {
  font-size: 18px;
  color: #abd7ff;
}
.fixtool .fixbox dd {
  line-height: 30px;
  padding: 5px 15px 0 5px;
  font-size: 14px;
  color: #fff;
}
.fixtool .fixbox dd a {
  padding: 5px;
  color: #fff;
}
.fixtool .fixbox .phoneNum dd {
  text-align: center;
  font-size: 18px;
}
.fixtool .fixbox .QQ a i {
  margin-right: 3px;
}
.fixtool .fixbox .QQ a:hover {
  text-decoration: none;
  background: #096fce;
}
.fixtool .fixbox dt .fix_kf {
  width: 28px;
  height: 28px;
  line-height: 28px;
  margin-right: 5px;
  text-align: center;
  color: #1f87e8;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}
.fixtool .fixbox .weixin img,
.fixtool .fixbox .webAPP img {
  width: 90px;
  margin-left: 29px;
}

@font-face {
  font-family: "kf";
  src: url("fonts/kf.eot");
  src: url("fonts/kf.eot?#iefix") format("embedded-opentype"),
    /*url('fonts/kf.woff') format('woff'),*/ url("fonts/kf.ttf")
      format("truetype"),
    url("fonts/kf.svg#kf") format("svg");
}

.fix_kf {
  font-family: "kf" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.form_skin {
  padding-top: 20px;
  text-align: center;
}
.form_skin .form_rows {
  width: 314px;
  margin: 0 auto 15px;
}
.form_skin .form_rows.form_links {
  margin-top: 15px; /* width: 100%; */
  padding: 6px 35px;
  text-align: left;
  overflow: hidden;
}
.form_skin input[type="text"],
.form_skin input[type="password"] {
  width: 300px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #ccc;
  background: none;
}
.form_skin input[type="checkbox"] {
  margin-right: 5px;
}
.form_skin input[type="submit"] {
  width: 314px;
  height: 40px;
  background: #f54f4f;
  color: #fff;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}
.form_skin input[type="text"].dtmm {
  width: 190px;
}
.form_skin .getDt_btn {
  width: 100px;
  height: 42px;
  line-height: 42px;
  margin-left: 10px;
  color: #fff;
  background: #f54f4f;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
}
.form_skin .getDt_btn {
}
.form_skin .form_rows.form_links a {
  margin-left: 18px;
  color: #b6130d;
  float: right;
}

.logo {
  width: 200px;
  min-height: 90px;
  background: rgba(100, 100, 100, 0.5);
  float: left;
}
.logo a {
  padding-top: 26px;
  display: block;
}
/*.logo a:after{content:"LOGO"; color:#fff; font-size:36px; line-height:90px; text-align:center; display:block;}*/
.logo img {
  width: 100%;
}

/* 通用头部 start */
.top {
  height: 30px;
  line-height: 30px;
  border-bottom: 1px solid #e2e2e2;
  background: #f5f5f5;
}
.top .leftWrap {
  color: #464646;
}
.top .leftWrap a {
  display: inline-block;
  background: url(../images/t_home.png) left 5px no-repeat;
  padding-left: 32px;
  margin: 0 18px 0 3px;
  color: #333;
}
.top .rightWrap li {
  display: inline-block;
}
.top .rightWrap li:after {
  content: "";
  width: 0;
  height: 20px;
  border-right: 1px solid #333;
}
.top .rightWrap li:last-child:after {
  border: none;
}
.top .rightWrap li a {
  margin: 0 10px;
  padding: 0 10px;
  color: #333; /*color:#da4546;*/
}

.header {
  /*height:90px;*/ /* background-color:#fe6d2c;*/
}
.header,
.header a {
  color: #fff;
  background: #fff;
}

.nav {
  line-height: 30px;
  padding-top: 30px;
  position: relative;
  z-index: 999999;
}
.nav > ul > li {
  width: 110px;
  padding: 0 5px 0 0;
  text-align: center;
  min-height: 45px;
  font-size: 16px;
  font-family: "微软雅黑";
  float: left;
  position: relative;
}
.nav > ul > li > .combo_box {
  position: absolute;
}
.nav > ul > li > .combo_box > ul:before {
  content: "";
  width: 0px;
  height: 0px;
  margin: -10px auto 0 auto;
  border-style: solid;
  border-width: 5px;
  border-color: transparent transparent transparent transparent;
  display: block;
}
.nav > ul > li > .combo_box > ul:hover:before {
  border-color: transparent transparent #05a045 transparent;
}
.nav > ul > li > a {
  transition-duration: 0.3s;
  color: #1f87e8; /*color:#da4546;*/
  display: block;
}
.nav > ul > li.active > a,
.nav > ul > li:hover > a {
  padding-bottom: 5px;
  text-decoration: none;
  color: #05a045;
  border-bottom: 2px solid #4ab344; /*color:#da4546;border-bottom:2px solid #da4546;*/
}
.nav .shang {
  float: right;
}
.nav .shang > ul > li {
  padding: 0 10px;
  float: left;
  position: relative;
  color: #000;
}
.nav .shang > ul > li a {
  color: #000;
  font-family: "微软雅黑";
}
.nav .shang > ul > li > .z_list {
  text-align: center;
  background: #fff;
  position: absolute;
}
.nav .shang h3 {
  color: #333; /* color:#da4546;*/
  cursor: default;
}
.nav .shang h3 i {
  width: 40px;
  height: 28px;
  background: url("../images/shang36-60.png") no-repeat;
  vertical-align: top;
  display: inline-block;
}
.nav .shang h3 i.caigou {
  background-position: 0 0;
}
.nav .shang h3 i.gongying {
  background-position: 0 -33px;
}
.nav .shang > ul > li > .z_list:before {
  content: "";
  width: 60%;
  height: 3px;
  background: #1f87e8;
  margin: 0 auto;
  display: block;
}
.nav .shang > ul > li:hover .z_list {
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.nav .shang > ul > li > .z_list a:hover {
  text-decoration: none;
  color: #05a045;
}
.cgdla {
  color: #4d70c7;
}

.combo_box,
.z_list {
  min-width: 100%;
  line-height: 40px;
  padding-top: 10px;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  display: none;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.combo_box > ul > li {
  display: block;
}
.combo_box > ul > li > a {
  color: #05a045; /*color:#da4546;*/
  text-decoration: none;
  display: block;
}
.combo_box > ul > li > a:hover {
  background: #4ab344; /*background:#da4546;*/
  color: #fff;
}
.nav > ul > li:hover .combo_box {
  display: block;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.header_search {
  margin-left: 95px;
  margin-left: 130px;
  padding-top: 51px;
  float: left;
  position: relative;
  width: 446px;
  z-index: 9999999;
}
.header_search .view_box {
  width: 375px;
  height: 35px;
  border: 2px solid #1f87e8; /*border:2px solid #da4546;*/
  border-left: 0;
  background: #fff;
  position: absolute;
}
.header_search input[type="text"] {
  width: 255px;
  height: 35px;
  border: 0;
  text-indent: 4px;
}
.header_search .submit {
  height: 39px;
  font-size: 14px;
  font-weight: bold;
  padding: 0 14px;
  background: #1f87e8; /*background:#da4546;*/
  border: none;
  color: #fff;
  float: right;
  transition-duration: 0.3s;
}
.header_search .submit:hover {
  background: #42a4ff;
}
/*.header_search .submit img{ height:23px; }*/

.select_m {
  color: #7f7f7f;
  font-family: "微软雅黑";
  background: #fff;
  border: 2px solid #1f87e8; /*border:2px solid #da4546;*/
  border-right: 2px solid #ccc;
  border-top: 0;
  position: relative;
  overflow: hidden;
  float: left;
}
.select_m:after {
  content: ">";
  position: absolute;
  top: 9px;
  right: 5px;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.select_m dd {
  height: 0;
  background: #fff;
  transition-duration: 0.3s;
}
.select_m input {
  width: 0;
  height: 0;
}
.select_m dt {
  cursor: default;
}
.select_m dt,
.select_m dd label {
  padding: 0 25px 0 15px;
  display: block;
}
.select_m dt,
.select_m:hover dd {
  height: 35px;
  line-height: 35px;
}
.select_m:hover {
  border-right: 2px solid #1f87e8; /*border-right:2px solid #da4546;*/
}
.select_m:hover dd {
}
.select_m dd:hover {
  background: #b9ddff;
}
.select_m:hover:after {
  transform: rotate(270deg);
}

.do_fabu,
.do_fabu a {
  color: #000;
}
.do_fabu {
  margin: 51px 0 0 15px;
  position: relative;
  z-index: 9999999;
}
.do_fabu h3 {
  padding: 9px 30px;
  background: #4caf50;
  color: #fff;
  transition-duration: 0.3s;
  cursor: pointer;
}
.do_fabu h3:hover {
  background: #388e3c;
}
.do_fabu > .fabu_list {
  width: 100%;
  line-height: 45px;
  text-align: center;
  background: #ffefca;
  box-shadow: 1px 1px 3px 0px #909090;
  display: none;
  position: absolute;
}
.do_fabu > .fabu_list a {
  display: block;
  transition-duration: 0.3s;
}
.do_fabu > .fabu_list a:hover {
  background: #a5d6a7;
  text-decoration: none;
}
/* 通用头部 end */

/* 通用底部 start */
.footer {
  min-height: 400px;
  background: #121212;
}
.footer .f_logo {
  width: 170px;
  padding: 65px 0;
}
.footer .f_logo img {
  width: 100%;
}
.footer .f_links {
  width: 1000px;
  padding: 65px 0;
  border-bottom: 1px solid white;
}
.footer .f_links > ul {
  margin-left: 90px;
  display: block;
}
.footer .f_links > ul li {
  margin-right: 60px;
  color: #fff;
  float: left;
}
.footer .f_links > ul li:last-child {
  margin-right: 0;
}
.footer .f_links > ul li h3 {
  line-height: 22px;
  margin-bottom: 10px;
  padding: 5px 0;
  font-weight: 500;
  font-size: 14px;
}
.footer .f_links > ul li p {
  padding: 4px 0;
}
.footer .f_links > ul li a {
  color: #888;
}
.footer .f_links > ul li a:hover {
  color: #bcbcbe;
}
.footer .footer_ewm {
  width: 100px;
}
.bt_zhdb {
  color: #999;
  text-align: center;
  width: 1200px;
  margin: 0 auto;
  padding: 0 0 10px 0;
}
.bt_zhdb div {
  min-height: 25px;
}
.bt_zhdb a {
  color: #999;
}
.bt_zhdh a {
  margin: 0 15px 0 15px;
  color: #999;
}
.bt_zhwl {
  text-align: left;
  font-size: 14px;
  margin: 0 0 10px 200px;
}
/* 通用底部 end */

/* 首页模块样式 */
.mod {
  margin-top: 15px;
}
.mod .mod_head {
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #ccc;
}
.mod .mod_head span {
  height: 48px;
  line-height: 48px;
  padding-right: 15px;
  font-size: 24px;
  font-family: PMingLiU;
  border-bottom: 3px solid #f13a3a;
  display: inline-block;
}
.mod .mod_head span i {
  font-size: 32px;
  color: #d81b43;
  margin-right: 15px;
  vertical-align: text-bottom;
}
.mod .mod_head img {
  height: 25px;
}
.mod .mod_head a {
  color: #626060;
  font-size: 14px;
  font-family: "微软雅黑";
  float: right;
}
.mod .mod_head a:hover {
  text-decoration: none;
}

.mod .mod_head1 {
  height: 50px;
  line-height: 50px;
  overflow: hidden;
}
.mod .mod_head1 span {
  height: 48px;
  line-height: 48px;
  padding-right: 15px;
  font-size: 20px;
  color: #c40000;
  font-family: PMingLiU;
  float: left;
}
.mod .mod_head1 span i {
  font-size: 32px;
  color: #c40000;
  vertical-align: text-bottom;
}
.mod .mod_head1 .red_sq {
  width: 5px;
  height: 9px;
  margin: 22px 14px 0 8px;
  background: #c40000;
  float: left;
  overflow: hidden;
}
.mod .mod_head1 .gray_sq {
  height: 9px;
  margin-top: 22px;
  background: #f5f5f5;
  overflow: hidden;
}

.mod .mod_head2 {
  height: 50px;
  line-height: 50px;
  border-bottom: 2px solid #c40000;
}
.mod .mod_head2 span {
  height: 50px;
  line-height: 50px;
  padding-right: 15px;
  font-size: 24px;
  font-family: PMingLiU;
  display: inline-block;
}
.mod .mod_head2 span i {
  width: 30px;
  height: 32px;
  margin-right: 5px;
  background: url(../images/cpgy-ico.png) center no-repeat;
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
}
.mod .mod_head2 img {
  height: 25px;
}
.mod .mod_head2 a {
  color: #626060;
  font-size: 14px;
  font-family: "微软雅黑";
  float: right;
}
.mod .mod_head2 a:hover {
  text-decoration: none;
}

.mod .mod_head3 {
  height: 50px;
  line-height: 50px;
  border: 1px solid #e5e5e5;
  border-top: 2px solid #c40000;
  border-bottom: 1px dashed #d9d9d9;
}
.mod .mod_head3 span {
  height: 50px;
  line-height: 50px;
  padding-right: 15px;
  font-size: 24px;
  font-family: PMingLiU;
  display: inline-block;
}
.mod .mod_head3 span i {
  width: 30px;
  height: 30px;
  background: url(../images/jstlzq-ico.png) center no-repeat;
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
}
.mod .mod_head3 img {
  height: 25px;
}
.mod .mod_head3 a {
  color: #a9a9a9;
  font-size: 14px;
  font-family: "微软雅黑";
  float: right;
}
.mod .mod_head3 a:hover {
  text-decoration: none;
}

.mod_head4 {
  border-bottom: 1px solid #ccc;
}
.mod_head4 span {
  height: 50px;
  line-height: 50px;
  padding-right: 15px;
  font-size: 24px;
  font-family: PMingLiU;
  border-bottom: 3px solid #c40000;
  display: inline-block;
}
.mod_head4 span i {
  color: #c40000;
}
.inlwtb {
  width: 30px;
  height: 32px;
  margin-right: 5px;
  background: url(../images/inlaowu.png) center no-repeat;
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
}
.ersbtb {
  width: 30px;
  height: 32px;
  margin-right: 5px;
  background: url(../images/essb.png) center no-repeat;
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
}
.mod .mod_head4 a {
  /*  margin-top: 20px;*/
  color: #626060;
  font-size: 14px;
  font-family: "微软雅黑";
  float: right;
}
.mod_head4 ul {
  margin: 20px 10px 0 0;
  float: right;
}
.mod_head4 ul li {
  margin-left: 10px;
  padding: 8px 13px;
  color: #fff;
  background: #1f87e8;
  float: left;
  transition-duration: 0.75s;
  cursor: pointer;
}
.mod_head4 ul li:hover,
.mod_head4 ul li.active {
  background: #05a045;
}

.mod .mod_act {
  padding: 30px 0 10px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.mod .mod_line {
  line-height: 28px;
  margin: 0 38px 0 68px;
  padding: 2px 0 24px 0;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mod .mod_line1 {
  font-weight: bold;
}
.mod .mod_act .mod_go {
  width: 227px;
  height: 49px;
  line-height: 49px;
  margin: 20px auto 0 auto;
  font-size: 20px;
  text-align: center;
  color: #4b4b4b;
  border: 1px solid #1f87e8; /*border:1px solid #da4546;*/
  display: block;
  animation-duration: 3s;
}
.mod .mod_act .mod_go:hover {
  background: #1f87e8; /*background: #da4546;*/
  color: #fff;
  text-decoration: none;
  animation-duration: 3s;
}
.mod_main {
  overflow: hidden;
}
.mod_main .mod_left {
  overflow: hidden;
}
.mod_main .mod_right {
  float: right;
  width: 360px;
  margin-left: 30px;
}
.mod_main .mod_left .mod_linkmod {
  height: 66px;
  line-height: 26px;
  background: #eee;
  overflow: hidden;
}
.mod_main .mod_left .mod_linkmod li {
  width: 20%;
  padding: 20px 0;
  text-align: center;
  float: left;
}
.mod_main .mod_left .mod_linkmod li a {
  font-size: 14px;
}
.mod_main .mod_left .mod_linkmod li a:hover {
  color: #d81b43;
  text-decoration: none;
}
.mod_main .mod_left .mod_linkmod li a:after {
  content: "";
  width: 60%;
  height: 2px;
  margin: 0 auto;
  background: #c00;
  transform: translateY(33px);
  opacity: 0;
  display: block;
  transition-duration: 0.3s;
}
.mod_main .mod_left .mod_linkmod li a:hover:after {
  transform: translateY(0px);
  opacity: 1;
}
.news_lists {
  margin-top: 15px;
}
.news_list {
  width: 380px;
  float: left;
}
.news_list .news_list_ul li:last-child {
  border-bottom: 0;
}
.news_list .news_list_title {
  height: 35px;
  line-height: 35px;
  padding-top: 10px;
  border-bottom: 2px solid #4ab344;
}
.news_list .news_list_title span {
  font-size: 16px;
  font-weight: 400;
  color: #4ab344;
}
.news_list .news_list_title a {
  color: #999999;
  float: right;
}
.news_list .news_list_title a:hover {
  color: #4ab344;
  text-decoration: none;
  transition-duration: 0.2s;
}
.news_list .news_list_ul {
  padding-bottom: 10px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  background: #f6f6f6;
}
.news_list .news_list_ul li {
  height: 46px;
  line-height: 46px;
  border-bottom: 1px dashed #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}
.news_list .news_list_ul li a {
  transition-duration: 0.2s;
}
.news_list .news_list_ul li a:hover {
  color: #4ab344;
  text-decoration: none;
  font-size: 15px;
}
.news_list .news_list_ul li:before {
  content: "";
  width: 16px;
  height: 16px;
  margin: 0 8px;
  background: url(../images/2000023.gif) no-repeat;
  display: inline-block;
}
.new_list2 {
  float: right;
}
.new_list2 .news_list_title {
  border-bottom: 2px solid #ff6637;
}
.new_list2 .news_list_title span {
  color: #ff6637;
}

.new_list2 .news_list_title a:hover {
  color: #ff6637;
}
.new_list2 .news_list_ul li:before {
  width: 22px;
  height: 14px;
  margin: 0 6px;
  background: url(../images/2000048.gif) no-repeat;
}
.new_list2 .news_list_ul li a:hover {
  color: #ff6637;
}

.new_list3 {
  width: 350px;
}
.new_list3 .news_list_title {
  height: 49px;
  padding-top: 0;
  border-bottom: 1px solid #ccc;
}
.new_list3 .news_list_title span {
  line-height: 46px;
  padding-right: 15px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 3px solid #076ce0;
  display: inline-block;
}
.new_list3 .news_list_title span i {
  width: 23px;
  height: 16px;
  padding: 0 5px;
  background: url(../images/2000038.gif) center no-repeat;
  display: inline-block;
}
.new_list3 .news_list_ul {
  background: none;
  border: none;
}
.new_list3 .news_list_ul li {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #e5e5e5;
}
.new_list3 .news_list_ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background: url(../images/2000139.gif) no-repeat;
  display: inline-block;
}
.new_list3 .news_list_ul li a {
  transition-duration: 0.3s;
}
.new_list3 .news_list_ul li a:hover {
  text-decoration: none;
  font-size: 15px;
  color: #42a5f6;
}

.new_list4 {
  width: 1240px;
  margin-left: -30px;
}
.new_list4 li {
  width: 353px;
  margin: 15px 0 0 30px;
  padding: 15px;
  background: #f7f7f7;
  float: left;
}
.new_list4 li h3 span {
  padding-left: 15px;
  color: #f00;
  text-align: right;
  float: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  width: 141px;
}
.new_list4 li h3 {
  height: 32px;
  line-height: 32px;
  margin-bottom: 5px;
  font-size: 16px;
}
.new_list4 li h3 a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.new_list4 li p {
  height: 26px;
  line-height: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.new_list5 {
  width: 1240px;
  margin-left: -30px;
}
.new_list5 li {
  width: 545px;
  margin: 10px 0 0 30px;
  padding: 15px;
  background: #f7f7f7;
  float: left;
}
.new_list5 li h3 span {
  color: #f00;
  text-align: right;
  float: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  width: 115px;
}
.new_list5 li h3 {
  height: 32px;
  line-height: 32px;
  margin-bottom: 5px;
  font-size: 16px;
}
.new_list5 li h3 a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.new_list5 li p {
  height: 35px;
  line-height: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sbimg {
  float: left;
  width: 148px;
  height: 100px;
  margin-right: 10px;
}

.fontred {
  color: red;
}
.index_laowu {
  font-size: 15px;
}
.spanright {
  float: right;
}

.caigoulist .caigoulist_child {
  width: 25%;
  min-height: 300px;
  margin: 20px 0 0 0;
  float: left;
  position: relative;
}
.caigoulist .caigoulist_child:before {
  width: 250px;
  height: 250px;
  font-size: 250px;
  color: #42a5f6; /*color:#da4546;*/
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -125px;
}

.youshi_title {
  line-height: 36px;
  margin: 30px auto 10px auto;
  text-align: center;
  color: #333333;
}
.youshi_title h1 {
  line-height: 40px;
  font-size: 30px;
  font-weight: normal;
}
.youshi_title p {
  color: #191f25;
  font-size: 14px;
}
.youshi_main {
  height: 600px;
  margin-bottom: 60px;
  position: relative;
}
.youshi_main .faisco-icons-shape12 {
  position: absolute;
}
.youshi_main .faisco-icons-shape12:before {
  width: 42px;
  height: 42px;
  font-size: 42px;
}
.youshi_main .yi1 {
  color: #ffcd48;
  top: 138px;
  left: 740px;
}
.youshi_main .yi2 {
  color: #3bd1da;
  top: 84px;
  left: 488px;
}
.youshi_main .yi3 {
  color: #3bda82;
  top: 284px;
  left: 363px;
}
.youshi_main .yi4 {
  color: #afda3b;
  top: 489px;
  left: 537px;
}
.youshi_main .yi5 {
  color: #e9a685;
  top: 415px;
  left: 744px;
}
.youshi_main .youshi {
  position: absolute;
}
.youshi_main .youshi h3 {
  font-size: 26px;
  font-weight: normal;
}
.youshi_main .youshi h3 i {
  font-size: 40px;
}
.youshi_main .youshi p {
  line-height: 21px;
  font-size: 14px;
  text-indent: 2em;
}
.youshi_main .y1 {
  top: 120px;
  left: 777px;
}
.youshi_main .y1 p {
  padding-left: 38px;
}
.youshi_main .y2 {
  top: 406px;
  left: 782px;
}
.youshi_main .y3 {
  top: 6px;
  left: 288px;
}
.youshi_main .y3 h3 {
  padding-left: 28px;
}
.youshi_main .y4 {
  top: 246px;
  left: 124px;
}
.youshi_main .y5 {
  top: 480px;
  left: 270px;
}
.youshi_main .youshi_logo {
  position: absolute;
  top: 133px;
  left: 454px;
}

.laowuxinxi_list {
  font-size: 14px;
  overflow: hidden;
}
.laowuxinxi_list li {
  margin-top: -1px;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  position: relative;
}
.laowuxinxi_list .row1 {
  line-height: 23px;
}
.laowuxinxi_list .row1 a {
  padding: 5px 10px;
  color: #333;
  transition-duration: 0.3s;
}
.laowuxinxi_list .row1 a:hover {
  color: #1f87e8;
  text-decoration: none;
}
.laowuxinxi_list .row2 {
  line-height: 23px;
  padding: 5px 0;
}
.laowuxinxi_list .row2 > div {
  overflow: hidden;
}
.laowuxinxi_list .row2 span {
  margin-left: -1px;
  padding: 0 10px;
  border-left: 1px solid #ccc;
}
.pay_txt {
  color: #fe6d2c;
  font-size: 16px;
}
.laowuxinxi_list .row3 {
  line-height: 23px;
  padding: 5px 0;
  color: #999;
}
.laowuxinxi_list .row3 > div {
  overflow: hidden;
}
.laowuxinxi_list .row3 span {
  margin-left: -1px;
  padding: 0 10px;
  border-left: 1px solid #ccc;
}
.pay_txt {
  color: #2b78bf;
  font-size: 16px;
}
.laowuxinxi_list .btn_abs {
  width: 300px;
  height: 45px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  opacity: 0;
  display: none\9;
  transition-duration: 0.3s;
}
.laowuxinxi_list .btn_abs a {
  height: 35px;
  line-height: 35px;
  padding: 0 35px;
  background: #1f87e8;
  color: #fff;
  border-radius: 5px;
  transition-duration: 0.3s;
}
.laowuxinxi_list .btn_abs a:hover {
  background: #1575d0;
  text-decoration: none;
}
.laowuxinxi_list li:hover .btn_abs {
  opacity: 1;
  display: block\9;
}

/* 子页面 */
.z_main_wrap {
  width: 1180px;
  margin: 0 auto;
}
/* 采购信息列表 */
.info_list1 {
}
.info_list1 li {
  width: 372px;
  height: 320px;
  padding: 30px 10px 0 10px;
  font-size: 14px;
  float: left;
}
.info_list1 li .l_wrap {
  /* margin:7px;*/ /*padding:10px 10px 0 10px;*/
  color: #666;
  border: 1px solid #ebecec;
  background: #fff;
  position: relative; /* transition-duration:.2s;*/
}
.info_list1 li .l_wrap_btn {
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-top: 1px solid #ebecec;
  color: #fff;
  background: #16ad22;
  display: none;
}
.info_list1 li .l_wrap:hover {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.45); /* transform:translateY(-2px);*/
  z-index: 100000;
}
.info_list1 li .l_wrap:hover .l_wrap_btn {
  text-decoration: none;
  display: block;
}
.l_wrap h3 {
  height: 23px;
  line-height: 24px;
  padding: 15px 10px 15px 10px;
  font-size: 16px;
  font-weight: normal;
  background: #e9e9e9;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; /*border-bottom:1px solid #ccc;*/
}
.l_wrap h3 a {
  font-size: 20px;
  font-weight: 700;
  color: #444444;
}
.l_wrap p {
  padding: 1px 0;
}
.l_wrap em {
  color: #6087e4;
}
.l_wrap .attr {
  margin: 10px 10px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ebecec;
}
.cgys em {
  font-size: 16px;
  vertical-align: baseline;
}
.spcglf {
  width: 49%;
  float: left;
}
.spcgri {
  width: 49%;
  border-left: 1px solid #ccc;
  text-align: right;
  float: right;
}
.jianjie {
  padding: 5px 10px 10px 10px;
}
.jianjie p {
  padding: 4px 0;
}
.new_list3 {
  width: 350px;
}
.new_list3 .news_list_title {
  height: 49px;
  padding-top: 0;
  border-bottom: 1px solid #ccc;
}
.new_list3 .news_list_title span {
  line-height: 46px;
  padding-right: 15px;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 3px solid #076ce0;
  display: inline-block;
}
.new_list3 .news_list_title span i {
  width: 23px;
  height: 16px;
  padding: 0 5px;
  background: url(../images/2000038.gif) center no-repeat;
  display: inline-block;
}
.new_list3 .news_list_ul {
  height: 313px;
  overflow: hidden;
  background: none;
  border: none;
}
.new_list3 .news_list_ul li {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #e5e5e5;
}
.new_list3 .news_list_ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 8px;
  background: url(../images/2000139.gif) no-repeat;
  display: inline-block;
}
.new_list3 .news_list_ul li a {
  transition-duration: 0.3s;
}
.new_list3 .news_list_ul li a:hover {
  text-decoration: none;
  font-size: 15px;
  color: #42a5f6;
}

/*注册优势宣传*/
.zcyous {
  font-size: 17px;
  text-indent: 2em;
  color: #1b6687;
  line-height: 37px;
}
.ystit {
  font-size: 20px;
  color: #000000;
  margin-top: 10px;
}
.pzcys1 {
  color: #fe6d2c;
  padding: 10px 0 0 30px;
  font-size: 25px;
}
.pzcys2 {
  color: #fe6d2c;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}
.pzcys3 {
  color: red;
  padding: 10px 0 20px 70px;
  font-size: 25px;
  border-bottom: #795548 1px dashed;
}
.pzcys4 {
  padding: 20px 0 0 20px;
  font-size: 20px;
}
.dzcys1 {
  background: #eaeaea;
}
.dzcys2 {
  float: right;
  margin-top: 35px;
  margin-right: 80px;
  width: 300px;
  height: 500px;
}
.jianjie .lxftime {
  text-align: center;
}
.l_wrap .jianjie .tim {
  height: 53px;
  font: 400 14px/46px "微软雅黑";
  color: #444;
}
.l_wrap .jianjie .tim span {
  display: inline-block;
  vertical-align: middle;
  min-width: 25px;
  height: 21px;
  background: #42ad2e;
  border-radius: 3px;
  color: #fff;
  margin: 0 8px 0 5px;
  line-height: 20px;
}
.count_down {
  text-align: center;
}
.count_down em {
  font-size: 18px;
}
/*****************
* 内页样式
* created by wsl
* 2018-10-30 22:20:00
*****************/

/* 采购信息详情 start */
body {
  background: #f5f5f5;
}
.top_ad {
  height: 100px;
  background: #002240;
}
.top_ad img {
  width: 1200px;
  height: 100px;
}
.container_wrap {
  width: 1200px;
  overflow: auto;
  min-height: 400px;
  margin: 30px auto;
}
.top_ad .container_wrap {
  margin: 0 auto;
}
.container_wrap .warp_left {
  width: 1100px;
  padding: 16px 24px;
  border: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
}
.warp_left h1 {
  margin-bottom: 28px;
  padding: 0 0 0 10px;
  font-size: 22px;
  color: #333;
  font-weight: normal;
  border-left: 5px solid #496ab4;
}
.warp_left .pb {
  padding: 27px;
  position: absolute;
  top: 0;
  right: 0;
  color: #4a6ab5;
}
.warp_left .pb a {
  margin: 0 5px;
  color: #4a6ab5;
}
.dl_tpl1 {
  line-height: 24px;
  padding: 0 0 2px;
  font-size: 16px;
  display: block;
}
.dl_tpl1 dt,
.dl_tpl1 dd {
  display: inline-block;
}
.dl_tpl1 dt {
  width: 115px;
  vertical-align: top;
}
.dl_tpl1 dd {
  max-width: 440px;
}
.dl_tpl1 .fj {
  display: block;
  float: right;
  margin-right: 10px;
  width: 80px;
  height: 30px;
  background: #4d70c7;
  text-align: center;
  font: 400 12px/30px "微软雅黑";
  color: #fff;
}
.info_group {
  padding-top: 15px;
}
.info_group > h3 {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 400;
}
.info_group .info_art {
  line-height: 24px;
}
.info_group .info_art span {
  font-size: 15px;
}
.bq_baojiao {
  width: 371px;
  height: 71px;
  position: absolute;
  top: 78px;
  right: -7px;
  background: url(../images/bq.jpg) no-repeat;
}
.bq_baojiao .bj_btn {
  width: 100px;
  height: 36px;
  line-height: 36px;
  margin: 13px 0 0 50px;
  text-align: center;
  color: #4a6ab5;
  border-radius: 4px;
  background: #ecf5fe;
  display: inline-block;
}
.bq_baojiao .bj_btn:hover {
  text-decoration: none;
}
.bq_baojiao .bj_btn .disasbled {
  background: #9a9a9a;
  color: #fff;
  cursor: default;
}
.bq_baojiao .succ {
  background: #4ab344;
  color: #fff;
  cursor: default;
}
.bq_baojiao .bj_time {
  padding: 0px 11px 0 20px;
  vertical-align: middle;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  overflow: hidden;
}
.bq_baojiao .bj_time b {
  color: #fff93b;
  font-size: 16px;
}
.replay_box h2 {
  padding: 15px 0;
  color: #333;
  font-weight: bold;
  font-size: 18px;
}

@font-face {
  font-family: "pro-lock";
  src: url("fonts/pro-lock.eot");
  src: url("fonts/pro-lock.eot?#iefix") format("embedded-opentype"),
    url("fonts/pro-lock.woff") format("woff"),
    url("fonts/pro-lock.ttf") format("truetype"),
    url("fonts/pro-lock.svg#pro-lock") format("svg");
}

.pro-lock {
  font-family: "pro-lock" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.nologin {
  padding: 40px 0;
  text-indent: 2em;
  text-align: center;
  border: 1px dashed #e5e5e5;
}
.nologin .pro-lock {
  padding-right: 5px;
  font-size: 14px;
}

/* 留言板 */
.msg_list {
  border: 1px solid #e5e5e5;
}
.msg_list > ul > li {
  line-height: 24px;
  margin: 0 14px;
  padding: 15px 5px;
  border-bottom: 1px solid #ccc;
}
.msg_list > ul > li:last-child {
  border-bottom: 0;
}
.msg_list > ul > li > .ly_wrap > .lz {
  font-size: 13px;
  font-weight: normal;
  position: relative;
}
.msg_list > ul > li > .ly_wrap > .lz > .lz_tx {
  width: 85px;
  margin-right: 10px;
  float: left;
}
.msg_list > ul > li > .ly_wrap > .lz > .lz_tx > img {
  width: 65px;
  height: 65px;
  line-height: 45px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #ccc;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}
.msg_list > ul > li > .ly_wrap > .lz > .lz_tx p {
  line-height: 14px;
  margin-top: 8px;
  padding: 4px 0;
  text-align: center;
  color: #333;
  font-size: 12px;
}
.msg_list > ul > li > .ly_wrap > .lz > .lz_val {
  padding: 10px 5px;
  display: block;
  overflow: hidden;
}
.msg_list > ul > li > .ly_wrap > .lz > .lz_time {
  /*line-height:48px;*/
  padding: 10px 5px;
  font-size: 14px;
  float: right;
  color: #888787;
}
.msg_list > ul > li > .ly_wrap > .lz .doDelete {
  position: absolute;
  top: 36px;
  right: 15px;
  padding: 0 10px;
  color: #2fbaff;
  border: 1px solid #2fbaff;
  opacity: 0;
  display: none\9;
  transition-duration: 0.3s;
}
.msg_list > ul > li > .ly_wrap > .lz:hover .doDelete {
  opacity: 1;
  display: block\9;
}
.msg_list .doDelete:hover {
  background: #2fbaff;
  color: #fff !important;
  text-decoration: none;
}

.msg_list > ul > li > .ly_wrap > .z_msg {
  line-height: 21px;
  font-size: 14px;
  margin: 10px 0px;
  padding: 10px 15px 10px 65px; /* border-top:1px solid #efefef; */
  background: #f6fcff;
  border-radius: 8px;
}
.msg_list > ul > li > .ly_wrap > .z_msg li {
  line-height: 21px;
  padding: 5px;
  border-bottom: 1px dashed #efefef;
  overflow: hidden;
}
.msg_list > ul > li > .ly_wrap > .z_msg li:last-child {
  border-bottom: 0;
}
.msg_list > ul > li > .ly_wrap > .z_msg .z_tx {
  width: 35px;
  margin: 0 5px 0 25px;
  border-radius: 50%;
  text-align: center;
  float: left;
}
.msg_list > ul > li > .ly_wrap > .z_msg .z_tx img {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #ccc;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}
.msg_list > ul > li > .ly_wrap > .z_msg .z_val {
  padding: 7px;
  display: block;
  overflow: hidden;
}
.msg_list > ul > li > .ly_wrap > .z_msg .time {
  color: #888787;
  float: right;
}
.f_blue {
  color: #076ce0;
}
.msg_list .f_blue {
  padding-right: 5px;
}
.msg_list .z_reply {
  margin-top: 15px;
  padding: 0 12px;
  color: #999;
  border: 1px solid #ccc;
  float: right;
  transition-duration: 0.3s;
}
.msg_list .z_reply:hover {
  color: #fff;
  text-decoration: none;
  background: #2fbaff;
  border: 1px solid #2fbaff;
}
.msg_list > ul > li > .ly_wrap > .z_msg .doDelete {
  margin: 15px 15px 0 0;
  padding: 0 10px;
  color: #2fbaff;
  border: 1px solid #2fbaff;
  opacity: 0;
  display: none\9;
  transition-duration: 0.3s;
}
.msg_list > ul > li > .ly_wrap > .z_msg li:hover .doDelete {
  opacity: 1;
  float: right;
}
.msg_list > ul > li > .ly_wrap > .z_msg li .doDelete:hover {
  background: #2fbaff;
  color: #fff;
  text-decoration: none;
}

.lyban_page .content,
.lyban .content {
  height: 44px;
  line-height: 22px;
  padding: 5px;
  outline: none;
  overflow: auto;
  background: #fff;
  border: 3px solid #5bb5ff;
}
.lyban_page .content {
  height: 66px;
  border-color: #fbb166;
}
.lyban_page .submit_ly,
.lyban .submit_ly {
  margin-top: 5px;
  padding: 3px 10px;
  border: 1px solid #5bb5ff;
  background: #69bbff;
  color: #fff;
  transition-duration: 0.3s;
}
.lyban_page .submit_ly {
  border-color: #fbb166;
  background: #fbb166;
}
.lyban_page .submit_ly:hover,
.lyban .submit_ly:hover {
  text-decoration: none;
  background: #8bcaff;
}
.lyban_page .submit_ly:hover {
  background: #ffc589;
}
.msg_list > ul > li > .ly_wrap > .reply {
  margin-top: 5px;
  padding: 3px 10px;
  border: 1px solid #ffb52a;
  background: #fff;
  color: #ffb52a;
  float: right;
  transition-duration: 0.3s;
}
.msg_list > ul > li > .ly_wrap > .reply:hover {
  border: 1px solid #ffb52a;
  background: #ffb52a;
  color: #fff;
  text-decoration: none;
}
.msg_list > ul > li > .lyban {
  margin: 15px 0px;
}
.z_msg .lyban {
  margin: 15px 0 15px 35px;
}
.showBQList {
  position: relative;
  float: right;
  overflow: hidden;
}
.showBQList > img {
  margin: 10px 10px 0 0;
}
.showBQ_wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 35px 0 0 -360px;
}
.showBQ_zW {
  width: 400px;
  height: 200px;
  background: #fff;
}
.showBQ_zW li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  float: left;
  cursor: pointer;
}
/* 采购信息详情 end */

.container_wrap .warp_right {
}
.warp_right .r_title {
  line-height: 35px;
  padding: 0 0 10px 0;
}
.warp_right .r_title h2 {
  font-weight: normal;
  color: #aaa;
}
.r_list li {
  width: 220px;
  margin-bottom: 10px;
  padding: 0 0 10px 0;
  border: 1px solid #ccc;
  background: #fff;
}
.r_list li > .r_top {
  padding: 20px 14px 10px 14px;
  background: #f7f7f7;
}
.r_list li > .r_top a {
  line-height: 20px;
  padding: 0 0 10px 0;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  display: block;
}
.r_list li > p {
  padding: 5px 14px;
}
.r_list b {
  color: #4a6ab5;
}
.info_art pre {
  font: 14px/1.5 "微软雅黑";
  margin-left: 36px;
  word-wrap: break-word;
  white-space: pre-wrap;
}
/*.fankui_form ,.jubao_form{ display:none; }*/
.label6,
.label12 {
  display: inline-block;
  height: 35px;
  line-height: 35px;
}
.label6 {
  width: 49%;
}
.label12 {
  width: 100%;
}
.label12 input[type="text"] {
  width: 324px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.caigoual {
  font-size: 16px;
}
.caigoual {
  color: #3f51b5;
}
.layui-layer-btn-c {
  padding-top: 1px;
  padding-bottom: 30px;
}
.layui-layer-btn .layui-layer-btn1 {
  border-color: #4898d5;
  background-color: #2e8ded;
  color: #fff;
}
.sjh {
  color: #03a9f4;
}
#box {
  position: relative;
  width: 202px;
  height: 502px;
  background: #fff;
  border-radius: 5px;
  border: 8px solid #fff;
  margin: 10px auto;
}

#box .list {
  position: relative;
  width: 200px;
  height: 500px;
  overflow: hidden;
  border: 1px solid #ccc;
}

#box .list span {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 500px;
  opacity: 0;
  transition: opacity 0.5s linear;
}

#box .list span.current {
  opacity: 1;
}

#box .count {
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 999;
}

#box .count span {
  color: #fff;
  float: left;
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin-right: 5px;
  overflow: hidden;
  background: #555;
  opacity: 0.7;
  border-radius: 20px;
}

#box .count span.current {
  color: #fff;
  opacity: 0.7;
  font-weight: 700;
  background: #dfdfdf;
}
.tishi {
  margin-top: 15px;
  color: red;
  font-size: 14px;
  width: 380px;
  float: left;
  text-align: center;
}
.gaoji3 {
  background: url(/public/gjrz30.png) no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
}
/*分页*/
#pages {
    text-align: center;
    margin-top: 20px;
}

#pages li {
    margin: 0 2px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #e6e6e6;
    color: #333;
    display: inline-block;
}
#pages li a{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li span{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li.active {
    text-align: center;
    background: #07a3f1;
    color: #fff;
    display: inline-block;
}

#pages li:hover {
    background: #07a3f1;
}

#pages li:hover a {
    color: #fff;
}