
#chatbox {
  width: 400px;
  height: 500px;
  background-color: #F5F5F5;
  text-align: left;
  line-height: normal;
  color: #000;
  cursor: auto;
  top: -380px;
  border: 1px solid #ddd;
}
#chatbox:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 6px solid #fff;
  right: -12px;
  top: 388px;
}
#chatbox .chatboxHeader {
  background-color: #5C7DB5;
  color: #fff;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  box-sizing: border-box;
}
#chatbox .chatboxHeader .chathide {
  cursor: pointer;
}
#chatbox .chatboxHeader .chatbreak {
  margin-left: 10px;
  cursor: pointer;
}
#chatbox .chatList {
  padding: 10px;
  overflow: auto;
  max-height: 340px;
  width: 100%;
}
#chatbox .chatList .chatItem {
  margin-bottom: 10px;
}
#chatbox .chatList .chatItem.receive {
  text-align: left;
}
#chatbox .chatList .chatItem.receive .chatMsgBox {
  float: left;
  text-align: left;
  word-break: break-all;
}
#chatbox .chatList .chatItem.send {
  text-align: right;
}
#chatbox .chatList .chatItem.send .chatMsgBox {
  float: right;
  text-align: left;
}
#chatbox .chatList .chatItem .chatItemDate {
  color: #B3B9BB;
  font-size: 12px;
  margin-bottom: 5px;
}
#chatbox .chatList .chatItem .chatItemInfo {
  width: 100%;
  font-size: 12px;
}
#chatbox .chatList .chatItem .chatItemInfo:after {
  display: table;
  content: '';
  clear: both;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 0 10px;
  max-width: 70%;
  word-break: break-all;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox.file {
  background-color: #F5F5F5;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox .chatMsgFile {
  width: 200px;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox .chatMsgFile:hover {
  color: #333;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox .chatMsgFile .chatMsgFileName {
  flex: 3;
  display: inline-block;
}
#chatbox .chatList .chatItem .chatItemInfo .chatMsgBox .chatMsgFile .chatMsgFileIcon {
  flex: 1;
  height: 38px;
  display: inline-block;
}
#chatbox .chatOperation {
  border-top: 1px solid #ddd;
  background-color: #fff;
  height: 110px;
  padding: 10px 15px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#chatbox .chatOperation .operationList {
  width: 100%;
  height: 20px;
  line-height: 20px;
  margin-bottom: 5px;
}
#chatbox .chatOperation .chatTextArea {
  width: 100%;
  height: 50px;
  resize: none;
  outline: none !important;
  border: 1px solid #fff;
}
#chatbox .chatOperation .operation {
  width: 100%;
  display: flex;
}
#chatbox .chatOperation .operation .iconBox {
  flex: 1;
  display: flex;
}
#chatbox .chatOperation .operation .sendBtn {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
  height: 30px;
  color: #fff;
}

#batchIcon {
  background-color: #fff;
  padding: 16px 10px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  width: 128px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#batchIcon .closeIcon {
  cursor: pointer;
  color: #999;
  font-size: 15px;
  position: absolute;
  top: 15px;
  right: 5px;
}
#batchIcon div {
  color: #000;
}
#batchIcon .batchIconTitle {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
#batchIcon .batchIconStyle {
  font-size: 28px;
  height: 18px;
  line-height: 18px;
  margin: 12px 0;
}
#batchIcon .batchDesc {
  color: #555555;
  line-height: 20px;
  color: #555;
  text-align: left;
  font-size: 12px;
}

