﻿@charset "utf-8";
/* ----------------------------- 表单元素 ------------------------------ */
.ss_form_inp{
    border:#ddd 1px solid;
    height:30px;
    line-height:30px;
    padding:0 5px;
}

/* ----------------------------- 通用元素 ------------------------------ */
.ss_gwidth{
    clear: both;
    width:1200px;
    margin:0 auto;
    position: relative;
}
.ss_gwidth2{
     clear: both;
     width:1000px;
     margin:0 auto;
     position: relative;
 }
.ss_clear{ clear:both;}
.ss_tabBox,.ss_tabBox2{ display:none;}
.ss_desc{ display:none;}
.ss_show{ display:block;}
.ss_mask{
    display:none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: black;
    filter:alpha(opacity=50);
    opacity:.5;
    z-index:1000;
}
.ss_sp{ height:20px; clear:both;}
.ss_text_overflow{
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}
.text-right{ text-align:right;}

/* 通用颜色 */
.ss_color_1{ color: #575757;}
.ss_color_2{ color: #8a8a8a;}
.ss_bg_color1{ background-color: #ff6700;}
.ss_bg_color2{ background-color: #2e91f7;}
.ss_bg_color3{ background-color: #04c477;}
.ss_bg_color4{ background-color: #88b82e;}
.ss_bg_color5{ background-color: #8dafec;}
.ss_bg_color6{ background-color: #ffc933;}
.ss_bg_color7{ background-color: #58d6d9;}
.ss_bg_color8{ background-color: #fe9900;}
.ss_color_err{ color:red;}
.ss_color_success{ color:green;}

/* 对齐 */
.ss_txt_right{ text-align:right;}
.ss_center_block{
    display: block;
    margin:0 auto;
}

/* 通用图标 */
.ss_ico_alert{
    display: inline-block;
    width:17px;
    height:15px;
    background: url("images/common.png") no-repeat -87px 0;
    vertical-align: middle;
    margin: -2px 0 0;
}

/* 通用按钮 */
.ss_btn2{
    display: inline-block;
    width:70px;
    height:24px;
    line-height:24px;
    text-align: center;
    border: #ff6700 1px solid;
    color:#ff6700;
    border-radius: 5px;
    font-size:12px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.ss_btn2:hover{
    background-color:#ff6700;
    color:#FFF;
}
.ss_btn3{
    display: inline-block;
    width:60px;
    height:18px;
    line-height:18px;
    text-align: center;
    background-color:#b3b3b3;
    color:#FFF;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.ss_btn3:hover{ background-color:#ff6700; color:#FFF;}

.ss_btn4{
    display: inline-block;
    width:60px;
    height:18px;
    line-height:18px;
    text-align: center;
    background-color:#fe9900;
    color:#FFF;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size:12px;
}
.ss_btn4.ss_disabled{ background-color: #b8b8b8;}
.ss_btn4:hover{ background-color:#ff6700; color:#FFF;}


.ss_btn5{
    display: inline-block;
    width:68px;
    height:23px;
    line-height:23px;
    text-align: center;
    color:#ff6700;
    border:#ff6700 1px solid;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size:12px;
}
.ss_btn5:hover{
    background-color:#ff6700;
    color:#FFF;
    border:#ff6700 1px solid;
}

.ss_btn6{
    display: inline-block;
    width:68px;
    height:23px;
    line-height:23px;
    text-align: center;
    background-color:#fcfcfc;
    color:#575757;
    border:#b3b3b3 1px solid;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-size:12px;
}
.ss_btn6:hover{
    background-color:#ff6700;
    border:#ff6700 1px solid;
    color:#FFF;
}

/* 通用提示框 */
.ss_dialog{
    width: 380px;
    background-color:#FFF;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    box-shadow: 0 0 5px #555;
    position: fixed;
    top:30%;
    left:0;
    right:0;
    margin:0 auto;
    z-index:1001;
}

.ss_dialog_title{
    height:50px;
    line-height:50px;
    background-color:#d9d9d9;
    color:#222;
    position: relative;
    padding:0 0 0 15px;
    -webkit-border-radius:5px 5px 0 0;
    -moz-border-radius:5px 5px 0 0;
    border-radius:5px 5px 0 0;
}
.ss_dialog_close{
    cursor: pointer;
    font-size:24px;
    position: absolute;
    top:0;
    right:15px;
}

/* 询问层 */
.ss_dialog_ask{ padding: 35px 16px 0;}
.ss_dialog_ask span,
.ss_dialog_ask small{
    display:block;
    text-align: center;
    line-height:24px;
}
.ss_dialog_ask span{
    font-size:16px;
    font-weight:bold;
    color:#575757;
}
.ss_dialog_ask small{ color:#9d9d9d;}

/* 支付信息层 */
.ss_dialog_payinfo{
    width: 340px;
    margin: 14px auto 0;
}
.ss_dialog_payinfo li{
    line-height:30px;
}
.ss_dialog_payinfo li label,
.ss_dialog_payinfo li .ss_dislog_right{
    display: block;
    float: left;
}
.ss_dialog_payinfo li label{ width:130px; padding:0 0 0 30px;}
.ss_dialog_payinfo li .ss_dislog_right{ width:180px;}

/* 错误信息提示层 */
.ss_err_tips_con{ padding:40px;}
.ss_err_tips{
    text-align:center;
    line-height:20px;
}
.ss_err_tips_con .ss_btn4{
    display: block;
    border:0;
    margin: 30px auto 0;
    cursor: pointer;
    width:120px;
    height:35px;
    background-color: #ffab16;
}
.ss_err_tips_con .ss_btn4:hover{ background-color: #ff6700;}

/* 按钮 */
.ss_btn{
    cursor: pointer;
    display: inline-block;
    height:30px;
    line-height:30px;
    text-align: center;
    border:#ccc 1px solid;
    background-color:#FFF;
    color:#555;
    padding:0 10px;
    font-weight:bold;
}
.ss_btn_inverse_warning{
    background-color:#FFF;
    border-color:#ffa31a;
    color:#ff9801;
}
.ss_btn_groups{
    padding:20px 0 30px;
    text-align: center;
}
.ss_btn_block{
    display: block;
    margin:0 auto;
    clear: both;
}
.ss_btn_def{ width:110px;}
.ss_btn_warning{
    width: 140px;
    background-color:#ff9900;
    color:#FFF;
    border:0;
    font-size:16px;
}
.ss_btn_warning:hover{ background-color: #ffb600;}

/* 温馨提示 */
.ss_tips_box{
    display: none;
    width:420px;
    height:270px;
    -webkit-box-shadow: 1px 1px 5px #666;
    -moz-box-shadow: 1px 1px 5px #666;
    box-shadow: 1px 1px 5px #666;
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    margin: auto;
    background-color:#FFF;
    z-index:1001;
}

.ss_tips_box .ss_tips_title{
    height:44px;
    line-height:44px;
    position: relative;
    padding:0 0 0 15px;
    background-color:#d8d8d8;
}
.ss_tips_box .ss_tips_title i{
    display: inline-block;
    width: 17px;
    height:17px;
    background: url("images/common.png") no-repeat -60px -90px;
    vertical-align: middle;
    margin:-3px 5px 0 0;
}
.ss_tips_box .ss_tips_con{
    width:330px;
    margin:0 auto;
}
.ss_tips_box .ss_tips_con h3{
    padding:10px 0;
    text-align: center;
    font-size:18px;
    font-weight:bold;
}
.ss_tips_box .ss_tips_con #share_link{
    width:260px;
    height:30px;
    line-height: 30px;
    text-align: center;
    background-color:#e8e8e8;
    border:0;
}
.ss_tips_box .copy_inp{
    padding:0 0 20px;
}
.ss_tips_box .copy_inp #copyBtn{
    width:60px;
    height:32px;
    line-height:32px;
    text-align: center;
    background-color:#ff9900;
    border:0;
    cursor: pointer;
    color: #FFF;
}
.ss_tips_box .ss_btn4{
    display: block;
    width:200px;
    height:30px;
    line-height:30px;
    border:0;
    cursor: pointer;
    background-color:#ff9900;
    margin: 0 auto;
}
.ss_tips_box .ss_btn4:hover{background-color:#ff6700;}

/* 通用表单 */
.gform label,
.gform .gform_right{
    display: block;
    float: left;
}
.gform label{ width:50px;}
.gform .gform_right{ width: 280px;}
.gform .ss_inp{
    width:220px;
    height:20px;
    line-height:20px;
    padding:0 5px;

}
.gform li{ height:25px; padding:0 0 10px;}
.gform .ss_btn4{
    width:234px;
    padding:0;
    margin:0;
}

/* 顶部 */
.ss_header{
    padding:0 0 11px;
    margin:0 0 19px;
    position: relative;
    z-index:10;
    background: url("images/head_re.png") repeat-x 0 0;
    min-width:1430px;
}
.ss_header.ss_no_nav{
    padding:0;
    margin:0;
}
.ss_top{
    height:30px;
    line-height:30px;
    padding:0 0 2px;
    font-size:12px;
}

.ss_top i,
.ss_top span{
    display:inline-block;
    vertical-align: middle;
    margin:-5px 0 0;
}
.ss_top .ss_top_ico{
    width: 15px;
    height:14px;
    background: url("images/common.png") no-repeat;
    margin-right:5px;
}
.ss_top span{ margin-right:10px;}

.ss_top .ss_top_ico_home{ background-position: 0 -90px;}
.ss_top a:hover .ss_top_ico_home{ background-position: 0 -104px;}
.ss_top .ss_top_ico_desktop{ background-position: -15px -90px;}
.ss_top a:hover .ss_top_ico_desktop{ background-position: -15px -104px;}
.ss_top .ss_top_ico_fav{ background-position: -30px -90px;}
.ss_top a:hover .ss_top_ico_fav{ background-position: -30px -104px;}
.ss_top .ss_top_ico_kefu{ background-position: -45px -90px;}
.ss_top a:hover .ss_top_ico_kefu{ background-position: -45px -104px;}
.ss_top .ss_top_ico_login{ background-position: 0 -14px;}
.ss_top .ss_top_ico_reg{ background-position: -15px -14px;}
.ss_top_sp{ padding:0 5px;}

.ss_top_right{
    position: absolute;
    top:0;
    right:0;
}
.ss_all_games{
    display: inline-block;
    margin:0 0 0 10px;
    position: relative;
    z-index:200;
}
.ss_all_games .ss_top_ico_game{
    width:16px;
    height:16px;
    background: url("images/common.png") no-repeat -60px 0;
    margin:-5px 10px 0 15px;
}
.ss_all_games em{
    display: inline-block;
    width: 9px;
    height:6px;
    background: url("images/common.png") no-repeat -76px 0;
    vertical-align: middle;
    margin:-5px 0 0 5px;

}
.ss_all_games:hover .ss_top_game_list{ display:block;}

.ss_top_game_list{
    display: none;
    background-color: #FFF;
    border:#e6e6e6 1px solid;
    position: absolute;
    top:30px;
    right:-2px;
    width:1020px;
}
.ss_top_game_list .ss_more{
    position: absolute;
    bottom:15px;
    right:15px;
    display: block;
    width:82px;
    height:28px;
    line-height:28px;
    text-align: center;
    background-color:#f1f1f1;
    font-size:12px;
}
.ss_top_game_list .ss_tuli{
    position: absolute;
    bottom:10px;
    left:456px;
}
.ss_top_game_list .ss_tuli i,
.ss_top_game_list .ss_tuli s{
    vertical-align: middle;
    text-decoration: none;
    font-size:12px;
}
.ss_top_game_list .ss_tuli i{ margin:0 5px 0 0;}
.ss_top_game_list .ss_tuli s{ padding:0 15px 0 0; color:#93948f;}
.ss_big_ad,
.ss_game_list_wrap{
    float: left;
    overflow: hidden;
}
.ss_big_ad{ width: 430px;}
.ss_big_ad img{
    display: block;
    width:430px;
    height:280px;
}
.ss_big_ad_intro{
    display: block;
    width:172px;
    height:140px;
    line-height: 28px;
    position: absolute;
    top:122px;
    left:46px;
    overflow: hidden;
}
.ss_game_list_wrap{ width: 590px;}
.ss_game_list{
    font-size:14px;
    width:88px;
    padding:20px 0 0 30px;
    float: left;
}
.ss_game_list2{ width: 176px;}
.ss_game_list3{ width: 294px;}
.ss_game_list dt{
    height:22px;
    border:#dadada solid;
    border-width:0 0 1px;
    position: relative;
    margin:0 0 10px;
}
.ss_game_list dt span{
    display: block;
    line-height:27px;
    position: absolute;
    top:0;
    left:0;
    border:#f96602 solid;
    border-width:0 0 1px;
}
    /* 边框颜色 */
.ss_game_list dt .ss_b_clr_chen{ border-color:#ff6c08;}
.ss_game_list dt .ss_b_clr_blue{ border-color:#3393f6;}
.ss_game_list dt .ss_b_clr_green{ border-color:#0cc67b;}
.ss_game_list dd a{
    display:block;
    float: left;
    width:88px;
    height:30px;
    line-height:30px;
    overflow: hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
    position: relative;
}
.ss_game_list3 dd a{ width:98px;}
i.ss_hot{
    display: inline-block;
    width:10px;
    height:11px;
    background: url("images/common.png") no-repeat -30px -14px;
    margin:-4px 0 0 4px;
}
i.ss_new{
    display: inline-block;
    width:10px;
    height:11px;
    background: url("images/common.png") no-repeat -40px -14px;
    margin:-4px 0 0 4px;
}


/* header con */
.ss_header .ss_head_con{ height:100px;}
.ss_header .ss_logo{
    width:160px;
    height:60;
    margin:28px 0 0;
}

/* 导航 */
.ss_nav{
    position: absolute;
    left: 210px;
    top: 34px;
}
.ss_nav li{ float: left;}
.ss_nav li a{
    display: block;
    font-size:16px;
    height:28px;
    line-height:28px;
    text-align: center;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    margin:0 8px;
}
.ss_nav li a.ss_nav_2{ width:54px;}
.ss_nav li a.ss_nav_3{ width:70px;}
.ss_nav li a.ss_nav_4{ width:80px;}
.ss_nav li a.ss_nav_2:hover,
.ss_nav li a.ss_nav_2.ss_on{
    color:#FFF;
    background: url("images/nav_hov2.png") no-repeat;
}
.ss_nav li a.ss_nav_3:hover,
.ss_nav li a.ss_nav_3.ss_on{
    color:#FFF;
    background: url("images/nav_hov3.png") no-repeat;
}
.ss_nav li a.ss_nav_4:hover,
.ss_nav li a.ss_nav_4.ss_on{
    color:#FFF;
    background: url("images/nav_hov4.png") no-repeat;
}

/* 顶部搜索 */
.ss_top_search{
    width: 262px;
    height: 32px;
    line-height:30px;
    background: url("images/search_bg.png") no-repeat;
    position: absolute;
    top:32px;
    right:0;
}
.ss_top_search span{
    position: absolute;
    top:0;
    left:26px;
}
.ss_top_search button{
    display: block;
    border:0;
    width:23px;
    height:23px;
    background: url("images/btn_search.png") no-repeat;
    cursor: pointer;
    position: absolute;
    top:5px;
    right:16px;
}
.ss_nav .c_new{
    display: block;
    border:0;
    width:23px;
    height:23px;
    background: url("images/c_1.gif") no-repeat;
    cursor: pointer;
    position: absolute;
    top:-15px;
    right:290px;
}
.ss_top_search input{
    width:146px;
    height:20px;
    line-height:22px;
    border:0;
    position: absolute;
    top:6px;
    left: 66px;
}

.ss_main_box{
    position: relative;
    z-index: 10;
}

/* 头部2 */
.ss_header2{
    padding:0 0 11px;
    margin:0 0 19px;
    position: relative;
    z-index:10;
    background-color:#FFF;
}

/* header con */
.ss_header2{ margin:0;}
.ss_header2 .ss_head_con{ height:90px;}
.ss_header2 .ss_logo{
    width:328px;
    height:46;
    margin:20px 0 0 20px;
}

.ss_header2 .ss_nav{
    left:510px;
}


/* 底部 */
.ss_foot_wrap{
    background-color:#ececec;
    border:#d1dcee solid;
    border-width:1px 0 0;
    clear: both;
    min-width:1430px;
}
.ss_foot_wrap2{
    background-color:#ececec;
    border:0;
}

.ss_links{
    padding:30px 0 20px;
    line-height:24px;
}
.ss_links span,
.ss_links a{
    display: inline-block;
    white-space: nowrap;
    padding:0 12px 0 0;
    color:#8a8a8a;
}
.ss_links a:hover{ color:#FF6600;}
.ss_links span{
    font-weight:bold;
    color:#3d3d3d;
}
.ss_foot_link{
    line-height:26px;
    text-align:center;
    border:#dedede solid;
    border-width:1px 0;
    padding:15px 0;
    margin:0 0 20px;
}
.ss_foot_link a{
    color:#3d3d3d;
    margin:0 10px;
}
.ss_foot_link a:hover{ color:#FF6600;}
.ss_copyinfo{ clear: both;}
.ss_copyright dt img{
    float: left;
    display: block;
}

.ss_copyright dt span{
    display: inline-block;
    clear: both;
}
.ss_copyright ul{ text-align: center;}
.ss_copyright ul li{ display: inline;}
.ss_copyright ul li img{ vertical-align: middle;}
.ss_copyright ul li em{
    vertical-align: middle;
    display:inline-block;
    width:130px;
    text-align: left;
}
.ss_copy_txt{
    clear: both;
    text-align: center;
    padding:20px 0 30px;
}

/* ---------------------------------内页通用--------------------------------- */
.ss_inbanner{
    height:400px;
    clear: both;
    margin:-40px 0 0;
}

/*标题*/
.ss_index_titles{
    height:60px;
    line-height:60px;
    position: relative;
}

.ss_index_titles .ss_index_titles_left b{
    font-size:20px;
    color: #333;
    padding:0 0 0 20px;
}
.ss_index_titles .ss_index_titles_right{
    top:0;
    right:20px;
}

.ss_index_titles_right{
    position: absolute;
    top:35px;
    right: 10px;
}

.ss_index_titles2{
    clear: both;
    height:53px;
    position: relative;
    background: url("images/pointer.png") repeat-x 0 bottom;
    margin:0 0 20px;
}
.ss_index_titles2 b{
    font-size:22px;
    display: block;
    height:52px;
    line-height:40px;
    float: left;
    border:#f01f56 solid;
    border-width:0 0 1px;
}
.ss_index_titles2.ss_nobor b{ border:0;}
.ss_index_titles2 .ss_pos_right{
    position: absolute;
    top:0;
    right:0;
}
.ss_index_titles2.ss_nobg{ background:none;}
.ss_index_titles2.ss_nobg b{ border:0;}
.ss_index_titles2 .ss_more{
    display: inline-block;
    height:15px;
    line-height:15px;
    padding: 0 25px 0 0;
    position: absolute;
    top:15px;
    right:-15px;
}
.ss_index_titles2 .ss_more i{
    display: inline-block;
    width:13px;
    height:13px;
    vertical-align: middle;
    margin:-2px 0 0 5px;
    background: url("images/common.png") no-repeat -89px -16px
}

.ss_index_titles3{
    clear: both;
    height:30px;
    position: relative;
    margin:0 0 10px;
    background: url("images/pointer.png") repeat-x 0 bottom;
}
.ss_index_titles3 b{
    font-size:12px;
    display: block;
    float: left;
    height:29px;
    line-height:29px;
    border:#ff6700 solid;
    border-width:0 0 1px;
}
.ss_index_titles3 .ss_index_titles_right{
    position: absolute;
    top:5px;
    right:10px;
}

/*----------------------------------------------------------------------------------------*/
.ss_index_kaifubiao_box{
    height:710px;
}

.ss_index_more{
    color: #f0265a;
    font-size:14px;
    position: absolute;
    top:40px;
    right:10px;
}
.ss_index_more:hover{ text-decoration:underline;}
.ss_index_box_left{
    position: relative;
    padding:0 0 0 18px;
    width:300px;
}
/* 开服表 */
#iContainer2 { height:600px;overflow:hidden;}
#iControls2 {
    width:100%;
    text-align:center;
    position:absolute;
    bottom:20px;
    right:0;
    z-index:5;
}
#iControls2 a {
    width:12px;
    height:12px;
    display:inline-block;
    background-color: #c4c4c4;
    text-indent:99999px;
    margin:0 6px;
    font-size:0;
    border-radius: 30px;
    -moz-transition: width .3s ease-out;
    -webkit-transition: width .3s ease-out;
    transition: width .3s ease-out;
}
#iControls2 a.activeSlide{
    width: 30px;
    background-color: #f0265a;
    -moz-transition: width .3s ease-out;
    -webkit-transition: width .3s ease-out;
    transition: width .3s ease-out;
}
#ss_cycle2_next,#ss_cycle2_prev{
    width:12px;
    height:12px;
    z-index:6;
    position: absolute;
    bottom:10px;
    cursor: pointer;
}
#ss_cycle2_next{ right:20%; background-position: 0 -69px;}
#ss_cycle2_prev{ left:20%; background-position: 0 -57px;}

.ss_kaifubiao{ width: 300px;}
.ss_kaifubiao .tabTitle{
    position: relative;
    height:32px;
    margin:-20px 0 0;
    border:#cccccc solid;
    border-width:0 1px;
}
.ss_kaifubiao .tabTitle .tabs{
    cursor: pointer;
    float: left;
    height:30px;
    line-height:30px;
    text-align: center;
    width:148px;
    border:#FFF solid;
    border-width:2px 0 0;
}
.ss_kaifubiao .tabTitle .tabs.titleOn{
    border-color:#ff6700;
}
.ss_kaifubiao .tabBox{
    clear: both;
    background-color: #FFF;
    border:#CCC solid;
    border-width:0 1px 1px;
    height:579px;
    margin: -2px 0 0;
    position: relative;
    overflow: hidden;
}

.ss_kaifu_list{
    color: #666;
    font-size:14px;
}
.ss_kaifu_list dt{
    padding:0 10px;
    margin:10px 0 9px;
    height:16px;
    line-height:16px;
    clear: both;
}
.ss_kaifu_list .ss_kaifu_col{
    display: block;
    float: left;
    text-align: center;
}
.ss_kaifu_list .ss_kaifu_date{ width:50px; border:#CCC solid; border-width:0 1px 0 0;}
.ss_kaifu_list .ss_kaifu_time{ width:60px; border:#CCC solid; border-width:0 1px 0 0;}
.ss_kaifu_list .ss_kaifu_game{ width:80px; border:#CCC solid; border-width:0 1px 0 0;}
.ss_kaifu_list .ss_kaifu_qufu{ width:85px;}
.ss_kaifu_list dd{ clear: both;}
.ss_kaifu_list dd .ss_kaifu_row{ padding:0 10px;}
.ss_kaifu_list dd .ss_kaifu_game,
.ss_kaifu_list dd .ss_kaifu_qufu{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.ss_kaifu_list dd .ss_kaifu_col{
    border:#CCC dashed;
    border-width:0 0 1px;
    height:44px;
    line-height:44px;
}
.ss_kaifu_list dd.ss_on .ss_kaifu_col{
    border-color: #FFF;
}
.ss_kaifu_game_info{
    display: none;
    clear: both;
    width:298px;
    height:76px;
    background-color: #e9e9e9;
    position: relative;
}
.ss_kaifu_game_info.ss_show{ display: block;}
.ss_kaifu_game_info .ss_game_img{
    width: 80px;
    height:48px;
    margin:14px 0 0 18px;
}
.ss_kaifu_game_info a.block{
    display: block;
    width:100%;
    height:100%;
}
.ss_kaifu_game_info .ss_kaifu_date2{
    position: absolute;
    top:15px;
    left:112px;
    line-height:22px;
}
.ss_kaifu_game_info .ss_kaifu_date2 small{
    color: #555;
    display: block;
}
.ss_kaifu_btn{
    position: absolute;
    top:12px;
    right:12px;
}
.ss_kaifu_btn a{
    display: block;
    width:70px;
    height:22px;
    line-height:22px;
    text-align: center;
    color: #FFF;
    background-color: #ff6700;
    margin:0 0 5px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.ss_kaifu_btn a.ss_jinru{ background-color: #008aff;}
.ss_kaifu_btn a:hover{ background-color: #f0265a;}
.ss_kaifu_btn a.ss_jinru:hover{ background-color: #f0265a;}

/*新游戏列表*/
.ss_index_news_game_list{
    padding:15px 0 0;
}
.ss_index_news_game_list li{
    height:67px;
    position: relative;
    font-size:14px;
}
.ss_index_news_game_list li img{
    position: absolute;
    top:8px;
    left:15px;
    width:80px;
    height:50px;
}
.ss_index_news_game_list li .ss_index_new_game_name{
    position: absolute;
    top:12px;
    left:116px;
    font-weight:bold;
    line-height:20px;
}
.ss_index_news_game_list li .ss_index_new_game_name small{
    display: block;
    font-size:12px;
    color: #8a8a8a;
}
.ss_index_news_game_list li .ss_jinru{
    width:70px;
    height:26px;
    line-height:26px;
    text-align: center;
    color: #FFF;
    background-color: #F60;
    position: absolute;
    top:20px;
    right:10px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.ss_index_news_game_list li:hover{
    background-color:#e9e9e9;
}



.ss_index_box_right{
    position: absolute;
    top:0;
    right:18px;
    width:832px;
}
.ss_index_kaifubiao_box .ss_index_titles2 b{ border:0;}

/* 快速登录注册 */
.ss_quick_login_wrap{
    width: 420px;
    position: fixed;
    top: 200px;
    right: 0;
    left: 0;
    z-index:10;
    margin:auto;
    background: url("images/login_bg.png") repeat;
    padding:15px;
    z-index: 9999;
    /* display: none; */
}

.ss_quick_login_box{
    width: 360px;
    padding: 20px 30px;
    background-color: #FFF;
}

.ss_quick_tips{
    display: block;
    line-height:22px;
}
.ss_quick_login_box .tabTitle3{
    width: 360px;
    height:40px;
    background: url("images/title_bg.png") no-repeat center 0;
    margin: 0 auto;
}
.ss_quick_login_box .tabTitle3 .tabs{
    float: left;
    width: 180px;
    height: 40px;
    line-height:37px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}
.ss_quick_login_box .tabTitle3 .tabs.titleOn,
.ss_quick_login_box .tabTitle3 .tabs:hover{
    color: #ff6700;
    background: url("images/tab_on.png") no-repeat center bottom;
}

.ss_quick_login_box .tabBox{
    clear: both;
}
.ss_quick_login_box .tabBox .text_img{
    clear: both;
    display: block;
    margin: 0 auto 10px;
}
.ss_quick_login_box .tabBox .ss_quick_form_list{}
.ss_quick_form_list li{
    height:100%;
    overflow: hidden;
    margin: 0 0 15px;
}
.ss_quick_form_list li.ss_quick_tips_lay{
    height: 20px;
    margin:5px 0;
}
.ss_quick_form_list li .ss_quick_tips2{
    padding:8px 0 0;
    color: #999;
    font-size: 12px;
}
.ss_quick_form_list li.ss_quick_xy{
    font-size: 12px;
    height: 20px;
    line-height: 20px;
}
.ss_quick_fogot_pw{
    position: absolute;
    top:0;
    right:0;
    color: red;
}
.ss_quick_fogot_pw:hover{
    color: #123ecc;
}
.ss_quick_tips_lay.ss_quick_select{
    padding: 10px 0 5px;
}
.ss_quick_tips_lay.ss_quick_select select{
    display: block;
    width:300px;
    height:24px;
    line-height:24px;
    margin:0 auto;
}
.ss_quick_form_list .ss_quick_tips_lay.ss_quick_txt{
    display:block;
    width:300px;
    margin:0 auto;
    line-height:30px;
    padding:5px 0 8px;
}
.ss_quick_tips_lay.ss_text_center{
    width:360px;
    margin: 0 auto;
    padding:20px 0 0;
    text-align: center;
    font-size:16px;
}
.ss_quick_sub_btn.ss_line_btn{
    width:100px;
    height:30px;
    line-height:30px;
    display: inline;
    background: url("images/btn_def2.png") no-repeat;
}
.ss_quick_sub_btn.ss_line_btn:hover{
    background: url("images/btn_def2.png") no-repeat 0 -30px;
}
.ss_btn_group{ text-align: center;}
.ss_btn_group .ss_line_btn{ margin:0 10px;}
.ss_quick_form_list .ss_quick_tips_lay.ss_quick_txt em{
    color:red;
    font-weight:bold;
    padding:0 5px;
}
.ss_quick_form_list li .ss_quick_chk{
    width: 15px;
    height: 15px;
    margin:2px 5px 0 0;
    cursor: pointer;
    vertical-align: middle;
}
.ss_quick_form_list li .ss_quick_chk,.ss_quick_form_list li span{
    display: block;
    float: left;
}
.ss_quick_form_list li label,.ss_quick_form_list li .ss_quick_form_right{ 	display: block;
    float: left;
    position: relative;
}
.ss_quick_form_list li .ss_quick_out{
    position: absolute;
    bottom:14px;
    right:0;
    cursor: pointer;
}
.ss_quick_form_list li label{
    width: 70px;
    line-height:36px;
    text-align: right;
}
.ss_quick_form_list li .ss_quick_form_right{ width: 290px;}
.ss_quick_form_list li .ss_quick_text_inp{
    border:#ddd 1px solid;
    padding: 0 5px;
    width: 278px;
    height: 36px;
    line-height:36px;
    color: #999;
}
.ss_quick_form_list li .ss_quick_text_inp.ss_quick_yzm,
.ss_quick_form_list li .ss_quick_text_inp.ss_btn_yzm{
    display: block;
    float: left;
}
.ss_quick_form_list li .ss_quick_text_inp.ss_quick_yzm{ width:180px;}

.ss_quick_titles{
    height:40px;
    border:#e3e3e3 solid;
    border-width:0 0 1px;
    text-align: center;
}
.ss_quick_titles span{
    display: inline-block;
    height:38px;
    line-height:38px;
    border:#ff6700 solid;
    border-width:0 0 2px;
    font-size:16px;
    padding:0 30px;
}
.ss_quick_form_list li .ss_form_text{
    line-height:34px;
}

.ss_quick_form_list li .ss_btn_yzm{
    height:38px;
    line-height:30px;
    width:96px;
    border:#dddddd solid 1px;
    color:#FFF;
    background-color:#ff6700;
    cursor: pointer;
}

.ss_quick_form_list li .ss_quick_tips_error{
    text-align: center;
    height:20px;
    line-height:20px;
    color: red;
}
.ss_quick_tips_default.ss_quick_tips_success{ color: #2b7507;}
.ss_quick_tips_default.ss_quick_tips_warning{ color: #FF0;}
.ss_quick_tips_default.ss_quick_tips_alert{ color: red;}

.ss_quick_sub_btn{
    display: block;
    width:200px;
    height: 40px;
    line-height:40px;
    font-size:16px;
    text-align: center;
    color: #FFF;
    border: 0;
    cursor: pointer;
    background: url('images/btn_def.png') no-repeat;
}
.ss_quick_sub_btn:hover{
    background-position: 0 -40px;
}

.ss_quick_login_close{
    width: 12px;
    height: 12px;
    background: url('images/close.png') no-repeat;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
}

.ss_tips_info_wrap{
    padding:15px;
    width:420px;
    height:280px;
    background: url("images/login_bg.png") repeat;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: auto;
    z-index: 99999;
}

.ss_tips_info{
    width:420px;
    height:280px;
    background-color: #FFF;
}

.ss_tips_title{
    position: relative;
    height:45px;
    line-height:45px;
    color: #575757;
    background-color: #d8d8d8;
}
.ss_tips_title em{ padding:0 0 0 15px;}
.ss_tips_title .ss_tips_close{
    display: block;
    width: 20px;
    height:20px;
    background: url("images/close2.png") no-repeat;
    position: absolute;
    top:12px;
    right:15px;
    cursor: pointer;
}
.ss_tips_con{
    padding:30px 15px;
    line-height:24px;
}

.ss_tips_info button{
    display: block;
    width:180px;
    height:44px;
    line-height:40px;
    text-align: center;
    color: #fff;
    border:0;
    font-size: 16px;
    cursor: pointer;
    background: url("images/btn2_def.png");
    position: absolute;
    bottom:40px;
    left:0;
    right:0;
    margin:0 auto;
}
.ss_tips_info button:hover{
    background-position: 0 -44px;
}
/* 面包屑 */
.ss_location{
    padding:28px 0;
    position: relative;
}
.ss_location a{ color:#8a8a8a;}
.ss_location a:hover{ color:#ff6700;}
.ss_location em{ color:#8a8a8a;}
.ss_location span{ color:#3c3c3c;}

/* U豆 */
.ss_youdou{
    display: inline-block;
    width:20px;
    height:20px;
    background: url("images/index.png") no-repeat -260px -380px;
    vertical-align: middle;
}
    /*分页*/
.pagination {
    clear: both;
    text-align: right;
    margin: 20px 20px 40px 0;
    color:#575757;
}
.pagination ul {
    display: inline-block;
    list-style:none;
    *display: inline;
    /* IE7 inline-block hack */

    *zoom: 1;
    margin-left: 0;
    margin-bottom: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination ul > li {
    display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span,
.pagination #lastspan {
    float: left;
    padding: 6px 16px;
    line-height: 20px;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
    background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
    color: #999999;
    cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
    color: #999999;
    background-color: transparent;
    cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
    border-left-width: 1px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span,
.pagination #lastspan {
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-right-radius: 4px;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span,
.pagination-large #lastspan{
    padding: 11px 19px;
    font-size: 17.5px;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span,
.pagination-large #lastspan {
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
    padding: 2px 10px;
    font-size: 11.9px;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
    padding: 0 6px;
    font-size: 10.5px;
    color:#2283c5;
}
.pagination ul > li > a{
    color:#575757;
}
.pagination ul > li > a:hover{
    background:#ff6700;
    color:#ffffff;
    border: 1px solid #ff6700;
    border-left-width: 0;
}
.pagination ul > li > span.current{
    background:#ff6700;
    color:#FFFFFF;
    border: 1px solid #ff6700;
}

/* 表单 */
.ss_form{
    height:100%;
    overflow: auto;
}
.ss_form_lay{
    width:100%;
    float: left;
    margin:0 0 20px;
}
.ss_form_lay label,
.ss_form_lay .ss_form_right{
    display: block;
    float: left;
    padding:0 0 0 10px;
    line-height:38px;
}
.ss_form2 .ss_form_lay label{ padding:0;}
.ss_form_lay label{
    display: inline-block;
    width:72px;
    text-align: right;
}
.ss_form_lay label em{ color:red;}
.ss_form .ss_inp{
    width:238px;
    height:38px;
    border:#d9d9d9 1px solid;
    padding:0 10px;
}
.ss_form .ss_inp.ss_yzm_inp{
    width:124px;
}
.ss_form .ss_yzm_img{
    vertical-align: middle;
}
.ss_form_tips3{
    font-size:12px;
    text-align: center;
    display: block;
    color: #878787;
}
.ss_form .ss_select{
    width:258px;
    height:38px;
    line-height:38px;
    border:#d9d9d9 1px solid;
}
.ss_form .ss_form_right .ss_form_tips{ padding:0 0 0 10px;}
.ss_form .ss_form_right .ss_form_tips em{ padding:0 0 0 12px;}
.ss_form .ss_form_right .ss_form_tips i{
    display: inline-block;
    vertical-align: middle;
    width:15px;
    height:17px;
    background: url("images/common.png") no-repeat -140px 0;
    margin:0 5px 0 0;
}
.ss_form .ss_btn4{
    width:140px;
    height:40px;
    line-height:40px;
    border:0;
    cursor: pointer;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}

/* 温馨提示 */
.ss_wxtips{ padding:0 0 20px;}
.ss_wxtips dt{
    color:#575757;
    font-weight:bold;
    margin:0 0 8px;
    padding:0 0 0 2px;
}
.ss_wxtips dd{ line-height:24px;}
.ss_wxtips dd em{ color:#ff6700;}

/* 表格 */
.ss_tables{
    width:100%;
    border:#d9d9d9 1px solid;
    margin:0 0 20px;
}
.ss_tables th,
.ss_tables td{
    border:#d9d9d9 1px solid;
    padding: 10px;
    text-align: center;
}
.ss_tables thead{
    background-color:#f7f7f7;
    font-weight:bold;
}
.ss_tables tbody td{ color: #878787;}
.ss_g_tips{
    line-height:36px;
    clear: both;
    text-align: center;
    display: block;
    font-size:12px;
    color:#878787;
}
.ss_g_tips em{
    font-size:16px;
    font-weight:bold;
    color:red;
}
.ss_g_tips a{ color:#3f8fc2; margin:0 3px;}
.ss_g_tips a:hover{ color:#ff6700;}

.ss_bottom_tips{
    margin:40px 0 0;
    padding:40px 0 0;
    border:#e7e7e7 dotted;
    border-width:1px 0 0;
}
.ss_bottom_tips span{
    display: block;
    margin:0 0 20px;
    clear: both;
}
.ss_bottom_tips_txt{ line-height:22px;}
.ss_bottom_btn .ss_btn4{
    width:120px;
    height:24px;
    line-height:24px;
    border:0;
    cursor: pointer;
}

/* 搜索 */
.ss_search_lay{
    width:240px;
    height:30px;
    line-height:30px;
    position: relative;
    overflow: hidden;
    border:#c0c0c0 1px solid;
}
.ss_search_lay input{
    width:200px;
    height:22px;
    padding:0 10px;
    border:0;
}
.ss_search_lay button{
    width: 16px;
    height:16px;
    background: url("images/common.png") no-repeat -39px -119px;
    position: absolute;
    top:7px;
    right:10px;
    border:0;
    cursor: pointer;
}

/* 详情页 */
.ss_news_title{
    font-size:24px;
    line-height:30px;
    color:#Ff6700;
    clear: both;
    text-align: center;
    margin:30px 0 20px;
}
.ss_news_title small{
    display: block;
    font-size:12px;
    color:#878787;
}

.ss_news_show{
    width:760px;
    margin:0 auto 30px;
    padding:0 0 30px;
    line-height:24px;
    border:#dbdbdb solid;
    border-width: 0 0 1px;
}
.ss_next_prev{
    line-height:30px;
    padding:0 0 30px;
}
.ss_next_prev a{ color:#ff6700;}
.ss_next_prev a:hover{ color:#000;}
.ss_hide{ display:none;}

/* 404 */
#main-404{ position: relative;}
.box-404{
    background: url("images/bg_404.png") no-repeat;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    width:720px;
    height:405px;
}
.box-404 dl{
    position: absolute;
    top:240px;
    left:354px;
}
.ss-ico-home{
    display: inline-block;
    width:18px;
    height:16px;
    background: url("images/ico_home.png") no-repeat;
    margin:0 5px 0 0;
    vertical-align: middle;
}
.box-404 dl dt,
.box-404 dl dd{ margin:0 0 25px;}
.box-404 dl dt a{ margin:0 10px 0 0;}
.box-404 dl dt em{ font-weight:bold; padding:0 5px;
    font-size:16px;}
.box-404 dl dd a{ color:#008bef; margin:0 20px 0 0;}
.box-404 dl dd a:hover{ color:#ff6700;}

.ss_unplayer_box{
    width:254px;
    height:120px;
    margin:0 auto;
    position: relative;
    padding:92px 0 270px 206px;
    clear: both;
    background: url("images/xx.png") no-repeat 0 92px;
}
.ss_unplayer_box .big{
    font-size:24px;
    color:#a19e9c;
    position: absolute;
    top:140px;
    left:242px;

}
.ss_unplayer_box .small{
    position: absolute;
    top: 176px;
    left:242px;
    color:#a19e9c;
}
.ss_unplayer_box a{ color:#ff6600; margin:0 5px;}
.ss_unplayer_box a:hover{ color:#0a6cd6;}



.parent {
    position:fixed;
    width:100%;
    text-align:center;
    left:0;
    top:50px;
    display:none;
    z-index:99999;
}
.s_auto_hide_tips {
    padding:5px 10px;
    margin:auto;
    line-height:24px;
    text-align:center;
    display:inline-block;
    color:#FFF;
    background:rgba(0,0,0,.7);
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}

/* 签到 */
.ss_sign_box{
    background-color:#eae8e7;
    padding: 5px;
    clear: both;
}
.ss_sign_box .ss_title{
    height:48px;
    line-height:48px;
    background-color:#fd6800;
    color:#FFF;
    text-align: center;
    font-size:18px;
}
.ss_sign_box .ss_date_list{
    border: #d7d8d6 solid;
    border-width:1px 0 0 1px;
}
.ss_sign_box .ss_date_list dd.ss_caption{ color:#000; background-color:#ededed;}
.ss_sign_box .ss_date_list dd{
    float: left;
    width:13.99%;
    text-align: center;
    height: 42px;
    line-height:42px;
    font-size:16px;
    color:#c3c2c2;
    background-color:#FFF;
    border: #d7d8d6 solid;
    border-width: 01px 1px 0;
    position: relative;
}
.ss_sign_box .ss_date_list .ss_date_item{ cursor: pointer;}
.ss_sign_box .ss_date_list .ss_date_item span{ color: #fd6800;}
.ss_sign_box .ss_date_list .ss_jiangli{
    display: block;
    width:100%;
    height:100%;
    background-color:#FFF;
    position: absolute;
    top:0;
    left:0;
}
.ss_sign_box .ss_date_list .ss_jiangli em{
    display: block;
    width:29px;
    height:29px;
    color:#FFF;
    text-align: left;
    padding:0 0 0 3px;
    line-height:18px;
    font-size:12px;
    font-weight:bold;
    background: url("images/angle_up.png") no-repeat;
}
.ss_sign_box .ss_date_list .ss_jiangli s{
    position: absolute;
    top:-8px;
    left:0;
    right:0;
    font-size:10px;
    text-decoration:none;
    color:#000;
}
.ss_sign_box .ss_date_list .ss_jiangli b{
    display: block;
    background: url("images/ico_dou2.png") no-repeat right center;
    padding:0 22px 0 0;
    font-size:13px;
    position: absolute;
    top:10px;
    left:20px;
    color: #ff9900;
}

.ss_sign_box .ss_date_list .ss_date_item .ss_qiandao{
    display: none;
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    background-color: #fd6800;
    color:#FFF;
}
.ss_sign_box .ss_date_list .ss_date_item .ss_qiandao.on{ display:block;}

/* 累计进度 */
.ss_progress_list{ padding:20px 0;}
.ss_progress_list dd{ float: left;}
.ss_progress_list.five dd{ width:20%;}
.ss_progress_list dd .ss_progress_item{
    width:90px;
    padding:40px 0 0;
    position: relative;
    margin:0 auto;
}
.ss_progress_list dd .ss_progress_item .ico{
    display: block;
    width:28px;
    height:28px;
    position: absolute;
    top:0;
    left:0;
    right:0;
    margin:0 auto;
    background: url("images/agree.png") no-repeat 0 0 #FFF;
}
.ss_progress_list dd.on .ss_progress_item .ico{ background-position-y:-28px;}
.ss_progress_list dd .ss_progress_item .txt{
    display: block;
    color:#9b9998;
    text-align: center;
    margin:0 0 9px;
}
.ss_progress_list dd.on .ss_progress_item .txt{ color: #fd6800;}
.ss_progress_list dd .ss_progress_item .num{
    display: block;
    height:26px;
    line-height:26px;
    padding:0 0 0 20px;
    background: url("images/ico_dou.png") no-repeat 60px center #f2f1f1;
    margin:0 auto;
}
.ss_progress_list dd.on .ss_progress_item .num{
    color:#fd6800;
    background: url("images/ico_dou2.png") no-repeat 60px center #f2f1f1;
}
.ss_progress_list dd .ss_progress_item .rec{
    display: block;
    height:1px;
    width:136px;
    background: url("images/dashed_def.png") repeat-x 0 0;
    position: absolute;
    top:14px;
    right:40px;
}
.ss_progress_list dd.first-child .ss_progress_item .rec{ display:none;}
.ss_progress_list dd.on .ss_progress_item .rec{ background: url("images/dashed.png") repeat-x 0 0;}

.ss_sign_desc{
    display: block;
    line-height:24px;
    padding:20px 0;
}

.ss_wx_noinfo{
    position: fixed;
    top:50%;
    left:0;
    right:0;
    margin:-110px auto 0;
    text-align: center;
    background:url("images/noinfo.png") no-repeat center 0;
    padding:110px 0 0;
}
.ss_wx_noinfo .ss_wx_tips{
    display: inline-block;
    text-align: center;
    background-color:#f1f1f1;
    padding:0 60px;
    height:52px;
    line-height:52px;
    border:#e7e7e7 1px solid;
    font-size:16px;
}
.ss_wx_noinfo .ss_wx_tips em{
    display: inline-block;
    vertical-align: middle;
}
.ss_wx_noinfo .ss_wx_tips i{
    display: inline-block;
    width:26px;
    height:26px;
    background: url("images/ico_attention.png") no-repeat;
    vertical-align: middle;
    margin:0 20px 0 0;
}
.tips-pop {
    width: 302px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -151px;
    z-index: 1001;
    _position: absolute;
}
.mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    opacity: 0.8;
    background: #000;
    z-index: 100;
}
.none {
    display: none;
}
i, em {
    font-style: normal;
}
.pop-close {
    width: 24px !important;
    height: 24px !important;
    position: absolute;
    top: 0px;
    right: -30px !important;
    background: url(./images/pop-close.png) no-repeat;
}
.tips-pop .hd {
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    background: #e1405a;
}
.tips-pop .bd {
    min-height: 120px;
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    background: #fff;
}
.tips-pop .bd .bd-txt {
    width: 282px;
    line-height: 24px;
    padding: 24px 0;
    overflow: hidden;
}
.btn-copy {
    position: relative;
}
.pop-button-green {
    background: #4dd589;
}
.pop-button {
    display: inline-block;
    vertical-align: top;
    width: 78px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    margin: 0 6px;
    margin-bottom: 0px;
    font-size: 14px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
