@charset "UTF-8";
/**
* 专属客服中心
* date:2022-9-28
* author: xujiawei;
 */
.header {
  height: 72px;
  background: #fff;
}

.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header .logo {
  height: 72px;
  line-height: 72px;
  padding-left: 100px;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  background: url("../images/logo.png") no-repeat left 18px;
}

.header span {
  position: relative;
  margin-left: 30px;
  font-size: 16px;
  color: #000000;
}

.header span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 12px;
  background: #d9d9d9;
}

.banner {
  background: url("../images/banner.png") no-repeat;
}

.user {
  position: relative;
  height: 96px;
  /* display: flex; */
  /* align-items: center; */
  z-index: 1;
}

.user::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  border-bottom: 2px solid #ffffff;
  box-sizing: border-box;
  height: 96px;
  background: rgba(240, 244, 255, 0.6);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.user .avatar {
  width: 40px;
  height: 40px;
  border: 2px #fff solid;
  overflow: hidden;
  margin-right: 12px;
  border-radius: 50%;
}

.user .vip {
  width: 44px;
  height: 22px;
  overflow: hidden;
  margin-left: 8px;
}

.vip-described {
  display: none;
  flex-direction: column;
  align-items: center;
}

.vip-described .package-condition {
  height: 24px;
  line-height: 24px;
  color: #fff;
  padding: 0 14px;
  margin-right: 6px;
  background: url("../images/package_condition_bg.png") no-repeat;
  background-size: 100% 100%;
  display: block;
  display:block!important;
}

.user > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
}

.user-history {
  width: 116px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #3371ff;
  border-radius: 2px;
  display: inline-block;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-account {
  display: inline-block;
  font-size: 20px;
  color: #222222;
}

.user .vip-box > div {
  margin-bottom: 12px;
}

.order-box {
  width: 100%;
  height: 800px;
}

.footer {
  width: 100%;
  height: 66px;
  line-height: 66px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background: #293139;
}

.back {
  display: block;
  width: 100px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #3371ff;
  margin-left: 15px;
  position: absolute;
  right: 50px;
}

.back:hover {
  color: #fff;
}

.vip-box{
  position: relative;
}
.vip-described{
  position: absolute;
  display: block;
  top: 40px;
  left: 0px;
  width: 522px;
}

.vip-described>div{
  display: flex;
  align-items: center;
  padding: 0 0 0 8px;
}
.vip-described>div+div{
  padding: 4px 0 4px 8px;
  background: #fff;
  display: none;
}

/* 当.vip-described下的div子元素数量大于2时，对第一个子元素应用样式 */
.vip-described > div:nth-child(1):not(:nth-last-child(-n+1)) {
  cursor: pointer;
  background: url(../images/drop-arrow.png) no-repeat right center;
}

.vip-described>div.active ~ div{
  display: flex;
}
.vip-described>div:nth-child(2){
  padding-top: 8px;
}
.vip-described>div:last-child{
  padding-bottom: 8px;
}
