* {
    margin: 0;
    padding: 0;
}

body,
html {
    font-size: 12px;
    font-family: 'Microsoft Yahei', 'simsun', arial, verdana, sans-serif;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    min-width: 1200px;
    background-color: #F6F7FB;
}

html::-webkit-scrollbar {
    /* 滚动条整体样式 */
    width: 4px;
    /* 高宽分别对应横竖滚动条的尺寸 */
    height: 4px;
    scrollbar-arrow-color: red;
}

html::-webkit-scrollbar-thumb {
    /* 滚动条里面小方块 */
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: green;
    scrollbar-arrow-color: red;
}

html::-webkit-scrollbar-track {
    /* 滚动条里面轨道 */
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

a:hover {
    color: #3C3845;
    text-decoration: none;
}

li {
    list-style: none;
}

.content {
    /* width: 1920px; */
}

.header {
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    min-width: 1200px;
    position: fixed;
    z-index: 1999;
    top: 0;
    left: 0;
}

.header_db {
    width: 1500px;
    height: 80px;
    /* background-color: red; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 108px;
    height: 38px;
    background: url('/imgs/home/51logo.png');
    margin-right: 24px;
}
.header_code:hover .open_code{
    display: flex;
    height: 200px;
    opacity: 1;
    transition: all .4s;
}
.header_code{
    width: 288px;
    height: 43px;
    background: url('/imgs/home/qrcode.png');
    position: relative;
}
.open_code::before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom: 20px solid rgba(0,0,0,0.25);
    top: -40px;
}
.open_code{
    width: 200px;
    height: 0;
    position: absolute;
    background-color: rgba(0,0,0,0.25);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    top: 50px;
    opacity: 0;
}
.code_img{
    width: 150px;
    height: 150px;
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -moz-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -moz-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -moz-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -moz-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -moz-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.logo:hover {
    webkit-animation: linear swing 1s 1;
    -moz-animation: linear swing 1s 1;
    animation: linear swing 1s 1;
}

.header_db_left,
.header_db_left ul {
    display: flex;
    align-items: center;
}

.header_db_left ul li {
    margin-left: 40px;
    font-size: 14px;
    color: #3C3845;
    position: relative;
}

.header_db_left ul li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0px;
    border-radius: 1px;
    background: #FF6136;
    transition: all .5s;
}

.header_db_left ul li:hover::after {
    width: 100%;
}

.no::after {
    width: 100% !important;
}

.header_db_right {
    position: relative;
}

.header_db_right .seach_ipnut {
    width: 280px;
    height: 36px;
    background: #F1F1F1;
    border-radius: 18px;
    border: 0px;
    padding: 0 36px 0 12px;
    box-sizing: border-box;
}

.seach_icon {
    width: 20px;
    height: 20px;
    background: url('/imgs/web/seach.png');
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
}

.banner {
    width: 100%;
    overflow: hidden;
    height: 460px;
    margin: 0 auto;
    margin-top: 80px;
    min-width: 1200px;
    position: relative;
}

.banner ul .layui-this {
    width: 29px;
    border-radius: 6px;
}

.banner_item {
    width: 1920px;
    overflow: hidden;
    text-align: center;
    margin: auto;
    min-width: 1200px !important;
}

.banner_box {
    max-width: 1920px !important;
    /* background: url('/imgs/home/banner1.png'); */
    width: 100%;
    height: 460px;
    margin: auto !important;
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-position: center 0 !important;
}

.login_box {
    width: 340px;
    height: 380px;
    /* background: #ffffff; */
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    box-sizing: border-box;
    padding: 16px 20px 0;
    z-index: 666;
    top: 32px;
    left: 50%;
    margin-left: 260px;
    overflow: hidden;
    border-radius: 4px;
}

.layui-carousel-ind ul {
    /* background-color: transparent !important; */
}

.layui-carousel-ind li {
    background-color: #fff !important;
}

.layui-carousel-ind .layui-this {
    background-color: #FD5900 !important;
}

.login_box h2 {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 0px;
    display: none;
}

.login_box h2 span {
    cursor: pointer;
}

.login_box h2 span:hover {
    cursor: pointer;
    font-weight: 600;
    color: #3F62ED;
}

.login_box h2 span:nth-child(1) {
    /* margin-right: 24px; */
}

.type_login_no {
    font-weight: 600;
    color: #3F62ED;
}

.code_home_from {
    display: none;
}

.home_from {
    display: none;
}

.home_from .layui-input {
    /* width: 300px;/ */
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
}

.input_pdl {
    padding-left: 38px;
}

.home_from .layui-form-item {
    position: relative;
    margin-bottom: 8px;
    display: flex;
}

.pos_icon {
    width: 16px;
    height: 16px;
    position: absolute;
    z-index: 99;
    top: 12px;
    left: 8px;
    padding-right: 5px;
    border-right: 1px solid #D8D8D8;
}

.user_icon {
    background: url('/imgs/web/user_icon.png') no-repeat;
}

.pwd_icon {
    background: url('/imgs/web/pwd_icon.png') no-repeat;
}

.register {
    margin-top: 34px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    position: relative;
}

.register:hover {
    text-decoration: underline;
    color: #3F62ED;
}

.register::before {
    position: absolute;
    content: '';
    top: -2px;
    right: 52px;
    width: 20px;
    height: 20px;
    background: url('/imgs/home/right_blue.png') no-repeat;
}

.other_login {
    width: 100%;
    text-align: right;
}

.send_code {
    width: 110px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    text-align: center;
    background-color: rgb(107, 132, 233);
    color: #fff;
    cursor: pointer;
}

.acc_reminder_login_style {
    height: 24px;
    line-height: 24px;
    color: #961f1f;
    font-size: 12px;
}

.user_info {
    display: flex;
    align-items: center;
    padding: 4px 0 18px;
    /* border-bottom: 1px solid #F6F6F6; */
}

.user_info .user_img {
    width: 80px;
    height: 80px;
    border: 1px solid #F8F8F8;
    border-radius: 50% !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.user_info_name {
    font-size: 18px;
    font-weight: 600;
    color: #3F62ED;
    margin-left: 16px;
    cursor: pointer;
    width: 162px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.user_vip{
    margin-left: 16px;
    margin-top: 12px;
    font-size: 16px;
}
.grow_v{
    color: #FD7303;
    cursor: pointer;
}
.vip{
    display: inline-block;
    width: 48px;
    height: 20px;
    background: linear-gradient(180deg, #FFAA00 0%, #FD7100 100%);
    border-radius: 11px;
    text-align: center;
    color: #fff;
    line-height: 20px;
    margin-left: 8px;
    font-size: 14px;
}
.user_info_name:hover {
    text-decoration: underline;
}

.login_out {
    font-size: 12px;
    margin-left: auto;
    color: #666666;
    cursor: pointer;
    margin-bottom: 36px;
}

.login_out:hover {
    text-decoration: underline;
}

.user_info_game_title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 26px 0 8px;
}

.user_info_box ul {
    /* height: 190px; */
    overflow: hidden;
}

.user_info_box li {
    cursor: pointer;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #333333;
    overflow: hidden;
    border-top: 1px solid #F6F6F6;
    display: flex;
    justify-content: space-between;
}
.user_info_box li:hover{
    background-color: rgba(0255, 255, 255, .3);
}
.user_info_box li span:nth-child(1) {
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user_info_box {
    display: none;
}
.platform_m{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform_m span{
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    display: inline-block;
}
.prom_pay{
    width: 72px;
    height: 24px;
    background: linear-gradient(180deg, #FFBC2C 0%, #FF6136 100%);
    border-radius: 12px;
    line-height: 24px;
    color: #fff !important;
    font-size: 14px !important;
    text-align: center;
    font-weight: 500 !important;
}
.forget_pwd:hover {
    text-decoration: underline;
}

.aside {
    width: 1200px;
    margin: 0 auto;
}

.boutique h2 {
    font-size: 20px;
    color: #333333;
    margin: 40px 0 20px;
    border-left: 6px solid #FF6136;
    padding-left: 12px;
}

.boutique_game {
    display: flex;
    height: 280px;
    border-bottom: 2px solid #FF6136;
}

.boutique_game_item {
    width: 224px;
    height: 280px;
    /* background: rgb(20, 97, 61); */
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.boutique_game_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, transparent 30%, transparent, rgba(255, 255, 255, .5), transparent 70%) no-repeat;
    background-size: 200% 200%;
    background-position: 200% 200%;
}

.boutique_game_item:hover::before {
    transition: background-position 1.2s;
    background-position: -100% -100%;
}

.boutique_game_item1 {
    background: url('/imgs/home/1.png') no-repeat;
}

.boutique_game_item2 {
    background: url('/imgs/home/2.png') no-repeat;
}

.boutique_game_item3 {
    background: url('/imgs/home/3.png') no-repeat;
}

.boutique_game_item4 {
    background: url('/imgs/home/4.png') no-repeat;
}

.boutique_game_item5 {
    background: url('/imgs/home/5.png') no-repeat;
}

.boutique_game .boutique_game_item:not(:last-child) {
    margin-right: 20px;
}

.b_g_show {
    width: 100%;
    height: 48px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.b_g_btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 0 30px;
    position: absolute;
    top: 100%;
    transition: all .5s;
    opacity: 0;
    left: 0;
}

.b_g_btn>div {
    width: 72px;
    height: 24px;
    background: #FF6136;
    border-radius: 14px;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
}

.boutique_game_item:hover .b_g_name {
    display: none;
}

.boutique_game_item:hover .b_g_btn {
    margin-top: -10px;
    top: 50%;
    opacity: 1;
}

.aside_content {
    display: flex;
}

.aside_content_left {
    width: 300px !important;
    box-sizing: border-box;
    margin-right: 6px;
    /* height: 500px; */
    /* background-color: rgb(84, 150, 130); */
}

.aside_content_right {
    /* width: 100%; */
    width: 894px;
}

.explosive {
    width: 300px;
    min-height: 150px;
}

.explosive_game img {
    width: 300px;
    height: 150px;
}

.explosive_game img:hover {
    opacity: .8;
}

.explosive_game_content p {
    background-color: #fff;
    padding: 17px 12px;
    font-size: 16px;
    color: #333333;
}

.explosive_game_content p:not(:last-child) {
    border-bottom: 1px solid #F6F7FB;
}

.explosive_game_content p:not(:first-child) {
    /* border-bottom: 1px solid #F6F7FB; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ma_right_set {
    margin-left: 14px !important;
}

.hot_game_item {
    cursor: pointer;
    width: 280px;
    border: 2px solid transparent;
    position: relative;
    margin-bottom: 18px;
    margin-left: 14px;
}

.hot_game_item img {
    width: 280px;
    height: 220px;
}

.hot_game_item:hover {
    border: 2px solid #FF6136;
    -webkit-transition: .2s all linear;
    transition: .2s all linear;
}

.hot_game_item:hover .hot_game_name {
    opacity: 0;
}

.hot_game_item:hover .hot_game_play {
    opacity: 1;
}

.hot_game {
    display: flex;
    flex-wrap: wrap;
    min-height: 800px;
    /* justify-content: space-between; */
}

.hot_game_content {
    width: 100%;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    background: #FFFFFF;
}

.hot_game_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    color: #333;
    font-size: 18px;
    transition: all .5s;
}

.hot_game_name_detail {
    font-size: 14px;
}

.hot_game_play {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    width: 100%;
    color: #FF6136;
    opacity: 0;
    transition: all .5s;
}

.open_service {
    background-color: #fff;
}

.join_game {
    width: 104px;
    height: 28px;
    background: #FF6136;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    border-radius: 14px;
}

.open_service li {
    width: 100%;
    box-sizing: border-box;
    height: 56px;
    /* background: #FFFFFF; */
    border-bottom: 1px solid #F6F7FB;
    line-height: 56px;
    cursor: pointer;
    transition: all .6s;
    padding: 0 24px;
    position: relative;
    display: flex;
}

.open_service li::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 20px;
    left: 6px;
    background: url('/imgs/home/right.png') no-repeat;
}

.open_service li:hover {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFE8E1 100%);
}

.open_service li>span {
    display: inline-block;
}

.open_service li>span:nth-child(1) {
    width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
}

.open_service li>span:nth-child(2) {
    font-size: 14px;
    margin: 0 12px;
    width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.open_service li>span:nth-child(3) {
    font-size: 12px;
    color: #999;
}

.boutique h3 {
    width: 300px;
    box-sizing: border-box;
    height: 56px;
    /* background: #FFFFFF; */
    padding: 0 12px;
    line-height: 56px;
    border-bottom: 1px solid #F6F7FB;
}

.boutique h3 span {
    font-size: 16px;
    color: #FD5900;
}

.open_service_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 56px;
    background: #FFFFFF;
}

.open_service_prev {
    width: 20px;
    height: 20px;
    background: url('/imgs/home/prev.png');
    margin-right: 32px;
    cursor: pointer;
}

.open_service_next {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url('/imgs/home/next.png')
}

.new_game_rank>ul>li:hover {
    background: linear-gradient(90deg, #FFFFFF 0%, #FFE8E1 100%);
}

.new_game_rank>ul>li {
    width: 300px;
    height: 108px;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.new_game_rank>ul>li>span:nth-child(1) {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #F68D3A;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 24px 0 16px;
}

.new_game_rank>ul>li img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
}

.new_game_rank>ul>li p:nth-child(1) {
    font-size: 16px;
    color: #333333;
    height: 21px;
}

.new_game_rank>ul>li p:nth-child(2) {
    font-size: 14px;
    color: #999999;
    margin: 4px 0;
    height: 18px;
}

.new_game_rank>ul>li p:nth-child(3) {
    font-size: 12px;
    color: #999999;
    height: 16px;
}

.adv_img img {
    width: 880px;
    height: 120px;
    margin-left: 14px;
}

.adv_img:hover {
    opacity: .8;
}

.new_game_recommend_h2 {
    margin-bottom: 0 !important;
}

.new_game_recommend {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    min-height: 400px;
}

.new_game_recommend_item {
    margin-top: 20px;
    position: relative;
    width: 280px;
    height: 180px;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-left: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-position: center !important;
}

.new_game_recommend_item:hover {
    background-size: 105% !important;
}

.new_game_recommend_item>div {
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 104px;
    box-sizing: border-box;
    padding-right: 12px;
    text-align: right;
    height: 24px;
    line-height: 24px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    font-size: 12px;
    color: #fff;
}


/*  */

.h5_game_item {
    cursor: pointer;
    width: 280px;
    border: 2px solid transparent;
    position: relative;
    margin-top: 20px;
    margin-left: 14px;
}

.h5_game_item:hover {
    border: 2px solid #FF6136;
    -webkit-transition: .2s all linear;
    transition: .2s all linear;
}

.h5_game {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    /* justify-content: space-between; */
}

.h5_game_content {
    width: 100%;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    background: #FFFFFF;
}

.h5_game_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    color: #333;
    font-size: 18px;
    transition: all .5s;
}

.h5_game_name_detail {
    font-size: 14px;
}

.classics_game {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

.classics_game_item:hover {
    border: 2px solid #FF6136;
    -webkit-transition: .2s all linear;
    transition: .2s all linear;
}

.classics_game_item {
    display: flex;
    align-items: center;
    width: 205px;
    height: 80px;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 10px 0 10px 15px;
    cursor: pointer;
    margin-top: 20px;
    border: 2px solid transparent;
    margin-left: 14px;
    margin-right: 4px;
}

.classics_game_item img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
}

.classics_game_content p:nth-child(1) {
    font-size: 18px;
    color: #333333;
    margin-bottom: 4px;
    height: 24px;
}

.classics_game_content p:nth-child(2) {
    font-size: 12px;
    color: #999999;
    height: 16px;
}

.hot_rank_normal {
    display: flex;
    align-items: center;
    width: 300px;
    height: 56px;
    line-height: 56px;
    background: #FFFFFF;
    cursor: pointer;
}

.hot_rank_normal span {
    display: inline-block;
}

.hot_rank_normal .right_icon {
    margin-left: auto;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    background: url('/imgs/home/right.png')
}

.hot_rank_title {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #F68D3A;
    color: #fff;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    margin: 0 12px 0 16px;
}

.hot_rank_hover .hot_rank_title {
    background: #FF6136;
}

.hot_rank_name {
    font-size: 16px;
    color: #333333;
    margin-right: 10px;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hot_rank_detail {
    font-size: 14px;
    color: #333333;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hot_rank_hover {
    display: none;
    width: 300px;
    height: 110px;
    /* display: flex; */
    align-items: center;
    /* line-height: 110px; */
    cursor: pointer;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFE8E1 100%);
}

.hot_rank_hover img {
    width: 60px;
    height: 60px;
    margin: 0 16px 0 12px;
}

.hot_rank_hover .hot_rank_name {
    margin-bottom: 4px;
    margin-right: 0;
}

.jion_hot_rank {
    display: inline-block;
    width: 56px;
    height: 24px;
    background: #FF6136;
    border-radius: 4px;
    text-align: center;
    line-height: 24px;
    color: #fff;
    font-size: 16px;
    margin: 0 5px 0 auto;
}


/* .hot_rank li:hover .hot_rank_hover{
    display: flex;
}
.hot_rank li:hover .hot_rank_normal{
    display: none;
} */

.hot_rank_no .hot_rank_hover {
    display: flex !important;
}

.hot_rank_no .hot_rank_normal {
    display: none !important;
}

.phone_code {
    background: #3F62ED;
    width: 90px;
    color: #fff !important;
    text-align: center;
}

.right_side_menu {
    display: none;
    position: fixed;
    width: 78px;
    z-index: 1000;
    /* top: 55%; */
    bottom: 100px;
    right: 10px;
    cursor: pointer;
}

.right_side_menu_items{
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    margin-left: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 6px;
}
.right_side_menu_item {
    width: 78px;
    height: 78px;
    margin-bottom: 10px;
}

.game_icon_menu {
    background: url('/imgs/home/game.png') no-repeat;
    background-size: 100%;
    transition: background 0.3s ease-in-out;
}

.game_icon_menu:hover {
    background: url('/imgs/home/game_hover.png') no-repeat 100%;
}

.qq_icon_menu {
    background: url('/imgs/home/help_icon1.png') no-repeat 0px 2px;
    transition: background 0.3s ease-in-out;
}

.qq_icon_menu:hover {
    background: url('/imgs/home/help_icon1.png') no-repeat -78px 2px;
}

.kefu_icon_menu {
    background: url('/imgs/home/help_icon1.png') no-repeat -156px 2px;
    transition: background 0.3s ease-in-out;
}

.kefu_icon_menu:hover {
    background: url('/imgs/home/help_icon1.png') no-repeat -234px 2px;
}

.go_top {
    background: url('/imgs/home/go_top.png') no-repeat 0px 2px;
    transition: background 0.3s ease-in-out;
}

.go_top:hover {
    background: url('/imgs/home/go_top.png') no-repeat -78px 2px;
}

.couplet_left {
    display: none;
    position: fixed;
    width: 150px;
    height: 490px;
    left: 50%;
    top: 120px;
    margin-left: -784px;
    /* background-color: #961f1f; */
    transition: all 1s;
}

.close_couplet_left {
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 4px;
    right: 6px;
}

.couplet_left img {
    transition: all 1s;
    width: 150px;
    height: 490px;
}
.other_login_me{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
}
.other_login_me img{
    cursor: pointer;
}
.other_login_me img:not(:last-child){
    margin-right: 24px;
}
.login_title_code{
    display:none
}

.footer_code{
    width: 100%;
    min-width: 1200px;
    display: none;
    z-index: 200;
    height: 80px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    transition: all .6s;
}
.code_box{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.code_title .t2{
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
}
.code_title .t1{
    color: #FFFFFF;
    font-size: 22px;
    line-height: 30px;
    margin: 10px 0;
}
.code_title{
    display: flex;
    flex-direction: column;
}
.code_icon:hover .code_t{
    height: 200px;
    opacity: 1;
    transition: all .4s;
}
.code_icon{
    width: 288px;
    height: 43px;
    background: url('/imgs/home/code_icon.png');
    position: relative;
}
.exit{
    position: absolute;
    right: -30px;
    top: 10px;
    cursor: pointer;
}
.code_t{
    width: 200px;
    height: 0;
    position: absolute;
    background-color: rgba(0,0,0,0.25);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    bottom: 60px;
    opacity: 0;
}
.code_t::before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top: 20px solid rgba(0,0,0,0.25);
    bottom: -40px;
}
