
.main > .list {
    width: 1280px;
    margin-bottom: 50px;
    /* margin-top: 40px; */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.main > .list > .item {
    margin-top: 60px;
    display: inline-flex;
    flex-direction: column;
    /* width: 33%; */
    /* height: 248px; */
    font-size: 0;
    overflow: hidden;
    /* border-bottom: 1px solid #bfbfbf; */
    /* flex: 1; */
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 400px;
    max-width: 400px;
}
.main > .list > .item:not(:nth-child(3n+1)){margin-left: calc(80px/2);}

.main > .list > .item > * {
    display: inline-block;
    vertical-align: middle;
}

.main > .list > .item > .date {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 196px;
    height: 248px;
    text-align: center;
    font-size: 15px;
    color: #E2474D;
    font-weight: bold;
}

.main > .list > .item > .date > div:nth-child(1) {
    font-size: 44px;
}

.main > .list > .item .sketch {
    /* width: calc(1280px - 196px); */
    font-size: 0;
}

.main > .list > .item .sketch > * {
    /* display: inline-block; */
    /* vertical-align: middle; */
}

.main > .list > .item .sketch .thumb {
    /* width: 227px; */
    height: 260px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #bfbfbf;
    position: relative;
    cursor:pointer;
    display: block;
    border-radius: 2px;
}
.main > .list > .item .sketch .thumb::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    transition: all .2s ease;
}
.main > .list > .item .sketch .thumb:hover::before {
    backdrop-filter: saturate(160%) blur(3px);
    background-color: rgba(0,0,0,0.3);
}
.main > .list > .item .sketch .date {
    font-size: 15px;
    margin-top: 20px;
    color: #a7a7a7;
}

.main > .list > .item .sketch .thumb img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.main > .list > .item .sketch > .detail {
    /* width: 857px; */
    /* height: 248px; */
    /* padding-left: 25px; */
    /* font-size: 11px; */
    color: #646464;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
}

.main > .list > .item .sketch > .detail > .title {
    font-size: 17px;
    /* margin-bottom: 30px; */
    color: #E2474D;
    font-weight: bold;
    color: #454545;
    line-height: 1.4;
}
.main > .list > .item .sketch > .detail > .title:hover {
    /* font-size: 18px; */
    color: #E2474D;
    text-decoration: underline;
}

.main > .list > .item .sketch > .detail > .content {
    height: 66px;
    line-height: 1.5;
}

.main > .list > .item .sketch > .detail > .showmore {
    width: 58px;
    height: 21px;
    line-height: 21px;
    border-radius: 11px;
    background: #BFBFBF;
    padding-left: 20px;
    color: #fef9fb;
    /* position: absolute; */
    right: 10px;
    bottom: 56px;
    transition: all .2s linear;
}

.main > .list > .item .sketch > .detail > .showmore::before {
    content: "";
    display: block;
    width: 0;
    border-width: 4px;
    border-style: solid;
    border-color: transparent transparent transparent #fef9fb;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 9px;
    transition: all .2s linear;
}

.main > .list > .item .sketch > .detail > .showmore:hover{
    background: #E2474D;
    transition: all .2s linear;
}
.main > .list > .item .sketch > .detail > .showmore:hover::before{
    border-color: transparent transparent transparent #fef9fb;
    transform: translateY(-50%) rotate(90deg);
    margin-top: 2px;
    transition: all .2s linear;
}


/*ÃƒÆ’Ã‚Â©ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¨ÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â¡Ãƒâ€šÃ‚Âµ*/
.page .pagination {
    float: left;
    text-align: center;
    margin: 0 auto 50px;
}

.page .pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #E2474D;
    float: left;
    margin-left: -1px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}


.page .pagination li span,
.page .pagination li a {
    display: block;
    text-align: center;
    line-height: 38px;
    color: #E2474D;
    transition: all .25s linear;
}

.page .pagination li a:hover {
    box-shadow: 0 0 10px rgba(213, 75, 83, 0.75) inset;
}

.page .pagination li.active {
    background-color: #E2474D;
}

.page .pagination li.active span {
    color: #fff;
}

.page .pagination li.disabled {
    background-color: #dedede;
    cursor: not-allowed;
    border-color: #dedede;
    z-index: 0;
}

.page .pagination li.disabled span {
    color: #fff;
}
