/********** 初始化 start **********/
html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color:#333;
    background-color: #f4f7fd;
}

ul,ol {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #333;
}

table {
    border-collapse: collapse;
}

input, textarea, select {
    outline: none;
    border: none;
}
/********** 初始化 end **********/
/* 浮动 */
.fl {
    float: left;
}
.fr {
    float: right;
}
/* flex */
.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.f1{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;    
}
/* 顶栏 */
.siteTop {
    height: 70px;
    background-color: #fff;
    box-shadow: 0px 6px 19px 0px #c8c8c8;
}
.logo {
    display: block;
    margin-top: -2px;
    height: 70px;
}
.slogan {
    margin-top: 29px;
    margin-left: 15px;
    font-size: 12px;
}
.top-menu {
    margin-right: 30px;
}
.top-menu li {
    float: left;
    padding: 0 25px;
    font-size: 16px;
    font-weight: bold;
    line-height: 70px;
    cursor: pointer;
}
.top-menu li a {
    display: block;
    color: #333;
    height: 100%;
}
.top-menu li.actived {
    background-color: #4975c8;
}
.top-menu li.actived a {
    color: #fff;
}
.tag:hover,.top-menu li a:hover {
    text-decoration: none;
}
.user-box {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
}
.user-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    color: #6795f3;
    border: 1px solid #6795f3;
    border-radius: 50%;
}
.user-icon .fa-user {
    margin-top: 10px;
}
.user-box ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -90px;
    padding: 10px 0 15px;
    width: 180px;
    background-color: #fff;
    border: 1px solid #4975c8;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 0px #aaa;
}
.user-box ul li {
    padding: 0 15px;
    line-height: 30px;
}
.user-box ul li.logout {
    color: #777;
}
/****** 自定义组件样式 start *****/
/* input */
.ar-input {
    padding: 0 15px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    box-shadow: 0px 4px 14px 0px #d6d6d6;
}
.ar-input::placeholder {
    color: #979797;
}
/* select */
.ar-select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    box-shadow: 0px 4px 14px 0px #d6d6d6;
}
.ar-input__inner {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%;
}
.ar-input__inner::placeholder {
    color: #979797;
}
.ar-select .ar-input__inner  {
    cursor: pointer;
}
.ar-select.has-icon .ar-input__inner {
    padding-left: 30px;
}
.ar-select__icon {
    position: absolute;
    top: 15px;
    left: 5px;
    width: 20px;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}
.ar-select .icon_flag {
    top: 17px;
    height: 15px;
}
.ar-select__arrow {
    position: absolute;
    top: 14px;
    right: 0px;
    width: 24px;
}
.ar-select-dropdown {
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 10px;
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    border: 1px solid #e4e7ed;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    border-radius: 3px;
}
.ar-select-group {
    max-height: 240px;
    overflow-y: auto;
}
.ar-select-group li {
    padding: 0 15px;
    cursor: pointer;
}
.ar-select-group li.actived {
    background-color: #f5f7fa;
}
.ar-select-dropdown .dropdown__arrow,.ar-select-dropdown .dropdown__arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.ar-select-dropdown .dropdown__arrow {
    top: -12px;
    left: 35px;
    margin-right: 3px;
    border-top-width: 0;
    border-bottom-color: #ebeef5;
    border-width: 6px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,.03));
}
.ar-select-dropdown .dropdown__arrow::after {
    content: " ";
    border-width: 6px;
    top: 1px;
    margin-left: -6px;
    border-top-width: 0;
    border-bottom-color: #fff;
}
/* radio */
.ar-radio-group {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    font-size: 0;
}
.ar-radio-button, .ar-radio-button__inner {
    position: relative;
    display: inline-block;
    outline: none;
}
.ar-radio-button__original {
    opacity: 0;
    outline: none;
    position: absolute;
    z-index: -1;
}
.ar-radio-button__inner {
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #dcdfe6;
    font-weight: 500;
    border-left: 0;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
}
.ar-radio-button__original:checked + .ar-radio-button__inner {
    color: #409eff;
    border-color: #409eff;
    border-left: 1px solid #409eff;
}

.ar-radio-button:first-child .ar-radio-button__original:checked + .ar-radio-button__inner {
    border-color: #409eff;
}
.ar-radio-button:first-child .ar-radio-button__inner {
    border-left: 1px solid #dcdfe6;
    border-radius: 4px 0 0 4px;
}
.ar-radio-button:last-child .ar-radio-button__inner {
    border-radius: 0 4px 4px 0;
}
/* table */
.ar-table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.ar-table {
    width: 100%;
    border: 1px solid #dbdbdb;
}
.ar-table th {
    position: relative;
    height: 40px;
    font-weight: normal;
    text-align: center;
    color: #8a8a8a;
    background-color: #f8f8ff;
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}
.ar-table th:hover {
    background-color: #fff;
}
.ar-table th span {
    cursor: help;
}
.ar-table th.sort_th {
    padding-right: 18px;
    cursor: pointer;
}
.ar-table th .icon-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -9px;
    width: 18px;
}
.th__explain {
    display: none;
    position: absolute;
    z-index: 1;
    top: 55px;
    left: 50%;
    margin-left: -130px;
    width: 260px;
    padding: 5px 0;
    color: #6a6a6a;
    background-color: #e9e9e9;
    box-shadow: 0px 0px 9px 0px #aaa;
    border-radius: 8px;
    transition: all .5s ease-in-out;
}
.th__explain i {
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #e9e9e9;
    border-top-width: 0;
}
.ar-table th span:hover + .th__explain {
    display: block;
}
.ar-table tbody tr {
    height: 80px;
    background-color: #fff;
    border-bottom: 1px solid #dbdbdb;
    transition: transform .2s;
}
.ar-table tbody tr:hover {
    transform: scale(1,1.05);
    box-shadow: rgb(210, 210, 210) 0px 2px 16px 0px;
} 
.ar-table tbody tr:last-child {
    border-bottom: 0;
}
.ar-table tr td {
    text-align: center;
    word-break: break-word;
}
.ar-table tr td:first-child {
    font-size: 24px;
    color: #fff;
    background-color: #4376fb;
}
/* pagination */
.ar-paging-box {
    display: inline-block;
}
.ar-paging-box .pg-item {
    float: left;
    line-height: 30px;
}
.ar-paging-box .link-list li {
    float: left;
    list-style: none;
}
.ar-paging-box .link-btn {
    padding: 0 18px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}
