*{
    margin:0;
    padding:0;
}
body {
    font-family: 'Helvetica', 'Arial', sans-serif; /* 首先尝试使用Helvetica，如果不可用则回退到Arial或任何其他无衬线字体 */
}
.box{
    width:100%;
    /* height:100%; */
    /* height:3000px; */
}
/* 头部 */
.head{
    background:#f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1080px;
}
.head img{
    display:block;
    max-width: 100%;
    max-height: 100%;
    min-width: 1080px;
}

.box .navigation{
    background: #f4f4f4;
}

.box .navigation a{
    outline: none;
    text-decoration: none;
    color:#87000E;
}

.box .navigation .content{
    margin-left: auto;
    margin-right: auto;
    width:1080px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    color: #87000E;
    font-weight: bold;
}

.box .navigation span{
    font-size: 20px;
    color: #666;
}

.box .listContent{
    width: 100%;
    min-width: 1080px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.box .listContent .messagebox{
    color:#666;
    font-size:16px;
    width:1080px;
    margin-left: auto;
    margin-right: auto;
}

.box .bgcolor1{
    background: #f4f4f4;
    margin-left: auto;
    margin-right: auto;
}

.box .listContent .bgcolor2{
    background:#ffffff;
}

.box .listContent .content{
    width:1080px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box .listContent .content .item1{
    width: 45%;
}

.box .listContent .content .item2{
    width: 45%;
}

.box .listContent .content .item .title{
    font-size:36px;
    color:#ff5259;
}

.box .listContent .content .item .message{
    color:#666;
    font-size:22px;
    line-height: 26px;
}

.box .listContent .content .item .img{
    height:400px;
}

.box .listContent .partners,
.box .listContent .games{
    width:1080px;
    margin-left: auto;
    margin-right: auto;
}

.box .listContent .games .item{
    width: 20%;
    height: 300px;
    padding: 20px 40px 20px 0px;
    float: left;
}

.box .listContent .games .item .icon{
    width: 100%;
}

.box .listContent .games .item .icon img{
    width: 100%;
}

.box .listContent .games .item .name{
    width: 100%;
    font-size: 18px;
    color: #666;
    overflow: hidden; /* 隐藏溢出的文本 */ 
    white-space: nowrap; /* 防止文本换行 */ 
    text-overflow: ellipsis; /* 溢出部分用省略号表示 */
    text-align: center;
}

.box .listContent .games .item .button{
    width: 100%;
    height: 50px;
    background: rgb(84, 103, 255);
    border-radius: 15px;
    font-size: 18px;
    outline: none;
    text-decoration: none;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.box .listContent .partners .item{
    height: 150px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 50px;
}

/* 底部 */
.bottom{
    background: rgb(84, 103, 255);
    min-width: 1080px;
}
.bottom a{
    outline: none;
    text-decoration: none;
    color:#fff;
}

.bottom .copyright{
    padding-top: 30px;
    padding-bottom: 60px;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.bottom .rowlist{
    padding-top: 60px;
    width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.bottom .rowlist .item{
    padding-left: 10px;
    padding-right: 10px;
}