.sideBar {
  position: fixed;
  top: 250px;
  right: 0;
  z-index: 10;
}
.sideBar .item {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  margin-bottom: 1px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sideBar .item .title {
  font-size: 12px;
  line-height: 17px;
  transform: scale(0.9);
}
.sideBar .item > .iconfont {
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sideBar .item .itemShow {
  display: none;
  position: absolute;
  top: -50px;
  left: -128px;
}
.sideBar .item > .ecart {
  display: block;
  position: absolute;
  right: 0px;
  top: -8px;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  background-color: #e50012;
  color: #fff;
  text-align: center;
  padding: 0 6px;
}
.sideBar .item:hover > div {
  display: block;
}
.sideBar .item:hover > #chatbox {
  display: none;
}
.sideBar .item > div {
  display: none;
  position: absolute;
  right: 50px;
  top: 0px;
  background-color: #ddd;
  color: #fff;
}
.sideBar .item > div.qrBox {
  padding: 14px 4px;
  line-height: normal;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.sideBar .item > div.qrBox img {
  width: 120px;
  height: 120px;
}
.sideBar .item > div.qrBox div {
  margin-bottom: 14px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
.sideBar .item .contactImg {
  display: flex!important;
  justify-content: space-around;
  align-items: start;
}
.sideBar .item .contactImg img {
  width: 120px;
  height: auto;
}
.sideBar .item > div.contactUS {
  position: absolute;
  top: -153px;
  width: 296px;
  height: auto;
  padding: 25px 20px;
  box-sizing: border-box;
  background-color: #fff !important;
  text-align: left;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.sideBar .item > div.contactUS > div {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 20px;
  white-space: nowrap;
  display: flex;
}
.sideBar .item > div.contactUS > div .paramBox {
  width: 48px;
  margin-right: 10px;
  color: #666;
}
.sideBar .item > div.contactUS > div .valueBox {
  flex: 1;
  white-space: pre-wrap;
  color: #333;
}
.sideBar .item #chatHref {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.sideBar .item > div#chatTips {
  background-color: #fff;
  white-space: nowrap;
  display: block;
  padding: 5px 10px;
  font-size: 12px;
  color: #666;
  box-shadow: 0 0 6px 2px #ddd;
}
.sideBar .item > div#chatTips:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 6px solid #fff;
  right: -12px;
}
.sideBar .item .anima {
  animation-name: likes;
  animation-direction: alternate;
  animation-timing-function: liner;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
@keyframes likes {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.sideBar .chat .msgIcon {
  background-color: #e50012;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 3px;
}

#login-box {
  word-spacing: -4px;
}
#login-box input[type=checkbox] {
  cursor: pointer;
  position: relative;
  top: -2px;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  font-size: 14px;
  vertical-align: middle;
}
#login-box input[type=checkbox]::after {
  position: absolute;
  top: 0;
  background-color: #fff;
  color: #666;
  width: 15px;
  height: 15px;
  display: inline-block;
  visibility: visible;
  padding-left: 0px;
  text-align: center;
  content: ' ';
  border-radius: 3px;
  border: 1px solid #ddd;
}
#login-box input[type=checkbox]:checked::after {
  content: "\2713";
  font-size: 14px;
  font-weight: normal;
  color: #e30c1e;
  border-color: #e30c1e;
}
#login-box .login-tab {
  width: 100%;
  text-align: center;
}
#login-box .login-tab-item {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
#login-box .login-tab-item.active {
  color: #e30c1e;
  border-bottom: 2px solid #e30c1e;
}
#login-box .login-content {
  padding: 0 28px 10px 28px;
}
#login-box #login-form,
#login-box #login-verification-form {
  margin: 0 auto;
  margin-top: 20px;
}
#login-box #login-form .row-protocal .input-contain,
#login-box #login-verification-form .row-protocal .input-contain {
  height: 30px;
  font-size: 14px;
  position: relative;
  color: #666;
}
#login-box #login-form .row-protocal .input-contain input[type=checkbox],
#login-box #login-verification-form .row-protocal .input-contain input[type=checkbox] {
  top: -1px;
  margin-right: 10px;
}
#login-box #login-form .row-protocal .input-contain input[type=checkbox]:checked::after,
#login-box #login-verification-form .row-protocal .input-contain input[type=checkbox]:checked::after {
  color: #e30c1e !important;
  border-color: #e30c1e !important;
}
#login-box #login-form .row-protocal .input-contain #protocol-error,
#login-box #login-verification-form .row-protocal .input-contain #protocol-error {
  position: absolute;
  top: 20px;
  left: 0;
}
#login-box #login-form .row-small,
#login-box #login-verification-form .row-small {
  font-size: 12px;
  color: #666;
  margin: 15px 0 0px;
  height: 20px;
  line-height: 20px;
}
#login-box #login-form .row-small .forget-pwd,
#login-box #login-verification-form .row-small .forget-pwd {
  color: #666;
  cursor: pointer;
}
#login-box #login-form .row-small .registerBox,
#login-box #login-verification-form .row-small .registerBox {
  cursor: pointer;
}
#login-box #login-form .row-small .registerBox .iconfont,
#login-box #login-verification-form .row-small .registerBox .iconfont {
  top: 1px;
  margin-right: 3px;
  font-size: 15px;
}
#login-box #login-form .row,
#login-box #login-verification-form .row {
  line-height: 22px;
  margin-bottom: 26px;
}
#login-box #login-form .row:after,
#login-box #login-verification-form .row:after {
  content: '';
  display: table;
  clear: both;
}
#login-box #login-form .row .label,
#login-box #login-verification-form .row .label {
  height: 40px;
  float: left;
  font-size: 16px;
  line-height: 40px;
  text-align: right;
}
#login-box #login-form .row .input-contain,
#login-box #login-verification-form .row .input-contain {
  display: flex;
  height: 40px;
  width: 100%;
  font-size: 14px;
  position: relative;
}
#login-box #login-form .row .input-contain .iconfont,
#login-box #login-verification-form .row .input-contain .iconfont {
  font-size: 16px;
  padding: 10px 10px 11px;
  border: 1px solid #e2e2e2;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  background-color: #f6f6f6;
}
#login-box #login-form .row .input-contain .iconfont.icon-verify,
#login-box #login-verification-form .row .input-contain .iconfont.icon-verify {
  font-size: 18px;
  padding: 9px 10px 10px;
}
#login-box #login-form .row .input-contain .icon-yanjing_yincang,
#login-box #login-verification-form .row .input-contain .icon-yanjing_yincang,
#login-box #login-form .row .input-contain .icon-yanjing_zhengyan,
#login-box #login-verification-form .row .input-contain .icon-yanjing_zhengyan {
  background: transparent;
  border: none;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
