body{
    margin: 0px; padding: 0px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #333333;
}
a{
    color:#333333;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
p{margin: 0px; padding: 0px;}
ul,li{margin: 0px; padding: 0px;list-style: none;}
.main{

}
.header{
    min-height: 44px;
    background-color: #00bab9;
    padding: 15px;
}
.header h1{margin: 0px; font-size: 18px; color: #ffffff;}
.header h1 a{color: #FFFFFF;}
.header .search{
    margin: 15px 0px 0px;
    background-color: #ffffff;
    height: 36px;
    border-radius: 20px;
}
.header .search form{
    display: flex;
    justify-content: space-between;
}
.header .search form input{
    border: none;
    border-radius: 30px;
    font-size: 14px;
    flex: 1;
    padding: 10px;
    outline: none;
}
.btn-search{
    color: #5bd4c7;
    border: none;
    background-color: transparent;
    padding: 0 20px;
}
.bar{margin: 0 0 10px 0;}
.bar ul{
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 10px 10px 0px 10px;
}
.bar ul li{
    width: 25%;
    text-align: center;
    margin-bottom: 15px;
}
.bar ul li img{
    width: 44px;
    height: 44px;
    /*border-radius: 50%;*/
    /*border: solid 2px #00bab9;*/
    /*padding: 5px;*/
    vertical-align: center;
}
.bar ul li h2{
    font-size: 14px;
    margin: 0px;
    font-weight:lighter;
}
.panel{
    background-color: #ffffff;
    margin-bottom: 10px;
}
.panel .panel-bar{
    display: flex;
    justify-content: space-around;
    line-height: 30px;
    position: relative;
}
.panel .panel-bar li{
    position: relative;
}
.panel .panel-bar .active{
    position: relative;
    color: #00bab9;
}
.panel .panel-bar .active:after{
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 2px;
    background-color: #00bab9;
    content: '';
}
.panel h1.panel-title{
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    margin: 0px;
    background-color: #00bab9;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.panel h1.panel-title .more{
    font-size: 14px;
    font-weight: lighter;
    color: #ffffff;
}
.panel .article-list{
    padding: 0 10px;
}
.panel .article-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.panel .article-list li:after{
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 1px;
    background-color: #f0f0f0;
    content: '';
}
.panel .article-list li:last-child:after{
    height: 0px;
}
.panel .article-list li a{
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 10px 0px;
}
.panel .article-list li span{
    margin-left: 10px;
}
.footer{
    background-color: #ffffff;
    text-align: center;
    line-height: 30px;
    padding: 10px;
}
.footer .footer-bar a{
    padding: 0 10px;
}
.page-header{
    background-color: #ffffff;
    border-bottom: solid 1px #f5f5f5;
    position: relative;
    line-height: 44px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
}
.page-header a{
    position: absolute;
    line-height: 44px;
    left: 10px;
    top: 0px;
    padding-left: 10px;
}
.page-header .fh {
    position: absolute;
    left: 20px;
    top: 15px;
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border-width: 0 0 2px 2px;
    border-color: #333333;
    border-style: solid;
    transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
    -webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
    padding: 0px;
}
.page-header h1{
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 50px;
}

.xxdd{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #00bab9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    color: #ffffff;
    animation: movein 1s;
    animation-fill-mode: forwards;
    z-index: 99;
}
.xxdd-hiddent{
    animation: move 1s;
    animation-fill-mode: forwards;
}
@keyframes movein {
    0%{transform: translateY(100px);opacity: 0; display: none;}
    100%{transform: translateY(0px);}

}
@keyframes move {
    0%{transform: translateY(0px);}
    100%{transform: translateY(100px);opacity: 0; display: none;}
}
.yy-btn{
    padding: 10px;
    color: #ffffff;
    background-image: linear-gradient(#fdb200,#ff8403);
    border-radius: 20px;
    padding: 10px 20px;
}