* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #e8e8e8;
}

::-webkit-scrollbar,
::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  background: rgb(239, 239, 239);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  background: #DEE1E6;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
  background: #bfbfbf;
}

.wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}

.navigate-tab {
  height: 48px;
  background: linear-gradient(0deg, #133B65 0%, #3A6FA6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-family: Arial Rounded MT Bold;
  font-weight: bold;
  color: #FFFFFF;
  padding: 0 42px;
  width: 100%;
}

.navigate-tab span {
  cursor: pointer;
}

.container {
  flex: 1;
  background: #ffffff;
  overflow: auto;
  padding: 36px 42px;
}

.introduce-box {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.introduce-box .avatar {
  height: 240px;
  background: #ccc;
  margin-right: 38px;
}

.introduce-box .name {
  font-size: 18px;
  color: #133B65;
  font-weight: bold;
  margin-bottom: 15px;
}

.introduce-box .desc {
  font-size: 14px;
  color: #333333;
}

.detail-box {
  display: flex;
  justify-content: space-between;
}

.title {
  color: #FF8A01;
  font-size: 16px;
  margin-bottom: 10px;
}

.text {
  color: #333333;
  font-size: 14px;
  line-height: 22px;
}

.year {
  color: #006699;
  font-size: 14px;
  line-height: 22px;
}

.detail-box .profile-info,
.detail-box .experience-info {
  flex: 1;
}

.detail-box .experience-info {
  margin-left: 30px;
}

.footer {
  height: 60px;
  background: linear-gradient(0deg, #133B65 0%, #3A6FA6 100%);
  text-align: center;
  font-size: 12px;
  font-family: Arial Rounded MT Bold;
  font-weight: bold;
  color: #FFFFFF;
  width: 100%;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
