.home_head {
    text-align: center;
    padding: 72px 0 78px;
}

.home_head h2 {
    font-size: 32px;
}

.home_head>p {
    color: #FFFFFF;
    margin: 12px 0 37px;
}

.home_head .sign_btn p {
    background: linear-gradient(180deg, #FF8D23 0%, #FF6708 100%);
    height: 44px;
    border-radius: 10px 10px 10px 10px;
    padding: 0 26px;
}

.home_head .sign_btn p span {
    cursor: pointer;
}

.home_head .sign_btn p span:hover {
    color: #000;
}

.home_head .sign_btn p i {
    margin: 0 3px;
}

.game_list {
    margin-bottom: 60px;
    gap: 60px;
}
.game_list a {
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
}
.game_list a img {
    max-width: 670px;
    width: 100%;
    transition: all .3s;
}
.game_list a:hover img {
    transform: scale(1.1);
}
.common_warp {
    background: url('/images/lucky_bj.webp');
    height: 502px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
    display: flex;
    justify-content:space-around;
}
.warp_machine_click{
    background: url(/images/machine_index.webp) no-repeat;
    background-size: 100%;
    width:700px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    transition: all .5s;
}
.warp_machine_click .click_btn {
    bottom:175px;
    width: 409px;
    height: 68px;
    position: absolute;
}


.warp_machine_click .click_btn .hover_btn {
    width: 409px;
    height: 68px;
    display: block;
}


.warp_machine_click .hand {
    width: 278px;
    right:20px;
    position: absolute;
    bottom: -210px;
    display: block;
    pointer-events: none;
}

.warp_machine_click .click_btn.hover .hand {
    display: block;
}

.common_warp.fast_warp {
    background-image: url('/images/fast_bj.webp');
    justify-content: flex-end;
}

.common_warp .warp_info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 76px;
}

.common_warp .warp_info .title {
    font-size: 28px;
    /* 大写 */
    text-transform: uppercase;
}
.common_warp.lucky_warp .warp_info {
    
}
.common_warp.lucky_warp .warp_info .title{
margin-bottom: 25px;
}
.common_warp .warp_info .text {
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0 10px;
}

.common_warp .title span {
    color: #FF6F08;
}


.fast_warp .warp_info .title {
    /* padding-right: 170px; */
    margin-bottom: 20px;
}
.fast_warp .fast_list {
    gap: 12px;
}
.fast_warp .fast_item img {
    width: 64px;
    margin-bottom: 12px;
}


.game_news {
    margin-bottom: 60px;
}
.game_news .game_news_title {
    margin-bottom: 24px;
}

.game_news .game_name {
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 42px;
}
.game_news .game_news_list {
    gap: 44px;
}
.game_news .game_news_title a {
    padding: 0px 16px;
    border-radius: 5px 5px 5px 5px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
     height: 31px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #FF6A00;
}

.game_news .game_news_title a:hover {
    background: linear-gradient( 180deg, #FF8D23 0%, #FF6708 100%);
    color: #fff;
}

.game_news .game_news_item {
    border: 1px solid transparent;
}

.game_news .game_news_item .game_news_info {
    padding: 0 24px;
}

.game_news .game_news_item:last-child {
    margin-bottom: 0;
}

.game_news .game_news_item .game_news_img {
    min-width: 213px;
    display: flex;
    align-items: center;
}

.game_news .game_news_item .game_news_img img {
    width: 100%;
  aspect-ratio: 1.78;
  height: auto;
  object-fit: cover; /* 根据需要调整 */
    border-radius: 15px;
}

.game_news .game_news_item .news_title {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    /* 超出三行省略 */
    overflow: hidden;
    height: 41px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.game_news .game_news_item .news_content {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 20px;
    height: 60px;
    /* 超出三行省略 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 20px;

}

.game_news .game_news_item:hover {
    background: rgba(29,19,12,0.8);
    border-radius: 15px 15px 15px 15px;
    border: 1px solid #FF6A00;
}
