*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
:root{
    --pj-primary:#2563eb;
    --pj-primary-dark:#1d4ed8;
    --pj-primary-soft:rgba(37,99,235,.1);
    --pj-accent:#14b8a6;
    --pj-ink:#0f172a;
    --pj-text:#334155;
    --pj-muted:#64748b;
    --pj-line:#e2e8f0;
    --pj-bg:#f5f7fb;
    --pj-card:#ffffff;
    --pj-radius:10px;
    --pj-shadow:0 10px 28px rgba(15,23,42,.08);
}
body{
	background: var(--pj-bg);
	color: var(--pj-text);
}

/**
 * 全局样式
 */
input[type=file]::-webkit-file-upload-button{
    cursor: pointer;
}
#app option{
    padding: 20px 0;
    display: block;
}
#app textarea{
    font-size: 15px;
}

#app textarea::placeholder {
    color: #ccc;
    font-size: 15px;
}

#app input::placeholder {
    color: #ccc;
    font-size: 15px;
}

#right .mbx {
    color: #999;
}

/*错误信息*/
#right .error_text {
    text-align: center;
    color: #f00;
    margin-bottom: 0;
    font-size: 14px;
}
.modal-body .error_text {
    text-align: center;
    color: #f00;
    margin-bottom: 0;
    font-size: 14px;
}


/*返回上一页*/
#app .back-lastpage {
    border-radius: 10px;
	color: rgb(59,94,225);
	width: 38px;
	height: 38px;
	float: left;
	border-radius: 10px;
	font-size: 15px;
	transition: 0.1s;
	margin-right: 8px;
	background-color: rgba(59,94,225,0.1);
	background-repeat: no-repeat;
	background-image: url('../../static/img/back-lastpage.png');
	background-size: 68%;
	background-position: center;
}

/*全局弹出信息提示*/
#notification {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  transition: top 0.5s ease;
  z-index: 3;
}
#notification-text {
  background: rgba(59,94,225,0.1);
  border-radius: 5px;
  color: rgb(59,94,225);
  padding: 10px;
  font-size: 15px;
  text-align: center;
  margin:0 auto;
}
#app .form-control-group{
    width: 100%;
    display: flex;
    padding-bottom: 20px;
    margin-top: -10px;
}
#app .form-control-group .form-group{
    flex: 1;
    height: 40px;
    float: left;
    margin-right: 15px;
}
#app .form-control-group .form-group-right{
    flex: 1;
    height: 40px;
    float: right;
}
#app .hz-close{
	color: #f5225d;
}
#app .keng{
    text-align: center;
    font-size: 30px;
}
#app .table .caozuo{
	font-size: 13px;
	padding: 3px 6px;
	font-weight: bold;
	float: right;
	color: #666;
	background: #eee;
	border-radius: 5px;
	cursor: pointer;
}
#app .index{
	text-decoration: none;
	color: #3b5ee1;
}
.dropdown-td{
	text-align: right;
}
#app .dropbtn{
    background-color: #eee;
    color: #333;
    line-height: 23px;
    padding: 0 6px;
    font-size: 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}
#app button{
	outline: none;
}
#app input{
	-webkit-box-shadow: 0 0 0 1000px white inset;
	font-size: 15px;
	margin-bottom: 10px;
}
#app select{
	-webkit-box-shadow: 0 0 0 1000px white inset;
	font-size: 15px;
	margin-bottom: 10px;
}

/*旧样式，针对Modal底部按钮区域*/
#app .modal-footer .footer-btn{
	width: 100%;
	height: 40px;
}
#app .modal-footer .footer-btn .faqnav{
	width: 50px;
	height: 50px;
	float: left;
}
#app .modal-footer .footer-btn .btnnav{
	width: calc(100% - 50px);
	float: right;
}

/*新样式，针对Modal底部按钮区域*/
#app .modal-footer .footer-click {
    width: 100%;
    display: flex;
}
#app .modal-footer .footer-click .click-left {
    width: 100px;
}
#app .modal-footer .footer-click .click-right {
    flex: 1;
}
#app .modal-footer .footer-click .click-right button {
    float: right;
}

/*faq样式*/
#app .faq{
	width: 22px;
	height: 22px;
	border-radius: 100px;
	background: #3b5ee1;
	font-size: 12px;
	font-weight: bold;
	line-height: 22px;
	text-align: center;
	display: block;
	color: #fff;
	float: left;
	margin-top: 10px;
}
#app .faq a{
	color: #fff;
	text-decoration: none;
	display: block;
}
#app .modal-body .text{
    font-size: 15px;
    color: #999;
    display: block;
    margin:15px auto 5px;
    width: 100%;
    height: 20px;
}
#app .modal-footer .footer-btn .default-btn{
	float: right;
}
#app .result{
	width: 94%;
	margin:0 auto 15px;
}
#app .result .success{
	border-radius: 5px;
	padding:10px 10px;
	background: rgba(0,11,172,0.1);
	color: rgb(0,11,172);
	display: none;
}
#app .result .error{
	border-radius: 5px;
	padding:10px 10px;
	background: rgba(244,97,92,0.1);
	color: rgb(244,97,92);
	display: none;
}
#app .data-card .loading{
	text-align: center;
	margin-top: 50px;
	font-size: 16px;
	color: #999;
}
#app .data-card .loading img{
	width: 60px;
	height: 60px;
	margin-bottom: 15px;
}

#qunQrcodeListModal table{
	text-align: center;
	margin-top: 50px;
	font-size: 14px;
	color: #999;
}
#qunQrcodeListModal table img{
	width: 60px;
	height: 60px;
	margin-bottom: 15px;
}
table th,tr,td {
    text-align: center;
    vertical-align: middle!important;
}

#app .data-card .loading .noData{
	width: 280px;
	height: 150px;
	display: block;
	margin: 15px auto 0;
}
#app .data-card .loading .noDataText{
	font-size: 15px;
	color: #999;
}
.no_limit {
    width: 100%;
    height: 700px;
    line-height: 700px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}

/*并流管理的noData*/
#bingliuModal .bingliuList .noData{
	width: 280px;
	height: 150px;
	display: block;
	margin: 15px auto 0;
}
#bingliuModal .bingliuList .noDataText{
	font-size: 15px;
	color: #999;
	text-align: center;
	margin-bottom: 20px;
}

#taokouling{
    height: 50px;
    border:1px solid rgba(0,11,172);
}

#right .data-content .initialize_index{
	text-align: center;
	margin-top: 50px;
	font-size: 17px;
	color: #999;
}
#right .data-content .initialize_index img{
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

#app .dropdown .dropdown-btn{
    border:none;
    outline: none;
    border-radius: 5px;
    font-size: 8px;
    background: #eee;
    color: #666;
    padding:2px 4px;
}
#app .dropdown .dropdown-menu{
    background: #fff;
    border: none;
    min-width:90px;
    box-shadow: 0 0 5px #ddd;
    text-align: center;
    font-size: 15px;
}
#app .dropdown .dropdown-menu .dropdown-item:hover{
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
}
#app .dropdown .dropdown-menu .dropdown-item:active{
    background: #f8f9fa;
    color: #666;
}

#app{
	width: 100%;
	margin:0 auto;
}
#app .left{
	width: 272px;
	height: 100%;
	background: rgba(255,255,255,.94);
	position: fixed;
	left: 0;
	bottom: 0;
	box-shadow: 8px 0 28px rgba(15,23,42,.06);
	border-right: 1px solid rgba(226,232,240,.85);
	backdrop-filter: blur(14px);
}
#app .left .dhview{
	width: 224px;
	margin: 24px auto;
}
#app .left .dhview .logo{
	width: 224px;
	height: 58px;
	margin-bottom: 24px;
	background-image: url('../../static/img/pj-logo.svg');
	background-position: left center;
	background-size: 205px auto;
	background-repeat: no-repeat;
}
#app .left .dhview ul li{
	width: 224px;
	height: 44px;
	line-height: 44px;
	list-style: none;
	text-indent: 4px;
	font-size: 15px;
	margin-bottom: 6px;
	border-radius: 10px;
	transition: .16s ease;
}
#app .left .dhview ul li:hover{
	cursor: pointer;
	background: #f8fafc;
}
#app .left .dhview a{
	display: block;
	text-decoration: none;
	color: #000;
}
.nav-li {
    display: flex;
}
.icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    margin: 10px 0 0 15px;
}
.nav-text {
    flex: 1;
}
#app .left .dhview a:hover{
	color: var(--pj-primary);
}
#app .upload_file{
    margin-top: 40px;
}

/*图标-亮色主题*/
.i-data {
    background: url('../../static/img/icon/light-theme/data.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-hm {
    background: url('../../static/img/icon/light-theme/hm.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-dwz {
    background: url('../../static/img/icon/light-theme/dwz.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-tbk {
    background: url('../../static/img/icon/light-theme/tbk.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-share {
    background: url('../../static/img/icon/light-theme/share.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-plugin {
    background: url('../../static/img/icon/light-theme/plugin.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-kami {
    background: url('../../static/img/icon/light-theme/kami.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-config {
    background: url('../../static/img/icon/light-theme/config.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-sucai {
    background: url('../../static/img/icon/light-theme/sucai.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-account {
    background: url('../../static/img/icon/light-theme/account.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}
.i-add {
    background: url('../../static/img/icon/light-theme/add.png')no-repeat;
    background-size: 86%;
    background-position: center;
    opacity: 0.7;
}

/*图标-深色主题*/
.i-data-dark {
    background: url('../../static/img/icon/dark-theme/data-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-hm-dark {
    background: url('../../static/img/icon/dark-theme/hm-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-dwz-dark {
    background: url('../../static/img/icon/dark-theme/dwz-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-tbk-dark {
    background: url('../../static/img/icon/dark-theme/tbk-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-share-dark {
    background: url('../../static/img/icon/dark-theme/share-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-plugin-dark {
    background: url('../../static/img/icon/dark-theme/plugin-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-kami-dark {
    background: url('../../static/img/icon/dark-theme/kami-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-config-dark {
    background: url('../../static/img/icon/dark-theme/config-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-sucai-dark {
    background: url('../../static/img/icon/dark-theme/sucai-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-account-dark {
    background: url('../../static/img/icon/dark-theme/account-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}
.i-add-dark {
    background: url('../../static/img/icon/dark-theme/add-dark-theme.png')no-repeat;
    background-size: 86%;
    background-position: center;
}

/*左侧导航已选样式-旧*/
#app .left .dhview .selected{
    font-weight: bold;
    border-radius: 10px;
    color: var(--pj-primary);
    background: linear-gradient(90deg, rgba(37,99,235,.12), rgba(20,184,166,.09));
    display: block;
    text-decoration: none;
    box-shadow: inset 3px 0 0 var(--pj-primary);
}

#app .left .account{
	width: 224px;
	margin: 0 auto;
	background: #f8fafc;
	border: 1px solid var(--pj-line);
	border-radius: 12px;
	text-align: center;
	font-size: 15px;
	position: absolute;
	bottom: 40px;
	padding: 10px 0;
}
#app .left .account .version{
    color: #999;
}
#app .left .account .user_name{
	text-decoration: none;
	color: #666;
	padding-bottom: 2px;
}
#app .left .account .user_name .exitLogin {
    cursor: pointer;
    font-size: 14px;
}
#topAlert{
    position:fixed;
    top:0;left:0;right:0;
    width:300px;height:40px;
    background:#ccc;
    margin:0 auto;
    color: rgb(59,94,225); 
    background: rgba(59,94,225,0.1);
    display:none;
    text-align: center;
    line-height: 40px;
}

/*右侧布局*/
#right{
    height: 100%;
    margin-left: 330px;
    margin-bottom: 100px;
    padding-right: 30px;
}
#right h4{
	color: #333;
	margin-top: 40px;
}
#right h3{
	color: var(--pj-ink);
	margin-top: 34px;
	font-weight: 700;
	letter-spacing: 0;
}
#right .data-card{
	width: calc(100% - 60px);
	background: var(--pj-card);
	border: 1px solid rgba(226,232,240,.9);
	border-radius: 14px;
	padding:22px 0;
	margin:15px 0 0 0;
	box-shadow: var(--pj-shadow);
}

#right .data-card .data-chart .warnPage{
    width: calc(100% - 60px);
    height: 320px;
	background: #fff;
	border-radius: 15px;
	padding: 20px 0;
	margin: 0 0;
	box-shadow: 0px 3px 8px #eee;
}

#right .data-card .data-chart .warnPage img{
    width: 280px;
    height: 150px;
    display: block;
    margin: 30px auto 10px;
}

#right .data-card .data-chart .warnText{
    text-align: center;
    font-size: 15px;
    color: #999;
}

#right .data-card .data-chart .errorPage{
    width: calc(100% - 60px);
    height: 230px;
	background: #fff;
	border-radius: 15px;
	padding: 20px 0;
	margin: 0 0;
	box-shadow: 0px 3px 8px #eee;
}

#right .data-card .data-chart .errorPage img{
    width: 60px;
    height: 60px;
    display: block;
    margin: 30px auto 0;
}

#right .data-card .data-chart .errorText{
    text-align: center;
    font-size: 15px;
    color: #FA5151;
}

#right .data-card .button-view{
	width: 96%;
	margin: 0 auto;
}
#right .mianbaoxie_a{
    text-decoration: none;
    color: #333;
}

#right .data-card .button-view .flex-button-view {
    width: 100%;
    display: flex;
}
#right .data-card .button-view .button-daohang{
	flex: 1;
}
#right .data-card .button-view .button-gongneng{
	flex: 1;
}
#right .data-card .button-view .button-gongneng .tint-btn{
	float: right;
	margin-left: 10px;
}


