@charset "UTF-8";
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  /*苹果IOS设备调整后会自动调整文字的大小，按照苹果的意图是为了提升用户体验，比如竖屏状态下是14px，转换为横屏时就变成了20px，把text-size-adjust:100%就不会调整字体大小了。*/
  /*如果把值设置为'text-size-adjust:none'，那么就会导致用户无法放大缩小字体了。*/ }

/*修复浏览器默认边距，统一效果*/
body {
  margin: 0; }

/*修复 IE 8/9，HTML5新元素不能正确显示的问题，定义为block的元素*/
/*修复 IE 10/11，details 和 summary 定义为 block 的元素*/
/*修复 IE 11，main定义为 block 的元素*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

/*修复 IE 8/9，HTML5新元素不能正确显示的问题，定义为inline-block元素*/
/*修复Chrome, Firefox, 和Opera的progress元素没有以baseline垂直对齐*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/*对不支持controls属性的浏览器，audio元素给以隐藏*/
/*移除iOS5设备中多余的高度*/
audio:not([controls]) {
  display: none;
  height: 0; }

/*修复 IE 7/8/9，Firefox 3 和 Safari 4 中hidden属性不起作用的问题 */
/*在 IE，Safari，Firefox 22- 中隐藏template元素*/
[hidden],
template {
  display: none; }

/*去掉 IE 10+ 点击链接时的灰色背景*/
a {
  background-color: transparent; }

/*去掉点击时的outline焦点框，同时保证使用键盘可以显示焦点框，这个操作针对所有浏览器*/
a:active,
a:hover {
  outline: 0; }

/*修正abbr元素在 Firefox 外其他浏览器没有下划线的问题*/
abbr[title] {
  border-bottom: 1px dotted; }

/*Firefox3+，Safari4/5 和 Chrome 中统一设置为粗体*/
b,
strong {
  font-weight: bold; }

/*修正 Safari5 和 Chrome 中没有样式的问题*/
dfn {
  font-style: italic; }

