a{
  color: inherit;
}

.head-wrap > *{
  overflow: unset !important;
}

.user-info{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  font-size: 14px;
  position: relative;
  color: #2f3441;
  cursor: default;
}
.user-link-wrap{
  overflow: unset;
}
.user-link{
  display: none;
  align-items: center;
  
  position: relative;
}
.user-info{
  position: relative;
}
.user-info .user-popup{
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 582px;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(39, 66, 107, .1);
  background-color: #fff;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.user-info:hover .user-popup{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.user-info .user-popup::before{
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #edf2ff;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.user-info .user-popup::after{
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.popup-user-img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.popup-user-img img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.popup-head{
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  width: 360px;
  height: 106px;
  background-color: #edf2ff;
  border-radius: 8px 8px 0 0;
  margin-bottom: 8px;
}
.popup-vip-icon{
  height: 20px;
  margin: 0 4px;
}
.popup-main{
  flex: 1;
  padding-left: 10px;
  color: #15191d;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.popup-user-wrap{
  display: flex;
  align-items: center;
  max-width: 148px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  line-height: 25px;
}
.popup-vip-time{
  color: #646a73;
  font-weight: 400;
  font-size: 14px;
  padding-top: 9px;
  line-height: 22px;
  box-sizing: border-box;
}
.popup-vip-level,
.popup-vip-expiry{
  display: inline-block;
}
.popup-vip-expiry{
  margin-left: 4px;
}
.popup-pay-vip{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 32px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border: 1px solid #595959;
  border-radius: 16px;
  color: #1f2329;
  cursor: pointer;
  box-sizing: border-box;
}
.popup-list > a {
  position: relative;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-list > a::after{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  margin: auto;
  border-bottom: 1px solid #f5f5f5;
  content: "";
}
.popup-list-item{
  display: flex;
  align-items: center;
  height: 40px;
  box-sizing: border-box;
}
.popup-list-item > span:first-child{
  margin-right: 10px !important;
}
.user-info .user-img{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 4px;
}
.user-info .user-name{
  display: inline-block;
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.user-info .vip-type{
  height: 20px;
  margin: 0 4px;
}
.user-caret{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.user-link:hover .user-caret{
  transform: rotate(180deg);
  color: #ff303f;
}
.user-link:hover .user-name{
  color: #ff303f;
}

.topic-nav{
  position: relative;
  display: flex;
  align-items: center;
  z-index: 30;
}

.topic-nav-trigger{
  display: inline-flex;
  align-items: center;
}

.topic-nav-caret{
  transition: transform 0.2s ease;
}

.topic-nav-dropdown{
  position: absolute;
  top: calc(100% + 11px);
  left: 67%;
  width: 126px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.topic-nav-dropdown::before{
  content: "";
  position: absolute;
  top: -11px;
  left: -12px;
  right: -12px;
  height: 15px;
}

.topic-nav-dropdown-panel{
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.topic-nav:hover .topic-nav-dropdown,
.topic-nav:focus-within .topic-nav-dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.topic-nav:hover .topic-nav-caret,
.topic-nav:focus-within .topic-nav-caret{
  transform: rotate(180deg);
}

.topic-nav-dropdown-link{
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin: 0 5px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  margin-bottom: 0 !important;
  margin-top: 0;
  color: #646a73;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.topic-nav-dropdown-link:hover{
  color: #1f2937;
  background-color: #F0F0F0;
  border-radius: 8px;
}

.topic-nav-dropdown-new{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 8px 8px 8px 2px;
  background: linear-gradient(180deg, #ff6d58 0%, #ff4533 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.hover-popup{
  position: relative;
  z-index: 1;
}
.hover-popup .hover-content{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 240px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
  border-radius: 5px;
}
.hover-popup:hover .hover-content{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hover-popup .hover-content::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}
.hover-popup .hover-content > img{
  width: 180px;
  height: 240px;
  display: block;
}
.service-hover-popup{
  position: relative;
  display: block;
  width: max-content;
  cursor: pointer;
}
.service-hover-popup::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 15px;
}
.service-hover-content{
  position: absolute;
  bottom: calc(50% - 20px);
  right: calc(100% + 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 245px;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.service-hover-content::after{
  content: "";
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  filter: drop-shadow(6px 0 12px rgba(0, 0, 0, 0.12));
}
.service-hover-popup:hover .service-hover-content{
  opacity: 1;
  visibility: visible;
}
.service-hover-image{
  display: block;
  width: 180px;
  height: 245px;
  border-radius: 8px;
}
.guest-actions{
  font-size: 14px;
}
.vip-tips{
  color: #e64411;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.industry-wrap{
  height: 24px;
  padding: 0 10px;
  min-width: 78px;
  font-size: 12px;
  line-height: 22px;
  border-radius: 1px;
  text-align: center;
  border: 1px solid #2676d3;
  color: #2676d3;
}
