* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    vertical-align: center;
    max-width: 100%;
}

body {
    max-width: 750px;
    margin: 0 auto;
    color: #333333;
}

.app-header {
    display: flex;
    height: 60px;
}

.app-header .page-go-back,
.app-header .page-after {
    /*width: 80px;*/
}

.app-header .page-go-back {
    display: flex;
    align-items: center;
    padding-left: 20px;
    color: #FFFFFF;
    background-color: #5FCFB9;
}

.app-header .page-go-back::before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border: 3px solid #FFFFFF;
    border-right-width: 0;
    border-bottom-width: 0;
    transform: rotate(-45deg);
}

.app-header .page-title {
    flex: 1;
    font-size: 16px;
    line-height: 60px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    background-color: #5FCFB9;
    padding-right: 26px;
}

.app-header .page-after {
    margin-left: 10px;
    background-color: #277FAD;
    border-radius: 10px 0 0 10px;
}

.app-header .page-after.orange {
    background-color: #FF8C00;
}

.place {
    height: 80px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 100%;
    height: 60px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
    display: flex;
}

.footer a {
    flex: 1;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer a.active {
    color: #5FCFB9;
}

.footer a img {
    width: 30px;
    height: 30px;
}

.footer a p {
    font-size: 12px;
    /*margin-top: 5px;*/
}