*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Times New Roman', Times, serif;
    background-image: url('../images/f699e2424626ab359e1f518d0de534d.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.headerbox{
    height: 100px;
    line-height: 100px;
    display: flex;
    background-color: #1f0908;
    font-size: 30px;
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
}
.hleft{
    flex: 1;

}
.hright{
    display: flex;
    justify-content: end;
    flex: 1;
    text-align: right;
}
.hright span{
    margin-left: 20px;
}
a{
    color: #fff;
    text-decoration: none;
}
.btnbox{
    text-align: center;
    margin-top: 500px;
    /* 调整按钮距离顶部 */
}
.btnbox img{
    width: 240px;
    margin: 0 100px;   
    /* 调整按钮间距 */
}

.btn{
    display: inline-block;
    position: relative;
}
.btn:hover .show{
    display: block;
}
.show{
    display: inline-block;
    width: 240px;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.show p{
    background-color: #19101E;
    color: #DF8890;
    height: 50px;
    line-height: 50px
}
.show a{
    color: #DF8890;

}