html,body{
    padding: 0;
    margin:0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,p,input,ul,ol,li{
    padding: 0;
    margin: 0;
}
a {
    color: #333;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
.view-center {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.view-flex {
    display: flex;
}
.view-align-center {
    align-items: center;
}
.view-justify-center {
    justify-content: center;
}
.view-justify-between {
    justify-content: space-between;
}
.view-col {
    flex-direction: column;
}
.flex-1 {
    flex:1;
}
 #app {
    height: 100%;
    width: 100%;
}
.header {
    height: 60px;
}
.header > .view-center {
    height: 100%;
}
.logo {
    padding-left: 10px;
    font-size: 23px;
    color: #2f2f2f;
}
.logo:hover {
    text-decoration: none;
    opacity: 0.5;
}
.logo img {
    width: 34px;
    height: 34px;
    margin-right: 5px;
}
.menu {
    display: flex;
    height: 100%;
}
.menu a {
    display: flex;
    padding: 0px 26px;
    text-align: center;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
    font-size: 16px;
}
.menu a:hover {
    background-color: #feecec;
    text-decoration: none;
}
.menu a.active {
    background-color: #feecec;
    border-bottom: 3px solid #F54343;
    color: #F54343

}

.footer {
    background: rgba(41, 41, 41, 1);
    color: rgba(199, 163, 109, 1);
    font-size: 14px;
    padding: 30px 10px;
}
.footer a {
    color: rgba(199, 163, 109, 1);
    margin: 0px 3px;
}
.footer .list {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(123, 123, 123, 1);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap
}
.footer .list a {
    display: block;
}
.footer .tip {
    text-align: center;
}
.footer .fun {
    max-width: 850px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}
.customer-service {
    width: 50px;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.customer-service img {
    width: 100%;
}

.mb-menu {
    display: none;
    padding-right: 10px;
}
.mb-menu img {
    width: 26px;
}
.mb-menu  .btn {
    margin:0px 10px;
}
.popup-menu {
    position:fixed;
    left: 0;
    width: 100%;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    height: 0%;
    overflow: hidden;
    z-index: 100;
    transition: height 0.2s;
}
.popup-menu.active {
    height: 100%;
    transition: height 0.2s;
}
.popup-menu  .content {
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-sizing: border-box;
}
.popup-menu .btn {
    position: absolute;
    right: 10px;
    top: 20px;
}
.popup-menu .btn svg {
    width: 25px;
    height: 25px;
}
.popup-menu .list {
    padding-top: 60px;
}
.popup-menu .list a{
    height: 35px;
    border-bottom: 1px solid rgba(227, 227, 230, 1);
    display: flex;
    align-items: center;
    padding: 18px 20px;
    font-size: 22px;
}
.popup-menu .list a:last-child {
    border: none;
}
.popup-menu .list a.active {
    background-color: rgba(248, 249, 255, 1);
    color:#F54343;

}
@media screen and (max-width: 620px){
    .customer-service {
        display: none;
    }
    .menu {
        display: none;
    }
    .mb-menu {
        display: flex;
    }
}
@media screen and (max-width: 412px){
    .footer a {
        margin: 0px 3px;
        font-size: 12px;
    }
}
@media screen and (max-width: 365px){
    .footer a {
        margin: 0px 2px;
    }
}