.ar-paging-box .link-btn.active {
    color: #409eff;
}
.ar-paging-box .link-btn.disabled {
    color: #ccc;
    cursor: default;
}
.pg-total {
    margin-right: 20px;
}
.pg-prev,.pg-next {
    font-size: 20px;
    color: #606266;
}
.pg-jumper {
    margin-left: 20px;
}
.pg-jumper input {
    margin: 0 8px;
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid #dcdfe6;
    border-radius: 3px;
    background-color: transparent;
}
/****** 自定义组件样式 end *****/

/******* app charts start *******/
.screen-group {
    position: relative;
    margin-top: 20px;
}
.screen-group .ar-input {
    width: 400px;
}
.screen-group .ar-select .ar-input__inner{
    border-radius: 0px;
    border: 0;
}
.screen-group .search-btn {
    position: relative;
    width: 80px;
    height: 50px;
    border: 0;
    font-size: 30px;
    line-height: 48px;
    color: #fff;
    background-color: #4875c8;
    outline: none;
    box-shadow: 0px 4px 20px 0px #d6d6d6;
    border-radius: 0 3px 3px 0;
}
.screen-group .ar-select {
    margin-bottom: 20px;
}
.screen-group__mask {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 105%;
    height: 105%;
    background-color: rgba(255,255,255,.8);
}
.data-list-head {
    margin-top: 20px;
    margin-bottom: 10px;
}
.data-list-head .p1 {
    margin-top: 18px;
    color: #737373;
}
.data-list-head .ar-radio-button__inner {
    width: 120px;
    background-color: transparent;
}
.screen-group .ar-radio-button .ar-radio-button__inner {
    width: 120px;
}
.app-data-table,.app-data-table-wrapper {
    width: 1450px;
}
.app-data-table-wrapper {
    max-height: 405px;
    overflow-y: auto;
}
.app-data-table th {
    border-bottom: 0;
}
.app-data-table td:nth-child(3) {
    padding: 0 5px;
}
.app-data-table td,.publisher-data-table td {
    font-size: 16px;
    font-weight: bold;
}
.td-app,.td-publisher {
    padding: 8px 0;
}
.td-app img,.td-publisher img,.publisher-logo-div {
    margin-left: 8px;
    margin-right: 15px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.app-info-box,.publisher-info-box {
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
}
.app-info-box p,.publisher-info-box p {
    word-break: break-all;
}
.app-name,.publisher-name {
    font-size: 18px;
    color: #305687;
}
.app-name span {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #ff9800;
}
.app-slogan,.publisher-join-time {
    font-weight: normal;
    color: #777;
}
.app-publisher {
    font-weight: normal;
    color: #139aff;
}

#pagination {
    margin: 30px 0;
    text-align: center;
}
.signup-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 230px;
    background: url(/img/signup.png) no-repeat;
    background-size: 100% 100%;
}
.signup-bottom p {
    margin-top: 50px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}
.signup-bottom__btn {
    display: block;
    margin: 30px auto 0;
    width: 450px;
    height: 70px;
    font-size: 32px;
    font-weight: bold;
    line-height: 70px;
    text-align: center;
    color: #fff;
    background-color: #5947fa;
    box-shadow: 0px 0px 52px 0px #e7e5ff;
    border-radius: 10px;
}
.signup-bottom__btn:hover {
    color: #fff;
    text-decoration: none;
}
/******* app charts end *******/
/******* publisher charts start *******/
.publisher-data-table,.publisher-data-table-wrapper {
    width: 1500px;
}
.publisher-data-table thead tr:nth-child(2) th {
    border-bottom: 0;
}
.publisher-data-table-wrapper {
    max-height: 405px;
    overflow-y: auto;
}
.publisher-data-table thead tr {
    font-size: 13px;
}
.publisher-data-table th.sort_th {
    padding-right: 5px;
}
.publisher-data-table th .icon-arrow {
    right: -4px;
}
.publisher-name {
    text-decoration: underline;
}
.publisher-email {
    font-weight: normal;
}
.publisher-logo-div {
    font-size: 24px;
    line-height: 60px;
    color: #4376fb;
    border: 2px solid #4376fb;
}
/******* publisher charts end *******/
/* 提示 */
.tipDiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.tip {
    padding: 8px 15px;
    background-color: rgba(0,0,0,.5);
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    animation: tipScale 0.5s ease;
}
@keyframes tipScale
    {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
@-webkit-keyframes tipScale
{
    from {transform: scale(0)}
    to {transform: scale(1)}
}

@media (min-width: 1500px){
    .container {
        width: 1350px;
    }
}
footer {
    margin-top: 50px;
}