@charset "UTF-8";
/*颜色定义*/
/*背景主色调 */
/*背景副色调*/
/*按钮背景色*/
/*按钮背景色*/
/*按钮背景色*/
/* 清除浮动 */
/*弹性盒子居中 （传入null不设置该属性）
row , column
flex-start , space-between , space-around , flex-end
flex-start , center , flex-end
*/
/*绝对定位  参数顺序：上右下左*/
/* 圆形盒子 */
/*文本格式化，超出范围，显示省略号*/
@-webkit-keyframes shine {
  from {
    background-position: 100%;
  }
  to {
    background-position: 0;
  }
}
/*渐变(从上到下）*/
/* css3动画 默认3s宽度到200px */
/* 画三角形 */
/*通用样式*/
body, li, ul, dl, dd, dt, p, h1, h2, h3 {
  padding: 0;
  margin: 0;
  border: 0;
}

a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #0C5FBD;
}

i, em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  border: 0;
}
img:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.clear {
  *height: 1%;
}
.clear:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

html, body, h1, h2, h3 {
  font-size: 14px;
  color: #333333;
  font-family: "Microsoft Yahei", "微软雅黑", "Helvetica", "黑体", "Hiragino Sans GB", Arial, SimSun, "宋体", sans-serif;
}

body {
  background-color: #F5F5F5;
}

/*按钮通用样式*/
.layui-btn-danger {
  background: -webkit-linear-gradient(left, rgba(255, 70, 78, 0.9), rgba(215, 52, 58, 0.8), rgba(234, 49, 57, 0.8)); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(left, rgba(255, 70, 78, 0.9), rgba(215, 52, 58, 0.8), rgba(234, 49, 57, 0.8)); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(left, rgba(255, 70, 78, 0.9), rgba(215, 52, 58, 0.8), rgba(234, 49, 57, 0.8)); /* Firefox 3.6 - 15 */
  background: linear-gradient(to left, rgba(255, 70, 78, 0.9), rgba(215, 52, 58, 0.8), rgba(234, 49, 57, 0.8)); /* 标准的语法 */
  border-radius: 5px;
}

.web {
  width: 1200px;
  margin: 0 auto;
}

/*头部*/
.header {
  background-color: #fff;
  width: 190px;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 100;
  /*导航*/
}
.header .logo {
  width: 100%;
  margin: 0 auto;
  height: 120px;
  border-bottom: 1px #eee solid;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header .logo img {
  height: 90px;
}
.header .nav {
  width: 100%;
  border-bottom: 1px #eee solid;
}
.header .nav li.nav-item {
  position: relative;
}
.header .nav li.nav-item a {
  padding: 12px 10px 12px 25px;
  color: #666;
  display: block;
  font-size: 15px;
}
.header .nav li.nav-item a i {
  margin-right: 10px;
}
.header .nav li.nav-item a em {
  float: right;
  font-size: 10px;
  margin-top: 4px;
  color: #ddd;
}
.header .nav li.nav-item a:hover {
  color: #F03D5A;
}
.header .nav li.nav-item .nav-in {
  position: absolute;
  top: -20px;
  left: 190px;
  display: none;
  padding: 20px 0;
  width: 300px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #cccccc; /* 灰色边框 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.19); /* 双层阴影效果 */
  background-color: #F8F8F8; /* 背景颜色 */
  transition: box-shadow 0.3s ease-in-out; /* 阴影变化过渡效果 */
  border-left: 0;
}
.header .nav li.nav-item .nav-in li {
  width: 150px;
  float: left;
}
.header .nav li.nav-item .nav-in li a.hover {
  color: #F84C4C;
}
.header .nav li.nav-item:hover {
  background: #F5F5F5;
}
.header .nav li.nav-item:hover .nav-in {
  display: block;
}
.header .nav .cur {
  color: #F03D5A;
}
.header .search {
  float: left;
  margin-left: 10px;
}
.header .search form {
  width: 170px;
  border: solid 2px #0C5FBD;
  border-radius: 3px;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}
