footer{
    font-size: 0;
    background-color: #fff;
    padding-bottom: 10px;
    padding-top: 20px;
    border-bottom: 10px solid #ee858c;
}
.footer-box{
    background-color: #fff;
    width: 95%;
    display: block;
    margin: 0 auto;
}
.footer-all-box{
    width: 1100px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
}
.footer-btn-box{
    margin-bottom: 30px;
    display: none;
}
.footer-btn{
    width: 47%;
    display: inline-block;
    vertical-align: middle;
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    background-color: #8ec31e;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
    transition: all .3s linear;
}
.footer-btn:last-child{
    margin-left: 6%;
}
.footer-menu{
    font-size: 14px;
    font-family: 'Open Sans', 'Noto Sans TC';
    color: #595757;
    letter-spacing: 2px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    position: relative;
    transition: all .3s linear;
}
.footer-menu:after{
    content: '';
    width: 1px;
    height: 14px;
    display: block;
    background-color: #595757;
    position: absolute;
    left: -13px;
    top: calc((100% - 14px) / 2) ;
}
.footer-menu:first-child{
    margin-left: 0;
}
.footer-menu:first-child:after{
    display: none;
}
.footer-img-box{
    display: block;
    vertical-align: middle;
    width: 95px;
    height: 95px;
    box-sizing: border-box;
    transition: all .3s linear;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}
.footer-img-box span{
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    background-color: #fff;
    position: relative;
    border-radius: 50%;
    left: -2px;
    top: -2px;
}


@media only screen and (max-width: 1000px){
	.footer-all-box{
		width: 95%;
	}
    .footer-btn-box{
        margin-bottom: 20px;
    }
    .footer-btn{
        font-size: 40px;
        line-height: 90px;
    }
    .footer-menu{
        font-size: 22px;
    }
}
@media only screen and (max-width: 750px){
    .footer-btn-box{
        margin-top: 0;
    }
    .footer-btn{
        font-size: 24px;
        line-height: 50px;
        border-radius: 10px;
    }
    .footer-menu{
        font-size: 16px;
    }
    .footer-menu:after{
        width: 1px;
        height: 20px;
        top: calc((100% - 20px) / 2);
    }
    .footer-img-box{
        display: none;
    }
    .footer-btn-box{
        display: block;
    }
}
@media only screen and (max-width: 550px){
    .footer-btn{
        font-size: 20px;
        line-height: 46px;
        border-radius: 10px;
    }
    .footer-btn-box{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer-menu{
        font-size: 12px;
        letter-spacing: 2px;
        margin-left: 12px;
    }
    .footer-menu:after{
        height: 10px;
        top: calc((100% - 12px) / 2);
        left: -7px;
    }
}
@media only screen and (max-width: 400px){
    .footer-btn{
        font-size: 14px;
        line-height: 36px;
        border-radius: 5px;
    }
}


/*hover*/
.footer-btn:hover{
    background-color: #f4b1b2;
}
.footer-menu:hover{
    color: #ee858c;
}