/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
/*公共颜色*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  position: relative;
  padding: 0;
  margin: 0 auto;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "microsoft yahei";
  color: #000;
  font-size: 12px;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* custom */
a {
  color: #000;
}
a:hover,
a:focus {
  color: #f40;
  -webkit-backface-visibility: hidden;
  text-decoration: none;
}
i,
span,
em {
  font-style: normal;
}
li,
ul {
  list-style: none;
}
input:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
  height: 5px;
  background-color: rgba(125, 125, 125, 0.7);
  -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
  width: 5px;
  background-color: rgba(125, 125, 125, 0.7);
  -webkit-border-radius: 6px;
}
.height {
  width: 100%;
  height: 100%;
}
/*美化表单*/
@font-face {
  font-family: base_icon;
  src: url(../fonts/base.woff);
}
input.rt[type=radio],
input.rt[type=checkbox] {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  margin: 3px 0;
  text-align: center;
  vertical-align: middle;
  line-height: 15px;
  outline: 0;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
}
input.rt[type=radio]:checked,
input.rt[type=checkbox]:checked {
  background-color: #3869cd;
  border: 1px solid #3869cd;
  outline: none;
  -webkit-appearance: none;
  position: relative;
  border-radius: 50%;
}
input.rt[type=radio]:checked:after,
input.rt[type=checkbox]:checked:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
}
.clearfix:after {
  content: "";
  height: 0;
  display: block;
  overflow: hidden;
  clear: both;
  visibility: hidden;
}
.mr0 {
  margin-right: 0;
}
.item-href {
  display: block;
}
.content {
  width: 1200px;
  margin: 0 auto;
}
.line {
  width: 100%;
  height: 5px;
  background-color: #f5f2f5;
}
/*单行省略*/
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hide {
  display: none;
}
/*//两行省略*/
.two-truncate {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.three-truncate {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.layer {
  box-sizing: border-box;
  min-width: 100px;
  max-width: 300px;
  padding: 16px 20px;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 99999;
  border-radius: 6px;
  display: none;
  font-size: 14px;
}
/*border-1px 实现*/
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5) {
  .border-1px::after {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7);
  }
  .border-top-1px::before {
    -webkit-transform: scaleY(0.7);
    transform: scaleY(0.7);
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
  .border-1px::after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  .border-top-1px::before {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
}
/*登录页面和密码管理页面*/
/*登录页面*/
.log-wrapper {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: url("../i/bg.png") no-repeat center;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}
.log-wrapper .title {
  text-align: center;
  font-size: 36px;
  color: #217cbc;
}
.placeholder {
  width: 100%;
  height: 200px;
}
.forget-pwd {
  width: 76%;
  padding: 0 10px;
  margin: auto;
}
.forget-pwd a:hover {
  color: #f40;
}
.content {
  width: 100%;
  margin-top: 38px;
}
.form-signin {
  margin-bottom: 0;
}
.login-panle {
  width: 30%;
  margin: 0 auto;
  padding: 24px 0 0px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 30px 0px rgba(10, 0, 60, 0.1);
}
[class^="icon-"],
[class*=" icon-"] {
  background-image: none;
}
.login-input {
  position: relative;
  width: 76%;
  height: 32px;
  line-height: 32px;
  margin: 0 auto 12px;
  background: #fff;
  box-shadow: 0px 0px 7px 0px rgba(15, 81, 230, 0.16);
  border-radius: 2px;
}
.login-input > i {
  position: absolute;
  left: 10px;
  top: 8px;
  width: auto;
  height: auto;
  line-height: normal;
  font-size: 18px;
  color: #333333;
}
.login-input input:not([type="checkbox"]) {
  width: 100%;
  height: 100%;
  padding-left: 38px;
  line-height: 32px;
  border: 0px;
  outline: none;
  color: #333333;
  box-sizing: border-box;
}
.validateCode .login-input {
  background: transparent;
  box-shadow: 0px 0px 0px 0px rgba(15, 81, 230, 0.16);
}
.validateCode .login-input i {
  font-weight: bold;
}
.validateCode .login-input a {
  font-size: 12px;
}
.validateCode .login-input input {
  width: 53% !important;
  margin-bottom: 0;
  box-shadow: 0px 0px 7px 0px rgba(15, 81, 230, 0.16);
  border-radius: 2px;
}
.login-btn {
  text-align: center;
  padding-top: 12px;
}
.login-btn .login-button {
  display: block;
  width: 76%;
  height: 44px;
  margin: auto;
  color: #FFF;
  line-height: 44px;
  text-align: center;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  background-color: #2494F2;
  box-sizing: border-box;
}
.remebercode {
  width: 76%;
  padding: 12px 0 16px;
  margin: auto;
  text-align: right;
  font-size: 12px;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 1200px) {
  body {
    width: 1200px;
  }
  .validateCode .login-input input {
    width: 49% !important;
    box-shadow: 0px 0px 7px 0px rgba(15, 81, 230, 0.16);
    border-radius: 2px;
  }
}
@media screen and (min-width: 1366px) {
  .title img {
    margin: 64px auto 8px;
  }
  .content {
    margin-top: 48px;
  }
  .login-panle {
    padding: 32px 0 0;
  }
  .login-input {
    height: 38px;
    line-height: 38px;
    margin: 0 auto 14px;
  }
  .login-input > i {
    font-size: 20px;
  }
  .validateCode .login-input input {
    width: 60% !important;
    margin-bottom: 0;
    box-shadow: 0px 0px 7px 0px rgba(15, 81, 230, 0.16);
    border-radius: 2px;
  }
  .login-btn {
    padding-top: 18px;
  }
  .login-btn input.login-button {
    font-size: 16px;
  }
  .remebercode {
    font-size: 14px;
    line-height: 18px;
  }
}
@media screen and (min-width: 1920px) {
  .login-panle {
    padding: 36px 0 0;
  }
  .login-input {
    height: 44px;
    line-height: 44px;
    margin: 0 auto 16px;
  }
  .login-input > i {
    font-size: 24px;
  }
  .validateCode .login-input input {
    width: 65% !important;
    margin-bottom: 0;
    box-shadow: 0px 0px 7px 0px rgba(15, 81, 230, 0.16);
    border-radius: 2px;
  }
  .login-btn {
    padding-top: 20px;
  }
  .login-btn .login-button {
    font-size: 16px;
  }
  .remebercode {
    font-size: 14px;
    line-height: 24px;
  }
}
/*首页*/
.wrapper {
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
}
.left-box,
.center-box,
.right-box {
  margin-bottom: -1000px;
  padding-bottom: 1000px;
}
.left-box {
  float: left;
  width: 300px;
  height: 100%;
  background: #000;
}
.center-box {
  float: left;
  width: calc(100% - 600px);
  background: #fff;
}
.right-box {
  float: left;
  width: 300px;
  height: 100%;
  background: #000;
}
.brand-title {
  padding: 16px;
  color: #000;
  font-size: 18px;
  background: #fff;
}
.brand-box {
  padding: 16px 16px 30px;
  height: calc(100% - 90px);
  overflow: auto;
}
.brand-box .brand-list {
  padding-bottom: 30px;
}
.brand-box .name {
  color: #fff;
  font-size: 16px;
}
.brand-box li {
  padding: 6px 12px;
}
.brand-box li a {
  color: #939697;
}
.brand-box li a:hover {
  color: #fff;
}
.center-content {
  text-align: center;
}
.center-content .logo {
  width: 180px;
  height: 200px;
  margin: auto;
}
.center-content .infor-box {
  width: 240px;
  padding: 8px;
  margin: auto;
  background: #000;
}
.center-content .infor-box i {
  color: #fff;
}
.center-content .infor-box .avatar {
  width: 24px;
  height: 24px;
}
.center-content .infor-box .name {
  line-height: 22px;
}
.center-content .infor-box .flag {
  width: 28px;
  height: 26px;
}
.center-content .infor-box .infor {
  display: inline-block;
}
/*商品列表*/
.container {
  width: 100%;
}
.top-box {
  width: 100%;
  height: 42px;
  background: #000;
}
.top-box .top-content {
  padding: 0px 16px;
}
.top-box .menu {
  position: relative;
  width: 80px;
  line-height: 42px;
  color: #fff;
}
.top-box .menu:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 42px;
  background: #fff;
}
.top-box .menu i {
  margin-right: 8px;
  font-size: 16px;
}
.top-box .top-center {
  position: relative;
  width: calc(100% - 80px - 140px);
  display: inline-block;
  text-align: center;
}
.top-box .top-center .name {
  display: inline-block;
  line-height: 42px;
}
.top-box .top-center .center-close {
  margin-left: 8px;
  padding-top: 12px;
  color: #fff;
}
.top-box .top-center .center-close i {
  margin-right: 16px;
  color: #fff;
  font-size: 24px;
}
.top-box .top-right {
  position: relative;
  width: 120px;
  padding-left: 16px;
  line-height: 42px;
  text-align: center;
}
.top-box .top-right a {
  color: #fff;
  margin-right: 8px;
}
.top-box .top-right a:hover {
  text-decoration: underline;
}
.top-box .top-right:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 42px;
  background: #fff;
}
.top-box .serach-box {
  width: 280px;
  height: 32px;
  position: absolute;
  top: 5px;
  right: 16px;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.top-box .serach-box .text {
  width: 220px;
  height: 32px;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  outline: 0;
  border: 0;
  box-shadow: inset 0 0px 0px #fff;
  -webkit-box-shadow: inset 0 0px 0px #fff;
}
.top-box .serach-box .search {
  position: absolute;
  top: 7px;
  right: 12px;
  font-size: 16px;
  color: #555;
}
.top-box .serach-box i {
  font-size: 24px;
  color: #555;
}
.top-box .shopcart {
  position: relative;
  width: 40px;
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  color: #fff;
}
.top-box .shopcart:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 42px;
  background: #fff;
}
.top-box .shopcart i {
  position: relative;
  top: 8px;
}
.top-box .shopcart .num {
  display: inline;
  position: absolute;
  top: 6px;
  right: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.tools-list {
  width: 100%;
}
.tools-item {
  position: relative;
  width: calc(100% / 4);
  float: left;
  padding: 12px 0;
  text-align: center;
  background: #f7f7f7;
  color: #337ab7;
  border-right: 1px solid #d7d7d7;
  box-sizing: border-box;
  cursor: pointer;
}
.tools-item .icon {
  position: relative;
  top: 0px;
  margin-right: 6px;
}
.tools-item .dropdown {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #337ab7;
}
.tools-item .dropdown i:after {
  content: '\e635';
}
.goods-list {
  background: #e4e8ee;
  padding: 6px;
}
.goods-list li {
  width: calc((100% - 72px)/ 6);
  float: left;
  padding: 6px;
  background: #e4e8ee;
}
.goods-list li .item-content {
  -webkit-box-shadow: 0 0 4px #c5c8ce;
  -moz-box-shadow: 0 0 4px #c5c8ce;
  box-shadow: 0 0 4px #c5c8ce;
  background: #fff;
}
.goods-list .img-box {
  width: 100%;
  height: 210px;
  text-align: center;
}
.goods-list .productImg {
  display: block;
  width: 100%;
}
.goods-list .productImg img {
  max-width: 100%;
  max-height: 210px;
}
.goods-list .infor-box {
  padding: 16px;
}
.goods-list .infor-box .item {
  width: 100%;
}
.goods-list .brand {
  display: inline-block;
  color: #adadad;
}
.goods-list .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #008000;
}
.goods-list .price {
  color: #000;
  font-weight: bold;
}
.goods-list .desc,
.goods-list .name {
  width: 100%;
  line-height: 18px;
  color: #606060;
  text-align: center;
}
.goods-list .item:last-child {
  margin-top: 6px;
  text-align: center;
  font-size: 0;
}
.goods-list .item:last-child a {
  display: inline-block;
  vertical-align: top;
  width: 80px;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
}
.goods-list .stock {
  border: 1px solid #d7d7d7;
  color: #666666;
}
.goods-list .shopcart {
  background: #337ab7;
  color: #fff;
}
.sidebar {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 110;
}
.sidebar .sidebar-content {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  background: #000;
  z-index: 111;
}
.sidebar .other-side {
  position: absolute;
  top: 0;
  left: 300px;
  width: calc(100% - 400px);
  height: 100%;
  background: transparent;
}
.sidebar .center-box {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar .center-box .infor-box {
  width: calc(100% - 16px);
  padding: 8px;
}
/*下拉框*/
.dropdown-box {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  width: 50%;
  height: 500px;
  transform: translate(-50%);
  z-index: 11;
}
.dropdown-box:after {
  content: '';
  position: absolute;
  top: -15px;
  left: 45%;
  margin-left: -8px;
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-bottom: 16px solid #fff;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  z-index: 999999;
  border-radius: 6px;
}
.brand-term-content {
  width: 100%;
  height: 500px;
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px #ddd;
  -moz-box-shadow: 0 1px 3px #ddd;
  box-shadow: 0 1px 3px #ddd;
}
.term-title {
  padding: 12px 16px;
  text-align: left;
}
.term-list {
  text-align: left;
}
.term-list li {
  padding: 0px 0px 8px 24px;
}
.term-list li a {
  color: #000;
}
.term-list li a:hover {
  color: #337ab7;
}
.price-list {
  background: #fff;
  padding: 8px 16px;
  -webkit-box-shadow: 0 1px 3px #ddd;
  -moz-box-shadow: 0 1px 3px #ddd;
  box-shadow: 0 1px 3px #ddd;
}
.price-list li {
  padding: 6px 0;
  line-height: 22px;
}
.price-list li a {
  color: #000;
}
.price-list li a:hover {
  color: #337ab7;
}
/*商品详情*/
.details-box {
  width: 1140px;
  margin: 30px auto;
}
.details-left-box {
  float: left;
  padding: 20px 0 20px 20px;
  width: 400px;
  position: relative;
}
.details-right-box {
  float: left;
  overflow: hidden;
  padding-left: 20px;
}
.img-box {
  position: relative;
  width: 400px;
  height: 400px;
  margin-bottom: 15px;
  z-index: 1;
  overflow: hidden;
}
.img-box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.img-box .lay {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  border: solid 1px #999;
  background: #fff;
  opacity: 0.5;
  filter: alpha(opacity=60);
}
.img-list-box .img-list {
  margin: auto;
  width: 267px;
}
.img-list-box li {
  display: inline;
  float: left;
  margin-right: 9px;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}
.img-list-box li:last-child {
  margin-right: 0;
}
.img-list-box li.on {
  border: 2px solid #ff3300;
}
.img-list-box li img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.bigimg-box {
  display: none;
  width: 400px;
  height: 400px;
  position: absolute;
  left: 410px;
  top: 20px;
  border: 1px solid #e6e6e6;
  z-index: 100;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.bigimg-box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
/*右部詳情去*/
.datails-title {
  margin: 20px 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.details-price-content {
  padding: 8px;
  background: #f5f5f5;
}
.details-price-content .details-item:last-child {
  margin-bottom: 0;
}
.details-price-content .details-item .desc {
  font-weight: bold;
  color: #f40;
  font-size: 16px;
}
.details-item {
  margin-bottom: 16px;
}
.details-item .name {
  float: left;
  width: 80px;
  margin-right: 8px;
  color: #999;
}
.details-item .desc {
  overflow: hidden;
  color: #000;
}
.shop-parameters-content {
  margin-top: 10px;
  padding: 0 8px;
}
.shop-parameters-content .item {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 8px;
  border: 1px solid #b8b7bd;
  box-sizing: border-box;
  color: #000;
}
.shop-parameters-content .item.active,
.shop-parameters-content .item:hover {
  border: 1px solid #f40;
}
.shop-stock-content {
  margin-top: 10px;
  padding: 0 8px;
}
.shop-stock-content .item {
  margin-right: 8px;
}
.buy-btn {
  display: inline-block;
  vertical-align: top;
  width: 135px;
  height: 34px;
  margin-top: 10px;
  line-height: 34px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  background: #337ab7;
  color: #fff;
}
.buy-btn:hover {
  color: #fff;
}
/*弹窗*/
.modal-mask-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.modal-box {
  width: 600px;
  height: 500px;
  padding: 20px;
  margin: 20px auto;
  background: #fff;
  font-size: 14px;
  color: #000;
}
.modal-title {
  padding: 10px 0;
  text-align: center;
  color: #000;
  font-size: 16px;
}
.modal-contents {
  width: 600px;
  margin: auto;
}
.modal-deatils {
  margin-bottom: 10px;
}
.modal-left {
  width: 80px;
  height: 80px;
  border: 1px solid #999;
  margin-right: 20px;
  float: left;
}
.modal-right {
  padding-top: 20px;
  overflow: hidden;
}
.modal-right .shop-model {
  color: #999;
}
.modal-right .shop-title {
  color: #000;
  line-height: 22px;
}
.infor-list li {
  width: 100%;
}
.infor-list .name {
  float: left;
  width: 80px;
  margin-right: 16px;
  text-align: right;
}
.infor-list .item-input {
  overflow: hidden;
  width: calc(100% - 104px);
  font-size: 0;
}
.infor-list .item-input input {
  width: 90%;
  font-size: 14px;
}
.infor-list .item-input .num {
  width: 200px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 0;
  border-right: 0;
  border-left: 0;
}
.infor-list .item-input a {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  font-size: 14px;
}
.btn-group {
  width: 100%;
  text-align: center;
}
.btn-group a {
  display: inline-block;
  vertical-align: top;
  width: 135px;
  height: 34px;
  margin-top: 10px;
  margin-right: 10px;
  line-height: 34px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  background: #337ab7;
  color: #fff;
}
.btn-group a:last-child {
  background: #fff;
  color: #000;
  border: 1px solid #999;
}
.layer {
  box-sizing: border-box;
  min-width: 100px;
  max-width: 300px;
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 99999;
  border-radius: 6px;
  display: none;
  font-size: 14px;
  padding: 5px;
}
/*购物车*/
.shopcart-list-box {
  width: 1140px;
  margin: 20px auto;
}
.orders-hd {
  height: 40px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  color: #333;
}
.orders-hd .m-inline-block {
  border: 1px solid #e0e0e0;
  height: 38px;
  line-height: 38px;
}
.orders-hd .inline-block-item {
  height: 38px;
  line-height: 38px;
  display: inline-block;
  vertical-align: top;
  word-spacing: normal;
  letter-spacing: normal;
  font-size: 12px;
}
.orders-hd .select-item {
  width: 100px;
  text-align-last: center;
}
.orders-hd .product-item {
  width: 383px;
}
.orders-hd .price-item {
  width: 200px;
  text-align: center;
}
.orders-hd .quantity-item {
  width: 100px;
}
.orders-hd .subtotal-item {
  width: 145px;
  text-align: center;
}
.orders-hd .actions-item {
  padding-left: 20px;
}
.orders-hd .actions-item a {
  margin-right: 8px;
  color: #000;
}
.orders-hd .actions-item a:hover {
  text-decoration: underline;
}
.shop-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.shop-item .shop-brand {
  position: relative;
  height: 28px;
  padding-left: 30px;
  padding-top: 9px;
  border-bottom: 1px solid #e8e8e8;
}
.shop-item .shop-brand .status {
  position: absolute;
  top: 10px;
  right: 16px;
  color: #f40;
}
.shop-content .inline-block-item {
  line-height: 22px;
}
.shop-content li {
  padding-top: 20px;
  min-height: 100px;
}
.shop-content .item {
  display: block;
  width: 100%;
}
.shop-content .product-img {
  width: 80px;
  margin-right: 10px;
}
.shop-content .product-title {
  overflow: hidden;
  color: #9c9c9c;
}
.shop-content .product-title h4 a {
  color: #000;
}
.shop-content .product-title h4 a:hover {
  color: #f40;
  text-decoration: underline;
}
.shop-content .product-stock span {
  margin-right: 8px;
}
.shop-content .quantity-item {
  font-size: 0;
}
.shop-content .quantity-item .text {
  font-size: 12px;
}
.shop-content .quantity-item .num {
  width: 30px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 0;
  border-right: 0;
  border-left: 0;
}
.shop-content .quantity-item a {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  font-size: 14px;
}
.shop-content .actions-item a:hover {
  color: #f40;
}
.cart_paybar {
  position: fixed;
  bottom: 0;
  z-index: 11;
  width: 1140px;
  height: 50px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  line-height: 50px;
  clear: both;
  margin-top: 16px;
}
.cart_paybtn {
  float: right;
  display: block;
  width: 152px;
  height: 51px;
  margin-top: -1px;
  overflow: hidden;
  background: #d8d8d8;
  text-align: center;
}
.cart_paybtn.active {
  background: #f40;
  color: #fff;
}
.cart_paybar_info_cost {
  float: right;
  position: relative;
  padding: 0 12px 0 8px;
  display: inline-block;
  color: #f40;
  font-weight: 700;
  font-size: 18px;
}
.delete {
  position: absolute;
  top: 5px;
  left: 120px;
  color: #000000;
}
.cart_pregray {
  float: right;
  color: #666 !important;
}
.cart_paybar_vmbox {
  position: relative;
  padding-left: 58px;
  padding-top: 20px;
  width: 300px;
  height: 100%;
  vertical-align: middle;
}
.cart_paybar_vmbox label {
  margin-right: 10px;
  color: #333;
}
.cart_paybar_vmbox .s_all_slave {
  position: absolute;
  left: 24px;
  top: 20px;
  font-size: 16px;
}
.cart_pregray {
  color: #666 !important;
}
/*订单页面*/
.order-tab {
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.order-tab li {
  float: left;
  padding: 10px 20px;
  font-size: 16px;
}
.order-tab li a {
  color: #000;
}
.order-tab li.active,
.order-tab li:hover {
  font-size: 16px;
  border-bottom: 2px solid #f40;
}
.order-tab li.active a,
.order-tab li:hover a {
  color: #f40;
}
/*订单详情*/
.order-details-box {
  width: 1140px;
  margin: auto;
  padding-top: 40px;
  color: #666;
}
.order-status-box {
  position: relative;
  padding: 20px 20px;
  font-family: "microsoft yahei";
  border: 1px solid #f0f0f0;
}
.order-status-box .order-number,
.order-status-box .order-time,
.order-status-box .order-tip {
  line-height: 22px;
  color: #939393;
  font-size: 12px;
}
.order-status-box .order-tip {
  color: #863177;
}
.order-status-box .order-status {
  margin-top: 10px;
  font-size: 30px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1;
}
.order-status-box .order-delivery {
  color: #939393;
  font-size: 12px;
  margin-bottom: 20px;
}
.order-status-box .order-delivery .item {
  margin-right: 16px;
}
.order-status-box .order-delivery em {
  color: #000;
}
.order-infor-box {
  margin-top: 40px;
}
.order-infor-box .order-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.order-infor-content {
  padding: 4px 30px 10px;
  background: #f5f5f5;
}
.order-infor-content .item {
  line-height: 1;
  padding: 10px 0;
  font-size: 12px;
  color: #939393;
}
.order-infor-content .item span {
  font-size: 12px;
  color: #000;
}
.item-info {
  margin-top: 10px;
  border-collapse: collapse;
  width: 1140px;
  color: #000;
  font-family: "microsoft yahei";
}
.item-info .tr-th {
  background: #f5f5f5;
  height: 42px;
  line-height: 42px;
  text-align: left;
}
.item-info .itemName {
  width: 50%;
  padding-left: 30px;
  border: 1px solid #e8e8e8;
  border-width: 1px 0 0 1px;
}
.item-info .price,
.item-info .number {
  width: 14%;
  text-align: center;
  vertical-align: middle;
}
.item-info .control {
  width: 22%;
  text-align: center;
  padding-right: 60px;
  border: 1px solid #e8e8e8;
  border-width: 1px 1px 0 0;
  vertical-align: middle;
}
.item-info .goods-item {
  padding: 20px;
  border: 1px solid #e8e8e8;
  border-width: 0 0 1px 1px;
  font-size: 12px;
}
.item-info .goods-item .p-item {
  float: left;
}
.item-info .goods-item .p-item img {
  width: 80px;
  height: 80px;
}
.item-info .goods-item .p-msg {
  float: left;
  margin-left: 10px;
}
.item-info .goods-item .p-msg .name {
  color: #000;
  width: 275px;
  line-height: 22px;
  overflow: hidden;
}
.item-info .goods-item .p-msg .name a:hover {
  color: #863177;
}
.item-info .goods-item .other {
  color: #939393;
  line-height: 1;
  margin-top: 8px;
}
.item-info .tr-td {
  vertical-align: middle;
}
.item-info .tr-td .price,
.item-info .tr-td .num,
.item-info .tr-td .opt {
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  font-weight: bold;
}
.item-info .tr-td .opt {
  padding-right: 55px;
  border: 1px solid #e8e8e8;
  border-width: 0 1px 1px 0;
  font-size: 0;
}
.item-info .tr-td .opt a {
  font-size: 12px;
  margin-bottom: 8px;
}
.item-info .tr-td .opt a:hover {
  color: #863177;
}
.price-info {
  margin-top: 20px;
  text-align: right;
  font-family: "microsoft yahei";
  font-size: 12px;
}
.price-info .detail {
  width: 100%;
  height: 55px;
  float: right;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 16px;
}
.price-info .detail .row {
  height: 22px;
  line-height: 22px;
}
.price-info .detail .name {
  display: inline-block;
  width: 120px;
  color: #939393;
}
.price-info .detail .cost {
  display: inline-block;
}
.price-info .total {
  float: left;
  margin-top: 20px;
  width: 100%;
}
.price-info .total .name {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  color: #939393;
}
.price-info .total .cost {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
  color: #dc1d20;
}
/*消息列表*/
.infor-list-box {
  width: 1140px;
  margin: auto;
}
.infor-nav-content {
  width: 100%;
}
.infor-nav-content li {
  position: relative;
  width: 50%;
  float: left;
  text-align: center;
}
.infor-nav-content li.active a {
  border-bottom: 2px solid #f40;
  color: #f40;
  font-size: 18px;
}
.infor-nav-content li a {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 44px;
  line-height: 44px;
  color: #000;
  font-size: 18px;
}
.infor-nav-content li .dot {
  display: block;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ff1f00;
  border-radius: 50%;
}
.infor-tab-content {
  padding-top: 20px;
}
.infor-tab {
  display: none;
}
.infor-tab.active {
  display: block;
}
.infor-tab li {
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  line-height: 22px;
}
.infor-tab li .time {
  margin-bottom: 8px;
  font-size: 12px;
}
.infor-tab li .del {
  display: none;
  position: absolute;
  top: 20px;
  right: 12px;
  color: #8f8f8f;
}
.infor-tab li:hover .del {
  display: block;
}



.page-wrap{
	width: 100%;
	background-color: #fff;
}
.page-control{
	margin: 58px auto 40px auto;
	width: 340px;
}
.page-control a{
	display: block;
	float: left;
	text-align: center;
	width: 30px;
	height: 30x;
	line-height: 30px;
	border: 1px solid #ccc;
	margin: 6px;
	color: #337ab7;
	text-decoration: none;
}
.page-control .page-active{
	background-color: #337ab7;
	border-color: @blue;
	color: #fff;
}


