/**
* css模块文件
* eyoo
* 2016-7-12
**/

/* 漂浮菜单 */

.flyMenu {
    position: fixed;
    right: 15px;
    bottom: 40%;
    z-index: 999;
}

.flyMenuItem {
    position: relative;
    display: block;
    height: 36px;
    width: 40px;
    background-color: #949494;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.flyMenuItem i {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
}

.flyMenuMore {
    position: absolute;
    line-height: 36px;
    padding: 0 15px;
    background-color: #ffd7d4;
    top: 0;
    right: 50px;
    color: #fff;
    min-width: 200px;
    text-align: center;
    display: none;
    border-radius: 4px
}

.flyMenuCorner {
    position: absolute;
    top: 13px;
    right: -5px;
    display: inline-block !important;
    border-top: 5px solid transparent;
    border-left: 5px solid #ffd7d4;
    border-bottom: 5px solid transparent;
}

/* tab标签切换 */

.tabCon>div {
    display: none;
}

.tabCon>div.active {
    display: block;
}

.tabConHov>div {
    display: none;
}

.tabConHov>div.active {
    display: block;
}

/* loading页面缓冲加载 */

#loading {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: block;
}

#loading .loading-con {
    z-index: 10000;
    position: fixed;
    top: 50%;
    margin-top: -60px;
    color: #fff;
    font-size: 14px;
    left: 50%;
    margin-left: -50px;
}

#loading .loading-con img {
    width: 75px;
    vertical-align: middle;
}

#loading .loading-con p {
    padding-top: 30px;
}

#loading .loading-bg {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .2;
    filter: alpha(opacity=20);
}