@charset "utf-8";
*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    user-select:none;
    -webkit-text-size-adjust:none;
}
body{
    color:#000;
    background:#fff;
    padding:0;
    font-family:"PingFang SC","Microsoft YaHei","Tahoma","Arial","sans-serif","SourceHanSansCN";
    font-size:16px;
}
/*body.hd{
    overflow:hidden !important;
}*/
input,textarea,select,button{
    border:none;
    outline:none;
    resize:none;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    font-family:"PingFang SC","Microsoft YaHei","Tahoma","Arial","sans-serif","SourceHanSansCN";
}
button{
    cursor:pointer;
}
ul,ol,li{
    list-style:none;
}
a{
    text-decoration:none;
    color:inherit;
    cursor:pointer;
}
a:hover{
    text-decoration:none;
}
a:focus{
    outline:none;
}
h1,h2,h3,h4,h5,h6{
    font-weight:normal;
}
i,b{
    font-style:normal;
}
table{
    border-collapse:collapse;
    border-spacing:0;
}
img{
    max-width:100%;
}
@font-face{
    font-family:"";
    src:url();
}
/*.swiper-button-next,.swiper-button-prev{
    outline:none;
}*/
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    font-size:14px;
    color:#DBDBDB;
}
input::-moz-placeholder,textarea::-moz-placeholder{
    font-size:14px;
    color:#DBDBDB;
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{
    font-size:14px;
    color:#DBDBDB;
}
input:-moz-placeholder,textarea:-moz-placeholder{
    font-size:14px;
    color:#DBDBDB;
}
::-webkit-scrollbar{
    width:5px;
    height:5px;
}
::-webkit-scrollbar-button:vertical{
    display:none;
}
::-webkit-scrollbar-track:vertical{
    background-color:#28738C;
}
::-webkit-scrollbar-track-piece{
    background:#e3e3e3;
}
::-webkit-scrollbar-thumb:vertical{
    background-color:#28738C;
    border-radius:30px;
}
.fl{
    float:left;
}
.fr{
    float:right;
}
.ov{
    overflow:hidden;
}
.fl-f{
    display:flex;
    display:-webkit-flex;
}
.fl-ac{
    display:flex;
    display:-webkit-flex;
    align-items:center;
}
/*.fl-as{
    display:flex;
    display:-webkit-flex;
    align-items:flex-start;
}
.fl-ae{
    display:flex;
    display:-webkit-flex;
    align-items:flex-end;
}*/
.fl-jc{
    display:flex;
    display:-webkit-flex;
    justify-content:center;
}
.fl-jb{
    display:flex;
    display:-webkit-flex;
    justify-content:space-between;
}
/*.fl-ja{
    display:flex;
    display:-webkit-flex;
    justify-content:space-around;
}*/
.fl-js{
    display:flex;
    display:-webkit-flex;
    justify-content:flex-start;
}
.fl-je{
    display:flex;
    display:-webkit-flex;
    justify-content:flex-end;
}
.fl-cc{
    display:flex;
    display:-webkit-flex;
    align-items:center;
    justify-content:center;
}
.fl-cb{
    display:flex;
    display:-webkit-flex;
    align-items:center;
    justify-content:space-between;
}

.fl-fw{
    flex-wrap:wrap;
}
.toggle{
    display:none;
    padding:0 0;
    background-color:transparent;
    border:none !important;
    position:absolute;
    z-index:201;
    right:5%;
}
.toggle .line-top,.toggle .line-middle,.toggle .line-bottom{
    display:block;
    width:24px;
    height:3px;
    background-color:#28738C;
    margin:5px 0;
    transition:0.4s;
}
.open.toggle .line-top,.open.toggle .line-middle,.open.toggle .line-bottom{
    background-color:#28738C;
}
.on .toggle .line-top,.on .toggle .line-middle,.on .toggle .line-bottom{
    background-color:#28738C;
}
.open .line-top{
    -webkit-transform:rotate(45deg) translate(4px,9px);
    transform:rotate(45deg) translate(4px,9px);
}
.open .line-middle{
    opacity:0;
}
.open .line-bottom{
    -webkit-transform:rotate(-45deg) translate(2px,-7px);
    transform:rotate(-45deg) translate(2px,-7px);
}

.loading{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:#ffffff;
}
.loading .pic{
    width:64px;
    height:64px;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto
}
.loading .pic i{
    display:block;
    float:left;
    width:6px;
    height:50px;
    background:#28738C;
    margin:0 2px;
    transform:scaleY(0.4);
    animation:load 1.2s infinite;
}
.loading .pic i:nth-child(1){
    animation-delay:0.1s
}
.loading .pic i:nth-child(2){
    animation-delay:0.2s
}
.loading .pic i:nth-child(3){
    animation-delay:0.3s
}
.loading .pic i:nth-child(4){
    animation-delay:0.4s
}
.loading .pic i:nth-child(5){
    animation-delay:0.5s
}
@keyframes load{
    0%,40%,100%{
        transform:scaleY(0.4)
    }
    20%{
        transform:scaleY(1)
    }
}
@media (min-width:769px){
    .ph{
        display:block;
    }
    .pc{
        display:none;
    }
}
@media screen and (max-width:768px){
    .ph{
        display:none;
    }
    .pc{
        display:block;
    }
}
