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

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

.com-header.f {
    position: absolute;
    z-index: 999;
}

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

.com-header.f .header-container {
    background-color: transparent;
}

.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: 30px;
    width: 30px;
    border-radius: 50px;
    background: #555555 url(../images/ic_back.svg) no-repeat center center/auto 80%;
}

.com-header .header-container .header-l>img {
    width: 35px;
    height: 35px;
    /*position: absolute;
    top: 9px;
    left: 8px;*/
}

.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 {

}

.lang-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-container .lang-change {
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
}

.lang-container .pic {
    width: 20px;
    height: 20px;
    background: url(../images/ic_language.png) no-repeat center center/100% auto;
    margin-right: 5px;
}

.com-body {
    background-color: #171717;
    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: #171717;
}

.com-tab-bar .tab-item {
    color: #FEFEFE;
    text-align: center;
    line-height: 18px;
}

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

.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;
}

/* 加载动画 start */
/* 加载动画1 */
#myLoading {

}

#myLoading svg {
    width: 3.75em;
    transform-origin: center;
    animation: my-rotate 2s linear infinite;
}

#myLoading circle {
    fill: none;
    stroke: #FF7900;
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: my-dash 1.5s ease-in-out infinite;
}

@keyframes my-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes my-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dashoffset: -125px;
    }
}

/* 加载动画2 */
#myLoading2 {
    border: 3px solid hsla(13, 100%, 50%, 0.2);
    border-top-color: #FF7900;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    animation: my-spin 1s linear infinite;
    display: inline-block;
}

@keyframes my-spin {
    to {
        transform: rotate(360deg);
    }
}
/* 加载动画 end */