#login-box #login-form .row .input-contain .radio-label,
#login-box #login-verification-form .row .input-contain .radio-label {
  height: 40px;
  line-height: 40px;
}
#login-box #login-form .row .input-contain .radio-label .radio-style,
#login-box #login-verification-form .row .input-contain .radio-label .radio-style {
  display: block;
  width: 120px;
  height: 40px;
  border: 1px solid #e2e2e2;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  box-sizing: border-box;
}
#login-box #login-form .row .input-contain .radio-label .radio-style.active,
#login-box #login-verification-form .row .input-contain .radio-label .radio-style.active {
  color: #fff;
}
#login-box #login-form .row .input-contain .input-style,
#login-box #login-verification-form .row .input-contain .input-style {
  margin-left: -1px;
  border: 1px solid #e2e2e2;
  padding: 0 10px;
  line-height: 39px;
  height: 40px;
  font-size: 14px;
  width: 278px;
  border-top-left-radius: 0!important;
  border-bottom-left-radius: 0!important;
  outline: none;
}
#login-box #login-form .row .input-contain .input-style::-webkit-input-placeholder,
#login-box #login-verification-form .row .input-contain .input-style::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 12px;
}
#login-box #login-form .row .input-contain .input-style::-moz-placeholder,
#login-box #login-verification-form .row .input-contain .input-style::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 12px;
}
#login-box #login-form .row .input-contain .input-style:-ms-input-placeholder,
#login-box #login-verification-form .row .input-contain .input-style:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 12px;
}
#login-box #login-form .row .input-contain .input-style-less,
#login-box #login-verification-form .row .input-contain .input-style-less {
  width: 163px;
}
#login-box #login-form .row .input-contain .input-more,
#login-box #login-verification-form .row .input-contain .input-more {
  display: block;
}
#login-box #login-form .row .input-contain .input-more.verification-code-btn,
#login-box #login-verification-form .row .input-contain .input-more.verification-code-btn {
  display: inline-block;
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #efefef;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  box-sizing: border-box;
}
#login-box #login-form .row .input-contain .input-more.verification-code-btn.active,
#login-box #login-verification-form .row .input-contain .input-more.verification-code-btn.active {
  color: #999;
}
#login-box #login-form .row .input-contain .input-more .graphics,
#login-box #login-verification-form .row .input-contain .input-more .graphics {
  width: 100px;
  height: 40px;
  box-sizing: border-box;
}
#login-box #login-form .row .input-contain .login-btn,
#login-box #login-verification-form .row .input-contain .login-btn {
  background-color: #e30c1e;
  color: #fff;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