/*默认按钮样式*/
#app .default-btn{
	border: none;
    color: #fff;
    background: linear-gradient(135deg, var(--pj-primary), #0f766e);
	padding: 8px 16px;
	outline: none;
	border-radius: 9px;
	font-size: 15px;
	box-shadow: 0 8px 18px rgba(37,99,235,.2);
	transition: .16s ease;
}
/*鼠标移动到默认按钮样式*/
#app .default-btn:hover{
	transform: translateY(-1px);
	background: linear-gradient(135deg, var(--pj-primary-dark), #0f766e);
}
/*浅色按钮样式*/
#app .tint-btn{
	border: 1px solid rgba(37,99,235,.14);
	color: var(--pj-primary);
    background: var(--pj-primary-soft);
	padding: 8px 15px;
	outline: none;
	border-radius: 9px;
	font-size: 15px;
	transition: .16s ease;
}
/*鼠标移动到浅色按钮样式*/
#app .tint-btn:hover{
	color: #fff;
    background: var(--pj-primary);
    border-color: var(--pj-primary);
    transition: .16s ease;
}
/*红色按钮样式*/
#app .red-btn{
	border: none;
    color: #fff;
    background: #FA5151;
	padding: 8px 11px;
	outline: none;
	border-radius: 8px;
	font-size: 15px;
}

#right .data-card .data-list{
	width: 96%;
	margin:18px auto 0;
	font-size: 15px;
}
#right .data-card .data-list .table{
    border-collapse: separate;
    border-spacing: 0 8px;
}
#right .data-card .data-list .table thead th{
    color: var(--pj-muted);
    font-weight: 600;
    border: none;
    background: #f8fafc;
}
#right .data-card .data-list .table tbody tr{
    background: #fff;
    box-shadow: 0 6px 18px rgba(15,23,42,.04);
}
#right .data-card .data-list .table tbody td{
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}
#right .data-card .data-list .table tbody td:first-child{
    border-left: 1px solid #eef2f7;
    border-radius: 10px 0 0 10px;
}
#right .data-card .data-list .table tbody td:last-child{
    border-right: 1px solid #eef2f7;
    border-radius: 0 10px 10px 0;
}
#right .data-list tbody{
    color: #555;
    font-size: 15px;
}
#right .data-list tbody .qc_Color{
    color: #3B5EE1;
}
#right .data-card .data-list .switch-on{
    width: 35px;
    height: 20px;
    background: linear-gradient(135deg, var(--pj-primary), var(--pj-accent));
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}
#right .data-card .data-list .switch-on .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    right: 2px;
}
#right .data-card .data-list .switch-off{
    width: 35px;
    height: 20px;
    background: #ddd;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}
#right .data-card .data-list .switch-off .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 1px;
}
#right .data-card .data-list .status_close{
    color: rgb(244,97,92);
}

/*并流管理状态开关*/
#bingliuModal .bingliuList .switch-on{
    width: 35px;
    height: 20px;
    background: rgb(59,94,225);
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
#bingliuModal .bingliuList .switch-on .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    right: 2px;
}
#bingliuModal .bingliuList .switch-off{
    width: 35px;
    height: 20px;
    background: #ddd;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
#bingliuModal .bingliuList .switch-off .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 1px;
}
#bingliuModal .bingliuList .status_close{
    color: rgb(244,97,92);
}
#bingliuModal .bingliuList .delBingliu{
    color: #666;
    text-align: right;
    cursor: pointer;
}

/*并流列表错误处理*/
#bingliuModal .bingliuList .errorIMG {
    width: 85px;
    height: 85px;
    display: block;
    margin: 30px auto 0;
}
#bingliuModal .bingliuList .errorTEXT {
    text-align: center;
    font-size: 15px;
    width: 450px;
    margin: 0 auto;
    color: #FA5151;
}
#bingliuModal .bingliuList .errorA {
    text-align: center;
    font-size: 15px;
    display: block;
    margin-bottom: 25px;
}

#right .fenye{
	width: 96%;
	height: 30px;
	display: none;
	margin:10px auto 0;
}
#right .fenye ul li{
	float: left;
	margin-right: 8px;
	font-size: 14px;
	list-style: none;
	border-radius: 5px;
	cursor: pointer;
	display: block;
}
#right .fenye ul li button{
	width: 28px;
	height: 28px;
	display: block;
	border:none;
	outline: none;
	background: var(--pj-primary-soft);
	color: var(--pj-primary);
	border-radius: 5px;
}
#right .fenye ul li button img{
    width: 18px;
    height: 18px;
    margin:5px 5px;
    opacity: 0.7;
}

/*上传控件*/
#app .modal-body .upload_qrcode{
    width: 90px;
    height: 90px;
    border-radius: 10px;
    margin:20px auto 10px;
    border:1.5px dashed #999;
    box-sizing: box-sizing;
    background: #fbfafa;
    position: relative;
}
#app .modal-body .upload_qrcode:hover{
    cursor: pointer;
}
#app .modal-body .upload_qrcode .upload_icon{
    width: 30px;
    height: 30px;
    margin:30px 30px;
}
#app .modal-body .upload_text{
    text-align: center;
    font-size: 15px;
    color: #999;
}
#app .modal-body .file_input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/*上传后的二维码图片预览*/
#app .modal-body .qrcode_preview{
    width: 180px;
    margin: 30px auto;
    display: none;
    text-align: center;
}
#app .modal-body .qrcode_preview .uploadSuccess{
    font-size: 15px;
    color: #999;
    height: 35px;
    line-height: 35px;
}
#app .modal-body .qrcode_preview .newUpload{
    font-size: 15px;
    color: #999;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
}
#app .modal-body .qrcode_preview .qrcode{
    width: 120px;
    border: 1px dashed #ddd;
    box-sizing: border-box;
    padding: 10px 10px;
}
#app .modal-body .qrcode_preview .uploadSuccess_Reupload{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

/*删除按钮居中*/
#delQunModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#delQunQrcodeModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#delKfModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelKfQrcode .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelChannelHm .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelUserModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#CleanAllChannelData .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelDwzModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelApiKeyModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelZjyModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#DelshareCardModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#delMultiSPAModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#delKamiProjectModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#delKmModal .modal-footer button{
    display: block;
    margin:0 auto;
}
#cleanKmModal .modal-footer button{
    display: block;
    margin:0 auto;
}

/*针对删除询问Modal的删除按钮居中问题，这里写了一个全局CSS，以后加一个center-btn类就可以居中了*/
#app .center-btn{
    display: block;
    margin: 0 auto;
}

#scanTips {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-top: 20px;
}

.yiwen {
    cursor:pointer;
    padding:0 5px;
    background:#eee;
    color:#999;
    font-size:12px;
    border-radius:100px;
    margin-left: 5px;
}

/*群活码、群二维码*/
#qunQrcodeListModal .modal-body .btn-view{
    width: 100%;
    margin:0 auto;
}
#qunQrcodeListModal .modal-body .btn-view .upload-Btn-Group{
    width: 260px;
    height: 50px;
    display: block;
    margin: 10px auto 20px;
}
#qunQrcodeListModal .modal-body .btn-view .upload-Btn-Group .local{
    width: 120px;
    float: left;
}
#qunQrcodeListModal .modal-body .btn-view .upload-Btn-Group .sucaiku{
    width: 120px;
    float: right;
}
#qunQrcodeListModal .modal-body .sucaiku{
    display: block;
    position: relative;
}
#bingliuModal .bingliuList .table {
    font-size: 15px;
}
#bingliuModal .bingliuList .table th{
    color: #999;
}

/*从素材库选择素材-素材列表样式*/
#suCaiKu .modal-body {
	padding: 20px 40px;
}
#suCaiKu .sucai-view {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: 30px;
	border-top: 1px solid #eee;
	padding-top: 20px;
}
#suCaiKu .sucai_msg {
	width: calc(16.666% - 10px);
	margin: 5px;
	background-color: #f2f2f2;
	border-radius: 8px;
	border: 1px solid #eee;
	box-sizing: border-box;
	transition: 0.2s;
}
#suCaiKu .sucai_msg:hover {
	border: 1px solid #3B5EE1;
	box-sizing: border-box;
	transition: 0.2s;
	cursor: pointer;
}
#suCaiKu .sucai_cover {
	position: relative;
	padding-top: 100%;
}
#suCaiKu .sucai_cover img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}
#suCaiKu .sucai_name {
    padding: 5px 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
	text-align: center;
	font-size: 14px;
	color: #333;
}

/*从素材库选择素材加载错误的提示*/
#suCaiKu .modal-body .sucai-view .loading{
	text-align: center;
	margin: 0 auto;
	font-size: 17px;
	color: #999;
}
#suCaiKu .modal-body .sucai-view .loading img{
	width: 180px;
	height: 100px;
	margin-bottom: 20px;
	margin:20px auto;
}
#suCaiKu .modal-body .sucai-view .loading p{
    font-size: 15px;
}

