@charset "UTF-8";

:root {
    --animate-delay: 0.3s;
}

.carousel {
    width: 100%;
    max-width: 2500px;
    height: 6.5rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.swiper {
    height: 100%;
}

.swiper-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    color: #F6720F;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.swiper-content {
    display: none;
    position: absolute;
    top: .4rem;
    left: 50%;
    z-index: 2;
    width: 100%;
    max-width: var(--base-max-width);
    color: #fff;
    transform: translateX(-50%);
}

.swiper-slide-active .swiper-content {
    display: block;
}

.swiper-content-logo {
    width: 2.2rem;
}

.swiper-content-title {
    display: inline-block;
    margin-top: .5rem;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
}

.swiper-content-title p {
    margin: .08rem 0;
}

.swiper-content-button {
    margin-top: .4rem;
}

.swiper-content-button a {
    display: inline-block;
    padding: .1rem .3rem;
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1.2em;
}

.swiper-content-button a:hover {
    font-weight: normal;
}

.swiper-content-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #F6720F;
}

.joinus {
    width: 100%;
    height: 4rem;
    padding-top: 1rem;
    background: url("//content.gamebean.com/image/playcrab/website/index-joinus.png") no-repeat center top;
    box-sizing: border-box;
}

.joinus h3 {
    font-size: 2.3em;
    color: #fff;
}

.joinus a {
    display: inline-block;
    padding: .12rem .5rem;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 1.2em;
}

.joinus a:hover {
    font-weight: normal;
}


@media screen and (max-width: 768px) {
    .swiper-content {
        left: .4rem;
        right: .4rem;
        width: auto;
        transform: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .joinus .wrapper {
        padding-left: .3rem;
        padding-right: .3rem;
    }
}