@import url('motion.css');

/* Recent List(Shopping Bag) */
.recent-list {
    font-size: 16px;
    margin: 30px 0; padding: 10px 0;
    min-height: 20px;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.recent-list:after {
    content: ''; display: block; clear: both;
}
.recent-list.active:after {
    width: 50px; height: 50px; margin: 0 auto;
    border-radius: 50%;

    border-bottom:  3px solid transparent;
    border-left:    3px solid transparent;
    border-right:   3px solid #b39965;
    border-top:     3px solid #b39965;

    -webkit-animation:  spin .5s infinite linear;
    -moz-animation:     spin .5s infinite linear;
    -ms-animation:      spin .5s infinite linear;
    -o-animation:       spin .5s infinite linear;
    animation:          spin .5s infinite linear;
}
.recent-list > ul {
    margin: 0;
    list-style: none;
    clear: both;
    overflow: hidden;
}
.recent-list > ul:nth-of-type(even) {
    background-color: #fafafa;
}
.recent-list > ul > li {
    padding: 15px 10px;
    font-size: 14px;
}
.recent-list > ul:hover li:nth-of-type(2),
.recent-list > ul:hover li:nth-of-type(3) {
    color: #b39965;
    font-weight: bold;
}
.recent-list > ul > li.list-img {
    float: left;
    width: 50px; height: 50px;
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
}
.recent-list > ul > li.list-name {
    float: left;
    width: calc(100% - 250px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recent-list > ul > li.list-price {
    float: left;
    width: 90px;
    text-align: right;
}
.recent-list > ul > li.list-button {
    float: right;
    width: 110px;
    padding: 10px 10px 15px 10px;
}
.recent-list > ul > li.list-button > .btn-default {
    float: left; width: 40px;
    text-align: center;
    margin: 0 2px;
    cursor: pointer;
}


@media screen and (max-width: 600px) {
    .recent-list > ul > li.list-img {
        display: none;
    }
    .recent-list > ul > li.list-name {
        width: calc(100% - 200px);
    }
}
/*
.recent-list > ul > li.list-no {
    float: left;
    width: 70px;
}
.recent-list > ul > li.list-title {
    float: left;
    width: calc(100% - 180px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.recent-list > ul > li.list-time {
    float: right;
    width: 110px;
    text-align: right;
    font-size: 13px;
}
*/
/*
article > section > h2.title {
    font-size: 18px; margin-bottom: 20px;
}


section.recent-group > table {
    width: 100%;
}

section.recent-group > table tr th {
    width: 20%; text-align: center; padding: 10px 0; font-size: 13px;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
section.recent-group > table tr td {
    width: 20%; text-align: center; padding: 5px 0; font-size: 13px;
}
section.recent-group > table tr td a { font-size: 13px; }
.recent-list img { width: 80px; height: 80px; cursor: pointer; }


section.recent-group > table tr td > .put,
section.recent-group > table tr td > .order,
section.recent-group > table tr td > .remove {
    width: 30px; height: 20px; line-height: 20px; text-align: center; font-size: 12px; cursor: pointer;
    border: 1px solid #eee; border-radius: 2px; margin: 2px auto;
}

*/








