@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.container {
  width: 95vw;
  height: 100dvh;
  position: relative;
}
.container .panel {
  overflow: hidden;
  position: absolute;
  width: 100%;
  background-size: 100% !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
  border-radius: 10px 10px 0 0;
  color: #000;
  cursor: pointer;
  box-shadow: 0px 0px 5px 1px #7dd1f6;
  transition: all 0.3s ease-in;
}
.container .panel .switchBtnText {
  position: relative;
}
.container .panel .switchBtnText i {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 20px;
  color: #70809c;
}
.container .panel .switchBtnText h3 {
  font-family: sans-serif;
  font-weight: bolder;
  position: absolute;
  font-size: 18px;
  letter-spacing: 2px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  opacity: 1;
  color: #273142;
}
.container .panel.active {
  background-size: 110% !important;
  transition: all 0.8s ease-in;
}
.container .Profile {
  background: url("../img/memberBg/d01.png");
  height: 83%;
  bottom: 15%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .container .Profile {
    background: url("../img/memberBg/m01.png");
  }
}
.container .Profile .textContent {
  width: 100%;
  height: 100%;
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.container .Profile .textContent::-webkit-scrollbar {
  display: none; /* Safari 和 Chrome */
}
@media (min-width: 1024px) {
  .container .Profile .textContent {
    width: 40%;
    margin: 0 auto;
  }
}
.container .Profile .textContent img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid #666;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%) scale(100%);
  z-index: 1;
  opacity: 1;
  transition: all 0.8s;
}
.container .Profile .textContent .name {
  margin-top: 10px;
  font-size: 24px;
  letter-spacing: 2px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: all 0.8s;
}
.container .Profile .textContent .displayTitle {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: all 0.8s;
}
.container .Profile .textContent .displayJobTitle {
  font-size: 20px;
  letter-spacing: 2px;
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: all 0.8s;
}
.container .Profile .textContent .bio {
  width: 95%;
  height: 45%;
  overflow-y: scroll;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 1;
  transition: all 0.8s;
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.container .Profile .textContent .bio::-webkit-scrollbar {
  display: none; /* Safari 和 Chrome */
}
.container .Profile .textContent .bio p {
  margin-bottom: 10px;
  transition: all 0.8s;
}
.container .Profile .textContent .bio p:nth-child(odd) {
  transform: translateX(0%);
}
.container .Profile .textContent .bio p:nth-child(even) {
  transform: translateX(0%);
}
.container .Profile .textContent.hidden img {
  transform: translateX(-50%) scale(0%);
  transition: all 0.5s;
  transition-delay: all 0.3s;
  opacity: 0;
}
.container .Profile .textContent.hidden .name {
  left: 100%;
  transition: all 0.5s;
  transition-delay: all 0.3s;
  opacity: 0;
}
.container .Profile .textContent.hidden .displayTitle {
  left: -100%;
  transition: all 0.5s;
  transition-delay: all 0.3s;
  opacity: 0;
}
.container .Profile .textContent.hidden .displayJobTitle {
  left: 100%;
  transition: all 0.5s;
  transition-delay: all 0.3s;
  opacity: 0;
}
.container .Profile .textContent.hidden .bio {
  transition: all 0.5s;
  transition-delay: all 0.3s;
  opacity: 0;
}
.container .Profile .textContent.hidden .bio p:nth-child(odd) {
  transform: translateX(-100%);
}
.container .Profile .textContent.hidden .bio p:nth-child(even) {
  transform: translateX(100%);
}
.container .Experience {
  height: 13%;
  bottom: 10%;
  z-index: 2;
  background: url("../img/memberBg/d02.png");
}
@media (max-width: 1024px) {
  .container .Experience {
    background: url("../img/memberBg/m02.png");
  }
}
.container .Experience .experienceList {
  width: 100%;
  height: 81%;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.container .Experience .experienceList::-webkit-scrollbar {
  display: none; /* Safari 和 Chrome */
}
@media (min-width: 1024px) {
  .container .Experience .experienceList {
    width: 50%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.container .Experience .experienceList > div {
  display: flex;
  padding: 10px;
  color: #666;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.5s;
}
.container .Experience .experienceList > div:nth-child(odd) {
  background: rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .container .Experience .experienceList > div:nth-child(odd) {
    background: transparent;
  }
  .container .Experience .experienceList > div:nth-child(2), .container .Experience .experienceList > div:nth-child(3), .container .Experience .experienceList > div:nth-child(6), .container .Experience .experienceList > div:nth-child(7), .container .Experience .experienceList > div:nth-child(10) {
    background: rgba(0, 0, 0, 0.3);
  }
}
.container .Experience .experienceList > div p {
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  padding-left: 4px;
}
.container .Experience .experienceList > div p span {
  display: block;
}
.container .Experience .experienceList > div p span:first-child {
  transform: translateX(0px);
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.8s;
}
.container .Experience .experienceList > div p span:last-child {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.8s;
}
.container .Experience .experienceList.hidden > div {
  transform: translateY(500px);
  opacity: 0;
  transition: all 0.5s;
  transition-delay: all 0.3s;
}
.container .Experience .experienceList.hidden > div p span:first-child {
  transform: translateX(200px);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 1s;
}
.container .Experience .experienceList.hidden > div p span:last-child {
  transform: translateY(200px);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 1s;
}
.container .Expertise {
  height: 10%;
  bottom: 5%;
  z-index: 3;
  background: url("../img/memberBg/d03.png");
}
@media (max-width: 1024px) {
  .container .Expertise {
    background: url("../img/memberBg/m03.png");
  }
}
.container .Expertise .expertiseList {
  width: 95%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
}
@media (min-width: 1024px) {
  .container .Expertise .expertiseList {
    width: 50%;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.container .Expertise .expertiseList > div {
  color: #fff;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
}
.container .Expertise .expertiseList > div:nth-child(odd) {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.5s;
  display: flex;
  justify-content: center;
}
.container .Expertise .expertiseList > div:nth-child(odd) p {
  opacity: 1;
  transition: all 0.5s;
  transition-delay: 0.5s;
}
.container .Expertise .expertiseList > div:nth-child(even) {
  transform: translateY(40px) translateX(0);
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.5s;
  display: flex;
  justify-content: center;
}
.container .Expertise .expertiseList > div:nth-child(even) p {
  opacity: 1;
  transition: all 0.5s;
  transition-delay: 0.5s;
}
.container .Expertise .expertiseList.hidden > div:nth-child(odd) {
  transform: translateY(200px) translateX(0);
  opacity: 0;
  transition: all 0.3s;
}
.container .Expertise .expertiseList.hidden > div:nth-child(odd) p {
  transform: translateX(200px);
  opacity: 0;
  transition: all 0.5s;
}
.container .Expertise .expertiseList.hidden > div:nth-child(even) {
  transform: translateY(240px) translateX(0);
  opacity: 0;
  transition: all 0.3s;
}
.container .Expertise .expertiseList.hidden > div:nth-child(even) p {
  transform: translateX(-200px);
  opacity: 0;
  transition: all 0.5s;
}
.container .Links {
  height: 7%;
  z-index: 4;
  bottom: 0%;
  background: url("../img/memberBg/d04.png");
}
@media (max-width: 1024px) {
  .container .Links {
    background: url("../img/memberBg/m04.png");
  }
}
.container .Links .linksList {
  width: 90%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 1024px) {
  .container .Links .linksList {
    top: 60%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    margin: 0 auto;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
}
.container .Links .linksList a {
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
  border-radius: 15px 5px 15px 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.container .Links .linksList a:nth-child(4n+1) {
  opacity: 1;
  transform: translateX(0%);
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+1) span {
  opacity: 1;
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+2) {
  opacity: 1;
  transform: translateX(0%);
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+2) span {
  opacity: 1;
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+3) {
  opacity: 1;
  transform: translateX(0%);
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+3) span {
  opacity: 1;
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+4) {
  opacity: 1;
  transform: translateX(0%);
  transition: all 1s;
}
.container .Links .linksList a:nth-child(4n+4) span {
  opacity: 1;
  transition: all 1s;
}
.container .Links .linksList.hidden a:nth-child(4n+1) {
  opacity: 0;
  transform: translateX(-200%);
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+1) span {
  opacity: 0;
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+2) {
  opacity: 0;
  transform: translateX(200%);
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+2) span {
  opacity: 0;
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+3) {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+3) span {
  opacity: 0;
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+4) {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s;
}
.container .Links .linksList.hidden a:nth-child(4n+4) span {
  opacity: 0;
  transition: all 0.3s;
}

.fixedBtn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 99;
  background: transparent;
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #01b1fd;
  box-shadow: 0.3px 0.3px 5px rgba(1, 177, 253, 0.6);
}
.fixedBtn i {
  font-size: 36px;
  color: #fff;
  border-radius: 50%;
}/*# sourceMappingURL=memberDetails2.css.map */