#suCaiKu .modal-body .upload_sucai_button{
    display: block;
    position: relative;
    margin:20px auto;
}
#suCaiKu .modal-body .upload_sucai_button .upload_sucai{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#suCaiKu .modal-body .fenye{
    width: 150px;
    height: 40px;
    margin: 10px auto;
}
#suCaiKu .fenye{
	width: 96%;
	height: 30px;
	display: none;
	margin:10px auto 0;
}
#suCaiKu .fenye ul li{
	float: left;
	margin-right: 8px;
	font-size: 14px;
	list-style: none;
	border-radius: 5px;
	cursor: pointer;
	display: block;
}
#suCaiKu .fenye ul li button{
	width: 28px;
	height: 28px;
	display: block;
	border:none;
	outline: none;
	background: rgba(120,148,225,0.1);
	color: #3b5ee1;
	border-radius: 5px;
}
#suCaiKu .fenye ul li button img{
    width: 18px;
    height: 18px;
    margin:5px 5px;
    opacity: 0.7;
}

/*添加并流表单*/
#bingliuModal .addBingliuForm {
    display: flex;
    width: 80%;
    height: 40px;
    margin: 20px auto 25px;
}
#bingliuModal .addBingliuForm input {
    flex: 1;
    margin-right: 10px;
}
#bingliuModal .addBingliuForm button {
    width: 100px;
    height: 37px;
}
#bingliuModal .bingliuList .noData-view {
    width: 100%;
    margin: 20px auto 0;
    display: none;
}

/*并流分页组件*/
#bingliuModal .bingliuList .fenye{
	width: 100%;
	height: 30px;
	margin: 10px auto 20px;
}
#bingliuModal .bingliuList .fenye ul li{
	float: left;
	margin-right: 8px;
	font-size: 14px;
	list-style: none;
	border-radius: 5px;
	cursor: pointer;
	display: block;
}
#bingliuModal .bingliuList .fenye ul li button{
	width: 28px;
	height: 28px;
	display: block;
	border:none;
	outline: none;
	background: rgba(120,148,225,0.1);
	color: #3b5ee1;
	border-radius: 5px;
}
#bingliuModal .bingliuList .fenye ul li button img{
    width: 18px;
    height: 18px;
    margin:5px 5px;
    opacity: 0.7;
}

/*本地上传群二维码*/
#qunQrcodeListModal .modal-body .local{
    position: relative;
}

#qunQrcodeListModal .modal-body .local .fileSelectBtn{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/*从素材库选择群二维码*/
#qunQrcodeListModal .modal-body .sucaiku .fileSelectBtn{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#qunQrcodeListModal .modal-body .qunQrcodeList thead{
    font-size: 15px;
}

#qunQrcodeListModal .modal-body .qunQrcodeList tbody{
    color:#555;
}

#qunQrcodeListModal .result{
	width: 96%;
	margin:0 auto 15px;
}

/*微信群二维码列表loading*/
#qunQrcodeListModal .loading{
	text-align: center;
	margin-top: 40px;
	font-size: 17px;
	color: #999;
}

#qunQrcodeListModal .loading img{
	width: 180px;
	height: 100px;
	margin-bottom: 20px;
	margin:20px auto;
}

#qunQrcodeListModal .loading p{
    font-size: 15px;
}

/*微信二维码列表loading*/
#kfQrcodeListModal .loading{
	text-align: center;
	margin-top: 40px;
	font-size: 17px;
	color: #999;
}

#kfQrcodeListModal .loading img{
	width: 180px;
	height: 100px;
	margin-bottom: 20px;
	margin:20px auto;
}

#kfQrcodeListModal .loading p{
    font-size: 15px;
}

/*从素材库选择loading*/
#suCaiKu .loading{
	text-align: center;
	margin-top: 40px;
	font-size: 17px;
	color: #999;
}

#suCaiKu .loading img{
	width: 180px;
	height: 100px;
	margin-bottom: 20px;
	margin:20px auto;
}

#suCaiKu .loading p{
    font-size: 15px;
}

#qunQrcodeListModal .modal-body .qunQrcodeList .switch-on{
    width: 35px;
    height: 20px;
    background: rgb(59,94,225);
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: auto;
}

#qunQrcodeListModal .modal-body .qunQrcodeList .switch-on .press{
    width: 16px;
    height: 16px;
    margin: 2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    right: 2px;
}

#qunQrcodeListModal .modal-body .qunQrcodeList .switch-off{
    width: 35px;
    height: 20px;
    background: #ddd;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: auto;
}

#qunQrcodeListModal .modal-body .qunQrcodeList .switch-off .press{
    width: 16px;
    height: 16px;
    margin: 2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 1px;
}

#qunQrcodeListModal .status_close{
    color: rgb(244,97,92);
}

#editQunModal .reUpload{
    width: 120px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:15px auto 0;
}

#editQunModal .selectFromSCK{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

#editQunQrcodeModal .reUpload{
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:15px auto 0;
}

#editQunQrcodeModal .selectFromSCK{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

#EditKfQrcodeModal .reUpload{
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:15px auto 0;
}

#EditKfQrcodeModal .selectFromSCK{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #333;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

/*shareQunModal*/
#shareQunModal .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#shareQunModal .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#shareQunModal .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareQunModal .modal-body .box .shortUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
}
#shareQunModal .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareQunModal .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#shareQunModal .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#shareQunModal .modal-footer button{
    display: block;
    margin: 10px auto 0;
}

/*shareChannelHm*/
#shareChannelHm .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#shareChannelHm .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#shareChannelHm .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareChannelHm .modal-body .box .shortUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
}
#shareChannelHm .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareChannelHm .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#shareChannelHm .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#shareChannelHm .modal-footer button{
    display: block;
    margin: 10px auto 0;
}
.device_pv {
    font-size: 14px;
    color: #666;
    line-height: 10px;
}

/*客服码、客服二维码*/
#kfQrcodeListModal .modal-body .btn-view{
    width: 100%;
    margin:0 auto;
}

#kfQrcodeListModal .modal-body .btn-view .upload-Btn-Group{
    width: 260px;
    height: 50px;
    display: block;
    margin: 10px auto 20px;
}
#kfQrcodeListModal .modal-body .btn-view .upload-Btn-Group .local{
    width: 120px;
    float: left;
}
#kfQrcodeListModal .modal-body .btn-view .upload-Btn-Group .sucaiku{
    width: 120px;
    float: right;
}
#kfQrcodeListModal .modal-body .local{
    display: block;
    position: relative;
}
#kfQrcodeListModal .modal-body .sucaiku{
    display: block;
    position: relative;
}

#kfQrcodeListModal .modal-body .btn-view .upload-Btn-Group .fileSelectBtn{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#kfQrcodeListModal .modal-body .kfQrcodeList thead{
    font-size: 15px;
}
#kfQrcodeListModal .modal-body .kfQrcodeList tbody{
    color:#555;
}
#kfQrcodeListModal .result{
	width: 96%;
	margin:0 auto 15px;
}
#kfQrcodeListModal .loading{
	text-align: center;
	margin-top: 40px;
	font-size: 17px;
	color: #999;
}
#kfQrcodeListModal .loading img{
	width: 180px;
	height: 100px;
	margin-bottom: 20px;
	margin:20px auto;
}
#kfQrcodeListModal .loading p{
    font-size: 15px;
}
#kfQrcodeListModal .modal-body .kfQrcodeList .switch-on{
    width: 35px;
    height: 20px;
    background: rgb(59,94,225);
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: auto;
}
#kfQrcodeListModal .modal-body .kfQrcodeList .switch-on .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    right: 2px;
}
#kfQrcodeListModal .modal-body .kfQrcodeList .switch-off{
    width: 35px;
    height: 20px;
    background: #ddd;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: auto;
}
#kfQrcodeListModal .modal-body .kfQrcodeList .switch-off .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 1px;
}
#kfQrcodeListModal .status_close{
    color: rgb(244,97,92);
}
#kfQrcodeListModal table{
	text-align: center;
	margin-top: 50px;
	font-size: 14px;
	color: #999;
}
#kfQrcodeListModal table img{
	width: 60px;
	height: 60px;
	margin-bottom: 15px;
}
#onlineTimesJsonString{
    display: none;
}

/*shareKf*/
#shareKf .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#shareKf .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#shareKf .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareKf .modal-body .box .shortUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
}
#shareKf .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareKf .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#shareKf .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#shareKf .modal-footer button{
    display: block;
    margin: 10px auto 0;
}

/*ShareZjyModal*/
#ShareZjyModal .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#ShareZjyModal .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#ShareZjyModal .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#ShareZjyModal .modal-body .box .shortUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
}
#ShareZjyModal .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#ShareZjyModal .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#ShareZjyModal .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#ShareZjyModal .modal-footer button{
    display: block;
    margin: 10px auto 0;
}

/*shareMultiSPAModal*/
#shareMultiSPAModal .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#shareMultiSPAModal .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#shareMultiSPAModal .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareMultiSPAModal .modal-body .box .shortUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
}
#shareMultiSPAModal .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#shareMultiSPAModal .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#shareMultiSPAModal .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#shareMultiSPAModal .modal-footer button{
    display: block;
    margin: 10px auto 0;
}
.selectMultiSPA {
    width: 17px;
    height: 17px;
    background: #eee;
    display: block;
    margin:0 auto;
    font-size: 12px;
    color: #eee;
    cursor: pointer;
    border-radius: 3px;
}
.selectedMultiSPA {
    background: #eee;
    color: #333;
    font-weight: bold;
}

/*ShareCardModal*/
#ShareCardModal .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#ShareCardModal .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#ShareCardModal .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#ShareCardModal .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#ShareCardModal .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#ShareCardModal .modal-footer button{
    display: block;
    margin: 10px auto 0;
}

/*ShareJwModal*/
#ShareJwModal .modal-body .box{
    width: 95%;
    margin:0 auto;
}
#ShareJwModal .modal-body .box .longUrl{
    width: 100%;
    margin:0 auto;
    padding:15px 15px;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    word-wrap: break-word;
    background: #f6f6f6;
    border-radius: 10px;
}
#ShareJwModal .modal-body .box .longUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#ShareJwModal .modal-body .box .shortUrl .text{
    display: block;
    height:20px;
    margin:0 0 0 0;
}
#ShareJwModal .modal-body .box .Qrcode{
    width: 200px;
    height: 200px;
    margin:20px auto 10px;
}
#ShareJwModal .modal-body .box .Qrcode img{
    width: 200px;
    height: 200px;
}
#ShareJwModal .modal-footer button{
    display: block;
    margin: 10px auto 0;
}

/*登录（console/login）*/

/*PC样式*/
@media screen and (min-width: 1000px) {
    #app .formBox{
        width: 460px;
        background: rgba(255,255,255,.94);
        margin:130px auto 0;
        overflow: hidden;
        padding: 0 0 30px 0;
        border-radius: 16px;
        border: 1px solid rgba(226,232,240,.9);
        box-shadow: 0 22px 60px rgba(15,23,42,.14);
    }
    #app .formBoxReg{
        margin:50px auto 0;
    }
    #app .formBox .header-box{
        width: 88%;
        height: 80px;
        margin:30px auto 0;
        overflow: hidden;
    }
    #app .formBox .header-box img{
        width: 240px;
        height: 60px;
        margin: 15px auto;
        display: block;
    }
    #app .formBox .line{
        width: 100%;
        height: 5px;
        border-bottom: 1px solid #eee;
    }
    #app .formBox .form-box{
        width: 80%;
        margin: 30px auto 0;
    }
    #app .formBox .form-box .form-control{
        height: 40px;
        font-size: 15px;
        color: #666;
        border-radius: 8px;
    }
    #app .formBox .form-box label{
        color: #666;
        font-size: 15px;
        margin-top: 15px;
        font-weight: bold;
    }
    #app .formBox .form-box .form-control-login{
        width: 100%;
        height: 42px;
        border:none;
        outline: none;
        border-radius: 10px;
        color: #fff;
        background: linear-gradient(135deg, var(--pj-primary), #0f766e);
        margin:35px auto 0;
        display: block;
        box-shadow: 0 10px 22px rgba(37,99,235,.2);
    }
    #app .loginresult{
        text-align: center;
        margin-top: 20px;
        font-size: 15px;
    }
    #app .formBox .form-box .links {
        width: 100%;
        margin: 20px auto 0;
        display: flex;
        justify-content: center;
    }
    #app .formBox .form-box .links .link {
        margin: 0 10px;
        font-size: 15px;
        color: #999;
        text-decoration: none;
    }
    #app .loginresult .success{
        color: rgb(0,11,172);
    }
    #app .loginresult .error{
        color: rgb(244,97,92);
    }
}

