* {
    margin: 0;
    padding: 0;
}
body {
    background: #F1F1F1;
}
.header {
    width: 100%;
    min-width: 1000px;
    height: 350px;
    background: #0099C3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.header .top-box {
    width: 1000px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.header .category {
    width: 1000px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.header .category span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
    cursor: pointer;
}
.header .category span.active {
    color: #fff;
}
.header .top-box h4 {
    color: #000;
    text-decoration: none;
}
.header .bottom-box {
    width: 1000px;
    height: 200px;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}
.header .bottom-box p {
    width: 100%;
    text-align: center;
    margin: 10px;
    color:rgba(255, 255, 255, 0.7);
}
.header .bottom-box p img {
    margin-top: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
}
.header .bottom-box h4 {
    height: 20px;
}
.header .bottom-box h4 a {
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.main {
    width: 1000px;
    margin: 0 auto;
    background: #fff;
}
.main ul {
    list-style: none;
}
.main ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-bottom: 1px dashed #ccc;
    height: 90px;
    position: relative;
    padding-right: 40px;
}
.main ul li span {
    width: 60px;
    font-weight: 600;
    font-size: 16px;
}
.main ul li .pic img {
    max-height: 50px;
}
.main ul li .pic {
    width: 80px;
}
.main ul li .content {
    text-align: left;
    padding: 0 10px 0 25px;
    width: calc(100% - 180px);
}
.main ul li .content h4 {
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.main ul li .content h4 a {
    color: #000;
    text-decoration: none;
}
.main ul li .content p {
    margin: 5px 0;
    color: #666;
    font-size: 12px;
    overflow: hidden;    
    text-overflow:ellipsis;    
    white-space: nowrap;
}
.main ul li .github {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
}
.main ul li .github img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.main ul li::after {
    content: '';
    position: absolute;
    top: 54px;
    right: 23px;
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
}
.main ul li.active::after {
    background: #9FECA6;
}
.footer {
    width: 1000px;
    height: 80px;
    line-height: 80px;
    color: #666;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
}

.star {
    margin-left: 10px;
    font-size: 12px !important;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal !important;
}
.star img {
    width: 12px;
    margin-right: 3px;
}
.more {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
}
.more span {
    font-size: 14px;
    padding: 5px 50px;
    background: #343434;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.more img {
    width: 30px;
    height: 30px;
}