body {
/*  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  font-size: 100%;
  font-family: 'Microsoft YaHei','Lantinghei SC','Open Sans',Arial,'Hiragino Sans GB','STHeiti','WenQuanYi Micro Hei','SimSun',sans-serif;
  color: #eee9dc;*/
  /*background: #48b379;*/
}

h2 {
 /* margin: 3em 0 0 0;
  font-size: 1.5em;
  letter-spacing: 2px;
  text-transform: uppercase;*/
}

/* -------------------------------------
 * timeline1
 * ------------------------------------- */
#timeline1 {
  list-style: none;
  margin: 50px 0 30px 200px;
  padding-left: 32px;
  border-left: 3px solid #eee9dc;
}
#timeline1 li {
  margin: 40px 0;
  position: relative;
}
#timeline1 p {
  margin: 0 0 15px;
}

.date1 {
  margin-top: -10px;
  top: 50%;
  left: -200px;
  font-size: 0.95em;
  line-height: 20px;
  position: absolute;
}

.circle1 {
  margin-top: -10px;
  top: 50%;
  left: -44px;
  width: 10px;
  height: 10px;
  /*background: #48b379;*/
  border: 5px solid #eee9dc;
  border-radius: 50%;
  display: block;
  position: absolute;
}

.content1 {
  max-height: 20px;
  padding: 50px 20px 0;
  border-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.5em;
  position: relative;
}
.content1:before, .content1:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  position: absolute;
  pointer-events: none;
  right: 100%;
}
.content1:before {
  border-right-color: inherit;
  border-width: 20px;
  top: 50%;
  margin-top: -20px;
}
.content1:after {
  /*border-right-color: #48b379;*/
  border-width: 18px;
  top: 50%;
  margin-top: -18px;
}
.content1 p {
  max-height: 0;
  color: transparent;
  text-align: justify;
  text-indent: 2em;
  word-break: break-word;
  hyphens: auto;
  overflow: hidden;
}

label {
  font-size: 1.3em;
  position: absolute;
  z-index: 100;
  cursor: pointer;
  top: 20px;
  transition: transform 0.2s linear;
}

.radio1 {
  display: none;
}

.radio1/*:checked*/ + .relative1 label {
  cursor: auto;
  transform: translateX(42px);
}
.radio1/*:checked*/ + .relative1 .circle1 {
  background: #f98262;
}
.radio1/*:checked*/ ~ .content1 {
  max-height: 180px;
  border-color: #eee9dc;
  margin-right: 20px;
  transform: translateX(20px);
  transition: max-height 0.4s linear, border-color 0.5s linear, transform 0.2s linear;
}
.radio1/*:checked*/ ~ .content1 p {
  max-height: 200px;
  color: #000;
  transition: color 0.3s linear 0.3s;
}

/* -------------------------------------
 * mobile phones (vertical version only)
 * ------------------------------------- */
@media screen and (max-width: 767px) {
  #timeline1 {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  #timeline1 li {
    margin: 50px 0;
  }

  label {
    width: 85%;
    font-size: 1.1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    transform: translateX(18px);
  }

  .content1 {
    padding-top: 45px;
    border-color: #eee9dc;
  }
  .content1:before, .content1:after {
    border: solid transparent;
    bottom: 100%;
  }
  .content1:before {
    border-bottom-color: inherit;
    border-width: 17px;
    top: -16px;
    left: 50px;
    margin-left: -17px;
  }
  .content1:after {
    border-bottom-color: #48b379;
    border-width: 20px;
    top: -20px;
    left: 50px;
    margin-left: -20px;
  }
  .content1 p {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .circle1, .date1 {
    display: none;
  }
}