@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media only screen and (max-width: 768px) {
}

/***************************************************************************
nth_child
****************************************************************************/

.grid_2.line .box ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.grid_2.line .item:nth-child(10n+1) {
    margin-left: 0px;
}
.grid_2.line .item {
    background-color: #EEEEEE;
    width: 45px;
    height: 45px;
    margin-left: 10px;
    margin-bottom: 10px;
}
.grid_2.line .box .first_3 li:nth-child(3) {
    background-color: #E74C3C;
}
.grid_2.line .box .last_3 li:nth-last-child(3) {
    background-color: #E74C3C;
}
.grid_2.line .box .baisu_10 li:nth-child(10n) {
    background-color: #E74C3C;
}
.grid_2.line .box .baisu_10_1 li:nth-child(10n+1) {
    background-color: #E74C3C;
}
.grid_2.line .box .first_3_after li:nth-child(n+3) {
    background-color: #E74C3C;
}
.grid_2.line .box .last_3_after li:nth-last-child(n+3) {
    background-color: #E74C3C;
}
.grid_2.line .box .first_3_before li:nth-child(-n+3) {
    background-color: #E74C3C;
}
.grid_2.line .box .last_3_before li:nth-last-child(-n+3) {
    background-color: #E74C3C;
}
.grid_2.line .box .first_3_6 li:nth-child(n+3):nth-child(-n+6) {
    background-color: #E74C3C;
}
.grid_2.line .box .last_3_6 li:nth-last-child(n+3):nth-last-child(-n+6) {
    background-color: #E74C3C;
}

