.container {

}



.container > #walkList {

}

.container > #walkList > .header {
    display: flex;
    border-bottom: 1px solid #000;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
    text-align: center;
}

.container > #walkList > #list {
    
}


.container > #walkList > #list > .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0;
    text-align: center;
    cursor: pointer;
}
.container > #walkList > #list > .item:nth-child(2n) {
    background-color: #f0f0f0;
}
.container > #walkList > #list > .item:hover {
    background-color: #e0e0e0;
}

.container > #walkList > #list > .item > #walkId,
.container > #walkList > .header > #walkId {
    flex: 1;
}
.container > #walkList > #list > .item > #status,
.container > #walkList > .header > #status {
    flex: 1;
}
.container > #walkList > #list > .item > #address,
.container > #walkList > .header > #address {
    flex: 3;
}
.container > #walkList > #list > .item > #createAt,
.container > #walkList > .header > #createAt {
    flex: 2;
}


.container > #walkList > #more {
    display: none;
    padding: .2rem .7rem .35rem;
    background-color: #fff;
    color: #5f5f5f;
    border-radius: .4rem;
    border: 2px solid;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.7rem;
    text-align: center;
    margin-top: 0.3rem;
}
.container > #walkList > #more:hover {
    color: #fff;
    background-color: #5f5f5f;
}


.container > #walkList > #doneLoad {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #5f5f5f;
    text-align: center;
}