@font-face {
    font-family: GameFont; /* 自定义字体的名称 */
    src: url('../otherThing/方正像素12.TTF') format('truetype'); /* 字体文件的路径和格式 */
}

body{
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url("../img/游戏第二页背景.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: GameFont, Arial, sans-serif; /* 应用自定义字体 */
}
.ofAll{
    width: 1380px;
    height: 700px;
    margin: 0 auto;
}
.countFinished{
    display: inline-flex;
    width: 180px;
    height: 160px;
    position: relative;
    top: 10px;
    border: none;
    border-radius: 18px;
    background-color: #efceae;
    margin-left: 19px;
    margin-right: 40px;
    font-size: 57px;
}
.allTask{
    display: inline-block;
    position: relative;
    height: 150px;
    font-size: 150px;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 23px;
    text-shadow: 0 0 12px grey;
}
.gangHao{
    display: inline-block;
    position: relative;
    margin-top: 40px;
    padding-top: 30px;
    font-size: 48px;
    color: white;
    text-shadow: 0 0 12px grey;
}
.finished{
    position: relative;

    font-size: 90px;
    color: white;
    margin-top: 40px;
    padding-top: 30px;
    text-shadow: 0 0 12px grey;
}

.menuBar{
    display: inline-block;
    width: 900px;
    height: 40px;
    position: relative;
    top: -90px;/*用这个就不要用absolute position*/

    text-align: center;
    background-color: rgba(207, 228, 251, 0.6);
    border-radius: 20px;
}
.menuBlock{
    display: inline-block;
    width: 10%;         /*盒子用px，内容用%就不会修改行高导致内容跑*/
    margin: 0 5%;
    line-height: 40px;
    text-decoration: none;
    transition: border-color 0.6s ease-in;

    font-size: 21px;
    color: #999999;
}
.menuBlock:hover{
    border-bottom: 3px solid #7673bd;
}
.challenge{
    display: inline-block;
    width: 150px;
    height: 48px;
    position: relative;
    background-color: #efceae;
    border-radius: 30px;
    border: none;
    top: -90px;
    margin-left: 40px;
    font-size: 21px;
    font-family: GameFont, Arial, sans-serif; /* 应用自定义字体 */
    color: white;
    text-shadow: 0 0 5px grey;
}
.task{
    display: block;
    width: 270px;
    height: 150px;
    position: relative;
    padding-right: 180px;
    padding-bottom: 100px;
    border: none;
    border-radius: 18px;
    background-color: #efceae;
    margin-top: 15px;
    margin-left: 19px;
    font-size: 27px;
    font-family: GameFont, Arial, sans-serif;
    color: white;
}
.personText{
    display: inline-block;
    width: 900px;
    height: 200px;
    position: absolute;
    background-color: #efceae;
    text-indent: 2em;
    border-radius: 27px;
    padding: 23px 21px 15px 15px;
    font-size: 21px;
    font-family: GameFont, Arial, sans-serif;
    top: 400px;
    margin-top: 36px;
    margin-left: 240px;
    color: white;
    text-shadow: 0 0 5px grey;
}
.goingOn{
    position: relative;
    margin-left: 480px;
    margin-top: 100px;
    font-size: 27px;
}
.personFig{
    display: inline-block;
    width: 220px;
    height: 432px;
    position: absolute;
    top: 200px;
    margin-left: 1000px;
}