@charset "UTF-8";:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
}
#app {
  width: 1100px;
  margin: auto;
  min-width: 560px;
  padding: 20px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
  #app {
    max-width: 100%;
    min-width: auto;
  }
}

iframe {
  border: none;
}
pre, .monospace {
  font-family: Consolas, "Lucida Console", "Courier New", Courier, monospace;
}
.visible {
  visibility: visible;
}

html {
  font-size: 16px;
  color: #111;
}
a:link, a:visited {
  color: #2f6ea8;
}
a:hover, a:active {
  color: #3ca2ff;
}
h1, h2, h3 {
  font-weight: normal;
}

dl {
  display: grid;
  grid-template-columns: auto auto;
  align-content: stretch;
  margin: 0 20px;
  padding: 20px 0;
  grid-gap: 0.75em;
}
dl > dt, dl > dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 2;
  margin: 0;
}
dl > dt {
  min-width: 7.5em;
}
@media screen and (max-width: 500px) {
  dl > dt {
    min-width: auto;
  }
}
dl p {
  flex-basis: 100%;
  flex-grow: 0;
}
em.tab, em.tech {
  background-color: #ddd;
  padding: 2px 6px;
  border-radius: 4px;
  text-shadow: 1px 1px #fff;
}
video {
  max-width: 100%;
  margin: 1em 0;
  display: none;
}
video[visible] {
  display: inline;
}
@media screen {
  video { display: inline; }
}

