/* 头部 */
.header-wrapper {
    position: fixed;
    width: 100%;
    height: 50px;
    max-width: 468px;
    padding: 0 8px 0 8px;
    background: #282828;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
}
.header-wrapper .userinfo-wrapper {
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
}
.header-wrapper .userinfo-wrapper .assets {
    color: #46A2FF;
    margin-left: 6px;
}
.header-wrapper .login-wrapper {
    display: flex;
}
.header-wrapper .login-wrapper .btn {
    position: relative;
    height: 28px;
    padding: 0 15px;
    font-size: 14px;
    color: #FFFFFF;
    background: #46A2FF;
    border: 1px solid #46A2FF;
    border-radius: 2px;
    text-align: center;
    transition: opacity .2s;
}
.header-wrapper .pc {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 30px;
    height: 30px;
}
/* 轮播图 */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 468px;
    padding-top: 50px;
}
.slider-img {
    width: 100%;
    display: block;
    height: 180px;
    margin: 0 auto;
    object-fit: cover;
    border-style: none;
}
.slider-arrow {
    position: absolute;
    width: 36px;
    height: 36px;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    z-index: 101;
    transform: translateY(-50%);
    transition: .2s;
    background-color: rgba(31,45,61,.11);
    color: #ffffff;
    text-align: center;
    font-size: 1em;
}
.slider-arrow:hover {
    background-color: rgba(31,45,61,.5);
}
.slider-arrow-left {
    left: 16px;
    display: none;
}
.slider-arrow-right {
    right: 16px;
    display: none;
}
.slider-dots {
    position: absolute;
    display: block;
    z-index: 101;
    list-style: none;
    text-align: center;
    padding: 0;
    width: 100%;
    bottom: 0px;
}
.slider-dots li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}
.slider-dots li button {
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #ffffff;
    opacity: .4;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    outline: none;
    color: transparent;
    transition: all .5s;
}
.tns-nav-active button {
    opacity: 1 !important;
    width: 24px !important;
}
/* 游戏系列、平台功能 */
.lottery-wrapper,
.games-wrapper,
.actions-wrapper {
    position: relative;
    width: 100%;
    max-width: 468px;
    padding: 24px 12px;
    /* width: 1140px;
    margin: 0 auto;
    padding: 60px 0; */
    display: flex;
    flex-direction: column;
}
.games-wrapper {
    padding-top: 0px;
}
.actions-wrapper {
    padding-top: 0px;
}
 .title-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
 .title-wrapper .divider {
    width: 30px;
    height: 2px;
    background: #353435;
    border-radius: 6px;
}
.title-wrapper .title {
    font-size: 18px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #191F25;
    line-height: 36px;
    margin: 0 16px;
}
.items-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
 .items-wrapper .item {
    flex: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.items-wrapper .item:nth-of-type(n + 5) {
    margin-top: 18px;
}
 .items-wrapper .item img {
    width: 53px;
    height: auto;
    border-radius: 13px;
    box-shadow: 4px 3px 11px 1px rgba(0, 0, 0, 0.05), 8px 8px 17px 5px rgba(0, 0, 0, 0.04);
}
 .items-wrapper .item p {
    margin-top: 12px;
    font-size: 14px;
    color: #191F25;
}
