.com-container {
    max-width: 768px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.com-header {
    height: 8%;
    overflow: hidden;
}

.com-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: black;
}

.com-header .header-container>div {
    padding: 0 10px;
}

.com-header .header-container .header-l {
    text-align: left;
    width: 10%;
}

.com-header .header-container .header-l>div {
    height: 20px;
    width: 20px;
    background: url(../images/ic_back.png) no-repeat center center/auto 100%;
}

.com-header .header-container .header-c {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.com-header .header-container .header-c>img {
    height: 85%;
}

.com-header .header-container .header-c>div {
    font-size: 20px;
    width:100%;
}

.com-header .header-container .header-r {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.com-header .header-container .header-r>div {

}

.com-body {
    background-color: #000000;
    flex: 1;
    overflow: hidden scroll;
}

.com-tab-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*padding: 8px 0;*/
    /*border-top: 2px solid #F1F1F1;*/
    height: 60px;
    background-color: black;
}

.com-tab-bar .tab-item {
    color: #979797;
    text-align: center;
}

.com-tab-bar .tab-item.active {
    color: #FF6600;
}

.com-tab-bar .tab-item .item-pic {
    display: inline-block;
    width: 25px;
    height: 25px;
}

.com-tab-bar .tab-item .item-pic.pic-home {
    background: url(../images/btn_home.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item.active .item-pic.pic-home {
    background: url(../images/btn_home_active.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item .item-pic.pic-service {
    background: url(../images/btn_service_center.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item.active .item-pic.pic-service {
    background: url(../images/btn_service_center_active.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item .item-pic.pic-recreation {
    background: url(../images/btn_recreation_center.gif) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item.active .item-pic.pic-recreation {
    background: url(../images/btn_recreation_center_active.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item .item-pic.pic-me {
    background: url(../images/btn_personal_center.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item.active .item-pic.pic-me {
    background: url(../images/btn_personal_center_active.png) no-repeat center center/100% auto;
}

.com-tab-bar .tab-item .item-txt {
    font-size: 12px;
}