*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}
.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}
.header{
    width: 100%;
    max-width: 600px;
    height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    background: #fff;
}
.header img{
    height: 20px;
}
.content{
    width: 100%;
    padding: 70px 15px;
}
.top{
    justify-content: flex-start;
}
.top .logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
}
.top .logo img{
    width: 100%;
    height: 100%;
}
.top .name{
    padding-left: 10px;
}
.top .name h1{
    font-size: 20px;
}
.top .name p{
    font-size: 14px;
    color: #999;
    padding: 5px 0;
}
.top .name span{
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    color: #0080ff;
    background: rgba(0,128,255,.1);
    border-radius: 30px;
}
.score{
    margin: 20px 0;
}
.score ul{
    padding: 15px 20px;
    background: #f7f8f9;
    border-radius: 5px;
}
.score ul li {
    width: 33%;
    text-align: center;
}
.score ul li h2{
   font-size: 18px; 
   color: #666;
   padding-bottom: 5px;
}
.score ul li p{
    font-size: 12px;
    color: #999;
}
.detail h1{
    font-size: 20px;
    color: #0080ff;
}
.detail .banner{
    width: 100%;
    overflow-x: auto;
    margin-top: 10px;
}
.detail .banner ul{
    width: 520;
}
.detail .banner ul li{
    float: left;
    width: 100px;
    background: #f7f8f9;
    padding: 5px;
    margin-right: 5px;
    border-radius: 5px;
}
.detail .banner ul li:last-child{
    margin-right: 0;
}
.detail .banner ul li img{
    width: 100%;
}
.intro{
    width: 100%;
    border-radius: 5px;
    background: #f7f8f9;
    margin-top: 10px;
    padding: 10px;
}
.intro .version h5{
    font-size: 14px;
}
.intro .version p{
    font-size: 12px;
    color: #999;
}
.intro .main p{
    margin-top: 15px;
    font-size: 14px;
    line-height: 25px;
}
.copy p{
    color: #969797;
    font-size: 12px;
    margin-top: 10px;
}
.copy p span{
    color: #0080ff;
    padding-left: 15px;
}
.copy img{
    margin-top: 10px;
}
.btn {
    width: 100%;
    padding: 15px;
    position: fixed;
    left: 0;
    bottom: 0;
    max-width: 600px;
    margin-left: 50%;
    transform: translate(-50%);
}
.btn a{
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background: #0080ff;
    font-size: 16px;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
}