* {
    user-select: none;
}
.carouselContainer {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.carouselContainer .carousel {
    display: flex;
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 0;
}
.carouselContainer .carousel .item {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    cursor: pointer;
}
.carouselContainer .carousel .item.active {
    opacity: 1;
    z-index: 1;
}
.carouselContainer .carousel .item img {
    width: 100%;
    height: 100%;
}
.carouselContainer .nav {
    position: absolute;
    bottom: 110px;
    left: 75%;
    display: flex;
    z-index: 2;
}
.carouselContainer .nav .dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.carouselContainer .nav .dot.active {
    background-color: #EA253C;
    border: 3px solid #fff;
}
.carouselContainer .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 20px;
    user-select: none;
}
.carouselContainer .arrow:hover {
    background-color: #EA253C;
}
.carouselContainer .arrow.prev {
    left: 20px;
}
.carouselContainer .arrow.next {
    right: 20px;
}
.hotContainer {
    position: relative;
    margin-top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    z-index: 3;
    gap: 10px;
}
.hotContainer .arrange {
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.hotContainer .arrange img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.hotContainer .arrange:hover {
    transform: translateY(-5px);
}
.gameContainer {
    display: flex;
    gap: 20px;
    margin: 30px auto 0;
    width: 60%;
}
.gameContainer .newProductContainer {
    flex: 0.4;
}
.gameContainer .hotGameContainer {
    flex: 1;
}
.gameContainer .newProductContainer , .gameContainer .hotGameContainer {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gameContainer .newProductContainer .whiteBox, .gameContainer .hotGameContainer .whiteBox {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.gameContainer .newProductContainer .whiteBox {
    background: white;
}
.gameContainer .hotGameContainer .whiteBox {
    flex-direction: row;
}
.gameContainer .newProductContainer .whiteBox .list {
    flex: 1;
}
.gameContainer .newProductContainer .whiteBox .item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
}
.gameContainer .newProductContainer .whiteBox .item:not(:last-child) {
    border-bottom: 1px dashed #eee;
}
.gameContainer .newProductContainer .whiteBox .item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5eeee;
    margin-right: 12px;
    object-fit: cover;
}
.gameContainer .newProductContainer .whiteBox .info {
    flex: 1;
}
.gameContainer .newProductContainer .whiteBox .info .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
}
.gameContainer .newProductContainer .whiteBox .info .subtitle {
    font-size: 12px;
    color: #888;
}
.gameContainer .newProductContainer .whiteBox .time {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
.gameContainer .newProductContainer .pages {
    display: flex;
    justify-content: center;
    padding: 10px;
    border-top: 1px solid #eee;
    user-select: none;
}
.gameContainer .newProductContainer .pageBtn {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #999;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px
}
.gameContainer .newProductContainer .pageBtn.active {
    background-color: #EA253C;
    color: white;
    border: none;
}
.hotGameContainer .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}
.hotGameContainer .list img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}
.hotGameContainer .list img:hover {
    transform: translateY(-3px) scale(1.03);
}
.tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 20px;
}
.tabs .title {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 15px;
    color: #333;
}
.tabs .line {
    width: 4px;
    height: 18px;
    background-color: #EA253C;
    margin-right: 8px;
    border-radius: 2px;
}
.tabs span {
    color: #989898;
}
.tabs .tabButton {
    display: flex;
    gap: 6px;
}
.tabs .tabButton .tab {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    cursor: pointer;
    color: white;
    background: #989898;
}
.tabs .tabButton .tab.active {
    background-color: #EA253C;
}
.activityAndNewsContainer, .otherContainer {
    margin: 30px auto 0;
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.activityAndNewsContainer .activityContainer {
    width: 60%;
    height: 350px;
}
.activityAndNewsContainer .newsContainer {
    width: 40%;
    height: 350px;
}
.activityAndNewsContainer .activityContainer .whiteBox {
    background: white;
    margin: 10px 0 0 0;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}
.activityAndNewsContainer .activityContainer .whiteBox .carouselContainer .carousel {
    height: 300px;
}
.activityAndNewsContainer .activityContainer .whiteBox .carouselContainer .carousel img {
    width: 100%;
}
.activityAndNewsContainer .activityContainer .whiteBox .carouselContainer .nav {
    position: absolute;
    bottom: 15px;
    right: 0;
    display: flex;
    z-index: 2;
}
.activityAndNewsContainer .newsContainer .whiteBox {
    background: white;
    margin: 10px 0 0 0;
    height: 320px;
    border-radius: 5px;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}
.activityAndNewsContainer .newsContainer .whiteBox .recommend {
    display: flex;
    font-size: 15px;
    line-height: 24px;
    cursor: pointer;
}
.activityAndNewsContainer .newsContainer .whiteBox .recommend .tag {
    background: #EA253C;
    color: #fff;
    padding: 0 8px;
}
.activityAndNewsContainer .newsContainer .whiteBox .recommend .title {
    background: #333;
    color: #fff;
    flex: 1;
    padding: 0 8px;
}
.activityAndNewsContainer .newsContainer .whiteBox .list {
    list-style: none;
    margin: 0;
    padding: 0px 10px;
}
.activityAndNewsContainer .newsContainer .whiteBox .list li {
    padding-left: 14px;
    margin: 10px 0;
    position: relative;
    font-size: 15px;
    color: #555;
    cursor: pointer;
}
.activityAndNewsContainer .newsContainer .whiteBox .list li::before {
    content: "▶";
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
    color: gray;
}
.activityAndNewsContainer .newsContainer .addBtn {
    position: relative;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background: #d80000;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    cursor: pointer;
}
.activityAndNewsContainer .newsContainer .addBtn span {
    color: #fff;
    font-size: 25px;
    position: absolute;
    right: 5px;
    line-height: 45px;
    height: 40px;
}
.otherContainer .gameGiftContainer {
    width: 60%;
    height: 300px;
}
.otherContainer .serviceChannelContainer {
    width: 40%;
    height: 300px;
}
.otherContainer .gameGiftContainer .whiteBox, .otherContainer .serviceChannelContainer .whiteBox {
    background: white;
    margin: 10px 0 0 0;
    height: 230px;
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
}
.otherContainer .gameGiftContainer .whiteBox, .otherContainer .serviceChannelContainer .whiteBox {
    display: flex;
}
.gameGiftContainer .whiteBox .leftBox, .gameGiftContainer .whiteBox .rightBox {
    width: 50%;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
    padding: 10px;
}
.gameGiftContainer .whiteBox .leftBox {
    border-right: 2px solid #ccc;
}
.gameGiftContainer .whiteBox .leftBox .item, .gameGiftContainer .whiteBox .rightBox .item {
    display: flex;
    align-items: center;
    color: #999;
    padding: 10px 0;
}
.gameGiftContainer .whiteBox .leftBox .item img, .gameGiftContainer .whiteBox .rightBox .item img { 
    width: 50px;
    height: 50px;
    background: gray;
    border-radius: 50%;
    margin-right: 10px;
}
.gameGiftContainer .whiteBox .leftBox .item .info, .gameGiftContainer .whiteBox .rightBox .item .info {
    flex: 0.9;
    overflow: hidden;
    line-height: 25px;
}
.gameGiftContainer .whiteBox .leftBox .item .info .title,
.gameGiftContainer .whiteBox .rightBox .item .info .title,
.gameGiftContainer .whiteBox .leftBox .item .info .subtitle,
.gameGiftContainer .whiteBox .rightBox .item .info .subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gameGiftContainer .whiteBox .leftBox .item .info .title, .gameGiftContainer .whiteBox .rightBox .item .info .title {
    color: #000;
}
.gameGiftContainer .whiteBox .leftBox .item .info .subtitle, .gameGiftContainer .whiteBox .rightBox .item .info .subtitle {
    font-size: 12px;
    color: #999;
}
.gameGiftContainer .whiteBox .leftBox .item .getBtn, .gameGiftContainer .whiteBox .rightBox .item .getBtn {
    font-size: 14px;
    width: 70px;
    border: 1px solid #EA253C;
    border-radius: 15px;
    text-align: center;
    color: #EA253C;
    cursor: pointer;
    height: 25px;
    line-height: 25px;
}
.gameGiftContainer .whiteBox .leftBox .item .getBtn:hover , .gameGiftContainer .whiteBox .rightBox .item .getBtn:hover {
    color: #fff;
    background-color: #EA253C;
    border: none;
}
.serviceChannelContainer .whiteBox .leftBox {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-right: 2px solid #ccc;
}
.serviceChannelContainer .whiteBox .rightBox {
    padding: 20px;
}
.serviceChannelContainer .whiteBox .leftBox .item {
    background: #ECECEC;
    padding: 5px;
    color: #828989;
    width: 43%;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.serviceChannelContainer .whiteBox .leftBox a {
    text-decoration: none;
}
.serviceChannelContainer .whiteBox .leftBox .item:hover {
    background: #d10000;
    color: #fff;
}
.serviceChannelContainer .whiteBox .rightBox .contact {
    height: 100%;
}
.serviceChannelContainer .whiteBox .rightBox .contact img {
    width: 100%;
    height: 100%;
}