*{
    margin: 0;
    padding: 0;
    font-family: 'Georgia';
    font-size: 24px;
    color: #fff;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("img/florid.jpg");
    background-size: cover;
}
section{
    width: 960px;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: none;
    border: 5px solid #fff;
    background: rgba(0,0,0,0.5);
}
#p1,#p4{
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: orange deepskyblue;
}
::-webkit-scrollbar{
    width: 8px;
    background: deepskyblue;
}
::-webkit-scrollbar-thumb{
    background: orange;
}
.wrap{
    width: 80%;
    margin: 50px auto;
}
.items{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
h2,h3{
    background: linear-gradient(orange,red);
    font-size: 48px;
    text-align: center;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    -webkit-background-clip: text;
    padding: 1em 0;
}
h3{
    font-size: 32px;
    color: #fff;
    transform: skewX(-15deg);
}
button{
    background: deepskyblue;
    padding: 0 2em;
    height: 50px;
    border: 0;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
button:hover{
    background: #f19e0d;
}
button:disabled{
    background: #666;
}
button:after{
    content: '';
    width: 0px;
    height: 0px;
    border-radius: 50px;
    background: rgba(255,255,255,.5);
    position: absolute;
    transition: .5s;
}
button:hover:after{
    width: 50px;
    height: 50px;
}
button:active:after{
    opacity: 0;
}
input{
    height: 50px;
    background: rgba(255,255,255,.5);
    outline: none;
    border: 0;
    border-bottom: 1px dotted #fff;
    text-align: center;
}
.top,.bottom{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.top{
    top: 10px;
}
.bottom{
    bottom: 30px;
}
.top img{
    width: 40px;
}
.icon{
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.5);
    border-radius: 5px;
    border: 2px solid #fff;
    position: relative;
}
.icon img{
    width: 100%;
    height: 100%;
}
.icon .txt{
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: -20px;
    font-size: 12px;
}
.icon .cov{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    text-align: center;
    line-height: 50px;
    display: none;

}
.logo{
    width: 200px;
    height: 80px;
    background: url("img/logo.png");
    background-size: 100% 100%;
}
.life{
    width: 55px;
    height: 44px;
    background: url("img/hero1.png");
    background-size: 100% 100%;
    transform: rotate(-90deg);
}
.pall{
    width: 150px;
    height: 18px;
    background: #666;
    border: 2px solid #fff;
    border-radius: 20px;
    overflow: hidden;
}
.pnow{
    /*width: 50%;*/
    background: linear-gradient(90deg,red,deepskyblue);
    /*background-size: 200%;*/
    /*background-position: 200%;*/
}
.ptxt{
    line-height: 18px;
    text-align: center;
    font-size: 12px;
}
.pic{
    width: 120px;
    margin: 20px auto;
}
#ranks{
    margin: 20px 0;
}
#ranks .item{
    width: 25%;
    margin: 5px;
    text-align: center;
    line-height: 1.5em;
}
#ranks .items:first-child .items{
    background: deepskyblue;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}
#ranks .items:first-child,
#ranks .items:last-child{
    border-bottom: 3px solid deepskyblue;
}
#ranks .items:nth-child(even){
    background: rgba(255,255,255,.5);
}
.line{
    text-align: center;
    line-height: 1.5em;
    padding: 2em;
    margin: .5em auto;
}
.line:nth-child(even){
    background: rgba(255,255,255,.5);
    border-radius: 50%;
}
#words{
    background: linear-gradient(rgba(0,0,0,0),rgba(0,200,255,.5));
    border-radius: 0 0 50% 50%;
}
.hero{
    transform: rotate(-90deg);
    width: 200px;
}