/*PAD样式*/
@media screen and (min-width: 640px) and (max-width: 1000px) {
    #app .formBox{
        width: 400px;
        background: #fff;
        margin:80px auto 0;
        overflow: hidden;
        padding: 0 0 30px 0;
        border-radius: 10px;
    }
    #app .formBox .header-box{
        width: 88%;
        height: 80px;
        margin:30px auto 0;
        overflow: hidden;
    }
    #app .formBox .header-box img{
        width: 180px;
        height: 50px;
        margin: 15px auto;
        display: block;
    }
    #app .formBox .line{
        width: 100%;
        height: 5px;
        border-bottom: 1px solid #eee;
    }
    #app .formBox .form-box{
        width: 80%;
        margin: 30px auto 0;
    }
    #app .formBox .form-box .form-control{
        height: 40px;
        font-size: 15px;
        color: #666;
        border-radius: 8px;
    }
    #app .formBox .form-box label{
        color: #666;
        font-size: 15px;
        margin-top: 15px;
        font-weight: bold;
    }
    #app .formBox .form-box .form-control-login{
        width: 120px;
        height: 42px;
        border:none;
        outline: none;
        border-radius: 8px;
        color: #fff;
        background: #3b5ee1;
        margin:35px auto 0;
        display: block;
    }
    #app .loginresult{
        text-align: center;
        margin-top: 20px;
        font-size: 15px;
    }
    #app .formBox .form-box .links {
        width: 100%;
        margin: 20px auto 0;
        display: flex;
        justify-content: center;
    }
    #app .formBox .form-box .links .link {
        margin: 0 10px;
        font-size: 15px;
        color: #999;
        text-decoration: none;
    }
    #app .loginresult .success{
        color: rgb(0,11,172);
    }
    #app .loginresult .error{
        color: rgb(244,97,92);
    }
}

/*PHONE样式*/
@media screen and (max-width: 639px){
    #app .formBox{
        width: 90%;
        background: #fff;
        margin: 30px auto 0;
        overflow: hidden;
        padding: 0 0 30px 0;
        border-radius: 10px;
    }
    #app .formBox .header-box{
        width: 88%;
        height: 80px;
        margin:30px auto 0;
        overflow: hidden;
    }
    #app .formBox .header-box img{
        width: 180px;
        height: 50px;
        margin: 15px auto;
        display: block;
    }
    #app .formBox .line{
        width: 100%;
        height: 5px;
        border-bottom: 1px solid #eee;
    }
    #app .formBox .form-box{
        width: 80%;
        margin: 30px auto 0;
    }
    #app .formBox .form-box .form-control{
        height: 40px;
        font-size: 15px;
        color: #666;
        border-radius: 8px;
    }
    #app .formBox .form-box label{
        color: #666;
        font-size: 15px;
        margin-top: 15px;
        font-weight: bold;
    }
    #app .formBox .form-box .form-control-login{
        width: 120px;
        height: 42px;
        border:none;
        outline: none;
        border-radius: 8px;
        color: #fff;
        background: #3b5ee1;
        margin:35px auto 0;
        display: block;
    }
    #app .loginresult{
        text-align: center;
        margin-top: 20px;
        font-size: 15px;
    }
    #app .formBox .form-box .links {
        width: 100%;
        margin: 20px auto 0;
        display: flex;
        justify-content: center;
    }
    #app .formBox .form-box .links .link {
        margin: 0 10px;
        font-size: 15px;
        color: #999;
        text-decoration: none;
    }
    #app .loginresult .success{
        color: rgb(0,11,172);
    }
    #app .loginresult .error{
        color: rgb(244,97,92);
    }
}

/*配置中心*/
#DelDomainModal .modal-footer button{
    margin:0 auto;
}
.add_usergroup {
    color: #3B5EE1;
    cursor: pointer;
}

/*域名检测结果*/
.domain_ok {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 10px;
    color: rgb(43, 162, 69);
    background: rgba(43, 162, 69, 0.2);
}
.domain_ban {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 10px;
    color: rgb(250, 81, 81);
    background: rgba(250, 81, 81, 0.2);
}
.domain_nocheck {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 10px;
    color: #666;
    background: #eee;
}
.tasksTips {
    font-size: 13px;
    color: #666;
    padding: 10px 0 0;
    text-align: center;
}
.tasks-list {
    font-size: 15px;
    margin-top: 20px;
}
#domainCheckTasksModal .tasks-list .switch-on{
    width: 35px;
    height: 20px;
    background: rgb(59,94,225);
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}
#domainCheckTasksModal .tasks-list .switch-on .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    right: 2px;
}
#domainCheckTasksModal .tasks-list .switch-off{
    width: 35px;
    height: 20px;
    background: #ddd;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}
#domainCheckTasksModal .tasks-list .switch-off .press{
    width: 16px;
    height: 16px;
    margin:2px 0 0 2px;
    background: #fff;
    display: block;
    border-radius: 100px;
    position: absolute;
    left: 1px;
}
#domainCheckTasksModal .tasks-list .copyURL {
    font-size: 12px;
    padding: 3px 8px;
    background: #eee;
    color: #666;
    border-radius: 10px;
    cursor: pointer;
}
#domainCheckTasksModal .noData .noDataIMG {
    display: block;
    margin: 30px auto 0;
    width: 230px;
}
#domainCheckTasksModal .noData .noDataText {
    text-align: center;
    font-size: 15px;
    color: #999;
}
.init-text {
    font-size: 18px;
    text-align: center;
}
/*自定义modal宽度*/
.modal-1000 {
    max-width: 1000px;
}

/*首页*/
#right .data-card .data-content{
    width: 97%;
    margin:0 auto;
    overflow: hidden;
    display: none;
}

/*数据、图表容器*/
#right .data-card .data-chart{
    width: 82%;
    float: left;
    display: block;
}

/*数据面板*/
#right .data-card .data-chart .data-pannel{
    width: calc(100% - 40px);
    height: 120px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    position: relative;
}

#right .data-card .data-chart .data-pannel .pre-swiper{
    width: 35px;
    height: 35px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    position: absolute;
    top: 42.5px;
    left: -17.5px;
    z-index: 1;
    border-radius: 100px;
    line-height: 35px;
    text-align: center;
    background-image: url('../../static/img/preClickButton.png');
    background-repeat: no-repeat;
    background-size: 70% 70%;
    background-position: 5px 5px;
    opacity: 0.7;
    cursor: pointer;
}

#right .data-card .data-chart .data-pannel .next-swiper{
    width: 35px;
    height: 35px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    position: absolute;
    top: 42.5px;
    right: -17.5px;
    z-index: 1;
    border-radius: 100px;
    line-height: 35px;
    text-align: center;
    background-image: url('../../static/img/preClickButton.png');
    background-repeat: no-repeat;
    background-size: 70% 70%;
    transform: rotate(180deg);
    background-position: 5px 5px;
    opacity: 0.7;
    cursor: pointer;
}

.swiper {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    height: 120px;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.swiper-slide {
    flex: 0 0 calc(98% / 4.3);
    height: 120px;
    background: #ccc;
    margin-right: 10px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 3px 8px #eee;
    overflow: hidden;
    color: #000;
    cursor: pointer;
}

/*2.3.0版本之前的样式*/
/*.swiper-slide .card-title {*/
/*    width: 80%;*/
/*    font-size: 16px;*/
/*    margin: 15px auto 0;*/
/*    font-family: "Lucida Sans Unicode", sans-serif;*/
/*}*/

/*.swiper-slide .card-num {*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    font-size: 34px;*/
/*}*/

/*.swiper-slide .ip-num {*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    font-size: 13px;*/
/*}*/

/*2.4.0版本样式*/
.swiper-slide .card-title {
    width: 80%;
    height: 55px;
    margin: 15px auto 0;
    font-family: "Lucida Sans Unicode", sans-serif;
    display: flex;
}
.swiper-slide .card-title .num-title {
    flex: 1;
    font-size: 17px;
    line-height: 55px;
}
.swiper-slide .card-title .card-num {
    flex: 1.5;
    font-size: 33px;
}

.swiper-slide .ip-num {
    width: 80%;
    margin: 0 auto;
    font-size: 14px;
    display: flex;
}
.swiper-slide .ip-num .ip-today {
    flex: 1;
}
.swiper-slide .ip-num .ip-yesterday {
    flex: 1;
}

.swiper-slide-selected {
    background: rgb(56,94,226);
    color: #fff;
}

.swiper-slide-selected .ip-num{
    color: #dee5ff;
}

.swiper-slide .ip-num .ipNum{
    margin-right: 15px;
}

.swiper-pagination {
    background: rgba(59,94,225,0.1);
    padding:2px 6px;
    border-radius: 100px;
    text-align: center;
    width: 60px;
    margin: 20px auto;
}

.swiper-pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(59,94,225,0.2);
    margin: 0 5px;
    cursor: pointer;
}

.swiper-pagination span.active {
    background: rgba(59,94,225);
}

/*图表面板*/
#right .data-card .data-chart .chart-pannel{
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
}
#right .data-card .ipDataList {
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 25px;
    margin-bottom: 100px;
}

#right .data-card .data-chart .chart-pannel .chart-pannel-title{
    font-size: 20px;
}

/*切换图表的按钮组*/
#right .data-card .data-chart .chart-pannel .chart-button{
    width: 100%;
    margin: 0 auto 30px;
}

#right .data-card .project-info{
    width: 18%;
    display: block;
    background: #fff;
    float: right;
    padding: 20px 20px;
    border-radius: 10px;
}

#right .data-card .project-info .link-card{
    width: 100%;
    height: 80px;
    float: right;
    border-bottom: 1px solid #eee;
    margin-bottom: 6px;
}

#right .data-card .project-info .link-card:hover{
    background: #eee;
    border-radius: 20px;
}

#right .data-card .project-info .link-card .link-title{
    width: 100%;
    height: 40px;
    line-height: 50px;
    font-size: 16px;
    text-indent: 15px;
    color: #666;
    font-weight: bold;
}

#right .data-card .project-info .link-card .link-desc{
    width: 100%;
    height: 40px;
    line-height: 30px;
    font-size: 15px;
    text-indent: 15px;
    color: #999;
    white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all;
}