#login-box #login-form .row .input-contain #smsverify-error,
#login-box #login-verification-form .row .input-contain #smsverify-error {
  position: absolute;
  left: 0;
  top: 40px;
}

.register-tab {
  width: 100%;
  text-align: center;
}
.register-tab-item {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
.register-tab-item.active {
  color: #e30c1e;
  border-bottom: 2px solid #e30c1e;
}
#register-form {
  margin: 20px;
}
#register-form .row {
  margin-bottom: 22px;
}
#register-form .row:after {
  content: '';
  display: table;
  clear: both;
}
#register-form .row .label {
  margin-bottom: 6px;
  line-height: 34px;
}
#register-form .row .input-contain {
  position: relative;
  width: 316px;
  font-size: 14px;
}
#register-form .row .input-contain .active {
  top: -1px;
  background-color: #e50012;
  color: #fff;
}
#register-form .row .input-contain #privacy-error {
  position: absolute;
  top: 20px;
  left: 0;
}
#register-form .row .input-contain .radio-label .radio-style {
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e2e2e2;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 14px;
}
#register-form .row .input-contain .radio-label input:checked + span {
  border-color: #e30c1e;
  color: #fff;
  background-color: #e30c1e;
}
#register-form .row .input-contain .radio-label .radio-input {
  display: none;
}
#register-form .row .input-contain .input-style {
  float: left;
  border: 1px solid #e2e2e2;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  font-size: 14px;
  font-family: "\5FAE\8F6F\96C5\9ED1";
  width: 228px;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}
#register-form .row .input-contain .input-style::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 12px;
}
#register-form .row .input-contain .input-style::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 12px;
}
#register-form .row .input-contain .input-style:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 12px;
}
#register-form .row .input-contain .input-style-less {
  width: 200px;
}
#register-form .row .input-contain .input-more {
  display: block;
  line-height: 40px;
}
#register-form .row .input-contain .input-more.verification-code-btn {
  display: inline-block;
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #efefef;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  box-sizing: border-box;
}
#register-form .row .input-contain .input-more.verification-code-btn.active {
  color: #999;
}
#register-form .row .input-contain .input-more .graphics {
  width: 100px;
  height: 40px;
  box-sizing: border-box;
  cursor: pointer;
}
#register-form .row .input-contain .input-more .icon-refresh {
  font-size: 20px;
  color: #666;
  cursor: pointer;
}
#register-form .row .input-contain .register-submit-btn {
  background-color: #e30c1e;
  color: #fff;
  height: 40px;
  width: 316px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}
#register-form .row .input-contain .icon-more1 {
  top: 1px;
  margin-right: 5px;
  font-size: 16px;
  color: #e50012;
}

