@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: color .3s;
}

html,
body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
}

body{
    font-size: .16rem;
}
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}
ul{
    margin-bottom: 0;
    padding-left: 0;
}
p{
    margin-bottom: 0.1rem;

}
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    margin-bottom: 0;
}
img,
input {
    border: 0;
    outline: none;
}


html {
    font-size: 100px;
    font-size: 5.2083333vw;
}

.wap {
    display: none !important;
}



.w15 {
    width: 15rem;
    margin: 0 auto;
}
.w1540 {
    width: 15.4rem;
    margin: 0 auto;
}
.w16 {
    width: 16rem;
    margin: 0 auto;
}
.w1620 {
    width: 16.2rem;
    margin: 0 auto;
}
.w1485 {
    width: 14.85rem;
    margin: 0 auto;
}

.w14 {
    width: 14rem;
    margin: 0 auto;
}

.w1440 {
    width: 14.4rem;
    margin: 0 auto;
}

.w1480 {
    width: 14.8rem;
    margin: 0 auto;
}
.w1320 {
    width: 13.2rem;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
@media screen and (max-width:1024px) {
    .w14, .w15,.w1540, .w16,.w1620, .w1440, .w1480, .w1485,.w1320 {
        width: auto;
        max-width: none;
        padding-left: 10px;
        padding-right: 10px;
    }

    html {
        font-size: 85px;
    }

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }
}


/* 弹性布局的常用样式预设 */
.flex {
    display: flex;
}

/* 弹性布局-横向对齐方式 */
.flex-jcfs {
    display: flex;
    justify-content: flex-start;
}

.flex-jcct {
    display: flex;
    justify-content: center;
}

.flex-jcfe {
    display: flex;
    justify-content: flex-end;
}

.flex-jcsb {
    display: flex;
    justify-content: space-between;
}

.flex-jcsa {
    display: flex;
    justify-content: space-around;
}

/* 弹性布局-纵向对齐方式 */
.flex-alfs {
    display: flex;
    align-items: flex-start;
}

.flex-alct {
    display: flex;
    align-items: center;
}

.flex-alend {
    display: flex;
    align-items: flex-end;
}