#right .data-card .button-group{
    width: 100%;
    height: 40px;
    margin: 20px auto 10px;
}
#right .data-card .tint-btn{
    border: none;
	color: rgb(59,94,225);
    background: rgba(59,94,225,0.1);
	padding: 7px 15px;
	outline: none;
	border-radius: 10px;
	font-size: 15px;
	transition: 0.1s;
}
#right .data-card .default-btn{
    border: none;
	color: #fff;
    background: rgba(59,94,225);
	padding: 7px 15px;
	outline: none;
	border-radius: 10px;
	font-size: 15px;
	transition: 0.1s;
}

#right .data-card .chart-pannel .autofreshen{
    float: right;
}

#right .data-card .chart-pannel .autofreshen a{
    text-decoration: none;
    color: #999;
    font-size: 14px;
}

/*渠道码*/
#channel_title_h5{
    width: 100%;
    height: 40px;
    margin-bottom:0;
}
#channel_title_h5 .backChannelList{
    float: left;
    width: 100px;
    height: 40px;
    margin-left: 0;
}
#channel_title_h5 .title{
    float: left;
    width: 70%;
    height: 40px;
    line-height: 40px;
}
#channel_title_h5 .CleanAllChannelDataBtn{
    width: 15px;
    height: 40px;
}
#channel_title_h5 .CleanAllChannelDataBtn button{
    float: right;
    display: none; /*默认隐藏，加载到数据才会被动态修改为block*/
}


/*安装*/
#check_Install .table{
    width: 95%;
    margin:10px auto;
    font-size: 15px;
}
#check_Install .table tbody{
    color: #666;
}
#check_Install .form-control-login{
    padding: 10px 10px;
    height: 42px;
    border:none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: #3b5ee1;
    margin:35px auto 0;
    display: block;
}
#installBtn{
    display: none;
}
#start_Install{
    display: none;
}
#installResult{
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}
#installResult .success{
    color: rgb(0,11,172);
}
#installResult .error{
    color: rgb(244,97,92);
}
#success_Install{
    display: none;
}
#success_Install .successIcon{
    width: 120px;
    height: 120px;
    margin:50px auto 0;
}
#success_Install .successIcon img{
    width: 120px;
    height: 120px;
}
#success_Install h3{
    text-align: center;
    color: #333;
    margin: 20px 0 20px 0;
}
#success_Install .link-card{
    width: 90%;
    height: 70px;
    border-radius: 10px;
    margin:0 auto;
    background: #f8f6f6;
    margin-bottom: 15px;
    position: relative;
}
#success_Install .link-card .go{
    position: absolute;
    width: 25px;
    height: 25px;
    /*background: #ccc;*/
    top: 22.5px;
    right: 0;
    bottom: 0;
}
#success_Install .link-card a{
    text-decoration: none;
}
#success_Install .link-card .go img{
    width: 20px;
    height: 20px;
    margin:2.5px 0 0 0;
    opacity: 0.6;
}
#success_Install .link-card .title{
    width: 100%;
    height: 35px;
    text-indent: 15px;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    font-weight: bold;
}
#success_Install .link-card .desc{
    width: 100%;
    height: 35px;
    text-indent: 15px;
    font-size: 15px;
    color: #999;
    line-height: 25px;
}
#app .formBox_install{
    width: 660px;
    background: #fff;
    margin:50px auto 0;
    overflow: hidden;
    padding: 0 0 30px 0;
    border-radius: 10px;
}
#app .formBox_install .header-box{
    width: 88%;
    height: 80px;
    margin:30px auto 0;
    /*background: #ccc;*/
    overflow: hidden;
}
#app .formBox_install .header-box img{
    width: 180px;
    height: 50px;
    margin: 15px auto;
    display: block;
}
#app .formBox_install .line{
    width: 100%;
    height: 5px;
    border-bottom: 1px solid #eee;
}
#app .formBox_install .form-box{
    width: 80%;
    margin: 30px auto 0;
    /*background: #ccc;*/
}
#app .formBox_install .form-box .form-control{
    height: 40px;
    font-size: 15px;
    color: #666;
    border-radius: 8px;
}
#app .formBox_install .form-box label{
    color: #666;
    font-size: 15px;
    margin-top: 15px;
    font-weight: bold;
}
#app .formBox_install .form-box .form-control-login{
    width: 120px;
    height: 42px;
    border:none;
    outline: none;
    border-radius: 8px;
    color: #fff;
    background: #3b5ee1;
    margin:35px auto 0;
    display: block;
}
#app .loginresult{
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}
#app .formBox_install .form-box .findPass{
    text-decoration: none;
    color: #999;
    margin-top:15px;
    text-align: center;
    display: block;
    font-size: 14px;
}
#app .loginresult .success{
    color: rgb(0,11,172);
}
#app .loginresult .error{
    color: rgb(244,97,92);
}
#app .formBox_install .form-box .doubleView{
    width: 100%;
    background: #ccc;
}
#app .formBox_install .form-box .doubleView .left_input{
    width: 49%;
    float: left;
}
#app .formBox_install .form-box .doubleView .right_input{
    width: 49%;
    float: right;
}

/*短网址dwz*/
#right .data-list .text{
    width: 100%;
    height: 25px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}
#right .data-list .reqUrl{
    padding:10px 15px;
    display: inline-block;
    background: #f3f3f3;
    margin-top: 6px;
    color: #BC275B;
    border-radius: 5px;
}
#right .data-list .reqParams{
    width: 60%;
    margin-top: 6px;
}
#right .data-list .content{
    width: 60%;
    padding:10px 10px;
    background: #f3f3f3;
    margin-top: 6px;
    color: #BC275B;
    border-radius: 5px;
}
#right .data-list .sign_exampleCode{
    margin-top: 10px;
    max-width: 600px;
}
#right .data-list .copyLink{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

#right .data-list .copyLink img{
    width: 20px;
    height: 20px;
    opacity: 0.5;
    cursor: pointer;
}
#right .data-list .noSearchResult{
    text-align: center;
    margin: 30px 0;
    font-size: 15px;
    color: #999;
}
#createBatchDwzModal textarea{
    font-size: 15px;
}
#createBatchDwzModal .dwzCreateResult{
    width: 100%;
    height: auto;
    font-size: 15px;
}

/*淘宝客*/
#createZjyModal .goodIMG_url {
    border-radius: 5px;
    flex: 1;
}
#createZjyModal .upload_goodIMG_btn {
    background: #eee;
    color: #666;
    height: 36.5px;
    margin-left: 8px;
    padding: 0 10px;
    line-height: 36.5px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}
#createZjyModal .upload_goodIMG_btn input[name='file'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#EditZjyModal .goodIMG_url {
    border-radius: 5px;
    flex: 1;
}
#EditZjyModal .upload_goodIMG_btn {
    background: #eee;
    color: #666;
    height: 36.5px;
    margin-left: 8px;
    padding: 0 10px;
    line-height: 36.5px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}
#EditZjyModal .upload_goodIMG_btn input[name='file'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/*多项单页*/
#createSpaModal .input-group-append{
    height: 36.5px;
    position: relative;
}
#createSpaModal .input-group-append .input-group-text-fileselect{
    height: 36.5px;
    position: relative;
}

#createSpaModal .multi_project{
    font-size: 15px;
}

#createSpaModal .goodsPic_upload_preview .goodsPic_preview{
    width: 120px;
    margin: 20px auto;
}

#createSpaModal .goodsPic_upload_preview .goodsPic_preview img{
    width: 120px;
    cursor: pointer;
}

#createSpaModal .goodsPic_upload_preview .goodsPic_preview .upload_tips{
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    font-size: 15px;
    color: #999;
    border: 2px dashed #ccc;
    border-radius: 15px;
}

#createSpaModal .goodsPic_upload .reUpload{
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:15px auto 0;
    position: relative;
}

#createSpaModal .goodsPic_upload .reUpload input[name="file"]{
    width: 80px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#createSpaModal .goodsPic_upload .reUpload .text{
    color: #666;
    font-size: 14px;
}

#createSpaModal .goodsPic_upload .selectFromSCK{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #eee;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

#createSpaModal .paiban{
    color: rgb(59,94,225);
    float: right;
    margin-left: 10px;
    cursor: pointer;
}

#editSpaModal .multi_project{
    height: 80px;
    font-size: 15px;
}

#editSpaModal .goodsPic_upload_preview .goodsPic_preview{
    width: 120px;
    margin: 20px auto;
}

#editSpaModal .goodsPic_upload_preview .goodsPic_preview img{
    width: 120px;
    cursor: pointer;
}

#editSpaModal .goodsPic_upload_preview .goodsPic_preview .upload_tips{
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    font-size: 15px;
    color: #999;
    border: 2px dashed #ccc;
    border-radius: 15px;
}

#editSpaModal .goodsPic_upload .reUpload{
    width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:15px auto 0;
    position: relative;
}

#editSpaModal .goodsPic_upload .reUpload input[name="file"]{
    width: 80px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#editSpaModal .goodsPic_upload .reUpload .text{
    color: #666;
    font-size: 14px;
}

#editSpaModal .goodsPic_upload .selectFromSCK{
    width: 100px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #eee;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin:10px auto 0;
}

#editSpaModal .paiban{
    color: rgb(59,94,225);
    float: right;
    margin-left: 10px;
    cursor: pointer;
}

/*抖音跳微信*/
#createJwModal .input-group-append{
    height: 36.5px;
    position: relative;
}
#createJwModal .input-group-append .input-group-text-fileselect{
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
#createJwModal .input-group-append{
    height: 36.5px;
    position: relative;
}
#createJwModal .input-group-append .input-group-text-fileselect{
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#editJwModal .input-group-append{
    height: 36.5px;
    position: relative;
}
#editJwModal .input-group-append .input-group-text-fileselect{
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
#editJwModal .input-group-append{
    height: 36.5px;
    position: relative;
}
#editJwModal .input-group-append .input-group-text-fileselect{
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

/*分享卡片*/
#createShareCardModal .select_file{
    position: relative;
}

#createShareCardModal input[name="file"]{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}

#createShareCardModal .upload-shareCard-img{
    width: 100%;
    height: 40px;
    margin: 0 auto;
}

#createShareCardModal .upload-shareCard-img .input-view{
    width: 60%;
    height: 40px;
    float: left;
}

#createShareCardModal .upload-shareCard-img .button-view{
    width: 39%;
    height: 40px;
    float: right;
    display: flex;
}

#createShareCardModal .upload-shareCard-img .button-view .select_file{
    flex: 1;
    height: 38px;
    display: block;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    box-sizing: border-box;
    color: #333;
    background: #eee;
    cursor: pointer;
    border-radius: 8px;
}

#createShareCardModal .upload-shareCard-img .button-view .button_local{
    flex: 1.5;
    display: block;
    margin-right:6px;
}

#createShareCardModal .upload-shareCard-img .button-view .button_sucaiku{
    flex: 2;
}

#editShareCardModal .select_file{
    position: relative;
}

#editShareCardModal input[name="file"]{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
}

#editShareCardModal .upload-shareCard-img{
    width: 100%;
    height: 40px;
    margin: 0 auto;
}

#editShareCardModal .upload-shareCard-img .input-view{
    width: 60%;
    height: 40px;
    float: left;
}

#editShareCardModal .upload-shareCard-img .button-view{
    width: 39%;
    height: 40px;
    float: right;
    display: flex;
}

#editShareCardModal .upload-shareCard-img .button-view .select_file{
    flex: 1;
    height: 38px;
    display: block;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    box-sizing: border-box;
    color: #333;
    background: #eee;
    cursor: pointer;
    border-radius: 8px;
}

#editShareCardModal .upload-shareCard-img .button-view .button_local{
    flex: 1.5;
    display: block;
    margin-right:6px;
}

