@charset "utf-8";

.tags-container {
    width: 100%;
    margin: 0 auto;
}

.tags-container .tag-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag-text h1{
    font-size: 28px;
    color: #444;
    font-weight: 600;
}

.tag-time span {
    font-size: 12px;
    color: #ccc;
    font-style: italic;
}

.tags-container .tag-slogan {
    padding: 2px 5px;
    margin-top: 25px;
    border-radius: 3px;
    border: 1px dotted #acd6ff;
}

.tag-slogan span {
    color: #666;
}

.tags-container .tag-article-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tag-article-list .art-warp {
    display: flex;
    width: 50%;
    height: 180px;
    padding: 18px;
    border: 1px solid #ddd;
}
.tag-article-list .art-warp:nth-child(n+3) {
    border-top: unset;
}
.tag-article-list .art-warp:nth-child(2n) {
    border-left: unset;
}

.art-warp .left-box {
    margin-right: 20px;
    padding-top: 45px;
    width: 32%;
    min-width: 200px;
    text-align: center;
}

.art-warp:nth-child(9n+1) .left-box {
    background-color: #428BCA;
}
.art-warp:nth-child(9n+2) .left-box {
    background-color: #5CB85C;
}
.art-warp:nth-child(9n+3) .left-box {
    background-color: #D9534F;
}
.art-warp:nth-child(9n+4) .left-box {
    background-color: #567E95;
}
.art-warp:nth-child(9n+5) .left-box {
    background-color: #B433FF;
}
.art-warp:nth-child(9n+6) .left-box {
    background-color: #00ABA9;
}
.art-warp:nth-child(9n+7) .left-box {
    background-color: #B37333;
}
.art-warp:nth-child(9n+8) .left-box {
    background-color: #FF6600;
}
.art-warp:nth-child(9n) .left-box {
    background-color: #4A4A4A;
}

.left-box h2 {
    font-size: 20px;
    color: #fff;
}

.right-box .art-title a{
    font-weight: 600;
    color: #666;
}

.right-box .art-title a:hover{
    color: #0066cc;
}

.right-box .art-desc {
    margin-top: 25px;
}

.right-box .art-desc p {
    font-size: 12px;
    line-height: 1.5;
    color: #999;
}

@media screen and (max-width: 768px){
    .tags-container .tag-article-list {
        flex-direction: column;
    }

    .tag-article-list .art-warp {
        width: 100%;
    }
}

@media screen and (max-width: 414px){
    .tag-article-list .art-warp {
        flex-direction: column;
        width: 100%;
        height: unset;
        margin-bottom: 10px;
    }

    .art-warp .left-box {
        width: 100%;
        padding-bottom: 45px;

    }

    .art-warp .right-box {
        margin-top: 10px;
    }

    .right-box .art-desc {
        margin-top: 10px;
    }

    .tag-article-list .art-warp:nth-child(2n) {
         border-left: 1px solid #ddd;
    }
}