.header .search form .key {
  width: 100%;
  height: 28px;
  padding-left: 5px;
  border: none;
  outline: none;
}
.header .search form .submit {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  background-color: #0C5FBD;
  border: 0;
  cursor: pointer;
}
.header .search .tag {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.header .search .tag a {
  white-space: nowrap;
  margin-right: 10px;
  border-radius: 3px;
  font-size: 14px;
  margin-top: 5px;
  padding: 4px 10px;
}
.header .search .tag a:nth-child(3n) {
  border: 1px #0C5FBD solid;
  color: #0C5FBD;
}
.header .search .tag a:nth-child(3n-1) {
  border: 1px #00b3ee solid;
  color: #00b3ee;
}
.header .search .tag a:nth-child(3n-2) {
  border: 1px #5839ff solid;
  color: #5839ff;
}
.header .search .tag a:hover {
  background-color: #eee;
}
.header .nav_com_fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.web-center {
  width: 670px;
  float: left;
  margin-left: 210px;
  margin-bottom: 20px;
}
.web-center .cat-tag {
  width: 100%;
  margin-bottom: 20px;
}
.web-center .cat-tag .dd {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.web-center .cat-tag .dd li {
  width: 100px;
  margin: 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.web-center .cat-tag .dd li img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.web-center .cat-tag .dd li .txt {
  text-align: center;
}
.web-center .cat-tag-mtop {
  margin-top: 20px;
}

/*通用盒子模块*/
.box {
  background-color: #fff;
}
.box .head, .box .head1 {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  clear: both;
}
.box .head .tt, .box .head1 .tt {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #0C5FBD;
}
.box .head .tt i, .box .head1 .tt i {
  margin: 0 5px;
  font-size: 20px;
}
.box .head .more, .box .head1 .more {
  margin-right: 10px;
  color: #999;
  font-size: 14px;
  float: right;
}
.box .head .more i, .box .head1 .more i {
  font-size: 10px;
  margin-left: 5px;
}
.box .head a:hover .tt, .box .head1 a:hover .tt {
  color: #0C5FBD;
}
.box .head1 {
  height: 50px;
  line-height: 50px;
  border-bottom: solid 3px #eee;
}
.box .head1 .left {
  border-bottom: 3px #0C5FBD solid;
  padding-right: 10px;
}

.search-box .head {
  font-size: 14px;
  color: #666;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px #eee solid;
}
.search-box .head b {
  color: #0C5FBD;
  margin: 0 5px;
}

/*榜单推荐列表头部*/
.special_top_head {
  width: 100%;
  height: 120px;
  padding: 15px;
  box-sizing: border-box;
  max-height: 215px;
  background: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(51, 51, 51, 0.1);
  box-shadow: 0 5px 10px 0 rgba(51, 51, 51, 0.1);
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.special_top_head .special-logo {
  width: 100px;
  height: 100px;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.special_top_head .special-logo img {
  max-width: 100%;
  max-height: 100%;
}
.special_top_head .special-info {
  width: 500px;
  height: 100px;
  margin-left: 20px;
}
.special_top_head .special-info h1 {
  font-size: 20px;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
}
.special_top_head .special-info .special-attr {
  margin-top: 15px;
}
.special_top_head .special-info .special-attr .gz {
  display: inline-block;
  font-size: 12px;
  border-width: 1px;
  border-style: solid;
  width: 58px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  -webkit-border-radius: 38px;
  border-radius: 38px;
  vertical-align: middle;
  border-color: #0C5FBD;
  background-color: #0C5FBD;
  color: #fff;
}
.special_top_head .special-info .special-attr .gz-num {
  display: inline-block;
  font-size: 14px;
  color: #999;
  line-height: 2.286;
  text-align: left;
  vertical-align: middle;
  margin-left: 10px;
}

/*中间背景*/
.banner-pic {
  width: 100%;
  margin: 0 auto;
}
.banner-pic img {
  width: 100%;
  height: 100%;
}

/*右则-固定广告*/
.right_fixed {
  margin-top: 15px;
}

.nav-position {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #666;
  font-size: 12px;
  border-bottom: 1px #ddd solid;
}
.nav-position a {
  float: left;
  font-size: 14px;
  color: #666;
  margin-right: 10px;
}
.nav-position a:first-child {
  margin-left: 20px;
}
.nav-position i {
  float: left;
  font-size: 14px;
  color: #999;
  margin-right: 10px;
}

.brand_nav {
  width: 100%;
  overflow: hidden;
}
.brand_nav li {
  width: 33%;
  float: left;
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 3px #eee solid;
}
.brand_nav li a {
  height: 48px;
  display: inline-block;
  font-size: 18px;
  position: relative;
  bottom: -2px;
}
.brand_nav li:last-child {
  width: 34%;
}
.brand_nav li.nav a {
  color: #0C5FBD;
  border-bottom: 3px #0C5FBD solid;
}

.web-right {
  width: 300px;
  float: right;
  /*友情链接*/
}
.web-right .r-box {
  background-color: #fff;
}
.web-right .r-box .head {
  height: 40px;
  line-height: 40px;
}
.web-right .r-box .head .tt {
  font-size: 16px;
  border-bottom: 1px #eee solid;
}
.web-right .r-box .head i {
  margin-left: 10px;
}
.web-right .art {
  overflow: hidden;
  margin-bottom: 20px;
}
.web-right .art .head .tt {
  margin-left: 0;
}
.web-right .art ul {
  width: 270px;
  margin: 5px 15px 5px;
}
.web-right .art ul a li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  color: #666;
  border-bottom: 1px #eee dashed;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.web-right .art ul a li span {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 3px;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.web-right .art ul a li span.red {
  background-color: #0C5FBD;
}
.web-right .art ul a:last-child li {
  border-bottom: 0;
}
.web-right .brand {
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.web-right .brand ul {
  width: 270px;
  margin: 15px 15px 0;
  *height: 1%;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.web-right .brand ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.web-right .brand ul li {
  width: 135px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.web-right .brand ul li img {
  max-width: 92%;
  max-height: 94%;
  position: relative;
  z-index: 10;
}
.web-right .brand ul li span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  z-index: 0;
}
.web-right .brand ul li:hover span {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
}
.web-right .brand ul li.li2, .web-right .brand ul li.li5, .web-right .brand ul li.li8 {
  border-right: 0;
}
.web-right .tags {
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.web-right .tags ul {
  width: 270px;
  margin: 15px 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.web-right .tags ul li {
  width: 126px;
  border: 1px #eee solid;
  height: 36px;
  margin-bottom: 10px;
  line-height: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.web-right .tags ul li a {
  display: block;
  width: 100%;
}
.web-right .tags ul li a:hover {
  background-color: #eee;
}
.web-right .f-link {
  line-height: 24px;
}
.web-right .f-link span {
  color: #666;
}
.web-right .f-link a {
  color: #999;
  margin: 0 10px;
  display: inline-block;
}
.web-right .f-link .main {
  width: 270px;
  padding: 15px;
  font-size: 14px;
  line-height: 40px;
}

/*点评框*/
.comment {
  width: 630px;
  height: 240px;
  margin-top: 50px;
  margin-left: 20px;
}
.comment .comment_head {
  text-align: left;
}
.comment .comment_head b {
  font-size: 18px;
  background-image: -webkit-linear-gradient(-45deg, #0C5FBD, rgba(0, 0, 255, 0.8) 30%, #0C5FBD 50%, rgba(0, 0, 255, 0.8) 70%, #0C5FBD 90%, rgba(0, 0, 255, 0.8) 100%);
  -webkit-text-fill-color: transparent; /* 将字体设置成透明色 */
  -webkit-background-clip: text; /* 裁剪背景图，使文字作为裁剪区域向外裁剪 */
  -webkit-background-size: 200% 100%;
  -webkit-animation: shine 4s linear infinite;
}
.comment .comment_box {
  width: 100%;
  margin-top: 10px;
}
.comment .comment_box textarea {
  width: 610px;
  height: 90px;
  padding: 5px;
  max-width: 610px;
  max-height: 90px;
  border: 1px #ccc solid;
  border-radius: 5px;
}
.comment .comment_sub {
  width: 100%;
  margin-top: 10px;
  text-align: right;
}
.comment .comment_sub span {
  background-color: #0C5FBD;
}

/*商品列表*/
.box_goods .head1 .left {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}
.box_goods .head1 .left span {
  margin-left: 20px;
  color: #999;
}
.box_goods .head1 .more {
  width: 200px;
  text-align: right;
}
.box_goods .zk-list {
  margin-top: 10px;
  padding-top: 5px;
  width: 660px;
  padding-left: 5px;
  *height: 1%;
}
.box_goods .zk-list:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.box_goods .zk-list li {
  width: 150px;
  background-color: #fff;
  border: 1px solid #f6f6f6;
  margin: 0 0 10px 10px;
  float: left;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-bottom: 10px;
}
.box_goods .zk-list li .img-area {
  position: relative;
  width: 150px;
  height: 150px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.box_goods .zk-list li .img-area img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.box_goods .zk-list li .title-area {
  height: 16px;
  line-height: 16px;
  width: 130px;
  display: inline-block;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 10px 10px 0;
  font-size: 14px;
}
.box_goods .zk-list li .title-area i {
  color: #F03D5A;
}
.box_goods .zk-list li .raw-price-area {
  font-size: 12px;
  color: #999;
  line-height: 17px;
  padding: 10px 10px 0;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.box_goods .zk-list li .info {
  height: 32px;
  padding: 6px 0;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.box_goods .zk-list li .info .price-area {
  float: left;
  width: 130px;
  padding-left: 10px;
}
.box_goods .zk-list li .info .price-area .price {
  position: relative;
  color: #F03D5A;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
}
.box_goods .zk-list li .info .price-area .price em.number-font {
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  padding-left: 2px;
}
.box_goods .zk-list li .info .price-area .price em.decimal {
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
}
.box_goods .zk-list li .info .quan {
  padding: 0;
  float: right;
  position: relative;
  z-index: 1;
  zoom: 1;
  top: 0;
  margin-right: 5px;
  overflow: hidden;
  display: inline-block;
}
.box_goods .zk-list li .info .quan i {
  background: #fff;
  position: relative;
  z-index: 1;
  zoom: 1;
  font-style: normal;
  display: block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  font-size: 12px;
  min-width: 56px;
  text-align: center;
  padding: 4px 4px;
  color: #fff;
  background: -webkit-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #FD6533, #FD472E, #FD2429); /* 标准的语法 */
}
.box_goods .zk-list li .info .quan:after, .box_goods .zk-list li .info .quan:before {
  position: absolute;
  z-index: 10;
  zoom: 1;
  left: -4px;
  top: 50%;
  margin-top: -3px;
  border: 1px solid #F03D5A;
  background: #fff;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 10px;
}
.box_goods .zk-list li .info .quan:before {
  left: auto;
  right: -4px;
}
.box_goods .zk-list li .info .buy-btn:hover {
  color: #fff !important;
  text-decoration: underline;
}
.box_goods .zk-list li.li1 {
  margin-right: 0;
}
.box_goods .zk-list li:hover {
  box-shadow: 0 0 8px rgba(12, 95, 189, 0.5);
}
.box_goods .zk-list li:hover .img-area {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.box_goods .hw-list {
  width: 660px;
}
.box_goods .hw-list li {
  width: 626px;
  overflow: hidden;
  border: 2px #fff solid;
  padding: 20px;
  border-bottom: 1px #F2F5F7 solid;
}
.box_goods .hw-list li .img {
  width: 140px;
  height: 140px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box_goods .hw-list li .img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.box_goods .hw-list li .right {
  width: 460px;
  height: 140px;
  float: right;
  position: relative;
  margin-left: 20px;
}
.box_goods .hw-list li .right .title {
  display: block;
  width: 100%;
  height: 19px;
  line-height: 18px;
  margin-top: 4px;
  margin-bottom: 9px;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-family: PingFangSC-Medium, arial, sans-serif;
}
.box_goods .hw-list li .right .title:hover {
  color: #5188a6;
  text-decoration: none;
}
.box_goods .hw-list li .right .price {
  color: #e62828;
  max-width: 100%;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 19px;
  font-family: PingFangSC-Medium, arial, sans-serif;
  font-size: 18px;
  margin-left: 10px;
}
.box_goods .hw-list li .right .price:hover {
  opacity: 0.8;
}
.box_goods .hw-list li .right .desc {
  color: #444;
  font-size: 14px;
  height: 48px;
  line-height: 24px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  margin-top: 20px;
}
.box_goods .hw-list li .right .gobuy {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.box_goods .hw-list li .right .gobuy .l {
  display: flex;
  flex-direction: row;
}
.box_goods .hw-list li .right .gobuy .r {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.box_goods .hw-list li .right .gobuy .r .buy {
  border-radius: 2px;
  text-decoration: none !important;
  display: block;
  padding: 0;
  margin-left: 20px;
  width: 90px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #e62828;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
  zoom: 1;
  font-family: inherit;
}
.box_goods .hw-list li .right .gobuy .r .buy em {
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.8;
}
.box_goods .hw-list li:hover {
  border: 2px rgba(230, 40, 40, 0.6) solid;
}
.box_goods .goods-ph {
  overflow: hidden;
}
.box_goods .goods-ph li {
  width: 430px;
  height: 200px;
  float: left;
  margin-bottom: 25px;
  border-radius: 3px;
  box-shadow: 0 1px 20px 0 #ccc;
}
.box_goods .goods-ph li .saleitem_link {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.box_goods .goods-ph li .saleitem_link .saleitem_flag {
  position: absolute;
  top: 10px;
  left: -5px;
  z-index: 100;
  display: flex;
  height: 22px;
  background: rgba(250, 100, 100, 0.8);
  color: #fff;
  align-items: center;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 0 15px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_flag:after {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 0;
  height: 0;
  border: 3px solid;
  border-color: #a98138 #a98138 transparent transparent;
}
.box_goods .goods-ph li .saleitem_link .saleitem_img {
  width: 200px;
  height: 200px;
  float: left;
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.box_goods .goods-ph li .saleitem_link .saleitem_img .img {
  width: 170px;
  height: 170px;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.box_goods .goods-ph li .saleitem_link .saleitem_img .img img {
  max-width: 100%;
  max-height: 100%;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info {
  width: 210px;
  float: left;
  margin-left: 10px;
  position: relative;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .title {
  font-size: 16px;
  font-weight: bolder;
  color: #333;
  word-break: break-all;
  margin-top: 20px;
  line-height: 24px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .desc {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  line-height: 20px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info {
  height: 32px;
  padding: 6px 0;
  overflow: hidden;
  position: absolute;
  bottom: 10px;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .price-area {
  float: left;
  width: 130px;
  padding-left: 10px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .price-area .price {
  position: relative;
  color: #FF2B22;
  font-size: 12px;
  line-height: 28px;
  font-weight: 500;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .price-area .price em.number-font {
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  padding-left: 2px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .price-area .price em.decimal {
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .quan {
  padding: 0;
  float: right;
  position: relative;
  z-index: 1;
  zoom: 1;
  top: 0;
  margin-right: 5px;
  overflow: hidden;
  display: inline-block;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .quan i {
  background: #fff;
  position: relative;
  z-index: 1;
  zoom: 1;
  font-style: normal;
  display: block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  font-size: 12px;
  min-width: 56px;
  text-align: center;
  padding: 4px 4px;
  color: #fff;
  background: -webkit-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #FD6533, #FD472E, #FD2429); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #FD6533, #FD472E, #FD2429); /* 标准的语法 */
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .quan:after, .box_goods .goods-ph li .saleitem_link .saleitem_info .info .quan:before {
  position: absolute;
  z-index: 10;
  zoom: 1;
  left: -4px;
  top: 50%;
  margin-top: -3px;
  border: 1px solid #FC3F78;
  background: #fff;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 10px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .quan:before {
  left: auto;
  right: -4px;
}
.box_goods .goods-ph li .saleitem_link .saleitem_info .info .buy-btn:hover {
  color: #fff !important;
  text-decoration: underline;
}
.box_goods .goods-ph li:nth-child(even) {
  float: right;
}
.box_goods .goods-ph li:hover {
  background-color: #FFF6F1;
  box-shadow: 0 1px 20px 0 rgba(12, 95, 189, 0.5);
}
.box_goods .goods-ph li:hover .saleitem_img .img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.noMoreData {
  clear: both;
  text-align: center;
}

.f_blue {
  color: #0C5FBD !important;
}

.right_box {
  width: 298px;
  border: 1px #EFEFEF solid;
  margin-bottom: 20px;
}
.right_box .right_head {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px #EFEFEF solid;
}
.right_box .right_head b {
  float: left;
  margin-left: 20px;
  display: inline-block;
  font-size: 16px;
  color: #333;
}
.right_box .right_head a {
  float: left;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #999;
}
.right_box .right_head a.more {
  float: right;
  margin-right: 15px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #999;
}
.right_box .right_head a.more i {
  font-size: 12px;
  color: #999;
  top: -1px;
  position: relative;
}
.right_box .right_main {
  width: 268px;
  padding: 15px;
}
.right_box .right_main1 {
  width: 100%;
}

/*右侧品牌*/
.right_brand_new .right_head {
  border-bottom: 0;
}
.right_brand_new .right_head b {
  width: 148px;
  cursor: pointer;
  margin-left: 0;
  text-align: center;
  border-bottom: 1px #EFEFEF solid;
  color: #999;
}
.right_brand_new .right_head b.f_blue {
  border-bottom: 0;
}
.right_brand_new .right_head b:first-child {
  border-right: 1px #EFEFEF solid;
}
.right_brand_new ul {
  width: 100%;
  overflow: hidden;
  border-left: 1px #eee solid;
  border-top: 1px #eee solid;
  display: none;
}
.right_brand_new ul li {
  width: 88px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  float: left;
  position: relative;
  border-right: 1px #eee solid;
  border-bottom: 1px #eee solid;
}
.right_brand_new ul li img {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 10;
}
.right_brand_new ul li span {
  width: 88px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.right_brand_new ul li:hover span {
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}
.right_brand_new ul li.li1 {
  border: 0;
}
.right_brand_new ul.hover {
  display: block;
}

.phb-top {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 1px #eee solid;
}
.phb-top .nav-position {
  border: none;
}
.phb-top h1 {
  width: 100%;
  float: left;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-weight: 400;
  margin: 30px auto;
}
.phb-top h1 span {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #0C5FBD;
  padding: 0 30px;
  border-radius: 22px;
  font-size: 22px;
}
.phb-top h1 .top_mod_landingtitle_head, .phb-top h1 .top_mod_landingtitle_tail {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
}
.phb-top h1 .top_mod_landingtitle_head {
  left: 22px;
}
.phb-top h1 .top_mod_landingtitle_head:before {
  width: 37px;
  top: 20px;
  right: 0;
}
.phb-top h1 .top_mod_landingtitle_head:after {
  width: 66px;
  top: 32px;
  right: 0;
}
.phb-top h1 .top_mod_landingtitle_tail {
  right: 22px;
}
.phb-top h1 .top_mod_landingtitle_tail:before {
  width: 69px;
  top: 16px;
  left: 0;
}
.phb-top h1 .top_mod_landingtitle_tail:after {
  width: 40px;
  top: 28px;
  left: 0;
}
.phb-top h1 .top_mod_landingtitle_head:after, .phb-top h1 .top_mod_landingtitle_head:before, .phb-top h1 .top_mod_landingtitle_tail:after, .phb-top h1 .top_mod_landingtitle_tail:before {
  position: absolute;
  height: 2px;
  background: #0C5FBD;
  content: "";
}

.right-goods-new {
  background-color: #fff;
}

/*右侧商品/券*/
.right-goods-new ul li {
  transition: height 0.3s;
  -moz-transition: height 0.3s;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  width: 298px;
  height: 36px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  border-bottom: 1px #eee solid;
  padding-bottom: 10px;
}
.right-goods-new ul li img {
  width: 36px;
  height: 36px;
  float: left;
  margin-left: 10px;
}
.right-goods-new ul li:hover img {
  opacity: 0.8;
}
.right-goods-new ul li .title {
  width: 230px;
  overflow: hidden;
  padding: 0 10px;
  line-height: 18px;
  height: 36px;
}
.right-goods-new ul li .price {
  width: 120px;
  float: left;
  margin-left: 10px;
  margin-top: 10px;
  display: none;
}
.right-goods-new ul li .price span.s1 {
  font-size: 12px;
  color: #dd2727;
}
.right-goods-new ul li .price span.s2 {
  font-size: 20px;
  color: #dd2727;
}
.right-goods-new ul li .layui-btn {
  height: 26px;
  line-height: 26px;
  float: right;
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: none;
}
.right-goods-new ul li.hover {
  height: 100px;
}
.right-goods-new ul li.hover * {
  display: inline-block;
}
.right-goods-new ul li.hover .title {
  width: 160px;
  float: left;
  margin-left: 10px;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  white-space: normal;
  padding: 0;
}
.right-goods-new ul li.hover img {
  width: 100px;
  height: 100px;
  float: left;
  margin-left: 10px;
}

.right_tags_cat ul {
  width: 100%;
  overflow: hidden;
}
.right_tags_cat ul li {
  width: 50%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  float: left;
  border-bottom: 1px solid #EFEFEF;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: block;
}
.right_tags_cat ul li img {
  width: 40px;
  height: 40px;
  float: left;
}
.right_tags_cat ul li div {
  width: 80px;
  float: left;
  text-align: left;
  margin-left: 10px;
}
.right_tags_cat ul li.li1 {
  border: 0;
}
.right_tags_cat ul li:hover {
  background-color: #F5F5F5;
}

.right_tags_new .right_head {
  border-bottom: 0;
}
.right_tags_new .right_head b {
  width: 148px;
  cursor: pointer;
  margin-left: 0;
  text-align: center;
  border-bottom: 1px #EFEFEF solid;
  color: #999;
}
.right_tags_new .right_head b.f_blue {
  border-bottom: 0;
}
.right_tags_new .right_head b:first-child {
  border-right: 1px #EFEFEF solid;
}
.right_tags_new ul {
  display: none;
  height: 410px;
  width: 100%;
  overflow: hidden;
}
.right_tags_new ul li {
  width: 50%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  float: left;
  border-bottom: 1px solid #EFEFEF;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: block;
}
.right_tags_new ul li img {
  width: 40px;
  height: 40px;
  float: left;
}
.right_tags_new ul li div {
  width: 80px;
  float: left;
  text-align: left;
  margin-left: 10px;
}
.right_tags_new ul li.li1 {
  border: 0;
}
.right_tags_new ul.hover {
  display: block;
}

/*右侧指南*/
.right-zhinan-new ul li {
  width: 298px;
  height: 60px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  border-bottom: 1px #eee solid;
  padding-bottom: 10px;
}
.right-zhinan-new ul li img {
  width: 85px;
  height: 60px;
  float: left;
  margin-left: 10px;
}
.right-zhinan-new ul li .title {
  width: 190px;
  float: left;
  margin-left: 10px;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  white-space: normal;
  padding: 0;
}
.right-zhinan-new ul li:hover img {
  opacity: 0.8;
}

.right_box_ad {
  border-width: 0;
}

/*公共底部*/
.footer {
  overflow: hidden;
  font-size: 12px;
  color: #e2e2e2;
  border-top: 1px #eee solid;
  box-shadow: 0px -4px 9px #eee;
  background-color: #999;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 100;
}
.footer .in {
  margin: 15px auto;
  text-align: center;
  line-height: 20px;
}
.footer .in a {
  color: #e2e2e2;
}
.footer .none {
  display: none;
}

.search_res .noData {
  min-height: 600px;
  text-align: center;
  width: 100%;
  padding-top: 150px;
  line-height: 30px;
  font-size: 16px;
}
.search_res .noData .d1 {
  font-size: 18px;
  color: #666;
}
.search_res .noData .d2 {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}
.search_res .noData .d3 {
  font-size: 14px;
  color: #999;
}
.search_res .noMoreData {
  text-align: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  line-height: 30px;
  font-size: 16px;
  color: #999;
  clear: both;
}

/*品牌文章列表*/
.brand_detail .web-center {
  padding-bottom: 20px;
}
.brand_detail .web-center h1 {
  width: 660px;
  padding: 15px 20px 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
  color: #222;
}
.brand_detail .web-center .description {
  width: 630px;
  margin: 0 20px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5em;
  color: #999;
  border-bottom: 1px #eee solid;
}
.brand_detail .web-center .content {
  width: 630px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  word-wrap: break-word;
  overflow: hidden;
  margin-bottom: 20px;
  text-indent: 2em;
}
.brand_detail .web-center .content img {
  max-width: 500px;
  max-height: 500px;
  display: block;
  margin: 10px auto;
}
.brand_detail .web-center .content p {
  margin-top: 10px;
}
.brand_detail ul.list {
  width: 670px;
  overflow: hidden;
}
.brand_detail ul.list li {
  width: 650px;
  padding: 20px 10px 10px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px #F0EAE4 solid;
  height: 108px;
}
.brand_detail ul.list li img {
  float: left;
  width: 150px;
  border-radius: 5px;
  margin-left: 10px;
  height: 98px;
}
.brand_detail ul.list li .des {
  float: left;
  width: 465px;
  margin-left: 20px;
}
.brand_detail ul.list li .des h2 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  width: 460px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.brand_detail ul.list li .des .time {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
.brand_detail ul.list li .des p {
  font-size: 14px;
  color: #999;
  line-height: 26px;
  margin-top: 8px;
  max-width: 660px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand_detail ul.list li:hover {
  background-color: #F0EAE3;
}

/*榜单文章列表*/
.article_list .web-center {
  padding-bottom: 20px;
}
.article_list .web-center h1 {
  width: 660px;
  padding: 15px 20px 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
  color: #222;
}
.article_list .web-center .description {
  width: 630px;
  margin: 0 20px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: normal;
  color: #999;
  line-height: 30px;
  height: 30px;
  border-bottom: 1px #eee solid;
}
.article_list .web-center .description .num {
  font-family: georgia;
  font-size: 21px;
  line-height: 25px;
  color: #CC0000;
}
.article_list .web-center .content {
  width: 630px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  word-wrap: break-word;
  overflow: hidden;
  margin-bottom: 30px;
  text-indent: 2em;
}
.article_list .web-center .content img {
  max-width: 500px;
  max-height: 500px;
  display: block;
  margin: 10px auto;
}
.article_list .web-center .content p {
  margin-top: 10px;
}
.article_list .web-center .content2 {
  max-height: 1000px;
}
.article_list .web-center .show-more {
  position: relative;
}
.article_list .web-center .show-more .txt {
  width: 100%;
  height: 100px;
  line-height: 130px;
  text-align: center;
  font-size: 16px;
  background-image: linear-gradient(-180deg, rgba(204, 204, 204, 0.1), rgba(204, 204, 204, 0.4), rgba(102, 102, 102, 0.5), rgba(102, 102, 102, 0.6), rgba(102, 102, 102, 0.7), rgba(102, 102, 102, 0.8));
  position: absolute;
  z-index: 10;
  top: -130px;
  left: 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.article_list .web-center .head {
  position: relative;
  font-size: 18px;
  color: #222;
  line-height: 18px;
  padding-left: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}
.article_list .web-center .head:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 4px;
  height: 18px;
  background: #0C5FBD;
  border-radius: 4px;
}
.article_list .web-center ul.list {
  border-top: 1px #F0EAE4 solid;
}
.article_list ul.list {
  width: 670px;
  overflow: hidden;
}
.article_list ul.list li {
  width: 650px;
  padding: 20px 10px 10px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px #F0EAE4 solid;
  height: 108px;
}
.article_list ul.list li img {
  float: left;
  width: 150px;
  border-radius: 5px;
  margin-left: 10px;
  height: 98px;
}
.article_list ul.list li .des {
  float: left;
  width: 465px;
  margin-left: 20px;
}
.article_list ul.list li .des h2 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  width: 460px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article_list ul.list li .des .time {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
.article_list ul.list li .des p {
  font-size: 14px;
  color: #999;
  line-height: 26px;
  margin-top: 8px;
  max-width: 660px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article_list ul.list li:hover {
  background-color: #F0EAE3;
}

/*文章分页*/
.art-page {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.art-page ul {
  width: 90%;
  margin-left: 10%;
}
.art-page ul li {
  display: inline-block;
  margin-right: 5px;
  border: 1px #eee solid;
  border-radius: 2px;
  padding: 3px 5px;
}
.art-page ul li a, .art-page ul li span {
  display: inline-block;
  width: 100%;
  min-width: 15px;
  text-align: center;
}
.art-page ul li.active {
  color: red;
  font-weight: bold;
}

.goods_show {
  width: 670px;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}
.goods_show .detail-row {
  background: #fff;
  padding: 20px 20px 40px;
  margin-bottom: 20px;
  margin-top: 15px;
}
.goods_show .detail-row .in {
  width: 100%;
  *height: 1%;
}
.goods_show .detail-row .in:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.goods_show .detail-row .in .img-block {
  float: left;
}
.goods_show .detail-row .in .img-block .lg-img {
  width: 260px;
  height: 258px;
  float: left;
}
.goods_show .detail-row .in .detail-col {
  width: 320px;
  margin: -5px 0 0 20px;
  padding-bottom: 0;
  height: auto;
  position: relative;
  float: left;
}
.goods_show .detail-row .in .detail-col .title {
  float: left;
  width: 320px;
  line-height: 2em;
  overflow: hidden;
  display: block;
  font-size: 14px;
  color: #424242;
  margin-left: 4px;
  margin-bottom: 10px;
  cursor: pointer;
}
.goods_show .detail-row .in .detail-col .title .tmall {
  font-size: 18px;
  display: block;
  float: left;
  color: #ff2e54;
}
.goods_show .detail-row .in .detail-col .title span.title {
  width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.goods_show .detail-row .in .detail-col .time-num {
  margin: 70px 0 10px;
  font-size: 12px;
  color: #999;
}
.goods_show .detail-row .in .detail-col .time-num .num {
  margin-left: 5px;
}
.goods_show .detail-row .in .detail-col .coupon {
  font-size: 12px;
}
.goods_show .detail-row .in .detail-col .coupon .quan {
  line-height: 22px;
  height: 22px;
  background: url(/public/img/quan.png) center #fff8f8;
  background-size: 100% 100%;
  font-size: 14px;
  border-radius: 2px;
  font-weight: 400;
  position: relative;
  min-width: 57px;
  text-align: center;
  box-sizing: border-box;
  color: #FF2B22;
  display: inline-block;
}
.goods_show .detail-row .in .detail-col .goods-label {
  border-top: 1px solid #ececec;
  padding: 15px 0 0;
  margin: 15px 0 5px;
  font-size: 12px;
}
.goods_show .detail-row .in .detail-col .goods-label .label {
  background: #f5f5f5;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 3px 8px;
  margin: 0 10px 10px 0;
  display: inline-block;
}
.goods_show .detail-row .in .detail-col .price {
  font-size: 22px;
  color: #ff0100;
  margin: 0 0 10px;
}
.goods_show .detail-row .in .detail-col .price b {
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  color: #666;
  line-height: 0;
  border-top: 1px solid #666;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.goods_show .detail-row .in .detail-col .buy-share {
  margin-top: 20px;
}
.goods_show .detail-row .in .detail-col .buy-share .buy {
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #ff2e54;
  border-radius: 2px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.goods_show .detail-row .in .detail-col .buy-share .buy:hover {
  color: #fff !important;
  text-decoration: underline;
}
.goods_show .detail-row .in .detail-col .buy-share .share {
  float: right;
  width: 86px;
  height: 36px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #ddd;
  font-size: 12px;
  line-height: 36px;
  text-align: center;
  color: #999;
  font-family: "Microsoft YaHei";
  position: relative;
}
.goods_show .detail-row .in .detail-col .buy-share .share .iconfont {
  color: #aaa;
  margin-right: 5px;
}
.goods_show .detail-row .in .detail-col .buy-share .share span {
  position: relative;
  top: -1px;
}
.goods_show .detail-row .goods-desc {
  padding: 20px 0 0;
}
.goods_show .detail-row .goods-desc .tit {
  font-weight: 700;
  color: #333;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #ececec;
}
.goods_show .detail-row .goods-desc .rec-text {
  color: #555;
  line-height: 24px;
  margin: 10px 0 15px;
}
.goods_show .detail-row .attr {
  overflow: hidden;
  padding-top: 20px;
}
.goods_show .detail-row .attr li {
  width: 45%;
  float: left;
  line-height: 30px;
  color: #666;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.goods_show .detail-row .attr li span {
  color: #333;
}
.goods_show .detail-row .detail-pics .pic {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.goods_show .detail-row .detail-pics .pic img {
  max-width: 100%;
}
.goods_show .detail-row .detail-pics .pic2 {
  max-height: 500px;
  overflow: hidden;
}
.goods_show .detail-row .detail-pics .show-more {
  position: relative;
}
.goods_show .detail-row .detail-pics .show-more .txt {
  width: 100%;
  height: 100px;
  line-height: 130px;
  text-align: center;
  font-size: 16px;
  background-image: linear-gradient(-180deg, rgba(204, 204, 204, 0.1), rgba(204, 204, 204, 0.4), rgba(102, 102, 102, 0.5), rgba(102, 102, 102, 0.6), rgba(102, 102, 102, 0.7), rgba(102, 102, 102, 0.8));
  position: absolute;
  z-index: 10;
  top: -100px;
  left: 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
}

.brand-list {
  background-color: #fff;
}

.special_box {
  padding: 20px 20px 10px 20px;
  border-bottom: 1px #efefef solid;
}
.special_box .title {
  overflow: hidden;
}
.special_box .title .s1 {
  width: 30px;
  height: 30px;
  float: left;
  background-size: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #ccc;
}
.special_box .title .s1.brand1 {
  background-color: #dc480c;
}
.special_box .title .s1.brand2 {
  background-color: #ffd42b;
}
.special_box .title .s1.brand3 {
  background-color: #E3AF6A;
}
.special_box .title .s2 {
  float: left;
  margin-top: 7px;
  margin-left: 15px;
  color: #666;
}
.special_box .title .s3 {
  float: right;
  margin-left: 15px;
  line-height: 30px;
  height: 32px;
}
.special_box .title .s3 i {
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.special_box .title b {
  font-size: 20px;
  color: #333;
  float: left;
  margin-left: 15px;
  margin-top: 3px;
}
.special_box .pic-des {
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 20px;
}
.special_box .pic {
  float: left;
  width: 140px;
  text-align: center;
  background-color: #fff;
}
.special_box .pic img {
  max-width: 100%;
  max-height: 76px;
  border-radius: 6px;
}
.special_box .des {
  width: 460px;
  float: right;
  line-height: 24px;
}
.special_box .des .data {
  color: #333;
}
.special_box .des .data span {
  margin-right: 20px;
}
.special_box .des .msg {
  color: #666;
  max-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.special_box .box_goods ul.none {
  display: none;
}
.special_box .goods {
  width: 100%;
  clear: both;
  text-align: center;
  display: none;
}
.special_box .goods .div {
  line-height: 40px;
  position: relative;
  top: 10px;
}
.special_box .box_goods {
  display: block;
  border-top: 1px rgba(190, 160, 120, 0.3) solid;
  margin-top: 20px;
}
.special_box .box_goods ul {
  padding-left: 0;
}
.special_box .box_goods ul li {
  width: 200px;
  text-align: left;
  margin-right: 9px;
  border: 2px #ffffff solid;
}
.special_box .box_goods ul li .img-area {
  width: 196px;
  height: 196px;
  line-height: inherit;
}
.special_box .box_goods div {
  color: #999;
  position: relative;
}
.special_box .goods_hide {
  display: none;
}
.special_box .goods_button {
  width: 660px;
  height: 0;
  visibility: hidden;
  border-top: 1px #D9D9D9 dashed;
  margin-left: 20px;
  cursor: pointer;
  align-items: center;
  flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.special_box .goods_button:hover {
  color: #FF464E;
}
.special_box:hover {
  background-color: rgba(190, 160, 120, 0.2);
}

.layui-flow-more {
  padding-top: 30px;
  text-align: center;
}

::-webkit-scrollbar-track-piece {
  background-color: #f8f8f8;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  background-clip: padding-box;
  min-height: 28px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}

/*# sourceMappingURL=pc.css.map */
