p {
  line-height: 26px;
}
.indent-2 {
  text-indent: 2em;
  /* 设置首行缩进为2个em单位 */
}
.indent-2 strong {
  text-indent: 0;
}
em {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  color: #494949;
  margin: 0 3px;
  padding: 0 4px;
  border-bottom: 1px solid #eee;
  box-shadow: inset 0 -8px #eee;
}
strong {
  display: inline-block;
  font-family: Menlo, "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 12px;
  line-height: 14px;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  margin: 2px;
  padding: 0 3px;
  background-color: #f7f7f7;
}
.last-modified {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 1000px;
  transform: translateX(-50%);
  text-align: right;
  font-size: 12px;
  color: #bbb;
}
@media screen and (max-width: 1024px) {
  .last-modified {
    width: auto;
    top: auto;
    bottom: 40px;
    text-align: left;
    color: #bbbbbb;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.container {
  position: relative;
  margin: 55px auto 30px;
  background-color: #fff;
  width: 1024px;
  min-height: 300px;
  border-radius: 5px;
  box-shadow: 0 0 15px silver;
  transition: all 0.2s ease-in-out;
  animation: fadeUp 2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    margin: 0;
    border-radius: 0;
    top: 0;
  }
}
.header {
  padding: 30px 50px;
  background-color: #00b38a;
  color: #fff;
}
@media screen and (max-width: 720px) {
  .header {
    padding: 30px 20px;
    text-align: center;
  }
}
.header .section {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 720px) {
  .header .section {
    display: inline-block;
    text-align: center;
  }
}
.header .section p {
  padding: 5px 0;
}
.header .section .name {
  font-size: 52px;
}
@media screen and (max-width: 720px) {
  .header .section .name {
    line-height: 1.5;
    margin-top: 10px;
    padding-bottom: 10px;
  }
}
.header .section .job {
  font-size: 24px;
  padding-top: 20px;
}
.header .section .job span {
  font-size: 14px;
}
.header .section .info,
.header .section .address {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 720px) {
  .header .section .info {
    font-size: 18px;
  }
}
.header .section .address {
  text-align: right;
  font-size: 12px;
}
.header .section .address ul {
  margin: 8px 0 4px;
}
@media screen and (max-width: 720px) {
  .header .section .address ul {
    margin: 16px 0 0;
    text-align: center;
  }
}
.header .section .address ul > li {
  height: 22px;
}
@media screen and (max-width: 720px) {
  .header .section .address ul > li {
    display: inline-block;
  }
}
.header .section .address ul > li > a {
  font-family: "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.header .section .address ul > li > a:hover {
  color: #e8e8e8;
}
@media screen and (max-width: 720px) {
  .header .section .address ul > li > a .contact-link {
    display: none;
  }
}
.header .section .address ul > li > a .iconfont {
  margin-left: 6px;
}
@media screen and (max-width: 720px) {
  .header .section .address ul > li > a .iconfont {
    font-size: 20px;
  }
}
.header .section.hd {
  align-items: baseline;
  border-bottom: 2px solid #00a982;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.container-body {
  min-height: 200px;
  padding: 20px 30px 50px;
  overflow: hidden;
  color: #333;
  display: flex;
}
@media screen and (max-width: 720px) {
  .container-body {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .container-body {
    display: block;
  }
}
.container-body .container-body-item {
  flex: 1;
  flex-basis: 0;
}
.container-body .container-body-item .article {
  padding: 10px 15px;
}
.container-body .section-hd {
  display: flex;
  margin: 10px 0;
  align-items: center;
}
.container-body .section-hd .title {
  font-family: "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  width: 24%;
  font-size: 16px;
  min-width: 100px;
  text-align: center;
  margin: 0 10px;
  padding: 0 10px;
  border-radius: 32px;
  background-color: #eee;
  line-height: 32px;
}
.container-body .section-hd .line {
  border-bottom: 1px solid #eee;
  flex: 1;
  height: 0;
}
.container-body .section-bd {
  font-size: 14px;
}
.container-body .section-bd + .section-bd {
  margin-top: 15px;
}
.container-body .section-bd .iconfont {
  color: #00b38a;
}
.container-body .section-bd .iconfont.inline {
  color: #00b38a;
  font-size: 14px;
  padding-right: 2px;
}
.container-body .section-bd .item {
  line-height: 30px;
}
.container-body .section-bd .item p {
  line-height: 26px;
}
.container-body .section-bd .item-top,
.container-body .section-bd .item-stage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
}
.container-body .section-bd .item-top .mid,
.container-body .section-bd .item-stage .mid {
  flex: 1;
  padding: 0 40px;
}
@media screen and (max-width: 720px) {
  .container-body .section-bd .item-top .mid,
  .container-body .section-bd .item-stage .mid {
    flex: 0 1 auto;
    padding: 0px;
  }
  .container-body .section-bd .item-top .job,
  .container-body .section-bd .item-stage .job {
    display: none;
  }
}
.container-body .section-bd .item-more {
  line-height: 25px;
}
.btn {
  display: inline-block;
  padding: 0 5px;
  border: 1px solid #00b38a;
  border-radius: 3px;
  font-family: Menlo, "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #00b38a;
}
.btn:hover {
  color: #fff;
  background-color: #00b38a;
}
.pdf {
  display: inline-block;
  position: fixed;
  z-index: 10;
  bottom: 6px;
  left: 50%;
  margin-left: 520px;
  padding: 0 8px;
  border-radius: 3px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  background-color: #00b38a;
}
@media screen and (max-width: 1246px) {
  .pdf {
    left: auto;
    right: 8px;
    margin-left: 0;
  }
}
footer {
  position: relative;
  text-align: center;
  margin: 30px auto;
}
footer.github-footer {
  display: block;
}
footer.print-footer {
  display: none;
}
footer .footer-link {
  display: inline-block;
  color: #bbbbbb;
}
footer .footer-link .iconfont {
  margin-right: 2px;
  color: #d1d1d1;
}
@media screen and (max-width: 1024px) {
  footer .footer-link {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
