*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bg_FF6A1F{
    background-color: #FF6A1F;
}
.pc_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_header>.left_logo>img{
    height: 50px;
    width: 104px;
    margin-left: 100px;
    margin-right: 52px;
    cursor: pointer;
}
.pc_header>.menu{
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.pc_header>.menu>.item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 48px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
}
.pc_header>.menu>.item>img{
    height: 34px;
    width: 34px;
    margin-right: 12px;
}
.pc_header>.menu>.item>a {
    display: block;
    width: 104px;
    height: 34px;
    float: left;
}
.pc_header>.menu>.item>a>img{
    height: 34px;
    width: 34px;
    margin-right: 12px;
    float: left;
}
.pc_header>.menu>.item>a>span {
    width: 56px;
    overflow: hidden;
    float: left;
    height: 34px;
    line-height: 34px;
    display: block;
    color: #FFF;
}
.pc_header>.right_type{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-right: 50px;
    height: 54px;
}
.pc_header>.menu>.download-icon{
    position: relative;
}

.pc_header>.menu>.download-icon:hover > .icon-conent{
    display: block;
}

.pc_header>.menu>.download-icon>.icon-conent{
    display: none;
    position: absolute;
    top: 44px;
    right: 50%;
    transform: translateX(50%);
    width: 126px;
    height: 126px;
    z-index: 9999;
    background: #fff;
}

.pc_header>.menu>.download-icon>.icon-conent>.download_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pc_header>.right_type>.type_list{
    height: 0;
    position: absolute;
    overflow: hidden;
    display: none;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
    z-index: 99;
}
.pc_header>.right_type>.type_list>a {
    text-decoration: none;
    color: #000;
}
.pc_header>.right_type>img:first-child{
    width: 34px;
    height: 34px;
}
.pc_header>.right_type>img:nth-child(3){
    width: 23px;
    height: 23px;
}
.pc_header>.right_type>span{
    margin-left: 12px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
}

.pc_header>.right_type:hover>.type_list{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    position: absolute;
    top: 54px;
    left: 0;
    height: 588px;
    width: 200px;
    background-color: #FAFF1F;
    color: #333333;
}
.page_body{
    width: 100%;
    background-color: #FF8D3F;
    display: flex ;
    flex-direction: column;
    align-items: center;
}
.page_body>.row_1{
    width: 100%;
    background-color: rgba(255, 248, 53, 0.80);

}
.page_body>.row_1>.content{
    margin: auto;
    width: 1200px;
    padding: 30px 0;
}
.page_body>.row_1>.content>.title{
    color: #FF6A1F;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
}
.page_body>.row_1>.content>.row1_list{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 28px;
}
.page_body>.row_1>.content>.row1_list>.game-item{
    position: relative;
}
.page_body>.row_1>.content>.row1_list>.game-item:hover>a>span{
    display: block;
}
.page_body>.row_1>.content>.row1_list>.game-item>a>span {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff6a1e;
    border-radius: 0 0 15px 15px;
    text-align: center;
    color: #fff;
    max-height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
.page_body>.row_1>.content>.row1_list::-webkit-scrollbar{
    display: none;
}
.page_body>.row_1>.content>.row1_list>.game-item>a>img{
    width: 126px;
    height: 126px;
    cursor: pointer;
}

.page_body>.row_2{
    /* width: 100%;
    padding: 0 235px; */
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(126px, 1fr));
    grid-row-gap: 28px;
    grid-column-gap: 27px;
    margin-top: 30px;
}
.page_body>.row_2>.game-item{
    width: 126px;
    height: 126px;
    cursor: pointer;
    position: relative;
}
.page_body>.row_2>.game-item>a>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_body>.row_2>.game-item:hover>a>span{
    display: block;
}
.page_body>.row_2>.game-item>a>span{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff6a1e;
    border-radius: 0 0 15px 15px;
    text-align: center;
    color: #fff;
    max-height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
.page_body>.row_2>.game-item:nth-child(1){
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    width: 434px;
    height: 280px;
}
.page_body>.row_2>.game-item:nth-child(12){
    grid-column: 2 / 4;
    grid-row: 3 / 5;
    width: 280px;
    height: 280px;
}
.page_body>.row_2>.advert{
    grid-column: 4 / 6;
    grid-row: 2 / 4;
    width: 280px;
    height: 280px;
}
/* .page_body>.row_2>.game-item:nth-child(25){
    grid-column: 9 / 12;
    grid-row: 3 / 5;
    width: 434px;
    height: 280px;
} */

.page_body>.row_3{
    /* width: 100%;
    padding: 0 235px; */
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(252px, 1fr));
    position: relative;
    margin-top: 28px;
    overflow: hidden;
    gap: 28px;
}


.page_body>.row_3::after{
    content: "";
    width: 686px;
}
.page_body>.row_3>.item{
    width: 280px;
    height: 280px;
    cursor: pointer;
    position: relative;
}
.page_body>.row_3>.item:hover>a>span{
    display: block;
}
.page_body>.row_3>.item>a>span{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff6a1e;
    border-radius: 0 0 15px 15px;
    text-align: center;
    color: #fff;
    max-height: 30px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
.page_body>.row_3>.item:first-child{
    margin-left: 0;
}
.page_body>.row_3>.item:last-child{
    margin-right: 0;
}
.page_body>.row_3>.item>a>img{
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.page_body>.row_4{
    /* width: 100%;
    padding: 0 235px; */
    width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(126px, 1fr));
    gap: 28px;
    position: relative;
    margin: 28px auto 0;
}
.page_body>.row_4>.item{
    position: relative;
    width: 280px;
    height: 126px;
    background-color: #fff;
    border-radius: 15px;
    cursor: pointer;
}
.page_body>.row_4>.item>a>img{
    width: 45%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}
.page_body>.row_4>.item>a>span{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
}

.page_body>.row_5{
    /* width: 100%;
    padding: 30px 235px; */
    width: 1200px;
    position: relative;
    margin: 28px 0 50px;
}
.page_body>.row_5>div>.title{
    color: #D24600;
    font-weight: bold;
    font-size: 24px;
}
.page_body>.row_5>div>p{
    margin: 10px 0;
    font-size: 14px;
}
.pc_footer{
    width: 100%;
    background-color: #FF6A1F;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.pc_footer>span{
    cursor: pointer;
}
.pc_footer>span:nth-child(2){
    margin: 0 50px;
}

img {
    border-radius: 15px;
}
