@font-face {
    font-family: 'Industry-BoldItalic';
    src: url('/css/font/Industry-BoldItalic.eot');
    src: url('/css/font/Industry-BoldItalic.eot?#iefix') format('embedded-opentype'), url('/css/font/industry-bolditalic.ttf') format('truetype'), url('/css/font/industry-bolditalic.woff') format('woff');
}

@font-face {
    font-family: 'Industry-Demi';
    src: url('/css/font/Industry-Demi.woff') format('woff'), url("/css/font/Industry-Demi.otf") format('truetype');
}
@font-face {
    font-family: 'Industry-Bold';
    src: url('/css/font/Industry-Bold.woff') format('woff'), url("/css/font/Industry-Bold.otf") format('truetype');
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: 'PingFang SC', 'Microsoft Yahei', sans-serif;
    vertical-align: middle;
    background: transparent;
}
*,*:before, *:after{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,html {
    height:101%;
    line-height: 1;
    font-size: 14px;
    color: #2D2F33;
    background-color: #F5F6F7;
    /*overflow-y: scroll;*/
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    color: #2D2F33;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
a:hover{
    color: #4B9CE3;
}
li {
    list-style: none;
}
input {
    outline: none;
    border: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}
/*flex*/
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.flex.flex_wrap{
    flex-wrap: wrap;
}
.flex.align_center {
    align-items: center;
}
.flex.justify_between{
    justify-content: space-between;
}
.flex.justify_center{
    justify-content: center;
}
.flex.justify_end{
    justify-content: flex-end;
}
.main {
    width: 1200px;
    margin: 0 auto;
}

.icon {
    width: 1em; height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}
.hide {
    display: none;
}
.fll, .fl {
    float:left;
}
.flr, .fr {
    float: right;
}
.clear {
    clear: both;
    margin: 0;
    padding: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.cl:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.cl {
    zoom: 1;
}

/*文字颜色*/
.gray_1{
    color: #2D2F33;
}
.gray_2{
    color: #656973;
}
.gray_3{
    color: #A8ABB3;
}
/*按钮颜色*/
.brand{
    background-color: #0D8DFC;
}
.brand:hover{
    background-color: #077EE6;
}
.green_1{
    background-color: #16DE9B;
}
.green_1:hover{
    background-color: #15D192;
}
.silver_1{
    background-color: #E6E9F0;
}
.silver_1:hover{
    background-color: #D7DAE0;
}
.red_1{
    background-color: #FF5C69;
}
.red_1:hover{
    background-color: #ED5562;
}
.yellow_1{
    background-color: #FFCC60;
}
.yellow_1:hover{
    background-color: #FAC055;
}
.blue_1{
    background-color: #4B9CE3;
}
.blue_1:hover{
    background-color: #4085C2;
}
/*国家区号弹窗样式*/
.country-all{
    width: 210px;
    height:228px;
    min-height:300px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 8px 0 rgba(0,0,0,0.08);
    border-radius: 4px;
    position: absolute;
    top:40px;
    left:0;
    z-index:9;
    transition-duration: .3s;
    padding:5px;
    overflow-y: auto;
}
.country-all li{
    line-height:36px;
    padding:0 20px;
    font-size:14px;
    text-align: left;
    color:#2D2F33;
    border-radius: 8px;
}
.country-all li:hover{
    color: #fff;
    background: #0D8DFC;
}
.country-all li.active{
    background: #F0F1F2;
}
.country-all li span{
    display: inline-block;
    max-width: 112px;
    height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*提示弹出框*/
.global-message {
    display: table;
    width: 300px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: rgba(0,0,0,.75);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 8px 0 rgba(0,0,0,0.08);
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    padding: 0 30px;
    margin: -50px 0 0 -150px;
    visibility: hidden;
    transition-duration: .5s;
    opacity: 0;
}

.global-message.showMsg {
    visibility: visible;
    opacity: 1;
}

.global-message .text {
    display: table-cell;
    width: 100%;
    line-height: 26px;
    height: 100px;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.global-message.success {
    color: lime;
}
/*滚动条*/
::-webkit-scrollbar{ width: 6px; height:0; border:3px solid #fff; }
::-webkit-scrollbar-track { background: #f0f1f2; }
::-webkit-scrollbar-thumb{ background: #D0D3D9;}
::-webkit-scrollbar-corner{width:6px; height:6px; background: #D0D3D9;}
::-webkit-scrollbar-resizer{ display:none; }

::-moz-scrollbar{ width: 6px; height:0; border:3px solid #fff; }
::-moz-scrollbar-track { background: #f0f1f2; }
::-moz-scrollbar-thumb{ background: #D0D3D9; }
::-moz-scrollbar-corner{width:6px; height:6px; background: #D0D3D9;}
::-moz-scrollbar-resizer{ display:none; }

/*固定底部位置*/
.score_wrap{
    position:relative;
    min-height:100%;
    /*padding-bottom: 262px;*/
    /*padding-left: calc(100vw - 100%);*/
}
.score_wrap .score_star_loading.show{
    margin-top: 150px;
}
.score_wrap .global_footer{
    width: 100%;
    /*position:absolute;*/
    bottom:0px;
    left:0px;
}
/*侧边栏*/
.score_wrap .score_slide_wrap{
    background: #FFFFFF;
    box-shadow: 0 0 0 1px #ebebed;
    border-radius: 2px;
    margin-bottom: 12px;
}
.score_wrap .score_slide_title{
    line-height: 40px;
    border-bottom: 1px solid #F0F1F2;
    position: relative;
    margin: 0 12px;
    padding-left: 14px;
}
.score_wrap .score_slide_title:before{
    content: '';
    display: block;
    width: 4px;
    height: 12px;
    background: #0D8DFC;
    position: absolute;
    left: 2px;
    top: 14px;
}
.score_wrap .score_slide_main li{
    padding: 0 12px;
}
.score_wrap .score_slide_main li:hover{
    background-color: #F7F8FA;
}
.score_wrap .score_slide_main li .score_slide_border{
    line-height: 24px;
    border-bottom: 1px dotted #F0F1F2;
    padding: 8px 0;
}
.score_wrap .score_slide_main li:last-child .score_slide_border{
    border-bottom: none;
}
/*列表图片右下角公用角标样式*/
.score_list_pic{
    position: relative;
}
.score_list_pic .score_list_pic_num{
    display: none;
    line-height: 16px;
    font-size: 12px;
    color: #fff;
    background: rgb(0,0,0,0.5);
    border-radius: 4px 0 0 0;
    padding: 0 4px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.score_list_pic:last-child .score_list_pic_num{
    display: block;
}
.score_list_pic .score_list_pic_long{
    display: block;
    line-height: 16px;
    font-size: 12px;
    color: #fff;
    background: #16DE9B;
    border-radius: 4px 0 0 0;
    padding: 1px 5px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.score_list_pic .score_list_pic_gif{
    display: block;
    line-height: 16px;
    font-size: 12px;
    color: #fff;
    background: #0D8DFC;
    border-radius: 4px 0 0 0;
    padding: 1px 5px;
    position: absolute;
    right: 0;
    bottom: 0;
}
/*.score_list_pic:last-child .score_list_pic_long,.score_list_pic:last-child .score_list_pic_gif{*/
    /*display: none;*/
/*}*/
/*官方号公用样式*/
.score_star_wrap{
    max-width: 1240px;
    width: 100%;
    padding-top: 118px;
    margin: 0 auto 20px auto;
}
.score_star_main{
    max-width: 640px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 0 0 1px #EBEBED;
    border-radius: 2px;
    margin: 0 20px;
    float: left;
}
.star_main_title{
    line-height: 40px;
    border-bottom: 1px solid #F0F1F2;
    position: relative;
    margin: 0 12px;
    padding-left: 12px;
}
.star_main_title:before{
    content: '';
    display: block;
    width: 4px;
    height: 12px;
    background: #0D8DFC;
    position: absolute;
    left: 2px;
    top: 14px;
}
.star_article_list_more{
    display: block;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 15px 15px 0 15px;
    border: 1px solid #f0f1f2;
    /*background: #F7F8FA;*/
    background: #fff;
    font-size: 14px;
    color: #a8abb3;
}
.score_list_null{
    text-align: center;
    padding: 20px 0;
}
.score_list_null img{
    width: 300px;
    margin-bottom: 10px;
}
.score_list_null p{
    line-height: 20px;
    text-align: center;
}
.score_member_type{
    width: 16px;
    height: 16px;
    position: absolute;
    right: -2px;
    bottom: -2px;
}

/*无数据tip*/
.tip {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    color: #999;
}
.tip img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

/*加载等待*/
.spinner-wave {
    margin: 0 auto;
    width: 100px;
    height: 0;
    text-align: center;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    transition-duration: .3s;
}

.spinner-wave.show {
    height: 20px;
    z-index: 9;
    visibility: visible;
    opacity: 1;
    margin-top: 30px;
}

.spinner-wave > .sw {
    background-color: #999;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: wave 1s infinite ease-in-out;
    animation: wave 1s infinite ease-in-out;
}

.spinner-wave > .sw + .sw {
    margin-left: 5px;
}

.spinner-wave .sw:nth-child(2) {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner-wave .sw:nth-child(3) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.spinner-wave .sw:nth-child(4) {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.spinner-wave .sw:nth-child(5) {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

@-webkit-keyframes wave {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes wave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/*score加载等待*/
.score-loading {
    width: 100%;
    height: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
}
.score-loading .score-icon {
    height: 100%;
}
.score-loading.show {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    height: 50px;
}

/*分页样式*/
.page-box {
    height: 70px;
    width: 100%;
    background-color: #fff;
    position: relative;
    border: 1px solid #ebedf2;
    display: none;
}

.page-box .table_page {
    position: absolute;
    width: 120px;
    height: 30px;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -13px;
    text-align: center;
    color: #a5a8b2;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    cursor: pointer;
}
.page-box .table_page p {
    line-height: 30px;
    font-size: 13px;
    color: #999;
    font-family: "Industry-BoldItalic", "Microsoft YaHei", sans-serif;
}

.page-box .table_page img {
    width: 26px;
    height: 26px;
}

.page-box > .pagelist,
.page-box > .current {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0 3px;
    min-width: 30px;
    border-radius: 50%;
    color: #333;
}

.page-box > span.pagelist {
    color: #ccc;
}

.page-box > .pagelist:nth-child(1),
.page-box > .pagelist:nth-child(2),
.page-box > .pagelist:nth-last-child(1),
.page-box > .pagelist:nth-last-child(2) {
    margin: 0 10px;
}

.page-box > span.current {
    background-color: #bcbcbc;
    color: #fff;
}

.load-more {
    cursor: pointer;
    display: none;
    border: 1px solid #f0f1f2;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #a8abb3;
    text-align: center;
    line-height: 40px;
    margin-top: 15px;
}
.load-more.show {
    display: block;
}
.load-more:hover {
    color: #4b9ce3;
}

@media screen and (max-width: 768px) {
    .score_wrap {
        padding-bottom: 120px;
    }
}



.badeg-icon{
    width:auto;
    height:16px;
    display:inline-block;
}
.badeg-icon img{
    height:16px;
    width: inherit!important;
    display:table-cell;
}


