/*公共背景颜色*/
*{padding: 0px;margin: 0px;font-family: "微软雅黑";color: #394043;}
html,body{
	display: flex;
	flex-direction: column;
	height: 100%;
}
a{
	text-decoration: none;
	color: #394043;
}
ul li{
	list-style-type:none;
}
.base-bg{
	background-color: #3297FC;
	color: #FFFFFF;
}
button,input{
	outline:none;
}
.dn{
	display: none;
}

.tip-msg{
	font-size: 12px;
	border: 1px solid #F3F0CC;
	z-index: 10010;
	padding: 6px;
	text-align: center;
	position: absolute;
	top: 0;
	display: none;
}

.icon-tip-msg {
	width: 16px;
	display: inline-block;
	margin-right: 8px;
}

.tip-msg-img {
	position: absolute;
	right: 0px;
	top: 0px;a
	cursor: pointer;
}

.tip-success{
	background:url('../images/icons/success.png') no-repeat center 0px;
}

.tip-success-msg{
	background: #F0FFE2;
}

.tip-fail{
	background:url('../images/icons/fail.png') no-repeat center 0px;
}

.tip-fail-msg{
	background: #FFF1F1;	
}

.tip-info-msg{
	background: #FFFFEA;
}

/***********   模仿系统弹出框样式    *************/
#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 1px #ddd;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 0px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	height: 29px;
	line-height: 29px;
	color: #FFFFFF;
	background: rgb(244,163,3);
	border-bottom: solid 1px #ddd;
	cursor: default;
	padding: 0em;
	margin: 0em;
	padding-left: 5px;
}

#popup_content {
	background: 16px 16px no-repeat url("../images/icons/icon-info.gif");
	padding: 1em 1.75em;
	margin: 0em;
}
#popup_content.alert {
	background-image: url("../images/icons/icon-info.gif");
}
#popup_content.confirm {
	background-image: url("../images/icons/icon-warning.gif");
}
#popup_content.prompt {
	background-image: url("../images/icons/icon-question.gif");
}
#popup_message {
	padding-left: 48px;
	padding-top: 12px;
	font-family: "微软雅黑";
}
#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
	padding-top: 8px;
}
#popup_prompt {
	margin: .5em 0em;
}
/***********   模仿系统弹出框样式    *************/

.btn{
	background: rgb(244,163,3);
	color: #FFF;
	border:0px;
	cursor: pointer;
	outline: none;
	text-shadow: none;
	font-size: 12px;
	padding: 8px 14px;
	font-weight: bold;
	margin-right: 12px;
}

/***************************msgTTip  start*******************************/
.tips{font-size: 12px;text-align: center;}
.tips-dlg{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,.5);
}
.tips-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}
.tips-cont{
    /* position: absolute; */
    /* margin-top: 25vw; */
    /* left: 0; */
    top: 25vw;
    /* width: 100%; */
    text-align: center;
    /* z-index: 2; */
    margin: 0 auto;
    /* width: 100%; */
    display: table;
    position: relative;
    /* border: 1px solid red; */
    /* background-color: #FFF; */
    padding: 0 5vw;
}
.tips-t{
    display: inline-block;
    /* height: 11vw; */
    padding: 3px 3vw;
    line-height: 8vw;
    background-color: #FFF;
    color: #4a4946;
    font-size: 3.9vw;
    /* border: 1px solid #ddd; */
    text-align: left;
}    
.tips-close{
	position: absolute;
	top: -2vw;
	right: 5vw;
	color: #FF5722;
	font-size: 6vw;
}		    
/***************************msgTTip  end*******************************/
/** 隐藏百度商桥沟通图标代码 */
#newBridge{display:none !important;}
a{text-decoration:none;}
/* 清除苹果默认样式 */
input[type="button"],input[type="submit"],input[type="reset"],input[type="text"],input[type="tel"],input[type="number"],textarea {
    resize: none;
    outline: none; /* 清除选中效果 */
    /* border: none; */
    -webkit-appearance: none; /* 清楚浏览器默认的样式 */
}
/* dib:display: inline-block; 公共样式 禁止在.dib添加新样式 */
.dib{
	display: inline-block;
}
/* 针对弹性布局苹果手机 流量器 浏览页面出现卡顿现象增加的代码处理 */
div{
	-webkit-overflow-scrolling: touch;
}