
body{
	font-family:Microsoft Yahei;
	font-size:14px;
	height:100%;
	margin:0px;padding:0px;
}

/*让整个网站变灰的样式*/
.pagebianhui{
    filter: grayscale(100%);/*火狐*/
    -webkit-filter:grayscale(100%);/*chrome*/
    filter:gray; /*IE7-9*/
}


/*div背景图片平铺*/
.div-background {
  background-size: cover;
  background-position: center; /* 确保图片在容器中居中 */
  width: 100%; /* 确保div占满其父容器 */
  height: 100vh; /* 例如，使div高度为视口高度 */
}


/**文字链接点击背景变色样式，一般应用于点击有动作的元素**/
.textLink{
  color:#333;
  cursor:default;
}
.textLink:hover{
  color:#999;
}
.textLink:active{
  color:#999;
}
.textLink无效状态{
  color:#333;
}


/**文字链接点击背景变色样式，一般应用于点击有动作的元素**/
.textLink1{
  color:#333;
  cursor:default;
}
.textLink1:hover{
  color:#FF9933;
}
.textLink1:active{
  color:#999;
}
.textLink1无效状态{
  color:#333;
}


div,table,tr,td,span,a{
word-wrap:break-word;   
word-break:break-all;   
padding:0px;
border-collapse: separate;
border-spacing: 0px;

-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;


}


.bottomMenuSelected{
  color: #fff;
  background-color:#428BCA; 
}
.bottomMenuOverAndHover{	
  color:#fff;
  background-color:#428BCA; 
}

/**元素点击背景变色样式，一般应用于点击有动作的元素**/
.cell_access{
  //color:#fff;
}
.cell_access:active{
  background-color:#EDEDED;
}




/**元素鼠标背景变色样式**/
.backgroundColor{
  background-color:#fff;
}



input 
{
	height: 24px;
	background-color: #ffffff;
	border: 1px solid #6699CC;
}

a {
     color: #10aeff;
     text-decoration: none;
     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
     text-decoration:none;
 }
a:active {
    color: #10aeff;
}


/**让元素最大化**/
.lw_maxPanel
{
	width:100%;
	height:100%;
}
.titleStyle
{
	height:32px;
	line-height:32px;
	background-color:#999999;
	color:#ffffff;
	padding-left:10px;
	
}

/**主界面顶部用户信息区下拉菜单a标签样式**/
.lw_headUserA
{
	height:30px;
	line-height:30px;
	background-color:#fff;
	color:#333;
	padding:0px 20px; 
	
}
.lw_headUserA:hover
{
	background-color:#ddd;
	
}


/*单行文本溢出显示省略号*/
.captionLength {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; //文本不换行，这样超出一行的部分被截取，显示...
}


/*多行文本溢出显示省略号*/
.TextOverlength{
            overflow:hidden;
            text-overflow:ellipsis; 
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;   //默认行数 
            overflow: hidden;
            /*-webkit-line-clamp用来限制在一个块元素显示的文本的行数。 为了实现该效果，它需要组合其他的WebKit属性。常见结合属性：
            display: -webkit-box; 必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。
            -webkit-box-orient 必须结合的属性 ，设置或检索伸缩盒对象的子元素的排列方式 。*/
        }

.w-e-text-container{
    border-radius:0px 0px 4px  4px;
}
.w-e-toolbar{
    border-radius:4px  4px 0px 0px;
}

/*图片轮播分页按钮的样式*/
    .swiper-pagination-bullet {
      pointer-events:auto;
      width: 22px;
      height: 22px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #fff;
      opacity: 1;
      background: rgba(0, 0, 0, 0.4);
      border:1px #FF6600 solid;
    }

    .swiper-pagination-bullet-active {
      pointer-events:auto;
      color: #fff;
      background: #FF6600;
    }
    
    
    
/**更多按钮样式**/
.gengduo{
	width:50px;
  color:#FF6600;
  cursor:default;
}
.gengduo:hover{
  color:#FCA35C;
}
.gengduo:active{
  color:#FCA35C;
}
.gengduo无效状态{
  color:#fff;
}