.homeSixLow{
    background: #23252A;
}
.homeSixLow .textBackground{
    color: #2a2c31;
}
.macbook,.mobileText{
    position: absolute;
}
.macbook{
    z-index: 1;
    width: 52%;
    height: 56%;
    top:10%;
    left: 13%;
    background: url("../images/ifunnyHub/Macbook.png") no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    animation: ifunnyImgChange 1s linear;
}
.mobileText{
    z-index: 2;
    bottom: 10%;
    width: 86%;
    left: 7%;
    animation: textShowChange 2s;
}
.mobileText>div:first-child{
    font-size: 13.6em;
    font-family: CenturyGothic-Bold;
    color: #fff;
    font-weight: bold;
    text-align: right;
}
.mobileText>div:last-child>p{
    font-size: 2.2em;
    line-height: 2;
    font-family: CenturyGothic-Bold;
    color: #F2F5FC;
    font-weight: bold;
}
@keyframes ifunnyImgChange {
    /*图片动画*/
    0%{opacity: 0;top:5%;}
    80%{opacity: 0.8;top:9%;}
    100%{opacity: 1;top:10%;}
}
@keyframes textShowChange {
    /*详细文字动画*/
    0%{bottom: 0%;opacity: 0}
    50%{bottom: 0%;opacity: 0}
    51%{bottom: 8%;opacity: 0.8}
    100%{bottom: 10%;opacity: 1}
}