﻿.list_main{
    width: 100%;
    background-color: #fff;
    padding-bottom: 20px;
}
.list{
    width: 100%;
    margin: 20px auto 0;
    padding: 20px 0;
    border: 1px solid #ccdce9;
}
.lists_title{
    width: 96%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    background: url("../images/lists_title.png") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}
.lists_title p{
    display: inline-block;
    padding: 8px 24px;
    background: url("../images/lists_title_p.png") no-repeat;
    background-size: 100% 100%;
    border-right: 4px solid #fff;
}
.list_container{
    width: 94%;
    margin: 0 auto;
}
.list_container ul{
    padding: 10px 0 20px;
}
.list_container ul li{
    padding: 5px 0;
}
.list_container ul li a{
    display: block;
    font-size: 16px;
    overflow: hidden;
}
.list_container ul li a p{
    float: left;
    width: 66%;
    text-indent: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s linear;
}
.list_container ul li a p::before {
    display: block;
    width: 4px;
    height: 4px;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 10px;
    left: 5px;
}
.list_container ul li a span{
    display: block;
    float: right;
    color: #8c8c8c;
    margin-right: 20px;
}
.list_container ul li a:hover p{
    text-indent: 30px;
}
.page{
    width: 100%;
    padding: 30px 0;
}
.page div{
    width: 26%;
    margin: 0 auto;
    overflow: hidden;
}
.page div p{
    float: left;
    padding: 4px 8px;
    border: 1px solid #ccc;
    margin-left: 5px;
}
.page div p.tk{
    padding: 0;
    border: none;
}
.page div p.tk input{
    display: block;
    width: 30px;
    height: 30px;;
    border: 1px solid #ccc;
}
.page div p.tz{
    background-color: #ececec;
}

/* ios */
@media (max-width: 760px) {
    .list_main{
        width: 100%;
    }
    .list{
        width: 96%;
        margin: 10px auto 0;
    }
    .lists_title{
        font-size: 18px;
    }
    .list_container ul{
        padding: 10px 0;
    }
    .list_container ul li a{
        font-size: 14px;
    }
    .list_container ul li a p{
        width: 70%;
    }
    .list_container ul li a span{
        margin-right: 0;
    }
    .page div{
        width: 86%;
    }
}