body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
table,
th,
td,
a,
img,
span,
strong,
var,
em,
input,
textarea,
select,
option {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

img {
    border: 0 none;
}

input,
select,
textarea {
    outline: 0;
}

textarea {
    resize: none;
    overflow: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th,
strong,
var,
em {
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
}

body {
    min-width: 1140px;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-family: PingFangSC-Medium, PingFang SC;
}

.container {
	width: 1024px;
	margin: 0 auto;
}

#header {
    width: 100%;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.header-left {
    height: 67px;
    width: 134px;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-right > a {
    font-family: PingFangSC-Medium, PingFang SC;
    display: inline-block;
    padding: 8px 0;
    font-size: 14px;
    margin: 0 45px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .3s;
}

.hide-menu {
	display: none;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #FDD100;
	z-index: 999;
	box-sizing: border-box;
	padding: 50px 0;
}

.m-menu-close {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 25px;
}

.m-menu-logo {
	margin: 35px auto;
	width: 80px;
}

.m-menu-logo > img {
	width: 100%;
}

.m-menu-list {
	padding-top: 25px;
}
.m-menu-list > a {
	display: block;
	margin: 25px 0;
	text-align: center;
	color: #333333;
	font-size: 16px;
	text-decoration: none;
}

.global-module {
    padding: 45px 0;
}

.global-module h4 {
    margin-bottom: 45px;
    text-align: center;
	font-size: 24px;
	font-weight: 400;
}

.gray-bg {
    background-color: #f8f8f8;
}

.hezuo-wrap {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.hezuo-wrap > div {
    width: 22%;
}
.hezuo-wrap > div > img {
    width: 100%;
}
.hezuo-wrap.first-hezuo {
    margin-bottom: 25px;
}

.global-footer {
    text-align: center;
    padding: 45px 0;
    background-color: #f8f8f8;
}
.global-footer > img {
    width: 78px;
    margin-bottom: 25px;
}
.global-footer > p, .global-footer > p > a {
    color: #92969D;
}

.cdpf-download {
	width: 100vw;
	height: 100vh;
	background: #FDD100 url("https://cdn.xu5g.com/cdpf-download-parent.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.cdpf-download > a {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	width: 180px;
	height: 44px;
	background-color: #000000;
	color: #FFFFFF;
	border-radius: 22px;
	text-align: center;
	line-height: 44px;
}

/*弹性布局*/
/*display*/
.display_flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
/*.display_flex > *{
    display: block;
}*/
.display_inline-flex{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}
.display_inline-flex > *{
    display: block;
}
/*伸缩流方向*/
.flex-direction_column{
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
/*主轴对齐*/
.justify-content_flex-center{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.justify-content_flex-end{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.justify-content_flex-justify{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/*侧轴对齐*/
.align-items_flex-start{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.align-items_flex-end{
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.align-items_center{
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.align-items_baseline{
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}
/*伸缩性*/
.flex_auto{
    -webkit-box-flex: 1;
    -ms-flex: auto;
    -webkit-flex: auto;
    flex: auto;
}
.flex_1{
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}
/*显示顺序*/
.order_2{
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}
.order_3{
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
}


@media only screen and (max-width:767px){
	body {
		min-width: 100%;
	}
	.container {
		width: 100%;
	}
	#header {
		display: none;
	}
	.hezuo-wrap{
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.hezuo-wrap.first-hezuo {
		margin-bottom: 0;
	}
	.hezuo-wrap > div {
		width: 45%;
		margin-bottom: 12px;
    }
    .android-download {
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.6);
        position: absolute;
        text-align: right;
        position: absolute;
        top: 0;
        left: 0;
    }
    .android-download > img {
        width: 250px;
    }
}

.accessory {
    border-radius: 4px;
    background-color: #FFFFFF;
    position: fixed;
    bottom: 80px;
    float: bottom;
    right: 30px;
    z-index: 999;
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, .3);
}

.accessory div {
    padding: 15px;
}

.service:hover {
    padding: 0;
}

.service:hover img {
    display: none;
}

.service-etxt {
    display: none;
}

.service:hover .service-etxt {
    display: inline-block;
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 54px;
    background-color: #227BF4;
    color: #fff;
    padding: 3px;
    border-radius: 4px;
}