.pen {
  --pen-bg: #3d3d3e;
  --pen-editor-bg: #1d1e22;
  --pen-text-color: #fff;
  --pen-tab: #666;
  --pen-tab-active: #888;
  --pen-tab-border: #34363e;
  --pen-tab-active-color: #ddd;
  --pen-tab-active-width: 3px;
  --font-size: 13px;
  --pen-code-size: 14px;
  --pen-footer-height: 36px;
}
.pen {
  border: #555 1px solid;
  background-color: var(--pen-bg);
  min-width: 600px;
  min-height: 400px;
  display: flex;
  flex-flow: row nowrap;
  font-size: var(--font-size);
  color: var(--pen-text-color);
  box-sizing: border-box;
  max-height: 100vh;
}
.pen-btn-group {
  border-radius: 4px;
  overflow: hidden;
}
.pen-btn-group > button {
  border-radius: 0;
  margin: 0;
}
.pen-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  color: var(--pen-text-color);
  background-color: var(--pen-tab);
  border: 1px solid var(--pen-bg);
  border-width: 0 1px;
  border-radius: 4px;
  margin: 2px 8px;
  line-height: 175%;
  cursor: pointer;
  letter-spacing: 1.25px;
  position: relative;
  transition: background-color 200ms ease, box-shadow 200ms ease;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: var(--pen-tab-active-width);
  padding-left: 0.5em;
  padding-right: 0.5em;
  user-select: none;
}
.pen-btn.active {
  background-color: var(--pen-tab-active);
  box-shadow: inset 0px var(--pen-tab-active-width) var(--pen-tab-active-color);
}
.pen-btn:hover {
  opacity: 0.875;
}
.pen-btn:active {
  transform: translateY(1px);
}
.pen-btn.no-margin {
  margin: 0;
}
.pen-btn.long {
  font-size: 150%;
  min-width: 2em;
  padding: 0 0.5em;
}
.pen-header, .pen-footer {
  color: var(--pen-text-color);
}
.pen-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: var(--pen-footer-height);
}
.pen-header {
  text-transform: uppercase;
  margin: 8px 8px 4px 8px;
  display: flex;
  position: relative;
}
.pen-header button {
  min-width: 5em;
  min-height: 3em;
  line-height: 3em;
}
.pen-logo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: lighter;
  position: absolute;
  right: 0;
  top: 0;
}
.pen-logo::before {
  content: "一个高仿的";
  font-size: 12px;
  letter-spacing: 2px;
}
.pen-logo::after {
  content: "CODEPEN";
  font-size: 16px;
  letter-spacing: 4px;
}
.pen-column {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  position: relative;
}
.pen-panel .visible {
  visibility: visible;
}
.pen-panel {
  position: relative;
  overflow: hidden;
  flex: 1 0;
}
.pen-panel-code, .pen-panel-overlay, .pen-panel-preview {
  visibility: hidden;
  box-sizing: border-box;
  overflow: auto;
  position: absolute;
  height: 100%;
  width: 100%;
}
.pen-panel-code {
  background-color: var(--pen-editor-bg);
}
.pen-panel-code pre {
  font-size: var(--pen-code-size);
  margin: 16px;
  padding: 0;
  border: none;
  outline: none;
  white-space: pre-wrap;
  line-height: 1.5;
  tab-size: 2;
}
.pen-panel-preview {
  visibility: visible;
  background: #fff;
  overflow: hidden;
}
.pen-panel-preview iframe {
  width: 100%;
  height: 100%;
}
.pen-panel-overlay {
  padding: 16px;
  background-color: rgba(94, 94, 94, 0.75);
}
.pen-panel-overlay h3 {
  font-weight: normal;
  text-shadow: 1px 1px #000;
}
.pen-panel-console {
  height: 50%;
  bottom: 0;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  overflow: hidden;
  font-size: var(--pen-code-size);
}
.pen-panel-console pre {
  padding: 8px 8px 12px 12px;
  flex: 1 1 auto;
  overflow-y: auto;
  margin: 0;
  line-height: 1.5em;
}
.pen-panel-console .eval-area {
  border: none;
  border-top: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  height: max(32px, min(fit-content, 32px));
  border-radius: 0;
  line-height: 150%;
  outline: none;
  position: relative;
  padding: 4px;
  padding-left: 2em;
  unicode-bidi: embed;
}
.pen-panel-console .eval-area::before {
  position: absolute;
  left: 6px;
  display: block;
  float: left;
  content: "> ";
  white-space: pre;
}
.pen-panel-code::-webkit-scrollbar, .pen-panel-console > pre::-webkit-scrollbar, .pen-panel-overlay::-webkit-scrollbar {
  background-color: transparent;
  width: 14px;
  height: 14px;
}
.pen-panel-code::-webkit-scrollbar-thumb, .pen-panel-console > pre::-webkit-scrollbar-thumb, .pen-panel-overlay::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 12px 14px rgba(255, 255, 255, 0.3);
  border: solid 3px transparent;
}
.pen-panel-code::-webkit-scrollbar-button, .pen-panel-console > pre::-webkit-scrollbar-button, .pen-panel-overlay::-webkit-scrollbar-button {
  display: none;
  background-color: inherit;
}
.pen-panel-code ::-webkit-scrollbar-corner, .pen-panel-console > pre ::-webkit-scrollbar-corner, .pen-panel-overlay ::-webkit-scrollbar-corner {
  background: inherit;
}
.pen-input-list {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  font-size: 16px;
  padding: 0;
  gap: 8px;
}
.pen-input-list > li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: stretch;
}
.pen-input-list select, .pen-input-list input[type=text] {
  background-color: rgba(255, 255, 255, 0.625);
  outline: none;
  border: 1px solid #000;
  padding: 0.5em;
  border-radius: 4px;
}
.pen-input-list input[type=text] {
  flex-grow: 1;
}
@media only screen and (max-width: 800px) {
.pen {
    min-width: 300px;
}
.pen-column-left {
    display: none;
}
}.namecard {
  max-width: 750px;
  margin: 20px auto;
  background-color: #eee;
  box-sizing: content-box;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
}
.namecard dl {
  flex-grow: 1;
  grid-template-columns: minmax(9em, 0.55fr) auto;
  padding: 20px 60px;
  grid-gap: 0;
  text-shadow: 2px 2px 0 #fff;
}
.namecard dd {
  font-size: 125%;
}
.namecard dd, .namecard dt {
  padding: 0;
}
.namecard .avatar {
  /* 768x900, 64:75 */
  width: 192px;
  height: 225px;
  min-width: 192px;
  background-image: url("/avatar.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 600px) {
.namecard {
    display: flex;
}
.namecard .avatar {
    flex: 1 0 content;
    flex-basis: fit-content;
    aspect-ratio: 64/75;
    object-fit: contain;
    height: auto;
}
.namecard dl {
    flex-grow: 0.3;
    padding: 10px 0px;
    grid-template-columns: auto;
    justify-content: center;
}
.namecard dt, .namecard dd {
    line-height: 1.75;
}
}.section {
  box-sizing: border-box;
  padding: 20px 0;
}
.section-content {
  padding: 0 24px;
}
.section-header {
  border-bottom: 1px solid #eee;
  margin: 18px 10px 0 24px;
  position: relative;
  line-height: 2;
}
.section-header::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ddd;
  top: 50%;
}
h2.section-header::before {
  height: 20px;
  margin-top: -8px;
  left: -14px;
  width: 5px;
  height: 18px;
}
h3.section-header::before {
  margin-top: -5px;
  left: -16px;
  width: 6px;
  height: 12px;
}
.section-header:hover::before {
  background-color: #bbb;
}
.section p {
  margin: 0;
}dd[data-v-467e862f] {
  border-style: dashed;
  border-color: #ddd;
}
dd[data-v-467e862f] {
  border-width: 1px 0 0 0;
}
dl[data-v-467e862f] {
  gap: 0;
}
dl dd[data-v-467e862f]:first-of-type {
  border-top-style: none;
}
dl dd[data-v-467e862f]:last-of-type {
  border-bottom-style: none;
}
dl p[data-v-467e862f] {
  line-height: 1.8;
  margin-top: 3px;
  margin-bottom: 3px;
}
dl em.tab[data-v-467e862f]:first-child {
  margin-right: 1em;
}
@media screen {
:root {
    --gallery-thumb-size: 150px;
}
.gallery-list {
    display: flex;
    flex-flow: row nowrap;
    overflow-x: hidden;
    padding: 10px 0;
    user-select: none;
}
.gallery-img {
    flex-shrink: 0;
    text-indent: -99999px;
    background-size: cover;
    width: var(--gallery-thumb-size);
    height: var(--gallery-thumb-size);
    margin: 5px 15px;
    cursor: pointer;
    filter: brightness(0.7);
    transition: 0.1s;
}
.gallery-img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}
.gallery-slider {
    visibility: hidden;
    --slider-width: 1;
    --slider-pos: 0;
    position: relative;
    width: 100%;
    height: 5px;
    background-color: rgba(128, 128, 128, 0.5);
}
.gallery-slider.visible {
    visibility: visible;
}
.gallery-slider::after {
    content: " ";
    display: block;
    position: absolute;
    width: calc(var(--slider-width) * 100%);
    top: 0;
    left: calc(var(--slider-pos) * 100%);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}
}
@media print {
.gallery-img {
    text-indent: -99999px;
    background-size: contain;
    width: 900px;
    height: 700px;
    margin: 5px auto 2.5em auto;
    position: relative;
    page-break-inside: avoid;
    page-break-after: always;
}
.gallery-img::after {
    text-indent: 0;
    content: attr(alt);
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    top: calc(800px + 0.5em);
    font-style: italic;
    color: #555;
}
}
.gallery-slide {
  font-size: 96px;
  width: 1.5em;
  height: 50vh;
  top: 25vh;
  color: #fff;
  opacity: 0.5;
  text-align: center;
  vertical-align: center;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.gallery-slide:hover {
  opacity: 0.875;
}
.gallery-slide.no-more {
  opacity: 0;
  pointer-events: none;
}
.gallery-slide[prev] {
  left: 0;
}
.gallery-slide[prev]::after {
  content: "<";
}
.gallery-slide[next] {
  right: 0;
}
.gallery-slide[next]::after {
  content: ">";
}
.gallery-image-container {
  cursor: grab;
  touch-action: none;
}
.gallery-image-container.grabbing {
  cursor: grabbing;
}
.gallery-image-container .img {
  text-indent: -99999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gallery-image-comment {
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 5;
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
  padding: 40px 50px 20px 50px;
  text-align: center;
  font-size: 125%;
  text-shadow: 1px 1px 2px black;
}
.modal-mask {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}
.modal-container {
  justify-content: center;
  align-items: center;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: visibility 200ms, opacity 200ms;
  user-select: none;
}
.modal-container.show {
  opacity: 1;
  visibility: visible;
  transition: visibility 0, opacity 200ms;
}
.modal-btn {
  display: block;
  position: absolute;
  color: #e0e0dc;
  font-size: 48px;
  width: 1em;
  height: 1em;
  font-style: normal;
  cursor: pointer;
  z-index: 10;
}
.modal-btn:hover {
  color: #f1f1ef;
}
.modal-btn-close {
  right: 0;
  top: 0;
}
.modal-btn-close::before {
  content: "╳";
}
@media (max-width: 768px) {
.gallery-slide {
    font-size: 56px;
    width: 1.2em;
    height: 36vh;
    top: 32vh;
}
.modal-btn {
    font-size: 34px;
}
.modal-btn-close {
    right: 8px;
    top: 8px;
}
}.gallery-img {
  position: relative;
}
.gallery-img-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-img-spinner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: gallery-img-spin 0.8s linear infinite;
}
@keyframes gallery-img-spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}ul.experience-list, ul.experience-list ul {
  padding-top: 4px;
  padding-bottom: 4px;
}
ul.experience-list li {
  line-height: 1.5;
  padding-top: 2px;
  padding-bottom: 2px;
}.codepen[data-v-7a7a37b1] {
  margin: 20px auto;
  height: 700px;
}