#editShareCardModal .upload-shareCard-img .button-view .button_sucaiku{
    flex: 2;
}

/*分享卡片样式CSS*/
/*2024-07-27新增*/
.shareCard_preview {
    width: 230px;
    background: #f7f7f7;
    margin: 0 auto;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.2s;
}
.shareCard_preview a {
    text-decoration: none;
}
.shareCard_preview:hover {
    box-shadow: 0 0 5px #ddd;
    transition: 0.2s;
}
.shareCard_preview .shareCard_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    color: #333;
    line-height: 18px;
    margin-bottom: 5px;
}
.shareCard_preview .shareCard_desc_img {
    display: flex;
}
.shareCard_preview .shareCard_desc_img .shareCard_desc {
    flex: 1;
    color: #999;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 16px;
}
.shareCard_preview .shareCard_desc_img .shareCard_img {
    width: 43px;
    margin-left: 10px;
}
.shareCard_preview .shareCard_desc_img .shareCard_img img {
    width: 43px;
}
.test-model {
    background: rgba(68, 181, 73, 0.1);
    font-size: 13px;
    padding: 5px 10px;
    color: rgb(68, 181, 73);
    border-radius: 100px;
}
.renzheng-model {
    background: rgba(253, 119, 65, 0.1);
    font-size: 13px;
    padding: 5px 10px;
    color: rgb(253, 119, 65);
    border-radius: 100px;
}
.safari-model {
    background: rgba(1, 97, 220, 0.1);
    font-size: 13px;
    padding: 5px 10px;
    color: rgb(1, 97, 220);
    border-radius: 100px;
}
.chakanShareCardQrcode {
    cursor: pointer;
}
.chakanShareCardQrcode:hover {
    cursor: pointer;
    color: rgb(59,94,225);;
}
.editShareCardSPAN {
    cursor: pointer;
    font-size: 14px;
    color: #666;
    display: block;
    padding: 3px 0;
    border-radius: 10px;
    background: #eee;
    text-align: center;
    margin-bottom: 10px;
    transition: 0.2s;
}
.delShareCardSPAN {
    cursor: pointer;
    font-size: 14px;
    color: #666;
    display: block;
    padding: 3px 0;
    border-radius: 10px;
    background: #eee;
    text-align: center;
    transition: 0.2s;
}
.editShareCardSPAN:hover,
.delShareCardSPAN:hover {
    background: #ddd;
    transition: 0.2s;
}


/*素材管理*/
.data-list {
  width: 100%;
}

.grid-sucai {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sucai-item {
  width: calc(10% - 10px);
  margin: 5px;
  padding: 10px;
  border: 1px solid #eee;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
}

.sucai-item:hover {
  cursor: pointer;
}

.sucai-thumb img {
  max-width: 100%;
  height: auto;
}

.sucai-filename {
  margin-top: 5px;
  color: #333;
  font-size: 15px;
}

.data-list .grid-sucai .sucai-item-selected{
    border: 1px solid #3B5EE1;
    box-sizing: border-box;
}

/*上传素材*/
#right .data-card .button-view .upimg{
    position: relative;
}
input[type=file],
input[type=file]::-webkit-file-upload-button {
    cursor: pointer; 
}
#right .data-card .button-view .file_input{
    width: 80px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
}

#right .data-card .button-view .pldel{
    float:right;
    display:none;
}

#sucaiDragUploadMask{
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(242,243,243,0.86);
}

#sucaiDragUploadMask .sucai-drag-upload-box{
    width: 360px;
    padding: 34px 28px;
    border: 2px dashed rgba(59,94,225,0.55);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(40,50,80,0.12);
    text-align: center;
}

#sucaiDragUploadMask .sucai-drag-upload-icon{
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 100px;
    background-color: rgba(59,94,225,0.1);
    background-image: url('../../static/img/uploadIcon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 58%;
}

#sucaiDragUploadMask .sucai-drag-upload-title{
    color: #3b5ee1;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
}

#sucaiDragUploadMask .sucai-drag-upload-text{
    margin-top: 8px;
    color: #999;
    font-size: 14px;
    line-height: 22px;
}

#right .data-list .grid-sucai .sucai-item .sucai-thumb{
    width: 100%;
    height: 150px;
}

#right .data-list .grid-sucai .sucai-item .sucai-filename{
    width: 100%;
    height: 30px;
    line-height: 25px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

#right .data-list .grid-sucai .sucai-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#delSuCaiModel .modal-footer button{
    margin: 10px auto;
}

/*素材管理-分页*/
#right .data-list .fy{
    width: 100%;
    height: 40px;
}
#right .data-list .fy ul li{
	float: left;
	margin-right: 8px;
	font-size: 14px;
	list-style: none;
	border-radius: 5px;
	cursor: pointer;
	display: block;
}
#right .data-list .fy ul li button{
	width: 28px;
	height: 28px;
	display: block;
	border:none;
	outline: none;
	background: rgba(120,148,225,0.1);
	color: #3b5ee1;
	border-radius: 5px;
}
#right .data-list .fy ul li button img{
    width: 18px;
    height: 18px;
    margin:5px 5px;
    opacity: 0.7;
}

/*通知渠道*/
#right .data-list .channel-title{
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
    color: #3B5EE1;
}

#right .data-list .input-text{
    font-size: 15px;
    color: #999;
    margin-bottom: 5px;
    margin-top: 12px;
    display: block;
}

#right .data-list .channel-form{
    width: 500px;
}

#right .data-list .channel-hr{
    width: 500px;
    height: 1px;
    color: #eee;
    margin-top: 30px;
}

#right .data-list .channel-doc{
    text-decoration: underline;
    font-size: 13px;
    color: #999;
    display: block;
    margin-top: 15px;
}

#right .searchDwzForm{
    width: 300px;
    float: right;
}

#right .searchDwzForm input[name="dwz_keyword"]{
    width: 230px;
    float: left;
}
#right .searchDwzForm .checkDwz{
    width: 60px;
    float: right;
}

/*用户组*/
#usergroupModal .usergroup-title {
    font-size: 15px;
    color: #666;
    font-weight: bold;
    display: block;
    margin: 20px auto 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}
.usergroup-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
.usergroup {
    background-color: #eee;
    color: #666;
    border-radius: 100px;
    padding: 4px 6px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.usergroup-name {
    font-size: 15px;
    margin: 0 3px;
}
.usergroup-delete {
    cursor: pointer;
    font-size: 8px;
    margin-right: 3px;
    color: #999;
}
.usergroup-result {
    text-align: center;
    font-size: 15px;
    color: #999;
    width: 100%;
    margin-top: 20px;
}

/*插件中心*/
#right .data-list .plugin-card {
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

#right .data-list .plugin-card .plugin-logo {
    width: 80px;
    height: 80px;
}
#right .data-list .plugin-card .plugin-logo img {
    width: 45px;
    height: 45px;
    margin: 17.5px auto;
    border-radius: 100px;
    display: block;
}
#right .data-list .plugin-card .plugin-info {
    flex: 2;
}
#right .data-list .plugin-card .plugin-info .plugin-name {
   width: 100%;
   height: 45px;
   line-height: 55px;
   font-size: 18px;
   color: #333;
}
#right .data-list .plugin-card .plugin-info .plugin-desc {
   width: 100%;
   height: 35px;
   line-height: 20px;
   font-size: 15px;
   color: #999;
}
#right .data-list .plugin-card .plugin-btn {
    width: 230px;
}
#right .data-list .plugin-card .plugin-btn .btn-conf{
    width: 90px;
    height: 35px;
    border-radius: 10px;
    float: right;
    background: #3B5EE1;
    margin: 22.5px 15px 0 0;
    line-height: 35px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
#right .data-list .plugin-card .plugin-btn .install-uninstall {
    color: rgb(59,94,225);
    background: rgba(59,94,225,0.1);
}

/*插件卡片新样式*/
#right .data-list .plugin-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 25px;
}

#right .data-list .plugin_card {
    width: 180px;
    height: 220px;
    border-radius: 15px;
    position: relative;
    background: #f6f6f6;
}

#right .data-list .plugin_card .plugin_logo {
    width: 50px;
    height: 50px;
    margin: 30px auto 0;
}
#right .data-list .plugin_card .plugin_logo img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
}

#right .data-list .plugin_card .plugin_name {
    width: 75%;
    display: block;
    text-align: center;
    margin: 10px auto 0;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

#right .data-list .plugin_card .plugin_desc {
    width: 80%;
    display: block;
    text-align: center;
    margin: 10px auto 0;
    font-size: 14px;
    color: #999;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

#right .data-list .plugin_card .plugin_btn {
    width: 80%;
    margin: 0 auto;
    display: flex;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}
#right .data-list .plugin_card .plugin_btn .action_btn {
    flex: 1;
    font-size: 14px;
    text-align: center;
    padding: 3px 0;
    border-radius: 6px;
    background: #3B5EE1;
    color: #fff;
    cursor: pointer;
}
#right .data-list .plugin_card .plugin_btn .action_uninstall {
    margin-right: 10px;
    color: rgb(59,94,225);
    background: rgba(59,94,225,0.1);
}


/*卡密分发*/
#right .data-list .sj-span {
    color: rgb(59,94,225);
    font-size: 15px;
}
#right .data-list .xj-span {
    color: rgb(244,97,92);
}

#xcxConfigModal .kami_kfQrcodeUpload {
    width: 100%;
    height: 37px;
    color: rgb(59,94,225);
    background: rgba(59,94,225,0.1);
    display: block;
    position: relative;
    border-radius: 10px;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
}
#xcxConfigModal .fileSelect {
    width: 100%;
    height: 37px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#addKamiModal .kami_TXTUpload {
    width: 100%;
    height: 37px;
    color: rgb(59,94,225);
    background: rgba(59,94,225,0.1);
    display: block;
    position: relative;
    border-radius: 10px;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
}
#addKamiModal .fileSelect {
    width: 100%;
    height: 37px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
#addKamiModal .addKnow {
    font-size: 14px;
    color: #999;
}
#addKamiModal .addKnow a {
    font-size: 14px;
    color: rgb(59,94,225);
    text-decoration: none;
}

/* Codex frontend stabilization: global admin layout and responsive fixes */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    min-width: 0;
    color: #2f3440;
    background: #f4f6f8;
}
#app {
    min-height: 100vh;
}
#app .left {
    z-index: 20;
    overflow-y: auto;
    overflow-x: hidden;
}
#app .left .dhview ul {
    margin: 0;
    padding: 0;
}
#app .left .dhview a,
#app .left .dhview ul li {
    max-width: 100%;
}
#app .left .dhview ul li {
    display: flex;
    align-items: center;
    line-height: normal;
    text-indent: 0;
}
.nav-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#right {
    min-width: 0;
    padding: 1px 30px 40px 0;
}
#right h3,
#right h4 {
    line-height: 1.35;
    margin-bottom: 0;
}
#right .data-card {
    min-height: 160px;
    overflow: visible;
}
#right .data-card .button-view {
    padding-top: 2px;
}
#right .data-card .button-view .flex-button-view {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
#right .data-card .button-view .button-daohang,
#right .data-card .button-view .button-gongneng {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
#right .data-card .button-view .button-gongneng {
    justify-content: flex-end;
}
#right .data-card .button-view .button-gongneng .tint-btn,
#right .data-card .button-view button[style*="margin-left"] {
    float: none;
    margin-left: 0 !important;
}
#app .default-btn,
#app .tint-btn,
#app .red-btn,
#right .data-list .plugin_card .plugin_btn .action_btn {
    min-height: 36px;
    line-height: 1.35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
