* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrapper .main {
  padding: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 700px;
  overflow-y: scroll;
  background-color: #f1f1f1;
}

.wrapper .main .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrapper .main .menu .previous {
  display: inline-block;
  padding: 10px 15px;
  color: #5cc76b;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-bottom: 20px;
}

.wrapper .main .menu .previous:hover {
  background-color: #5cc76b;
  color: #fff;
}

.wrapper .main .menu .clear {
  display: inline-block;
  padding: 10px 15px;
  color: #555;
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-bottom: 20px;
}

.wrapper .main .menu .clear:hover {
  background-color: #db5847;
  color: #fff;
}

.wrapper .main .list {
  border-top: 2px solid #5cc76b;
  width: 90%;
}

.wrapper .main .list .stick {
  width: 100%;
  height: 55px;
  margin: 0 auto;
  padding: 5px 20px;
  line-height: 45px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1d1d1d;
  font-size: 1.05em;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrapper .main .list .stick::before {
  content: attr(data-time);
  font-style: oblique;
  opacity: .75;
  margin-right: 20px;
}

.wrapper .main .list .stick::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 30px;
  right: 5px;
  bottom: 5px;
  background-color: #dddddd;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  z-index: -1;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.wrapper .main .list .stick img {
  height: 100%;
}

.wrapper .main .list .stick:hover::after {
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
}

.wrapper .main .list h1 {
  font-size: 1.3em;
  margin-top: 50px;
  margin-bottom: 20px;
}

.wrapper .side {
  width: 500px;
  background-color: #fff;
  text-align: center;
  border-left: 2px solid #5cc76b;
}

.wrapper .side h1 {
  margin: 50px auto;
}

.wrapper .side h1 i {
  margin-right: 13px;
}

.wrapper .side .search {
  width: 300px;
  height: 50px;
  outline: 2px #ccc solid;
  position: relative;
  margin: 0 auto;
}

.wrapper .side .search input {
  width: 100%;
  height: 100%;
  padding-left: 50px;
}

.wrapper .side .search .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper .side .btn {
  padding: 10px 15px;
  color: #5cc76b;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-top: 50px;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.wrapper .side .btn.active {
  opacity: 1;
  pointer-events: auto;
}

.wrapper .side .btn:hover {
  background-color: #5cc76b;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */