/*媒体查询*/
html {
    font-size: 85px !important;
}
@media screen and (min-width: 320px) and (max-width: 374px) {
    html {
        font-size: 85px !important;
    }
}/*4s5s*/
@media screen and (min-width: 375px) and (max-width: 413px) {
    html {
        font-size: 100px !important;
    }
}/*68*/
@media screen and (min-width: 414px) and (max-width: 464px) {
    html {
        font-size: 110px !important;
    }
}/*6p*/
@media screen and (min-width: 465px) and (max-width: 514px) {
    html {
        font-size: 124px !important;
    }
}
@media screen and (min-width: 515px) and (max-width: 564px) {
    html {
        font-size: 137px !important;
    }
}
@media screen and (min-width: 565px) and (max-width: 639px) {
    html {
        font-size: 150px !important;
    }
}
@media screen and (min-width: 640px) and (max-width: 759px) {
    html {
        font-size: 170px !important;
    }
}
@media screen and (min-width: 660px) and (max-width: 767px) {
    html {
        font-size: 176px !important;
    }
}
@media screen and (min-width: 768px) {
    html {
        font-size: 205px !important;
    }
}

body
{
    font-size: 0.12rem;
    color: #666;
}

a{
    color: #666;
}
ul,li{
    list-style: none;
    padding: 0;
    margin: 0;
}
.bg-f6f6f6{
    background: #f6f6f6;
}
.body-w{
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 0.6rem;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
/*
** 字体
 */
.text-red{
    color: #f5533d;
}
.text-blue{
    color: #0054aa;
}
.color-f5533d{
    color: #f5533d;
}
.color-0054aa{
    color: #0054aa;
}
/*-----边距-------*/
.p-l-15{
	padding-left: 0.15rem;
}
.p-r-15{
	padding-right: 0.15rem;
}

.p-b-65{
    padding-bottom: 0.65rem;
}
.ellipsis
{
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}
.bor-top{
    border-top: 0.11rem solid #e5e5e5;
}
.bor-bottom{
    border-bottom: 0.11rem solid #e5e5e5;
}


.img{
    width: 100%;
}
/*------浮动-------*/
.pull-left{
    float: left;
}
.pull-right{
    float: right;
}