#app .default-btn,
#app .tint-btn {
    padding: 8px 15px;
}
#app .default-btn:disabled,
#app .tint-btn:disabled,
#app .red-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
#app .back-lastpage {
    flex: 0 0 38px;
    float: none;
}
#right .data-card .data-list {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}
#right .data-card .data-list .table {
    width: 100%;
    min-width: 760px;
    margin-bottom: 0;
}
#right .data-list th,
#right .data-list td {
    vertical-align: middle !important;
    white-space: nowrap;
}
#right .data-list td {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}
#right .data-list .dropdown,
#right .data-list .dropdown-td,
#right .data-list td:last-child {
    overflow: visible;
    text-overflow: clip;
}
#right .data-list .cz-click,
#app .table .caozuo,
#app .dropbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    line-height: 1.2;
    margin: 2px;
}
#right .fenye {
    height: auto;
    min-height: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
}
#right .fenye ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}
#right .fenye ul li {
    float: none;
    margin-right: 0;
}
#app .modal-dialog {
    width: auto;
    max-width: min(650px, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
}
#app .modal-dialog.modal-1000 {
    max-width: min(1000px, calc(100vw - 24px));
}
#app .modal-content,
#app .modal-content[style*="width:650px"] {
    width: 100% !important;
    max-width: 100%;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}
#app .modal-header,
#app .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
}
#app .modal-body {
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    padding: 16px 18px;
}
#app .modal-body .text {
    height: auto;
    min-height: 20px;
    line-height: 1.35;
}
#app input,
#app select,
#app textarea,
#app .form-control {
    max-width: 100%;
}
#app .form-control {
    min-height: 38px;
    border-radius: 8px;
}
#app .modal-footer .footer-btn {
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#app .modal-footer .footer-btn .faqnav,
#app .modal-footer .footer-btn .btnnav {
    float: none;
    height: auto;
}
#app .modal-footer .footer-btn .faqnav {
    flex: 0 0 50px;
}
#app .modal-footer .footer-btn .btnnav {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
#app .modal-footer .footer-btn .default-btn {
    float: none;
}
#createShareCardModal .upload-shareCard-img,
#editShareCardModal .upload-shareCard-img {
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: stretch;
    gap: 8px;
}
#createShareCardModal .upload-shareCard-img .input-view,
#editShareCardModal .upload-shareCard-img .input-view {
    min-width: 0;
}
#createShareCardModal .upload-shareCard-img .button-view,
#editShareCardModal .upload-shareCard-img .button-view {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}
#app .data-card .loading {
    margin: 28px auto;
    padding: 24px 12px;
}
#app .data-card .loading .noData {
    max-width: 220px;
    width: 60%;
    height: auto;
}
.no_limit {
    min-height: 220px;
    height: auto;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}
#notification {
    z-index: 1080;
    pointer-events: none;
}
#notification-text {
    max-width: calc(100vw - 32px);
    width: auto !important;
    word-break: break-word;
}

@media screen and (max-width: 1200px) {
    #right {
        margin-left: 292px;
        padding-right: 20px;
    }
    #right .data-card {
        width: calc(100% - 20px);
    }
    #right .data-card .data-chart,
    #right .data-card .project-info {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 900px) {
    #app {
        padding-top: 74px;
    }
    #app .left {
        width: 100%;
        height: auto;
        min-height: 64px;
        top: 0;
        bottom: auto;
        box-shadow: 0 2px 10px rgba(20, 31, 51, 0.08);
    }
    #app .left .dhview {
        width: 100%;
        margin: 0;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    #app .left .dhview .logo {
        flex: 0 0 132px;
        width: 132px;
        height: 46px;
        margin: 0;
        background-size: contain;
    }
    #app .left .dhview ul {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 2px;
    }
    #app .left .dhview ul a {
        flex: 0 0 auto;
    }
    #app .left .dhview ul li {
        width: auto;
        min-width: 42px;
        height: 40px;
        padding: 0 10px;
        margin-bottom: 0;
        border-radius: 8px;
        font-size: 14px;
    }
    #app .left .dhview .account {
        position: static;
        flex: 0 0 auto;
        width: auto;
        max-width: 150px;
        margin: 0;
        padding: 6px 10px;
        font-size: 13px;
    }
    #right {
        margin-left: 0;
        padding: 0 14px 28px;
    }
    #right h3,
    #right h4 {
        margin-top: 18px;
        font-size: 22px;
    }
    #right .data-card {
        width: 100%;
        margin-top: 12px;
        border-radius: 10px;
    }
    #right .data-card .button-view .button-daohang,
    #right .data-card .button-view .button-gongneng {
        flex: 1 1 260px;
    }
    #right .data-card .button-view .button-gongneng {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 639px) {
    body {
        background: #f5f7fa;
    }
    #app {
        padding-top: 118px;
    }
    #app .left .dhview {
        flex-wrap: wrap;
        gap: 8px;
    }
    #app .left .dhview .logo {
        flex-basis: 118px;
        width: 118px;
        height: 38px;
    }
    #app .left .dhview .account {
        margin-left: auto;
        max-width: calc(100% - 130px);
    }
    #app .left .dhview ul {
        order: 3;
        flex-basis: 100%;
    }
    #app .left .dhview ul li {
        height: 36px;
        padding: 0 9px;
        font-size: 13px;
    }
    .icon {
        width: 18px;
        height: 18px;
        margin: 0 5px 0 0;
        flex: 0 0 18px;
    }
    #right {
        padding: 0 10px 24px;
    }
    #right h3,
    #right h4 {
        font-size: 20px;
        margin-top: 14px;
    }
    #right .data-card {
        padding: 14px 0;
        box-shadow: 0 2px 8px rgba(20, 31, 51, 0.06);
    }
    #right .data-card .button-view,
    #right .data-card .data-list,
    #right .fenye {
        width: 94%;
    }
    #right .data-card .button-view .flex-button-view,
    #right .data-card .button-view .button-daohang,
    #right .data-card .button-view .button-gongneng {
        display: flex;
        width: 100%;
    }
    #right .data-card .button-view .button-daohang,
    #right .data-card .button-view .button-gongneng {
        flex-basis: 100%;
    }
    #app .default-btn,
    #app .tint-btn,
    #app .red-btn {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 14px;
    }
    #right .data-card .data-list .table {
        min-width: 680px;
        font-size: 14px;
    }
    #right .data-list th,
    #right .data-list td {
        padding: 0.55rem;
    }
    #app .modal-dialog {
        max-width: calc(100vw - 16px);
        margin: 8px auto;
    }
    #app .modal-body {
        max-height: calc(100vh - 140px);
        padding: 14px;
    }
    #app .modal-header,
    #app .modal-footer {
        padding: 12px 14px;
    }
    #app .modal-title {
        font-size: 18px;
        line-height: 1.35;
    }
    #app .modal-footer .footer-btn {
        align-items: stretch;
    }
    #app .modal-footer .footer-btn .btnnav {
        justify-content: flex-end;
    }
    #createShareCardModal .upload-shareCard-img,
    #editShareCardModal .upload-shareCard-img {
        flex-direction: column;
    }
    #createShareCardModal .upload-shareCard-img .button-view,
    #editShareCardModal .upload-shareCard-img .button-view {
        width: 100%;
    }
    #createShareCardModal .upload-shareCard-img .button-view .select_file,
    #editShareCardModal .upload-shareCard-img .button-view .select_file {
        flex: 1;
        min-width: 0;
    }
#right .data-list .plugin_card {
        width: 100%;
        min-height: 190px;
        margin-right: 0;
    }
}

/* shareCard page polish */
#app {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255,255,255,.65) 0, rgba(245,247,251,0) 260px),
        var(--pj-bg);
}

#app .left {
    width: 260px;
    border-right: 1px solid rgba(226,232,240,.8);
    box-shadow: 8px 0 30px rgba(15,23,42,.04);
}

#app .left .dhview {
    width: 212px;
}

#app .left .dhview .logo {
    width: 212px;
    margin-bottom: 24px;
}

#app .left .dhview ul {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--pj-line);
}

#app .left .dhview ul li {
    width: 212px;
    height: 42px;
    line-height: 42px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: var(--pj-muted);
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

#app .left .dhview ul li:hover {
    background: #f8fafc;
    color: var(--pj-primary);
    transform: translateX(2px);
}

#app .left .dhview .selected {
    color: var(--pj-primary);
    background: linear-gradient(90deg, rgba(37,99,235,.12), rgba(20,184,166,.09));
    box-shadow: inset 3px 0 0 var(--pj-primary);
}

#app .left .account {
    width: 212px;
    background: #f8fafc;
    border: 1px solid var(--pj-line);
    border-radius: 12px;
    color: var(--pj-muted);
}

#right {
    min-height: 100vh;
    margin-left: 300px;
    margin-bottom: 0;
    padding: 34px 34px 60px 0;
}

#right h3 {
    position: relative;
    margin: 0 0 16px;
    padding-left: 14px;
    color: var(--pj-ink);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

#right h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 24px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--pj-primary), var(--pj-accent));
}

#right .data-card {
    width: 100%;
    max-width: 1440px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--pj-card);
    border: 1px solid rgba(226,232,240,.88);
    border-radius: 14px;
    box-shadow: var(--pj-shadow);
}

#right .data-card .button-view {
    width: 100%;
    margin: 0;
    padding: 20px 24px;
    border-bottom: 1px solid var(--pj-line);
    background: linear-gradient(180deg, #fff, #fbfdff);
}

#right .data-card .button-view .flex-button-view {
    display: flex;
    align-items: center;
    gap: 16px;
}

#right .data-card .button-view .button-daohang,
#right .data-card .button-view .button-gongneng {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

#right .data-card .button-view .button-daohang {
    flex: 1;
}

#right .data-card .button-view .button-gongneng {
    flex: 1.6;
    justify-content: flex-end;
}

#right .data-card .button-view .button-gongneng .tint-btn,
#right .data-card .button-view .button-daohang .tint-btn {
    float: none;
    margin-left: 0 !important;
}

#app .default-btn,
#app .tint-btn,
#app .red-btn {
    min-height: 38px;
    border-radius: 9px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

#app .default-btn {
    background: linear-gradient(135deg, var(--pj-primary), #315bea);
    box-shadow: 0 8px 18px rgba(37,99,235,.18);
}

#app .default-btn:hover {
    background: linear-gradient(135deg, var(--pj-primary-dark), #2648d7);
    box-shadow: 0 10px 22px rgba(37,99,235,.24);
    transform: translateY(-1px);
}

#app .tint-btn {
    color: var(--pj-primary);
    background: #eef4ff;
    border: 1px solid #dbe8ff;
}

#app .tint-btn:hover {
    color: var(--pj-primary-dark);
    background: #e4edff;
    border-color: #c9dcff;
    transform: translateY(-1px);
}

#app .red-btn {
    background: #ef4444;
    box-shadow: 0 8px 18px rgba(239,68,68,.18);
}

#right .data-card .shareCard-search {
    width: auto;
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    margin: 0 !important;
    padding: 18px 24px;
    border-bottom: 1px solid var(--pj-line);
    background: #fff;
}

#right .data-card .shareCard-search input {
    flex: 1;
    min-width: 220px;
    height: 40px;
    margin-bottom: 0;
    border: 1px solid #d7e0ec;
    border-radius: 9px;
    color: var(--pj-text);
    background: #fff;
    box-shadow: none;
}

