.profile_card_box {
  margin: 2rem auto;
  height: fit-content;
  /* max-width: 330px; */
  border-radius: 20px;
  /* border: 1px solid #000; */
  box-shadow: 0px 12px 20px -10px rgb(0 0 0 / 15%);
  padding: 12px 22px;
  padding-right: 120px;
  position: relative;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
  overflow: hidden;
  transition: all .3s ease;
}
.profile_card_box:hover {
  box-shadow: 0px 12px 30px -10px rgb(0 0 0 / 30%);
}
.profile_card_box:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%)translateX(-50%);
  z-index: -1;
  background-image: url(../img/profile.card/profile.card.bg.png);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  height: 105%;
  width: 105%;
  transition: all .6s ease;
}
.profile_card_box:hover:before {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.profile_card.title {
  display: inline-flex;
}

.profile_card.logo {
  height: 32px;
  width: 32px;
  max-width: 32px;
  border-radius: 200px;
}
.profile_card.logo.user {
  max-width: fit-content;
  display: none;
}

.profile_card.name {
  height: 32px;
  line-height: 34px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.profile_card.flag_item {
  margin-right: 0.1rem;
}

.profile_card.icon {
  height: 24px;
  width: auto;
  border-radius: 4px;
  background-color: transparent;
}

.profile_card.user_photo {
  height: 80px;
  width: 80px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -ms-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.profile_card.user_photo.photo {
  right: auto;
  border-radius: 200px;
}
.profile_card.user_photo.icon {
  height: 16px;
  width: auto;
  right: 2%;
  top: 88%;
}

.profile_card.wenzi {
  margin: 0;
  font-size: 14px;
}
.profile_card.wenzi1 {
  margin: 0;
  font-size: 14px;
}

@media only screen and (max-width: 576px) {
  .profile_card_box {
    max-width: 100%;
  }
}
@media only screen and (max-width: 410px) {
  .profile_card_box {
    padding-right: 88px;
  }
  .profile_card.user_photo {
    height: 70px;
    width: 70px;
  }
}
@media only screen and (max-width: 370px) {
  .profile_card_box {
    min-width: 240px;
    padding-right: 22px;
  }
  .profile_card.user_photo {
    opacity: 0;
    display: none;
  }
  .profile_card.logo {
    display: none;
  }
  .profile_card.logo.user {
    display: block;
  }
}

/* 自适应黑暗模式 */
[data-user-color-scheme='dark'] .profile_card_box:before {
  background-color: #313b49;
  background-blend-mode: soft-light;
}
[data-user-color-scheme='dark'] .profile_card_box:hover {
  box-shadow: 0px 12px 30px -10px rgb(0 0 0 / 50%);
}
