* {
    
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
}

dl {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

dd {
    display: block;
    margin-inline-start: 30px;
}
html{font-size: 62.5%;}
html,
body {
    height: 100%;
    background: #f4f6f8;
	
}

li {
    list-style: none;
}

.mar_1 {
    margin-bottom: 10px;
}

.mar_2 {
    margin-bottom: 20px;
}

.mar_3 {
    margin-bottom: 30px;
}

.dis_none {
    display: none;
}

table {
    border: 0px solid #ccc;
    border-right: #CCCCCC 0px solid;
    border-bottom: 0px solid #ccc;
}

td,
th {
    border-right: #CCCCCC 0px solid;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 35px;
}

.pad td,
.pad th {
    padding: 20px
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

img {
    width: 100%;
}

a:link {
    text-decoration: none;
    color: #000;
}

a:visited {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:active {
    text-decoration: none;
    color: #000;
}

.help {
    width: auto;
    max-width: 1170px;
    min-height: 550px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.help>div {
    height: 100%;
    min-height: 550px;
    overflow: hidden;
}

.help>div>div {
    transition: transform 0.3s;
    position: relative;
    transform: translateX(0%);
}

.help>div>div>div {
    width: 100%;
    position: absolute;
    top: 0;
}

.help_common {
    transform: translateX(200%);
}

.help_more {
    transform: translateX(0%);
}

.help_part {
    transform: translateX(100%);
}

.help_bor{border-bottom: 8px solid #f4f6f8;padding: 0px 0;margin: 0px 0 00px;}
.help_top {
	height: 42px;
	margin-bottom: 0;
}

.help_top li {
    float: left;
    font-size: 25px;
    font-weight: 400;
    color: #999;
    padding: 5px 0;
	margin-right:25px;
    cursor: pointer;
	font-weight: 500;
}

.help_top .help_bla {
    opacity: 0.9;
    color: #333;
}

.help_top li:hover {
    opacity: 0.9;
    color: #333;
    border-bottom: #ccc 8px solid;
    padding-bottom: 9px;
}

.help_conten {
    padding: 8px 0 36px;
   
}

.help_conten dt {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 23px;
    padding-left: 10px;
}

.help_conten dd span {
    display: block;
    padding: 0 35px;
    border-radius: 6px;
    background: #f9f9fa;
    color: #333333;
    position: relative;
    margin-top: 0px;
    line-height: 30px;
    height: 0;
    transition: height 0.6s, padding 0.6s;
    overflow: hidden;
    cursor: auto;
    font-size: 16px;
}

.help_conten dd span p {
    font-size: 16px;
    font-weight: 400;
}

.help_conten dd span a {
    cursor: pointer;
    color: #333333
}

.help_conten dd span a:hover {
    color: #004092;
    opacity: 0.9;
}

.help_conten dd span>img {
    position: absolute;
    height: 0px;
    width: 23px;
    left: 26px;
    top: -19px;
}

.help_conten dd span p img {
    width: auto;
    height: 0;
    transition: height 0.3s;
}

.help_conten dd {
    font-size: 16px;
    color: #333333;
    margin: 28px 30px 0px;
    cursor: pointer;
}

.help_conten dd:hover {
    color: #0F6AB4;
}

.help_conten .help_dd {
    color: #0F6AB4;
}

.help_conten .help_dd span {
    height: auto;
    padding: 18px 35px;
    margin-top: 20px;
    overflow: inherit;
}

.help_conten .help_dd span p img {
    height: auto;
}

.help_conten .help_dd span>img {
    height: 20px;
    width: 23px;
}


/*动画*/

.search {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: #f3f3f3;
    z-index: 3;
    transition: transform 0.3s;
}

.sear {
    transform: translateX(100%);
}

.more1 {
    -webkit-animation: more_add1 0.5s linear 0s 1 normal forwards;
    -moz-animation: more_add1 0.5s linear 0s 1 normal forwards;
    -o-animation: more_add1 0.5s linear 0s 1 normal forwards;
    animation: more_add1 0.5s linear 0s 1 normal forwards;
}

.more2 {
    -webkit-animation: more_add2 0.5s linear 0s 1 normal forwards;
    -moz-animation: more_add2 0.5s linear 0s 1 normal forwards;
    -o-animation: more_add2 0.5s linear 0s 1 normal forwards;
    animation: more_add2 0.5s linear 0s 1 normal forwards;
}

@-webkit-keyframes more_add1 {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@-moz-keyframes more_add1 {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@-o-keyframes more_add1 {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@keyframes more_add1 {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@-webkit-keyframes more_add2 {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes more_add2 {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

@-o-keyframes more_add2 {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

@keyframes more_add2 {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}