/*修复 Firefox 4+，Safari 5 和 Chrome 中section和article内的h1字体大小*/
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*修复 IE 6/9， Safari 5 和 Chrome中样式不呈现的问题*/
mark {
  background: #ff0;
  color: #000; }

/*在所有浏览器中统一small的字体大小*/
small {
  font-size: 80%; }

/*防止所有浏览器中的sub和sup影响行高*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/*去除 IE6-9 和 Firefox 3 中a内部img元素默认的边框*/
img {
  border: 0; }

/*修正所有浏览器中颜色不继承的问题*/
/*修正所有浏览器中字体不继承的问题*/
/*修正 Firefox 3+， Safari5 和 Chrome 中外边距不同的问题*/
/*有一些浏览器会把form表单中的一些元素 textarea，text，button，select
中的字体和字体颜色默认会设置成用户的字体或者是浏览器的字体，并不会从父元素继承，所以这里重置了这些元素的默认样式。*/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*在 IE 8/9/10/11里的button默认的overflow是hidden，这里统一为visible*/
/*统一 IE 8/9/10/11 overflow属性为visible*/
button {
  overflow: visible; }

/*统一各浏览器text-transform不会继承的问题*/
button,
select {
  text-transform: none; }

/*这里将可点击的按钮，统一设置鼠标样式为pointer，提高了可用性*/
/*避免 Android 4.0.* 中的 WebKit bug ，该bug会破坏原生的audio和video的控制器*/
/*更正 iOS 中无法设置可点击的input的问题*/
/*统一其他类型的input的光标样式*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*重置按钮禁用时光标样式*/
button[disabled],
html input[disabled] {
  cursor: default; }

/*移除 Firefox 4+ 的内边距*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*Firefox浏览器会默认设置input[type=”button”]的行高为normal !important，这里统一样式*/
/*统一设置行高为normal*/
input {
  line-height: normal; }

/*修正 IE 8/9 box-sizing 被设置为content-box的问题*/
/*移除 IE 8/9 中多余的内边距*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*修正 Chrome 中 input [type="number"] 在特定高度和 fonts-size 时,下面一个箭头光标变成cursor: text 效果*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/*修正 Safari 5 和 Chrome 中appearance被设置为searchfield的问题*/
/*修正 Safari 5 和 Chrome 中box-sizing被设置为border-box的问题*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/*移除原生默认样式，统一search的输入框样式*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*移除 IE8-11 中默认的垂直滚动条*/
textarea {
  overflow: auto; }

/*删除表单元间的间距。*/
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.clearfix {
  *zoom: 1;
  /*IE/7/6*/ }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

/**
 * 文本对齐方式，左中右两端
 */
.tl {
  text-align: left !important; }

.tc {
  text-align: center !important; }

.tr {
  text-align: right !important; }

/**
 * 文本强制不换行
 */
.text_nowrap {
  white-space: nowrap;
  word-wrap: normal; }

/**
 * 文本强制换行
 */
.text_break {
  white-space: normal;
  word-wrap: break-word; }

/**
 * 文字溢出显示省略号
 * 1. Opera 9-10.6
 * 2. Chrome 21+ bug https://bugs.webkit.org/show_bug.cgi?id=121902
 */
.text_ellipsis {
  display: block;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  /* 1 */
  text-overflow: ellipsis;
  text-align: left;
  /* 2 */ }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.noselect * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.hide {
  display: none; }

.w {
  width: 1200px;
  margin: 0 auto;
  box-sizing:border-box }

.no_before:before {
  display: none !important; }

.no_after:after {
  display: none !important; }

.no_mt {
  margin-top: 0 !important; }

.no_mr {
  margin-right: 0 !important; }

.no_mb {
  margin-bottom: 0 !important; }

.no_ml {
  margin-left: 0 !important; }

.no_bt {
  border-top: 0 !important; }

.no_br {
  border-right: 0 !important; }

.no_bb {
  border-bottom: 0 !important; }

.no_bl {
  border-left: 0 !important; }

/*
 * 1. 10px = 1em = 100% = 8pt
 * 2. 防止 iOS 横屏字号放大，同时保证在PC上 zoom 功能正常
 */
html {
  font-size: 62.5%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /*2*/
  -webkit-text-size-adjust: 100%;
  /*2*/
  text-size-adjust: 100%;
  /*2*/ }

/*字体设置*/
body {
font-size:12px;
line-height:1.5;
font-family:"Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif; }

/*
 * 1. dt 默认没边距
 * 2. li 默认没边距
 * 3. code 默认没边距
 * 4. th,td 默认padding:1px
 */
body, dl, dd,
ul, ol,
h1, h2, h3, h4, h5, h6, pre,
form, fieldset, legend, input, textarea, optgroup,
p, blockquote, figure, hr, menu, dir,
thead, tbody, tfoot, th, td, button {
  margin: 0;
  padding: 0; }

/*
 * 2. 修复表单元素不能继承字体样式
 */
input, select, button, textarea {
  font: 12px/1.5 tahoma,arial,\5b8b\4f53;
  outline: none; }

input, select, textarea {
  font-size: 100%; }

/*
 * 2.去掉 IE 10+ 点击链接时的灰色背景
 */
a:active {
  background-color: transparent;
  /*2*/ }

/**
 * 去掉列表前的标识, li会继承
 */
ul, ol {
  list-style-type: none;
  list-style-image: none; }

/*
 * 定义各浏览器显示一致的样式
 */
fieldset {
  border: 0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. 修正 IE 6-9 中颜色不能继承的问题
 * 2. 修正 Firefox3 中文字不换行的问题
 * 3. 修正 IE6-7 中怪异的对齐方式
 */
legend {
  border: 0 none;
  /* 1 */
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/*
 * 斜体扶正
 */
address, cite, dfn, em, var, i {
  font-style: normal; }

/*
 * 重置标题，采用自定义
 */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 500; }

/*头部背景*/
a {
  text-decoration: none;
  color: #666;
  cursor: pointer; }
  a:hover {
    color: #2DA569; }

body {
  color: #666;
  background-color: #fff; }

.fr {
  float: right;
  *display: inline; }

.fl {
  float: left;
  *display: inline; }

#totop {
  width: 65px;
  height: 65px;
  border-radius: 65px;
  background-color: #ddd;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 100px;
  box-shadow: 0 0 8px rgba(0,0,0,.1)
  z-index: 1000; }
  #totop a {
    display: block;
    width: 23px;
    height: 13px;
    margin: 26px auto 0;
    background: url(../img/sprite_totop.png) no-repeat; }

#totop:hover {
  background-color: #2DA569; }

.top_bar {
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e4e4e4;
  font-family: SimSun, serif; }

.go_index {
  margin-right: 38px; }

.small_logo {
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: -4px; }

.top_bar_right li {
  float: left;
  height: 30px;
  padding: 0 2px; }
  .top_bar_right li:hover .link_text {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(100, 100, 100, 0.3);
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.3); }
  .top_bar_right li:hover .link_arrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .top_bar_right li:hover .pull_down_content {
    display: block; }

#username {
  margin-right: 10px; }

.top_bar_right li.line {
  width: 1px;
  height: 12px;
  margin-top: 9px;
  padding: 0;
  background: #ddd;
  overflow: hidden; }

.top_bar_right .pull_down {
  position: relative;
  z-index: 13; }

.top_bar_right .link_item {
  position: relative;
  cursor: default;
  zoom: 1; }

.top_bar_right .link_text {
  float: left;
  padding-left: 8px;
  padding-right: 25px; }

.pull_down_content {
  display: none;
  position: absolute;
  top: 30px;
  left: 2px;
  padding: 10px;
  height: auto;
  font-size: 12px;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(100, 100, 100, 0.3);
  box-shadow: 0 4px 5px rgba(100, 100, 100, 0.3); }

.head2 .pull_down_content {
  width: 189px; }

.pull_down_content .user_head_top {
  border-bottom: 1px dashed #e4e4e4; }
  .pull_down_content .user_head_top .user_head_top_img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 30px;
    display: block;
    overflow: hidden; }
    .pull_down_content .user_head_top .user_head_top_img img {
      width: 60px;
      height: 60px;
      border-radius: 30px; }
  .pull_down_content .user_head_top div {
    width: 116px; }
    .pull_down_content .user_head_top div h3 {
      font-size: 14px;
      line-height: 1.4; }

.pull_down_content .user_message {
  padding-top: 6px; }
  .pull_down_content .user_message h3 {
    padding-bottom: 3px;
    font-size: 14px;
    line-height: 1.4; }
    .pull_down_content .user_message h3 a {
      color: #f60; }
  .pull_down_content .user_message div > a {
    float: left;
    width: 50%;
    padding: 0;
    height: 20px;
    line-height: 20px; }
    .pull_down_content .user_message div > a i {
      color: #2DA569; }

.top_bar_right .link_arrow {
  display: block;
  position: absolute;
  top: 12px;
  right: 8px;
  height: 5px;
  width: 10px;
  overflow: hidden;
  transition: transform .1s ease-in 0s;
  -webkit-transition: -webkit-transform .1s ease-in 0s;
  background: url(../Images/sprite_link_arrow.png) no-repeat; }

.link_buy {
  padding: 0 8px; }
  .link_buy i {
    color: #2DA569;
    padding: 0 2px; }

.head4 .pull_down_content {
  width: 90px; }
  .head4 .pull_down_content a {
    display: block;
    height: 20px;
    line-height: 20px;
    overflow: hidden; }

.head5 .pull_down_content a, .head6 .pull_down_content a {
  width: 85px;
  height: auto;
  display: block;
  text-align: center; }
  .head5 .pull_down_content a img, .head6 .pull_down_content a img {
    width: 100%;
    display: block;
    margin: 0 auto; }
  .head5 .pull_down_content a i, .head6 .pull_down_content a i {
    display: block;
    line-height: 20px; }

.module_login span {
  color: #f60; }

.header {
  width: 100%;
  height: 80px;
  padding: 15px 0;
  text-align: center;
  background: #fff; }

.icon_logo {
  height: 80px;
  max-height: 80px;
  overflow: hidden; }
  .icon_logo img {
    display: inline-block;
    max-width: 100%;
    height: 100%;
    vertical-align: top;
    margin-right: 10px; }
  .icon_logo span {
    font-size: 20px;
    font-weight: 700;
    line-height: 80px; }

.search {
  width: 470px;
  height: 57px;
  padding-top: 22px;
  text-align: left;
  position: relative;
  z-index: 12; }

.search_form {
  height: 32px;
  padding: 0;
  margin: 0;
  line-height: 32px;
  overflow: hidden; }

.search_input {
  display: inline-block;
  width: 372px;
  height: 16px;
  padding: 6px 7px;
  color: #999;
  outline: none;
  vertical-align: top;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  border-color: #2DA569;
  border-right: 0; }

.search_btn {
  display: inline-block;
  width: 80px;
  height: 32px;
  border: 0;
  color: #fff;
  font-size: 14px;
  background: #2DA569;
  cursor: pointer;
  outline: none;
  font-family: 微软雅黑;
  letter-spacing: 16px;
  text-align: right;
  *text-align: center;
  -moz-transition: background 0.2s ease;
  /* Firefox 4 */
  -webkit-transition: background 0.2s ease;
  /* Safari 和 Chrome */
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease; }
  .search_btn:hover {
    background: #2b9d64; }

.nav_box {
  width: 100%;
  height: 40px;
  border-bottom: 2px solid #28915c; }

.nav_box_inner {
  position: relative;
  z-index: 9; }

.nav_h2 {
  position: relative;
  z-index: 10;
  width: 210px;
  height: 40px;
  overflow: visible;
  background: #28915c; }
  .nav_h2 h2 > a {
    display: block;
    padding-left: 10px;
    line-height: 42px;
    font-size: 15px;
    color: #fff; }

.nav_wrap {
  height: 400px;
  background: #2DA569; }

.nav_subnav {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 10;
  width: 209px;
  height: 400px;
  border: 1px solid #2DA569;
  border-top: 0;
  border-right: 0; }
  .nav_subnav > li > a {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 2.2;
    height: 2.2em;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #2DA569;
    color: #fff; }
    .nav_subnav > li > a:after {
      position: absolute;
      top: 0;
      right: 10px;
      float: right;
      content: ">";
      font-family: SimSun,\5B8B\4F53; }
  .nav_subnav > li > a:hover {
    background: #fff;
    color: #2DA569; }

.nav_subnav_item {
  position: absolute;
  top: 42px;
  left: 209px; }

.subnav_list {
  min-width: 1070px;
  padding-right: 20px;
  height: 400px;
  display: none;
  background-color: #fff;
  border: 1px solid #2DA569;
  border-top: 0;
  border-left: 0;
  overflow: hidden; }

.subnav_list_title h4 {
  padding-left: 36px; }
  .subnav_list_title h4 a {
    color: #2DA569;
    font-size: 14px; }

.subnav_list_title > ul > li {
  float: left;
  padding-left: 36px; }
  .subnav_list_title > ul > li a {
    display: block;
    font-size: 13px;
    line-height: 40px;
    padding: 18px 20px; }
    .subnav_list_title > ul > li a img {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-right: 12px;
      vertical-align: middle; }

.nav_subnav > li.current a {
  background: #fff;
  color: #2DA569; }

.subnav_list.current {
  display: block; }

.nav_main li {
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 15px; }

.footer {
  margin: 20px 0;
  padding: 10px 0; }
  .footer ul li {
    float: left;
    width: 33.33%;
    text-align: center;
    font-weight: 700;
    font-size: 14px; }
    .footer ul li span {
      margin-right: 5px;
      display: inline-block;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 30px; }

.copy {
  padding-bottom: 10px; }

.copyright, .copy_icp {
  text-align: center;
  height: 14px;
  line-height: 14px; }

.copy_icp {
  margin-top: 17px;
  padding-bottom: 20px; }

.route {
  line-height: 40px;
  font-size: 12px; }
  .route span {
    margin: 0 0.2em;
    font-family: sans-serif; }

.banner_inner {
  margin-top: 10px;
  height: 460px;
  position: relative;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .banner_inner .swiper-container {
    height: 100%; }
  .banner_inner .swiper-wrapper {
    width: 100%;
    height: 100%; }
    .banner_inner .swiper-wrapper img {
      display: block;
      width: 100%;
      height: 100%; }
  .banner_inner .swiper-slide {
    width: 100% !important; }

.banner_bottom_btn {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 1080px;
  text-align: center; }

.banner_bottom_btn li {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  width: 10px;
  height: 10px;
  padding: 10px;
  margin: 0 2px;
  cursor: pointer; }

.banner_bottom_btn li button {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #f5f5f5;
  border-radius: 6px;
  text-align: left;
  text-indent: -9999em;
  overflow: hidden;
  _zoom: 1;
  background-color: #b0b0b0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  outline: none; }

.banner_bottom_btn li button:hover,
.banner_bottom_btn li button:focus {
  background: #ff6700; }

.banner_bottom_btn li.slick-active button {
  border-color: #ff6700;
  background-color: #f5f5f5;
  background-color: transparent; }

.big_banner > div {
  width: 100%;
  margin-left: 0;
  height: 391px;
  overflow: hidden; }
  .big_banner > div a, .big_banner > div img {
    display: block;
    width: 100%;
    height: 100%; }

.big_banner .banner_bottom_btn {
  width: 100%;
  margin-left: 0; }

/*头部背景*/
a {
  text-decoration: none;
  color: #666;
  cursor: pointer; }
  a:hover {
    color: #2DA569; }

body {
  color: #666;
  background-color: #fff; }

.maincolor {
  color: #2DA569 !important; }

.mainbg {
  background-color: #2DA569 !important;
  color: #fff; }

.main_border {
  border-color: #2DA569 !important; }

.shoppingcolor {
  color: #83c44e !important; }

.bgf8 {
  background-color: #f8f8f8; }

.padding {
  padding: 38px 0; }

.padding_bottom {
  padding-bottom: 38px; }

.swiper-pagination-bullet-active {
  background-color: #2DA569; }

a.delete_btn, a.add_btn {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 25px;
  font-size: 16px;
  -moz-transition: background 0.3s ease;
  /* Firefox 4 */
  -webkit-transition: background 0.3s ease;
  /* Safari 和 Chrome */
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  cursor: pointer; }
  a.delete_btn i, a.add_btn i {
    display: inline-block;
    width: 7px;
    height: 7px;
    vertical-align: 2px; }

a.delete_btn i {
  background: url("../img/sprite_icon_off_757575.png") no-repeat; }

a.delete_btn:hover {
  background: #2DA569; }
  a.delete_btn:hover i {
    background: url("../img/sprite_icon_off_white.png") no-repeat; }

a.add_btn {
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 31px;
  line-height: 31px;
  margin: 65px auto 8px;
  background-color: #e4e4e4; }
  a.add_btn i {
    width: 13px;
    height: 14px;
    vertical-align: -2px;
    *vertical-align: -4px;
    background: url("../img/sprite_icon_addbtn.png") no-repeat; }
  a.add_btn:hover {
    background: #2DA569; }
    a.add_btn:hover i {
      background: url("../img/sprite_icon_addbtn.png") no-repeat; }

.buy_btn, .submit_btn {
  display: inline-block;
  width: 158px;
  height: 38px;
  line-height: 38px;
  background-color: #2DA569;
  color: #fff;
  font-size: 14px;
  text-align: center;
  -moz-transition: background-color 0.4s ease;
  /* Firefox 4 */
  -webkit-transition: background-color 0.4s ease;
  /* Safari 和 Chrome */
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .buy_btn:hover, .submit_btn:hover {
    color: #fff;
    background-color: #2b9d64; }

.small_btn {
  width: 118px;
  height: 28px;
  font-size: 12px;
  line-height: 28px; }

.btn_gray {
  display: inline-block;
  background-color: #fff;
  color: #666;
  text-align: center;
  border: 1px solid #b0b0b0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: background-color 0.4s ease;
  /* Firefox 4 */
  -webkit-transition: background-color 0.4s ease;
  /* Safari 和 Chrome */
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn_gray[disabled]{
  	color: #fff;
    background-color: #b3b3b3; 
    cursor: default;
  }
  .btn_gray:hover {
    color: #fff;
    background-color: #b3b3b3; }

.btn_disabled {
  background: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
  color: #b0b0b0 !important;
  cursor: default !important; }

.nav_h2:hover .nav_wrap {
  display: block; }
  
/* 评价 */
.comment i {
	color:#FD3F49;
	font-size:22px;
}
.comment .add>.title {
	padding: 15px;
	background: #fff;
	border-bottom: 10px solid #f8f8f8;
}
.comment .add>.title span,.comment .add .add-content .list span{
	vertical-align: 2px;
	font-size:14px;
}
.comment .add .add-content {
	background-color:#fff;
	padding:15px;
}
.comment .add .add-content .list {
	1padding-bottom:15px;
}
.comment textarea ,.comment-textarea{
	width:80%;
	margin-top:10px;
	min-height:140px;
	border-color: #F5F5F5;
	font-size:14px;
	line-height: 21px;
    margin-bottom: 15px;
    padding: 10px 15px;
    -webkit-user-select: text;
    border: 1px solid #F5F5F5;
    border-radius: 3px;
    outline: 0;
    background-color: #fff;
    -webkit-appearance: none;
    font-family: 'Helvetica Neue',Helvetica,sans-serif;
    resize:none
}
.comment .add .add-content .list i {
	}
.comment .mui-icon-image {
	color:#999
}
.comment button.mui-btn-primary {
	padding: 8px;
	margin-top: 15px;
}
.comment-list> .title .mui-col-xs-4,.mui-col-xs-8 {
	padding:15px;
}
.comment-list >.title .mui-col-xs-4 >span {
	display: block;
	border-right:1px solid #e4e4e4;
}
.comment-list >.title .mui-col-xs-4 >span span {
	font-size:18px;
}
.comment-list >.title .mui-col-xs-8 >span {
	float:left;
	display:inline-block;
	width:50%;
	text-align:center;
}
.comment-list >.title .score {
	color:#FD3F49
}
.comment-list >.list {
	padding:10px 0;
	list-style:none;
	border-top:1px solid #e4e4e4;
}
.comment-list >.list .title {
	color:#666;
}
.comment-list >.list .title i {
	color:#FD3F49
}
.comment-list >.list li {
	border-bottom:1px solid #e4e4e4;
	padding:10px;
}
.comment-list >.list li:first-child {
	padding-top:0
}
.comment-list >.list li:last-child {
	border-bottom:0;
}
.address-none {
	text-align: center;
	height: 300px;
	line-height: 300px;
	background: #EFEFF4;
}
.comment-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 5px;
	word-wrap: break-word;
}
