/**
  Project name: VRHouseCloud
  Created by DarrenCai on 2017/12/28 10:28
  Copyright 2017年 - 2018年 上海亦我信息技术有限公司
**/

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600");

body {
    margin: 0;
    color: #555;
    min-width: 1200px;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.inline12px {
    margin-left: 12px;
}

.rowGap12px {
    margin-top: 12px;
}

.rowGap5px {
    margin-top: 5px;
}

a, a:hover, a:focus {
    text-decoration: none;
    user-select: none;
    outline: none;
    /*color: #fff;*/
}

.disable {
    pointer-events: none;
    cursor: not-allowed;
}

#topBar {
    font-size: 18px;
    width: 1200px;
    margin: auto;
    color: #fff;
}

#topBar>.slogan {
    float: left;
    margin-left: 30px;
}

/*#login {*/
    /*float: right;*/
    /*margin-right: 30px;*/
    /*box-sizing: border-box;*/
    /*border: 1px solid #fff;*/
    /*border-radius: 5px;*/
    /*width: 60px;*/
    /*height: 30px;*/
    /*line-height: 28px;*/
/*}*/

/*#login:hover {*/
    /*background-color: rgba(255, 133, 52, .8);*/
    /*line-height: 30px;*/
    /*border: none;*/
/*}*/

.slogan {
    font-size: 18px;
    letter-spacing: 4px;
}

.content {
    width: 1200px;
    margin: 0 auto;
}

#banner {
    height: 270px;
    width: 100%;
    min-width: 1200px;
    padding-top: 70px;
    text-align: center;
    box-sizing: border-box;
    background: url(../images/banner.jpg) center / cover;
}

footer {
    background-color: #efefef;
    width: 100%;
    min-width: 1200px;
    padding: 60px 0;
    text-align: center;
}

footer .slogan {
    color: #222;
}

.copyright {
    margin: 0;
    color: #777;
    padding: 0 5px;
}

#goTop, #goBottom {
    z-index: 2;
    position: fixed;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 6px;
    text-align: center;
    background-color: #222;
    color: #fcfcfc;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#goTop {
    bottom: 60px;
}

#goBottom {
    top: 60px;
}

#goBottom i {
    transform: rotate(180deg);
}

#goTop i, #goBottom i {
     display: inline-block;
}

#goTop:hover i {
    animation: animateIconTop 0.4s forwards;
}

#goBottom:hover i {
    animation: animateIconBottom 0.4s forwards;
}

#goTop.visible, #goBottom.visible {
    opacity: 1;
    transform: translateX(0);
}

#goTop.hidden, #goBottom.hidden {
    opacity: 0;
    transform: translateX(20px);
}

.bottom {
    position: absolute;
    bottom: 0;
}

@-webkit-keyframes animateIconTop {
     49% {
         transform: translateY(-100%);
     }
     50% {
         opacity: 0;
         transform: translateY(100%);
     }
     51% {
         opacity: 1;
     }
}
@-o-keyframes animateIconTop {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes animateIconTop {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}

@-webkit-keyframes animateIconBottom {
    49% {
        transform: rotate(180deg) translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: rotate(180deg) translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@-o-keyframes animateIconBottom {
    49% {
        transform: rotate(180deg) translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: rotate(180deg) translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes animateIconBottom {
    49% {
        transform: rotate(180deg) translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: rotate(180deg) translateY(100%);
    }
    51% {
        opacity: 1;
    }
}