.sample0008_ex1 > * {
  padding: 10px;
}

.sample0008_ex1 > *:first-child {
  background: #ffdbdb;
  width: 30%;
}

.sample0008_ex1 > *:first-child > p:first-child {
  padding: 10px;
  height: 100px;
  background: #ccc;
}

.sample0008_ex1 > *:last-child {
  background: #fff8b2;
  width: 70%;
}

.sample0008_ex1.sample0008_ex1-1 {
  align-items: center;
}

.sample0008_ex1.sample0008_ex1-2 > * {
  display: flex;
  align-items: center;
}

.sample0008_ex1.sample0008_ex1-2 > *:first-child {
  flex-direction: column;
}

.sample0008_ex1.sample0008_ex1-2 > *:first-child > * {
  width: 100%;
}

.sample0008_ex2 {
  flex-wrap: wrap;
  justify-content: space-between;
}

.sample0008_ex2 > li {
  margin-bottom: 10px;
  width: 32%;
}

.sample0008_ex2 > li > a {
  display: block;
  border: solid 1px #999;
  padding: 10px;
}

.sample0008_ex2 > li > a span {
  display: block;
  text-align: right;
}

.sample0008_ex2 > li > a img {
  width: 100%;
  flex-shrink: 0;
}

.sample0008_ex2.sample0008_ex2-1 > li {
  display: flex;
}

.sample0008_ex2.sample0008_ex2-2 > li > a {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.sample0008_ex2.sample0008_ex2-2 > li > a span {
  margin-top: auto;
}

@media screen and (max-width: 1023px) {
  .sample0008_ex2 > li {
    width: 49%;
  }
}

.sample0008_ex3 {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sample0008_ex3 > li {
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 2%;
  width: 32%;
  background-color: #ccc;
}

.sample0008_ex3 > li:nth-child(3n) {
  margin-right: 0;
}

.sample0008_ex3 > li span {
  display: block;
  text-align: center;
  background: #ff0;
  margin: 10px 0;
}

.sample0008_ex3 > li i {
  display: block;
  font-style: normal;
  font-size: 1.2rem;
  text-align: right;
  margin-top: 10px;
}

.sample0008_ex3.sample0008_ex3-1 > li {
  display: flex;
  flex-direction: column;
  /*&>*:nth-child(2){flex-grow: 3;}
			&>*:nth-child(3){flex-grow: 4;}
			&>*:nth-child(4){flex-grow: 1;}
			&>*:nth-last-child(2){
				//flex-grow: 1;
				margin-bottom: auto;
			}*/
  /*&>*:nth-last-child(2){
				height: 20em;
			}*/
}

.sample0008_ex3.sample0008_ex3-1 > li > *:not(:last-child) {
  height: 100%;
  min-height: 0%;
}

.sample0008_ex3.sample0008_ex3-1 > li > *:nth-child(1) {
  flex-grow: 2;
}

.sample0008_ex3.sample0008_ex3-1 > li > *:last-child {
  margin-top: auto;
  height: 4em;
}

.sample0008_ex3.sample0008_ex3-2 > li {
  position: relative;
  padding: 10px 10px 3em;
}

.sample0008_ex3.sample0008_ex3-2 > li > i {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

@media screen and (max-width: 1023px) {
  .sample0008_ex3 > li {
    width: 49%;
  }
  .sample0008_ex3 > li:nth-child(3n) {
    margin-right: 2%;
  }
  .sample0008_ex3 > li:nth-child(even) {
    margin-right: 0;
  }
}