#rstpwd-form {
  padding-top: 20px;
}
#rstpwd-form .row {
  height: 40px;
  margin-bottom: 20px;
}
#rstpwd-form .row:after {
  content: '';
  display: table;
  clear: both;
}
#rstpwd-form .row .label {
  height: 40px;
  float: left;
  font-size: 16px;
  line-height: 40px;
  text-align: right;
}
#rstpwd-form .row .input-contain {
  height: 41px;
  width: 100%;
  text-align: center;
}
#rstpwd-form .row .input-contain .iconfont {
  font-size: 16px;
  padding: 10px 10px 11px;
  border: 1px solid #e2e2e2;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  background-color: #f6f6f6;
  border-right: none;
  height: 41px;
}
#rstpwd-form .row .input-contain .iconfont.icon-verify {
  font-size: 18px;
  padding: 9px 10px 10px;
}
#rstpwd-form .row .input-contain .radio-label {
  height: 40px;
  line-height: 40px;
}
#rstpwd-form .row .input-contain .radio-label .radio-style {
  display: block;
  width: 120px;
  height: 40px;
  border: 1px solid #e2e2e2;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  box-sizing: border-box;
}
#rstpwd-form .row .input-contain .radio-label .radio-style.active {
  border-color: #e50012;
  color: #fff;
  background-color: #e50012;
}
#rstpwd-form .row .input-contain .input-style {
  float: left;
  border: 1px solid #e2e2e2;
  padding: 0 10px;
  line-height: 41px;
  height: 41px;
  font-size: 14px;
  font-family: "\5FAE\8F6F\96C5\9ED1";
  width: 228px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  box-sizing: border-box;
  width: 275px;
  outline: none;
}
#rstpwd-form .row .input-contain .input-style::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 12px;
}
#rstpwd-form .row .input-contain .input-style::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 12px;
}
#rstpwd-form .row .input-contain .input-style:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 12px;
}
#rstpwd-form .row .input-contain .input-style-less {
  width: 167px;
}
#rstpwd-form .row .input-contain .input-more {
  display: block;
}
#rstpwd-form .row .input-contain .input-more.verification-code-btn {
  display: inline-block;
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #efefef;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  box-sizing: border-box;
}
#rstpwd-form .row .input-contain .input-more.verification-code-btn.active {
  color: #999;
}
#rstpwd-form .row .input-contain .input-more .graphics {
  width: 100px;
  height: 40px;
  box-sizing: border-box;
}
#rstpwd-form .reset-btn {
  background-color: #e30c1e;
  color: #fff;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

.areaBoxSlot {
  position: relative;
  top: 0px;
  display: inline-block;
}
.areaBoxSlot div {
  margin-top: -7px;
}
.areaBoxSlot .hide {
  display: none;
}
.areaBoxSlot .areaBox {
  display: flex;
  align-items: center;
}
.areaBoxSlot .area-list {
  position: absolute;
  width: 522px;
  min-height: 300px;
  padding: 10px;
  background-color: #fff;
  z-index: 101;
  box-shadow: 0 0 6px 2px #ddd;
  line-height: normal;
  cursor: pointer;
}
.areaBoxSlot .area-list .area-header {
  text-align: left;
}
.areaBoxSlot .area-list .area-header .area-lbl {
  margin-right: 10px;
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid #ddd;
  border-bottom: none;
}
.areaBoxSlot .area-list .area-header .area-lbl.active {
  border: 2px solid #e50012;
  border-bottom-color: #fff;
}
.areaBoxSlot .area-list .area-header .area-lbl .glyphicon {
  margin-left: 5px;
  color: #999;
}
.areaBoxSlot .area-list .area-body {
  margin-top: -2px;
  border-top: 2px solid #e50012;
  padding: 5px;
  text-align: left;
}
.areaBoxSlot .area-list .area-body span {
  display: inline-block;
  padding: 1px 6px;
  margin: 6px;
}
.areaBoxSlot .area-list .area-body span.active,
.areaBoxSlot .area-list .area-body span:hover {
  background-color: #e50012;
  color: #fff;
  border-radius: 4px;
}
.areaBoxSlot:hover .area-list {
  display: block;
}