#right .data-card .shareCard-search input:focus {
    border-color: rgba(37,99,235,.55);
    box-shadow: 0 0 0 4px rgba(37,99,235,.09);
}

#right .data-card .shareCard-search button {
    width: auto !important;
    min-width: 78px;
}

#right .data-card .data-list {
    width: 100%;
    margin: 0;
    overflow-x: auto;
    font-size: 14px;
}

#right .data-card .data-list .table {
    min-width: 980px;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

#right .data-list thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 14px 12px;
    color: var(--pj-muted);
    background: #f8fafc;
    border-top: 0;
    border-bottom: 1px solid var(--pj-line);
    font-size: 13px;
    font-weight: 700;
}

#right .data-list tbody td {
    padding: 16px 12px;
    color: var(--pj-text);
    border-top: 0;
    border-bottom: 1px solid #edf2f7;
}

#right .data-list tbody tr {
    transition: background .16s ease;
}

#right .data-list tbody tr:hover {
    background: #fbfdff;
}

#right .data-list tbody tr.shareCardBatchRow {
    cursor: pointer;
}

#right .data-list tbody tr.shareCardBatchRowSelected,
#right .data-list tbody tr.shareCardBatchRowSelected:hover {
    background: #dbeafe;
}

#right .data-list tbody tr.shareCardBatchRowSelected td {
    color: #0f172a;
    border-bottom-color: #bfdbfe;
}

#right .data-list .shareCardBatchCheckbox,
#right .data-list #shareCardBatchCheckAll {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--pj-primary);
}

#right .data-list .shareCardBatchSelectCell {
    min-width: 78px;
}

#right .data-list .shareCardBatchSelect {
    align-items: center;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    color: var(--pj-primary);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 6px;
    line-height: 28px;
    margin: 0;
    min-height: 30px;
    padding: 0 9px;
    user-select: none;
}

#right .data-list .shareCardBatchRowSelected .shareCardBatchSelect {
    background: var(--pj-primary);
    border-color: var(--pj-primary);
    color: #fff;
}

#right .data-list tbody tr:last-child td {
    border-bottom: 0;
}

#right .data-list td:first-child,
#right .data-list th:first-child {
    padding-left: 24px;
}

#right .data-list td:last-child,
#right .data-list th:last-child {
    padding-right: 24px;
}

#right .data-list .chakanShareCardQrcode,
#right .data-list td span[title="点击修改编号"] {
    color: var(--pj-primary) !important;
    font-weight: 600;
    text-decoration: none !important;
}

.shareCard_preview {
    width: 260px;
    margin: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--pj-line);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.shareCard_preview:hover {
    border-color: rgba(37,99,235,.32);
    box-shadow: 0 12px 26px rgba(15,23,42,.09);
}

.shareCard_preview .shareCard_title {
    color: var(--pj-ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 8px;
}

.shareCard_preview .shareCard_desc_img {
    align-items: flex-start;
    gap: 10px;
}

.shareCard_preview .shareCard_desc_img .shareCard_desc {
    color: var(--pj-muted);
    line-height: 18px;
}

.shareCard_preview .shareCard_desc_img .shareCard_img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    margin-left: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #f1f5f9;
}

.shareCard_preview .shareCard_desc_img .shareCard_img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.test-model,
.renzheng-model,
.safari-model {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.test-model {
    background: rgba(20,184,166,.12);
    color: #0f766e;
}

.renzheng-model {
    background: rgba(245,158,11,.14);
    color: #b45309;
}

.safari-model {
    background: rgba(37,99,235,.11);
    color: var(--pj-primary);
}

.editShareCardSPAN,
.delShareCardSPAN {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 28px;
    margin: 0 0 0 8px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #f1f5f9;
    color: var(--pj-text);
}

.editShareCardSPAN:hover {
    background: #e8f0ff;
    color: var(--pj-primary);
}

.delShareCardSPAN:hover {
    background: #fee2e2;
    color: #dc2626;
}

#right .fenye {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 16px 24px 22px;
    border-top: 1px solid var(--pj-line);
    background: #fff;
}

#right .fenye ul {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 0;
}

#right .fenye ul li {
    float: none;
    margin-right: 0;
}

#right .fenye ul li button {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #eef4ff;
    border: 1px solid #dbe8ff;
}

#app .data-card .loading {
    min-height: 220px;
    margin: 0;
    padding: 48px 24px;
    border-top: 1px solid var(--pj-line);
    color: var(--pj-muted);
}

#app .modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,23,42,.22);
}

#app .modal-content[style] {
    width: auto !important;
}

#app .modal-dialog {
    max-width: 680px;
}

#app .modal-lg {
    max-width: 980px;
}

#app .modal-header {
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--pj-line);
    background: #fbfdff;
}

#app .modal-title {
    color: var(--pj-ink);
    font-size: 19px;
    font-weight: 700;
}

#app .modal-body {
    padding: 20px 22px;
}

#app .modal-body .text {
    height: auto;
    margin: 16px 0 7px;
    color: var(--pj-muted);
    font-size: 13px;
    font-weight: 700;
}

#app .modal-body .form-control {
    min-height: 40px;
    margin-bottom: 0;
    border: 1px solid #d7e0ec;
    border-radius: 9px;
    color: var(--pj-text);
    box-shadow: none;
}

#app .modal-body .form-control:focus {
    border-color: rgba(37,99,235,.55);
    box-shadow: 0 0 0 4px rgba(37,99,235,.09);
}

#createShareCardModal .upload-shareCard-img,
#editShareCardModal .upload-shareCard-img {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

#createShareCardModal .upload-shareCard-img .input-view,
#editShareCardModal .upload-shareCard-img .input-view {
    flex: 1;
    width: auto;
    height: auto;
    float: none;
}

#createShareCardModal .upload-shareCard-img .button-view,
#editShareCardModal .upload-shareCard-img .button-view {
    width: auto;
    height: auto;
    float: none;
    gap: 8px;
}

#createShareCardModal .upload-shareCard-img .button-view .select_file,
#editShareCardModal .upload-shareCard-img .button-view .select_file {
    flex: none;
    min-width: 96px;
    height: 38px;
    line-height: 38px;
    margin-right: 0;
    border: 1px solid #dbe8ff;
    background: #eef4ff;
    color: var(--pj-primary);
    font-weight: 600;
}

#app .modal-footer {
    padding: 16px 22px 20px;
    border-top: 1px solid var(--pj-line);
    background: #fff;
}

#app .modal-footer .footer-btn {
    display: flex;
    align-items: center;
    height: auto;
}

#app .modal-footer .footer-btn .faqnav {
    width: 42px;
    height: 40px;
}

#app .modal-footer .footer-btn .btnnav {
    flex: 1;
    width: auto;
    float: none;
    display: flex;
    justify-content: flex-end;
}

#app .faq {
    margin-top: 8px;
    background: #e8f0ff;
    color: var(--pj-primary);
}

#app .faq a {
    color: var(--pj-primary);
}

#ShareCardModal .modal-body .box .longUrl {
    background: #f8fafc;
    border: 1px solid var(--pj-line);
    border-radius: 10px;
}

#ShareCardModal .modal-body .box .Qrcode {
    padding: 12px;
    border: 1px solid var(--pj-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

@media screen and (max-width: 1180px) {
    #right {
        margin-left: 284px;
        padding-right: 22px;
    }

    #right .data-card .button-view .flex-button-view {
        align-items: stretch;
        flex-direction: column;
    }

    #right .data-card .button-view .button-daohang,
    #right .data-card .button-view .button-gongneng {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 900px) {
    #app .left {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--pj-line);
    }

    #right {
        margin-left: 0;
        padding: 14px 12px 32px;
    }

    #right h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    #right .data-card {
        border-radius: 12px;
    }

    #right .data-card .button-view,
    #right .data-card .shareCard-search,
    #right .fenye {
        padding-left: 14px;
        padding-right: 14px;
    }

    #right .data-card .shareCard-search {
        flex-wrap: wrap;
    }

    #right .data-card .shareCard-search input {
        flex-basis: 100%;
        min-width: 0;
    }

    #right .data-card .shareCard-search button {
        flex: 1;
    }

    .shareCard_preview {
        width: 240px;
    }

    #app .modal-dialog {
        max-width: calc(100vw - 16px);
    }

    #createShareCardModal .upload-shareCard-img,
    #editShareCardModal .upload-shareCard-img {
        flex-direction: column;
        align-items: stretch;
    }

    #createShareCardModal .upload-shareCard-img .button-view,
    #editShareCardModal .upload-shareCard-img .button-view {
        width: 100%;
    }

    #createShareCardModal .upload-shareCard-img .button-view .select_file,
    #editShareCardModal .upload-shareCard-img .button-view .select_file {
        flex: 1;
        min-width: 0;
    }
}

/* Global infinite pagination */
.ylb-page-size-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--pj-line, #e2e8f0);
    background: #fff;
    color: var(--pj-muted, #64748b);
    font-size: 14px;
}

.ylb-page-size-control input {
    width: 76px;
    height: 34px;
    margin-bottom: 0 !important;
    padding: 0 10px;
    border: 1px solid #d7e0ec;
    border-radius: 8px;
    color: var(--pj-text, #334155);
    text-align: center;
    box-shadow: none;
}

.ylb-page-size-control input:focus {
    border-color: rgba(37,99,235,.55);
    box-shadow: 0 0 0 4px rgba(37,99,235,.09);
}

#right .fenye.ylb-infinite-fenye {
    display: block !important;
    height: auto;
    min-height: 46px;
    padding: 14px 24px 20px;
    text-align: center;
}

.ylb-infinite-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid #dbe8ff;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--pj-primary, #2563eb);
    font-size: 13px;
    font-weight: 600;
}

.ylb-infinite-status.is-done {
    border-color: var(--pj-line, #e2e8f0);
    background: #f8fafc;
    color: var(--pj-muted, #64748b);
}

@media screen and (max-width: 767px) {
    .ylb-page-size-control {
        justify-content: flex-start;
        padding: 12px 14px;
    }

    #right .fenye.ylb-infinite-fenye {
        padding: 12px 14px 16px;
    }
}

@media screen and (max-width: 900px) {
    #app {
        padding-top: 118px;
    }

    #app .left {
        position: fixed;
        top: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--pj-line);
        overflow: hidden;
    }

    #app .left .dhview {
        width: 100%;
        margin: 0;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    #app .left .dhview .logo {
        flex: 0 0 118px;
        width: 118px;
        height: 38px;
        margin: 0;
        background-size: contain;
    }

    #app .left .account {
        position: static;
        flex: 0 1 auto;
        width: auto;
        max-width: calc(100% - 130px);
        margin: 0 0 0 auto;
        padding: 6px 10px;
        font-size: 13px;
    }

    #app .left .dhview ul {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0;
        padding: 0 0 4px;
        border-bottom: 0;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    #app .left .dhview ul a {
        flex: 0 0 auto;
    }

    #app .left .dhview ul li {
        width: auto;
        min-width: 42px;
        height: 36px;
        line-height: normal;
        margin: 0;
        padding: 0 9px;
        display: flex;
        align-items: center;
        border-radius: 8px;
        font-size: 13px;
    }

    #app .left .dhview ul li:hover {
        transform: none;
    }

    .icon {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        margin: 0 5px 0 0;
    }

    #right {
        margin-left: 0;
        padding: 14px 12px 32px;
    }
}
