.cart-dialog {
  display: inline-block;
  position: relative;
}

.cart-dialog-ctx {
  display: none;
  position: absolute;
  right: 0;
  transform: translateY(10px);
  width: 600px;
  height: 370px;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
  box-shadow: 4px 4px 30px 0 rgba(72, 84, 106, 0.08);
  padding: 12px;
  background-color: #fff;
}

.cart-dialog-login:hover .cart-dialog-ctx {
  display: block;
}

.cart-dialog .no-data img {
  display: block;
  width: 96px;
  height: 83px;
  margin: 112px auto 20px;
}

.cart-dialog .no-data .tips {
  color: #5A6A84;
  text-align: center;
  font-size: 14px;
}

.cart-dialog-title {
  color: #333;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 12px;
}

.cart-dialog-title .cart-num {
  color: #004F9A;
  font-size: 14px;
  line-height: normal;
  margin-left: 6px;
}

.tabel-box {
  border-radius: 6px;
  border: 1px solid #F2F2F2;
  padding-bottom: 5px;
  box-sizing: border-box;
}

.tabel-box .tabel-header,
.tabel-box .table-body .table-item {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid #f2f2f2;
}

.tabel-box .tabel-header {
  background-color: #F7F8FA;
  height: 35px;
  line-height: 35px;
}

.tabel-box .tabel-header p {
  color: #333;
  font-size: 12px;
  text-align: left;
  margin-right: 10px;
}

.tabel-box .table-body{
  height: 230px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}

.tabel-box .table-body .table-item {
  height: 30px;
  line-height: 30px;
}

.tabel-box .table-body p {
  color: #5A6A84;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  margin-right: 10px;
}

.tabel-box .check {
  flex: 0 0 24px;
}

.tabel-box .check img {
  width: 14px;
  height: 14px;
  margin: 10px 0 0 10px;
}

.tabel-box .model {
  flex: 0 0 114px;
}

.tabel-box .br {
  flex: 0 0 104px;
}

.tabel-box .cart-price {
  flex: 0 0 84px;
}

.tabel-box .cart-num {
  flex: 0 0 64px;
}

.tabel-box .sub {
  flex: 0 0 84px;
}

.tabel-box .action {
  flex: 0 0 32px;
}

.cart-dialog-footer {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  justify-content: flex-end;
  color: #333;
  font-size: 12px;
  line-height: 32px;
}

.cart-dialog-footer .cart-btn {
  height: 32px;
  line-height: 32px;
  padding: 0 18px;
  color: #FFF;
  font-size: 14px;
  border-radius: 6px;
  background: #0071DC;
}