* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #f1f1f1;
}
.app {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
}
.app .border {
  width: 94%;
  height: 96%;
  border: 1px solid #000;
  position: absolute;
  left: 3%;
  top: 2%;
}
.app .left {
  width: 43%;
  height: 100%;
  background-color: #fedde4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.app .left .avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.app .left .name {
  margin-top: 20px;
  font-size: 32px;
  font-weight: bold;
}
.app .left .occupation {
  margin-top: 5px;
  color: #786f8a;
}
.app .left .title {
  width: 75%;
  margin: 10px auto;
  color: #cd9ba7;
  background-color: #fff;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  z-index: 999;
}
.app .left #title:hover {
  transition: all 0.5s;
}
.app .left #title:hover .flag1 {
  display: block;
}
.app .left .flag1 {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  padding: 5px;
  background-color: #f0a8b9;
  position: absolute;
  top: 110px;
  left: 300px;
  color: #fff;
  z-index: 2;
  display: none;
}
.app .left .content {
  width: 100%;
}
.app .left .content .item {
  margin: 10px auto;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #817989;
  z-index: 99999;
  cursor: pointer;
  transition: all 1s;
  position: relative;
}
.app .left .content .item:hover .flag {
  display: block;
}
.app .left .content .item .flag {
  width: 200px;
  border-radius: 10px;
  padding: 5px;
  background-color: #f0a8b9;
  position: absolute;
  left: 130px;
  color: #fff;
  display: none;
  z-index: 999999;
}
.app .left .content .item .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.app .left .content .li {
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
}
.app .left .content .li .item {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #817989;
  margin: 0;
  position: relative;
}
.app .left .content .li .item .icon {
  width: 30px;
  height: 30px;
}
.app .right {
  width: 57%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.app .right .title {
  width: 100%;
  height: 20px;
  background-color: #9a999e;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  z-index: 999;
  margin-top: 10px;
}
.app .right .content {
  width: 90%;
}
.app .right .content .speedOfProgress {
  margin: 15px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-wrap: wrap;
  font-size: 16px;
  cursor: pointer;
  z-index: 999999;
  font-size: 18px;
}
.app .right .content .speedOfProgress:hover .item-content .up {
  width: 90% !important;
  z-index: 9999;
  transition: all 1s;
}
.app .right .content .speedOfProgress .item-content {
  width: 50%;
  margin-right: 20px;
  height: 12px;
  background-color: #edecf4;
  z-index: 999999;
}
.app .right .content .speedOfProgress .item-content .up {
  background-color: #f0a8b9;
  height: 100%;
  width: 10%;
}
.app .right .content .item {
  margin: 15px 5px;
  font-size: 18px;
}
.app .right .content .item .item-title {
  text-align: left;
}
.app .right .content .item .item-content {
  color: #f4c5d0;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 15px;
}
