@charset "utf-8";
@import url(init.css);
@import url(pub.css);
@import url(public.css);
@import url(faicon.css);
@import url(../fonts/simple-line-icons/css/simple-line-icons.css);
@import url(../fonts/app-icons/iconfont.css);
@font-face {
    font-family: politicaregular;
    src: url(../fonts/app-icons/politicaregular.ttf);
}

.activity-list-title{
    line-height: 4rem;
    height: 4rem;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2rem;
    background: #f6f6f6 none repeat scroll 0 0;
    border-left: .8rem solid #27ae61;
    padding: 0 1rem;
}

.activity{
    display: grid;
    
    row-gap: 3rem;
    column-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 2rem 0;
}

.activity-item {
    width: 100%;
    height: 44rem;
    border: #f2f2f2 solid .1rem;
    border-radius: .5rem;
    box-sizing: border-box;
}

.activity-memo{
    line-height: 1.8;
    height: 8rem;
    padding: 1rem 0;
    font-size: 1.6rem;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.activity-title{
    font-size: 1.8rem;
    font-weight: 600;
    -webkit-line-clamp: 1;
    width: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
    box-sizing: border-box;
    padding: .5rem;

}

.new-label {
    font-size: 1.6rem;
    left: -2.8rem;
    top: 1.2rem;
}


.activity-info{
    height: 3rem;
    line-height: 3rem;
    margin-top: .5rem;
    padding: 0 1rem;
}

.activity-info li:nth-child(n+1){
    margin-right: 2rem;
}
.activity-info li{
    display: inline-block;
}

.activity-img{
    position: relative;
    overflow: hidden;
}

.activity-img img{
    cursor: pointer;
    width: 100%;
    border-radius: .5rem .5rem 0 0;
    height: 25rem;
    object-fit: cover;
    opacity: .9;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.activity-img img:hover{
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.activity-item:hover{
    box-shadow: 0px 25px 45px 0px rgba(0, 0, 0, 0.15);
}

.forums-page .mobile-page {
    display: none;
}


.forums-page .pc-page {
    display: block;
}


.forums-page {
    clear: both;
    margin-top: 3rem;
}
  
.forums-page ul {
    text-align: center;
    margin-bottom: 2rem;
}
  
.forums-page ul > :nth-last-child(n + 2) {
    margin-right: 15px;
}

.forums-page ul li {
    height: 36px;
    display: inline-block;
    line-height: 36px;
    text-align: center;
    border: 1px solid #bcbcbc;
    color: #777777;
}

.forums-page ul li a {
    display: inline-block;
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
}

.forums-page ul li:hover {
    background-color: #27ae61;
    border: 1px solid #27ae61;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.forums-page ul li:hover a {
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.page-active {
    background-color: #27ae61;
    border: 1px solid #27ae61;
    color: #fff;
}



@media screen and (max-width: 559px) { 
	.activity{
        grid-template-columns: 1fr;
        margin: 2rem 0;
    }
}


@media screen and (min-width: 560px) and (max-width: 768px) { 
    .activity{
        grid-template-columns: 1fr;
        margin: 2rem 0;
    }
}


@media screen and (min-width: 769px) and (max-width:992px){ 
    
}

@media screen and (min-width: 992px) and (max-width:1200px){ 
    
}

@media screen and (min-width: 1201px) { 
    
}