.main-tab {
  min-width: 1152px;
  height: 32px;
  line-height: 32px;
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
}
.main-tab .split {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 20px;
  font-size: 12px;
  text-align: center;
  color: #A9A9A9;
}
.main-tab .mainTabLeft {
  display: flex;
  align-items: center;
}
.main-tab .mainTabLeft .areaSelect {
  margin-left: 10px;
}
.main-tab .unlogin {
  position: relative;
}
.main-tab .unlogin .unlogin-tips {
  position: absolute;
  top: 25px;
  left: 85px;
  white-space: nowrap;
  z-index: 99;
  background-image: url('https://file.gongbangbang.com/20220704103631c90c408710f148e08563175f74296706.png');
  background-size: 100% 100%;
  color: #fff;
}
.main-tab .unlogin .unlogin-tips .tips-box {
  padding-top: 7px;
  height: 30px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 5px;
  cursor: pointer;
}
.main-tab-list {
  width: 1152px;
  margin: 0 auto;
  text-align: right;
  font-size: 13px;
}
.main-tab-list-item {
  cursor: pointer;
  display: inline-block;
  color: #333;
  font-size: 13px;
}
.main-tab-list-item-mobile {
  color: #e50012;
  font-size: 16px;
}
.main-tab-list-item.register {
  margin-left: 10px;
}
.main-tab-list-item.share {
  position: relative;
  cursor: auto;
}

