/*
* webapp 1px border
* 全局引用即可
*/
.has-bottom-border, .border-b, .border-t, border-l, border-r{
  position: relative;
}
.border-b, .has-bottom-border{
  border-bottom: none !important;
}
.border-t{
  border-top: none !important;
}
.border-l{
  border-left: none !important;
}
.border-r{
  border-right: none !important;
}
.has-bottom-border::after, .border-b::after{
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #E8E8E8;
  color: #E8E8E8;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.border-t::before{
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #E8E8E8;
  color: #E8E8E8;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.border-l::before{
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px solid #E8E8E8;
  color: #E8E8E8;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}
.border-r::after{
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px solid #E8E8E8;
  color: #E8E8E8;
  transform-origin: 100% 0;
  transform: scaleX(0.5);
}
/* 登录下边框颜色 */
.border-b-dark.border-b::after{
  border-bottom-color: #888
}
/* tabpage web hack */
.tab-page .tab-page-wrap .tab-container {
  height: 100%;
}