@import '../../less/Global.less';

::-webkit-scrollbar {
    width: 8px;
    z-index: 30;
    height:8px;
}
 
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background:#e3e3e3;
}

.r-Layer{
  .clearfix;
  .transition(all 350ms cubic-bezier(0.215, 0.610, 0.355, 1.000));
  width:100%;
  position: relative;
  color: @font-color;
}

.clearfix {
	zoom: 1;
	&:before, &:after {
		content: "";
		display: table;
	}
	&:after {
		clear:both;
		}
}

.e-shadow{
    box-shadow: 0 2px 2px #bbbbbb;
}

.e-flex-center{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.e-borderRadius{
    border-radius : @default-border-radius;
}

.e-dropShadow{
    box-shadow : @default-drop-shadow;
}