.searchFixed {
  position: fixed !important;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e8e8e8;
}
.topSearchBox {
  width: 100%;
  background-color: #fff;
  height: 100px;
  position: relative;
}
.topSearchBox.onTop {
  position: fixed;
  top: 0;
  border-bottom: 1px solid #e8e8e8;
  z-index: 9;
}
.topSearchBox.onTop .top-search tr td {
  padding: 8px 0;
}
.topSearchBox .top-search {
  width: 1152px;
  margin: 0 auto;
  display: flex;
  max-height: 100px;
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.topSearchBox .top-search .titleBox {
  vertical-align: middle;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  overflow: hidden;
  display: flex;
  height: 100%;
  align-items: center;
  width: 380px;
}
.topSearchBox .top-search .titleBox img {
  max-width: 320px;
  max-height: 46px;
  vertical-align: middle;
}
.topSearchBox .top-search .titleBox .svg {
  height: 46px;
}
.topSearchBox .top-search .titleBox span {
  margin-left: 15px;
}
.topSearchBox .top-search .search-box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.topSearchBox .top-search .search-box-input {
  width: 400px;
  height: 40px;
  font-size: 14px;
  border: 2px solid #323232;
  padding: 0 0 0 15px;
  outline: none;
  border-radius: 2px!important;
  margin-left: 10px;
}
.topSearchBox .top-search .search-box-input :focus {
  outline: none;
  border: 2px solid #323232;
}
.topSearchBox .top-search .search-box-btn {
  margin-left: -4px;
  display: inline-block;
  width: 73px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  vertical-align: top;
  background-color: #323232;
  color: #fff;
  cursor: pointer;
}
.topSearchBox .top-search .search-box-btn:hover {
  opacity: 0.9;
}
.topSearchBox .top-search .cart-btn {
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  width: 150px;
  margin-left: 15px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
}
.topSearchBox .top-search .cart-btn:hover {
  opacity: 0.9;
}
.topSearchBox .top-search .cart-btn .icon-cart {
  font-size: 18px;
}
.topSearchBox .top-search .cart-count {
  display: none;
  margin-left: 3px;
}
.topSearchBox .top-search .cart-count.actionCount {
  animation: doCountAction 0.4s infinite;
  animation-iteration-count: 1;
}
@keyframes doCountAction {
  from {
    font-size: 12px;
  }
  to {
    font-size: 16px;
    font-weight: bold;
  }
}
.topSearchBox .top-search .order-btn {
  display: inline-block;
  line-height: 40px;
  vertical-align: middle;
  height: 40px;
  font-size: 16px;
  color: #222;
  width: 104px;
  margin-left: 15px;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
  border: 1px solid #EEEEEE;
}
.topSearchBox .top-search .keywordBox {
  text-align: left;
  position: relative;
  top: 8px;
  font-size: 12px;
}
.topSearchBox .top-search .keywordBox a {
  color: #666;
}
.topSearchBox .top-search .keywordBox .keywordItem {
  margin-left: 10px;
}
.topSearchBox .top-search .topQrcode {
  position: absolute;
  right: -110px;
  text-align: center;
  top: calc(50% - 40px);
}
.topSearchBox .top-search .topQrcode .topQrcodeImg {
  width: 110px;
  height: 110px;
}

.main-top {
  min-width: 1152px;
  background: #fff;
}
.main-top.fixedTop {
  margin-top: 100px;
}
.main-top .navBox {
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
.main-top .navBox .content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.main-top .navBox .content .catalog {
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  height: 40px;
  padding: 0 0 0 1px;
  /*产品分类*/
}
.main-top .navBox .content .catalog:hover .catalogWrap {
  height: 416px!important;
}
.main-top .navBox .content .catalog .iconfont {
  font-size: 16px;
  margin-right: 6px;
}
.main-top .navBox .content .catalog .catalogWrap {
  position: absolute;
  left: 0;
  top: 40px;
  width: 228px;
  height: 416px;
  background-color: #fff;
  z-index: 2;
  overflow-y: auto;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.main-top .navBox .content .catalog .catalogWrap {
  background-color: #fff;
  opacity: 1;
  text-align: left;
}
.main-top .navBox .content .catalog .catalogWrap .catalogLevel_1 {
  line-height: 38px;
  padding: 0 20px;
}
.main-top .navBox .content .catalog .catalogWrap .catalogLevel_1 > a {
  margin-left: 16px;
  color: #000;
}
.main-top .navBox .content .catalog .catalogWrap .catalogLevel_1 > a:first-child {
  margin-left: 0;
}
.main-top .navBox .content .catalog .catalogWrap .catalogLevel_1 .gapLine {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #999;
  position: relative;
  left: 8px;
  top: 1px;
}
.main-top .navBox .content .catalog .catalogWrap .catalogLevel_1:hover > a {
  color: #fff;
}
.main-top .navBox .content .catalog .itemWrap {
  position: absolute;
  left: 228px;
  top: 40px;
  width: 924px;
  background-color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.main-top .navBox .content .catalog .fixedWrap {
  width: 200px;
  height: 416px;
  overflow: auto;
  overflow-x: hidden;
  background-color: #fafafa;
}
.main-top .navBox .content .catalog .fixedWrap:after {
  content: '';
  position: fixed;
  display: block;
}
.main-top .navBox .content .catalog .catalogLevel_2 {
  display: block;
  width: 200px;
  height: 40px;
  padding-left: 20px;
  line-height: 40px;
  background-color: #fafafa;
}
.main-top .navBox .content .catalog .catalogLevel_2:first-child .catalogLevel_3 {
  display: block;
}
.main-top .navBox .content .catalog .catalogLevel_2:hover .catalogLevel_3 {
  display: block;
}
.main-top .navBox .content .catalog .level2_item:hover + .catalogLevel_3 {
  display: block;
}
.main-top .navBox .content .catalog .catalogLevel_3 {
  display: none;
  z-index: 10;
  position: absolute;
  left: 196px;
  top: 0px;
  width: 725px;
  height: 414px;
  overflow: auto;
  padding-top: 20px;
  padding-left: 4px;
  background-color: transparent;
}
.main-top .navBox .content .catalog .catalogLevel_3 > div {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  background: #fff;
  height: 100%;
}
.main-top .navBox .content .catalog .level3_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: 30px;
  padding-bottom: 20px;
  width: 68px;
}
.main-top .navBox .content .catalog .level3_item div {
  width: 68px;
  height: 68px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-top .navBox .content .catalog .level3_item span {
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
  text-align: center;
}
.main-top .navBox .content .linksBox {
  margin-left: 10px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
}
.main-top .navBox .content .linksBox .bbjx > div {
  background-size: cover;
  position: absolute;
  width: 56px;
  text-align: center;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  top: -14px;
  right: -24px;
  font-size: 12px;
}
.main-top .navBox .content .linksBox .item {
  position: relative;
  color: #333;
  display: inline-block;
  padding: 0 20px;
  cursor: pointer;
  z-index: 100;
  height: 32px;
  font-weight: bold;
}
.main-top .navBox .content .linksBox .item:hover .itemSubBox {
  display: block;
}
.main-top .navBox .content .linksBox .item .itemSubBox {
  display: none;
  position: absolute;
  left: calc((100% - 96px) / 2);
  top: 32px;
  background-color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  border-top: none;
  z-index: 2;
  min-width: 96px;
}
.main-top .navBox .content .linksBox .item .itemSubBox > div {
  text-align: center;
  font-weight: normal;
}
.main-top .navBox .content .linksBox .item .itemSubBox > div:first-child {
  border-top: none;
}
.main-top .navBox .content .linksBox .item .itemSubBox > div:hover {
  cursor: pointer;
}
.main-top .navBox .content .linksBox .item .itemSub {
  position: relative;
  color: #333;
}
.main-top .navBox .content .linksBox .item .itemSub:hover {
  color: #FA5244;
}
.main-top .navBox .content .linksBox .item .itemSub:hover .extraSubBox {
  display: block;
}
.main-top .navBox .content .linksBox .item .extraSubBox {
  display: none;
  position: absolute;
  left: calc(100%);
  top: 0px;
  background-color: #fff;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1);
  border-top: none;
  z-index: 2;
  width: 96px;
  color: #333;
}
.main-top .navBox .content .linksBox .item .extraSubBox > div {
  text-align: center;
  font-weight: normal;
}
.main-top .navBox .content .linksBox .item .extraSubBox > div a {
  color: #333;
}
.main-top .navBox .content .linksBox .item .extraSubBox > div:first-child {
  border-top: none;
}
.main-top .navBox .content .linksBox .item .extraSubBox > div:hover {
  color: #FA5244;
  cursor: pointer;
}

#priceSlotModal .infoRow {
  margin-bottom: 10px;
}
#priceSlotModal .infoRow .infoLabel {
  width: 20%;
  text-align: right;
  padding-right: 20px;
}
#priceSlotModal .infoRow .infoContent {
  width: 80%;
}
#priceSlotModal .infoRow .infoContent .iconShow {
  width: 16px;
  height: 16px;
  display: inline-block;
}
#priceSlotModal .infoRow .infoContent .otherRow {
  margin-bottom: 10px;
}
#priceSlotModal .infoRow .infoContent .otherRow .otherContent {
  margin-left: 5px;
  float: left;
  width: 300px;
}

