@charset "utf-8";
/* CSS Document */
body, div, p, img, ul, li, form, input, label, span, dl, dt, dd, h1, h2, h3, h4, h5, h6, a, form ,iframe,ol,textarea{
	margin: 0;
	padding: 0;
}
html,body{
	-webkit-text-size-adjust: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;	
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
th, td {
	border-collapse: collapse;
}
a {
	outline: medium none;
	text-decoration: none;
}
a ,div{
	-webkit-tap-highlight-color:transparent;
}
em {
	font-style: normal;
}
img {
	border: 0;
}
button {
	cursor: pointer;
}
ol, ul, li {
	list-style-type: none;
}
/*公用样式*/ 
.fl {
	float: left;
}
.fr {
	float: right;
}
.tc {
	text-align: center;
}
.bold {
	font-weight: bold;
}
.white, .white a:link, .white a:visited {
	color: #fff;
}
.pt10{ padding-top:10px}
.pt20{ padding-top:20px}
.pb20{ padding-bottom:20px}

.wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding-bottom: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0,0,0);
}
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}
.blurfilter.hide,.hide{
    opacity: 0;
}


.jswrap{
}

.breadcrumbs {
    display: flex;
	width:100%;
    height: 100%;
    line-height: 46px;
    margin: 0 auto;
	overflow:hidden;
}
.breadcrumbs .single {
    flex: 1;
    position: relative;
    font-weight: 600;
    text-align: center;
	background-color:#fff;
	color:#CCC;
	width:33.33%;
	float:left;
}
.breadcrumbs .single.hover{
	background-color:#95A9AE;	
	color:#fff;
}
.breadcrumbs .single:before,.breadcrumbs .single:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: block;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 18px solid transparent;
}
.breadcrumbs .single.hover:after {
    /* building the colors */    
    border-left-color: #95A9AE;
}
.breadcrumbs .single:after {
    /* building the colors */    
    border-left-color: #fff;
}


/*组件*/
.poppanel .content{
	padding:0 6px;
	height:100%;
	background-color:#fff;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	/*border:solid 1px #CCCCCC;*/
	overflow:auto;
  	-webkit-overflow-scrolling: touch;
	/*
	-webkit-box-shadow: 0 0 10px #333;  
    -moz-box-shadow: 0 0 10px #333;  
    box-shadow: 0 0 10px #333;  */
}

.animation
{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-delay: 0s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.6s;
    -moz-animation-delay: 0s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;
    -ms-animation-duration: 0.6s;
    -ms-animation-delay: 0s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;
    animation-duration: 0.6s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.popview,.popmask{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
    z-index: 10000;

}
.popmask{
	background-color:rgba(0,0,0,0.3);
}

.poploading{
    position: fixed;
    z-index: 10001;
    width: 80px;
    height: 80px;
    background-color:#000;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    text-align: center;

}
.poploading img{
    height: 50px;
    padding-top: 15px;
}

.poppanel{
	position:absolute;
	min-width:200px;
	min-height:100px;
	width:70%;
	height:200px;
    z-index: 10001;
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
	position:absolute;
	bottom:-8px;
	left:50%;
	margin-left:-4px;
}


.dialog-outer {
    width: 270px;
    background: #fff;
    border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
    padding-top: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -135px;
    z-index: 10001;

    -webkit-animation-name: zoomInScale1;
    animation-name: zoomInScale1;
}


@-webkit-keyframes zoomInScale1 {
  0% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
    opacity: 0;
  }


  100% {
     -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}

@keyframes zoomInScale1 {
 0% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
    opacity: 0;
  }


  100% {
     -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}


.dialog-title {
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    padding: 0 16px 10px;
    position: relative;
}
.dialog-content {
    line-height: 22px;
    padding: 0 16px;
    margin: 6px 0;
    word-break: break-all;
    font-size: 14px;
    min-height: 45px;
}
.dialog-content.load{
	margin:0;
	padding:0;	
}
.dialog-btn-group {
    z-index: 110;
    position: relative;
}
.dialog-btn-group button {
    height: 44px;
    width: 135px;
    text-align: center;
    line-height: 44px;
    border: 0;
    border-right: 1px solid #c2c2c2;
    float: left;
    background: transparent;
    color: #0079ff;
    font-size: 17px;
    z-index: 120;
}
.dialog-btn-group.single button {
    width: 100%;
}
.border-bottom:after {
    bottom: 0;
}
.border-top:before, .border-bottom:after {
    content: ' ';
    display: block;
    border-top: 1px solid #e1e1e1;
    position: absolute;
    left: 0;
    right: 0;
}
.dialog-btn-group button {
    height: 44px;
    width: 135px;
    text-align: center;
    line-height: 44px;
    border: 0;
    border-right: 1px solid #c2c2c2;
    float: left;
    background: transparent;
    color: #0079ff;
    font-size: 17px;
    z-index: 120;
}
.dialog-btn-group .dialog-cancel-btn {
    color: gray;
}
.dialog-btn-group button {
    border-color: #c8c8c8;
}

/**/

.tabitem{
    display: none;
}
.tabitem:first-child{
   /* display: block;*/
}

.brandlist li{
	border-bottom:solid 1px #CCC;
	padding:16px;
}
.brandlist li.select{
	background-color:#00A1D9;
	color:#fff;
}