html,body{
    background-color: #333333;
}
a{
    cursor: pointer;
}
#app{
    background-color: #fff5e1;
    /*background-image: linear-gradient(to bottom,#f5fcfb,#ecfef2,#f8efff,#eff8ff,#fbecff);*/
    width: 100%;
    min-height: 100vh;
}
.mk-container{
    width: 800px;
    margin: 0 auto;
}
.pc-banner{}
.tab-btn{
    background-color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 32px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0 4px;
    color: #a9aaa9;
    position: relative;
    bottom: -6px;
    -webkit-box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    -moz-box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    box-shadow: rgb(101 209 176) 0px 3px 7px 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: none !important;
    cursor: pointer;
}
.tab-btn.active{
    background-image: linear-gradient(to right,#8fce50,#049265);
    color: #ffffff;
    bottom: 0;
}
.tab-btn-a{
    background-color: #ffffff;
    font-weight: bold;
    padding: 6px 12px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin: 0 2rem;
    color: #a9aaa9;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 120px;
    font-size: 1.1rem;
    outline: none !important;
    cursor: pointer;
}
.tab-btn-a.active{
    background-image: linear-gradient(to bottom,#d8ff50,#8fce50,#049265);
    color: #ffffff;
    bottom: 0;
}
.nav-bar{
    height: 65px;
    background-color: #ffffff;
}
.nav-bar .nav-fixed{
    position: fixed;
    height: 65px;
    width:100%;
    background-color: #ffffff;
    z-index: 1000;
}
.pc-nav{}
.m-nav{
    display: none;
}
.nav-btn{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 100%;
    background-color: transparent;
    border-top:0;
    border-left:0;
    border-right:0;
    margin: 0 1rem;
    border-bottom: 0;
    cursor: pointer;
    display: inline-block;
    line-height: 62px;
    color: #333333;
    outline: none !important;
    text-decoration: none !important;
}
.nav-btn:hover{
    color: #ff5215;
}
.nav-btn.active{
    color: #ff5215;
    font-weight: bold;
    border-bottom: 4px solid #ff5215;
}
.m-banner{
    display: none;
}
@media screen and (max-width: 750px){
    #app{
        width: 100%;
    }
    .mk-container{
        width: 100%;
    }
    .pc-nav,.pc-banner{
        display: none;
    }
    .m-nav,.m-banner{
        display: block;
    }
    .m-nav .nav-bar{
        background-color: #ffffff;
        position: absolute;
        top: 65px;
        width: 100%;
        left: 0;
        height: auto;
        border-top: 1px dashed #dddddd;
    }
    .m-nav .nav-btn{
        width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    .m-nav .nav-btn.active{
        border-bottom: 0;
        color: #ffffff;
        background-color: #ff865b;
    }
}
