@charset "UTF-8";
.text_wrapper {
position: relative;
text-align:center;
margin: 0 20px 70px;
}
.text {
height: 150px;
overflow: hidden;
}
.show_more {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 30px;
padding-top: 60px;
text-align: center;
line-height: 30px;
background: linear-gradient(
180deg,
rgb(255, 255, 255, 0) 0%,
rgb(255, 255, 255, 1) 70%
);
cursor: pointer;
transition: bottom 0.2s;
}
.active {
background: none;
bottom: -30px;
}