@charset "UTF-8";
#body {
  height: 64px;
  width: 100vw;
  padding-right: 16px;
  margin-left: -8px;
  margin-top: -8px;
  transition: left 1.2s ease;
  background: inherit;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(15px);
  -o-filter: blur(15px);
  -ms-filter: blur(15px);
  z-index: 999;
}

nav {
  font-size: 18px;
  display: flex;
  align-items: center;
  background: rgba(253, 253, 253, 0.45);
  height: 70px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2;
}
nav .linkwrapper {
  margin-left: 15px;
  display: flex;
}
nav .linkwrapper .links {
  text-decoration: none;
  color: gray;
  border-right: solid gray thin;
  padding-right: 12px;
  padding-left: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background 0.4s, text-shadow 0.4s;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
nav .linkwrapper .links:hover {
  background: rgba(253, 253, 253, 0.3);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
nav .linkwrapper .blog {
  border-right: none;
}
nav .middlespan {
  flex-grow: 1;
}
nav button {
  font-size: 15px;
  background-color: white;
  margin-right: 35px;
  margin-left: 15px;
  padding: 3px 8px 3px 8px;
  background-color: lightgray;
  font-family: Arial, Helvetica, sans-serif;
}
nav button:hover {
  background-color: #fdfdfd;
}

@media only screen and (max-width: 520px) {
  .chinese {
    font-size: 12px;
    padding: 1.5px 4.5px 1.5px 4.5px;
  }

  .about, .experience, .skills, .blog {
    font-size: 14px;
    padding: 0px;
  }
}
@media only screen and (max-width: 450px) {
  .chinese {
    font-size: 9px;
    padding: 1.5px 4.5px 1.5px 4.5px;
  }

  .links {
    font-size: 13px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 365px) {
  .chinese {
    font-size: 7.5px;
    padding: 1.5px 2.5px 1.5px 2.5px;
  }

  .links {
    font-size: 13px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 325px) {
  .chinese {
    font-size: 6px;
    padding: 1.5px 2px 1.5px 2px;
    margin-left: 0px;
    margin-right: 5px;
    border: 1px;
  }

  .links {
    font-size: 10px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans Condensed", sans-serif;
}

body {
  font-size: 25px;
  color: black;
  background-color: #fdfdfd;
  font-family: Arial, Helvetica, sans-serif;
  height: 1400px;
  background: linear-gradient(to bottom, white 80%, lightgray);
  background-attachment: fixed;
}
body .contentcontainer {
  margin-top: 20px;
  width: 98vw;
  height: 1340px;
  margin-left: 2vw;
}
body .contentcontainer .titlewrapper {
  background: linear-gradient(to top, white, rgba(0, 0, 0, 0)), url(../docs/Blogtitlepic.jpeg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .contentcontainer .titlewrapper .title {
  font-size: 8.5em;
  font-family: "Open Sans Condensed", sans-serif;
  padding-top: 0px;
  padding-left: 0px;
  color: #3f3f3f;
  letter-spacing: 60px;
}
body .contentcontainer .contentwrapper {
  display: flex;
  height: calc(1200px - 350px);
}
body .contentcontainer .contentwrapper .blogarticlewrapper {
  width: 93%;
  height: calc(1200px - 350px);
}
body .contentcontainer .contentwrapper .blogarticlewrapper .subtitle {
  width: 100%;
  height: 12%;
  letter-spacing: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .subtitle:hover {
  cursor: pointer;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid {
  width: 100%;
  height: 88%;
  color: gray;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle {
  background-color: #f0f0f0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle .title {
  margin-left: 10%;
  margin-right: 10%;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle .title h5 {
  color: #323232;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle .title h6 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  color: #969696;
  font-size: 13px;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle:hover {
  background-color: #e9e9e9;
  cursor: pointer;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .posttitle:active {
  background-color: white;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article1-web {
  grid-row: 1/2;
  grid-column: 1/2;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article2-web {
  grid-row: 2/3;
  grid-column: 1/2;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article3-web {
  grid-row: 3/4;
  grid-column: 1/2;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article4-web {
  grid-row: 4/5;
  grid-column: 1/2;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article5-web {
  grid-row: 5/6;
  grid-column: 1/2;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article1contentwrapper {
  grid-row: 1/span 5;
  grid-column: 2/3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
body .contentcontainer .contentwrapper .blogarticlewrapper .blogarticle_grid .article1contentwrapper .article_content {
  width: 95%;
  height: 100%;
  color: #373737;
  font-size: 17px;
}
body .contentcontainer .contentwrapper .sidebar {
  width: 7%;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
body .contentcontainer .contentwrapper .sidebar .sidebartext {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* Internet Explorer 9*/
  -moz-transform: rotate(90deg);
  /* Firefox */
  -webkit-transform: rotate(90deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(90deg);
  /* Opera */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  margin-top: 100px;
  font-size: 17px;
  height: 50px;
  width: 200px;
  font-family: "Courier New", Courier, monospace;
}

.welcome_paragraph {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
}
.welcome_paragraph .welcome {
  text-align: center;
  margin-top: 40px;
}
.welcome_paragraph img {
  margin-top: 50px;
  margin-bottom: 30px;
  width: 55%;
  height: 55%;
}
.welcome_paragraph .select_left {
  text-align: center;
}

.bolg_all_paragraph {
  display: grid;
  height: 740px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.bolg_all_paragraph .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .wrapper .item {
  width: 70%;
  height: 90%;
}
.bolg_all_paragraph .itemawrapper {
  grid-row: 1/2;
  grid-column: 1/2;
}
.bolg_all_paragraph .itemawrapper .ia {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.bolg_all_paragraph .itemawrapper .ia p {
  text-align: center;
}
.bolg_all_paragraph .itembwrapper {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itembwrapper .ib {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itembwrapper .ib .art1 {
  width: 50%;
  height: 19vw;
}
.bolg_all_paragraph .itembwrapper .ib .portrait {
  width: 50%;
  height: 17vw;
}
.bolg_all_paragraph .itembwrapper .ib .arvo_sandwitch {
  width: 70%;
  height: 13.5vw;
}
.bolg_all_paragraph .itembwrapper .ib .plants {
  width: 65%;
  height: 15.8vw;
}
.bolg_all_paragraph .itemcwrapper {
  grid-row: 2/3;
  grid-column: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itemcwrapper .ic {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itemcwrapper .ic .art2 {
  width: 50%;
  height: 19vw;
}
.bolg_all_paragraph .itemcwrapper .ic .cat {
  width: 70%;
  height: 13.5vw;
}
.bolg_all_paragraph .itemcwrapper .ic .textc {
  width: 70%;
  font-size: 20px;
}
.bolg_all_paragraph .itemcwrapper .ic .textc:first-letter {
  font-size: 2em;
  padding: 0.1em;
  vertical-align: baseline;
}
.bolg_all_paragraph .itemdwrapper {
  grid-row: 2/3;
  grid-column: 2/3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itemdwrapper .id {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bolg_all_paragraph .itemdwrapper .id .textd {
  font-size: 20px;
}
.bolg_all_paragraph .itemdwrapper .id .textd:first-letter {
  font-size: 2em;
  padding: 0.1em;
  vertical-align: baseline;
}

footer {
  margin-top: 15px;
  height: 60px;
  background-color: gray;
  display: flex;
  align-items: center;
  width: 100vw;
}
footer .footer-links {
  background-color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
footer .footer-links img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}
footer .footer-middlebox {
  flex-grow: 1;
}
footer .footer-name {
  color: white;
  margin-right: 20px;
  font-size: 16px;
}

@media only screen and (max-width: 1100px) {
  #Lanzhou {
    font-size: 200px;
    letter-spacing: 15px;
  }

  #blogtitle1 {
    font-size: 13.5px;
  }

  #date {
    font-size: 10px;
  }

  #blogarticle_grid {
    grid-template-columns: 1fr 3.5fr;
  }

  #art1 {
    width: 50%;
    height: 24vw;
  }

  #portrait {
    width: 50%;
    height: 22vw;
  }

  #arvo_sandwitch {
    width: 70%;
    height: 18vw;
  }

  #plants {
    width: 65%;
    height: 21vw;
  }

  #art2 {
    width: 50%;
    height: 24vw;
  }

  #cat {
    width: 70%;
    height: 19vw;
  }

  #ia {
    font-size: 18px;
  }

  #textd {
    font-size: 16px;
  }

  #id {
    width: 92%;
  }
}
@media only screen and (max-width: 850px) {
  #sidebar {
    width: 0px;
    visibility: hidden;
  }

  #blogarticlewrapper {
    width: 100%;
  }

  #contentcontainer {
    margin-left: 0vw;
    width: 100vw;
  }
}
@media only screen and (max-width: 660px) {
  #Lanzhou {
    font-size: 100px;
    letter-spacing: 12px;
  }

  #titlewrapper {
    height: 200px;
  }
}
@media only screen and (max-width: 400px) {
  #Lanzhou {
    font-size: 85px;
    letter-spacing: 7.5px;
  }
}

/*# sourceMappingURL=blog.css.map */
