* {
  /*     border: solid 1px black; */
  font-family: sans-serif;
}
html body {
  margin: 0;
  padding: 50px;
  display: flex;
  justify-content: center;
  background-color: #042c60;
  color: rgba(255, 255, 255, 0.93);
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 1px;
}

/* 標籤複寫 */
ul {
  padding: 0;
  list-style: none;
}
h2 {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 400;
}
h3 {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 0px;
  font-weight: 400;
}
h2::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 8px;
  background-color: #ff7168;
  margin-left: 10px;
}
h4 {
  margin: 0;
  margin-top: 40px;
  opacity: 0.8;
  font-weight: 400;
}
a {
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
}
hr {
  border: none;
  border-bottom: solid 4px #ff7168;
  width: 60%;
  margin-left: 0;
}
/* -- */

.resume {
  display: flex;
  max-width: 950px;
  position: relative;
  border: solid 8px rgba(255, 255, 255, 0.93);
  padding: 50px;
}
.left,
.right {
  padding: 15px;
}
.left {
  flex: 5;
  padding-right: 50px;
  border-right: solid 1px #ff7168;
}
.right {
  flex: 7;
  padding-left: 50px;
  padding-top: 150px;
}
.decoration {
  width: 300px;
  height: 140px;
  background: linear-gradient(135deg, #ff5f5f, #ffffae);
  border-radius: 70px 0px 0px 70px;
  position: absolute;
  right: 0;
  top: 50px;
}
.listExperience > li {
  display: flex;
  margin-bottom: 10px;
}
.listExperience li ul {
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 4px rgba(255, 255, 255, 0.93);
}
.listExperience > li:nth-child(1) ul {
  border-color: #ff7168;
}
.listExperience > li:nth-child(2) ul {
  border-color: #ffa582;
}
.listExperience > li:nth-child(3) ul {
  border-color: #ffb087;
}
.listExperience > li:nth-child(4) ul {
  border-color: #ffde9e;
}
.listExperience > li:nth-child(5) ul {
  border-color: #edead5;
}
.company {
  text-align: right;
  /*   width:35%; */
}
.company > ul {
  text-align: left;
}

/* lan skill */
.lanSkill {
  display: flex;
  flex-wrap: wrap;
}
.lanSkill li {
  width: 25%;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.circle {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 113, 104, 0.4);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.circle::after {
  content: "";
  display: block;
  background-color: #042c60;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p90,
.p180,
.p270,
.p360 {
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #ff7168;
}
.p180 {
  top: 50%;
}
.p270 {
  left: 0;
  top: 50%;
}
.p360 {
  top: 0;
  left: 0;
}
/* -- */

/* list program */
.listPro li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.listPro .bar {
  width: 150px;
  height: 10px;
  border: solid 2px #ff7168;
  border-radius: 5px;
}
.bar .value {
  height: 100%;
  width: 60%;
  background-color: #ff7168;
}
.value.v10 {
  width: 10%;
}
.value.v20 {
  width: 20%;
}
.value.v30 {
  width: 30%;
}
.value.v40 {
  width: 40%;
}
.value.v50 {
  width: 50%;
}
.value.v60 {
  width: 60%;
}
.value.v70 {
  width: 70%;
}
.value.v80 {
  width: 80%;
}
.value.v90 {
  width: 90%;
}
.value.v100 {
  width: 100%;
}
/* -- */

/* button */
.buttons {
  display: flex;
  flex-direction: column;
}
.btn {
  width: 75%;
  border: solid 3px #ff7168;
  padding: 5px 20px;
  /*   margin-right: 10px; */
}
.btn.fill {
  background-color: #ff7168;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 550;
}
.work1,
.work2,
.work3 {
  border-bottom: solid 2px;
}
.btn.bw {
  width: 7%;
  height: 15px;
  float: right;
  margin-right: 10px;
  border: solid 3px #ff7168;
  padding: 5px 15px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}