.footer {
  width: 100%;
  min-width: 1152px;
  background-color: #fff;
  color: #ccc;
  background: #282828;
  color: #8A8A8A;
}
.footer .content-footer {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 30px 0;
  width: 1152px;
  height: 210px;
  margin: 0 auto;
  min-width: 1152px;
}
.footer .item-wrap .iconfont {
  font-size: 24px;
  margin-right: 6px;
}
.footer .item-wrap > div {
  line-height: 16px;
  margin-bottom: 24px;
  display: flex;
  max-width: 320px;
}
.footer .item-wrap > div:hover {
  color: #fff;
  cursor: pointer;
}
.footer .line {
  width: 1px;
  height: 110px;
  background: #3F3F3F;
}
.footer .img-wrap {
  display: flex;
}
.footer .img-wrap > div {
  margin-right: 24px;
  text-align: center;
}
.footer .img-wrap > div p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 16px;
}
.footer .beianBox {
  text-align: center;
  height: 30px;
  background-color: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer .beianBox .certificate_wrap {
  display: inline-block;
}
.footer .beianBox .certificate_wrap a {
  display: inline-block;
  margin-right: 10px;
}
.footer .beianBox > span {
  display: flex;
  align-items: center;
}
.footer .beianBox a {
  color: #6b6b6b;
}
.footer .beianBox a:hover {
  color: #fff;
}

