body{
    overflow-y: scroll;
  &::-webkit-scrollbar {
    display: none;
  }

}
a{
    text-decoration: none;
}
.top_tag{
    background-color: #FFF;
    border-radius: 10px; 
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,.125);
}
.fun_tag{
    width: 100%;
    height: 380px;
    margin-bottom: 10px;
    display: flex;
}
.fun_left ,.fun_right{
    background-color: #FFF;
    border: 1px solid rgba(0,0,0,.125);
    height: 100%;
}
.fun_left{
    width: 60%;
    padding-bottom: 20px;
}
.fun_right{
    width: 39%;
    margin-left: 1%;

}
.fun_top{
    width: 100%;
    height: 50px;
    border-bottom: 1px solid rgba(0,0,0,.125);
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    align-items: center;
    padding: 0 1%;
}
.fun_top_title,.more{
    /* width: 10%; */
    font-size: 0.875rem;
}
.fun_top_title{
    font-weight: bold;
}
.more{
    color: rgb(38, 143, 255);

}
.fun_left_items{
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    overflow: hidden;
    padding-top: 10px;
    text-decoration: none;
}
.fun_left_item{
    width: 19%;
    height: 40%;
    /* background-color: rebeccapurple; */
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.085);
    text-decoration: none;
}
.fun_item_img img{
    width: 30%;
    height: 30%;
    border-radius: 50%;
    margin-top: 10%;
}
.fun_item {
    text-align: center;
    font-size: 16px;
    /* margin-top: 10%; */
    /* padding-top: 10%; */
    height: 100%;
    overflow: hidden;
    position: relative;
    /* border: 2px solid #2c3e50; */
    color: #2c3e50;
    transition: background-color .2s;
}

.fun_item::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 200%;
    background-color: rgba(255, 255, 255, .6);
    transform: skew(45deg) translate3d(-200px,0,0);
    text-decoration: none;
}

.fun_item:hover {
    background-color: rgb(0,123,255);
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    text-decoration-line: none;
}

.fun_item:hover::before {
    transition: ease-in-out .5s;
    transform: skew(45deg) translate3d(300px,0,0);
}
.fun_right_items{
    width: 100%;
    height: 100%;
}
.fun_right_item{
    width: 99%;
    margin-left: 1%;
    height: 40px;
    overflow: hidden;
    border-bottom: 1px dashed lightgray;
    line-height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.right_img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 6px;
}