@charset"utf-8";

/**
 * @Author   kzxf
 * @Date     2018-11-02
 */


/******基本默认样式*******/

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
ol {
    margin: 0;
    padding: 0;
    /* flex-direction: column-reverse; */
}

*,
 ::after,
 ::before {
    box-sizing: border-box;
    outline: none;
}

body {
    /* font: 14px "Arial", "Microsoft YaHei"; */
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}

ol,
ul,
li {
    list-style-type: none;
    vertical-align: middle;
}

img {
    vertical-align: top;
    border: 0;
    max-width: 100%;
    height: auto;
}

input,
select,
textarea,
button {
    vertical-align: middle;
}

textarea,
input {
    outline: none;
    resize: none;
}

input[type='submit'],
input[type='button'],
button {
    text-indent: 0;
    text-align: center;
    cursor: pointer;
}

label,
button,
a {
    cursor: pointer;
}

ins,
em,
b,
i {
    text-decoration: none;
    font-style: normal;
}


/* 去掉浏览器默认样式 */

select:focus,
textarea:focus,
input:focus,
button {
    outline: none;
}


/* placeholder文字的初始样式 */

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
}


/* table */

table {
    border-collapse: collapse;
    border-spacing: 0;
    font: inherit;
}


/* a标签 */

a {
    color: inherit;
    text-decoration: none;
}

a[href] {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}



h1,
h2,
h3,
h4,
h5,
h6,
em {
    font-weight: normal;
}

a,
span,
li,
b,
i,
label,
p,
strong,
div,
h1,
h2,
h3,
h4,
h5,
h6,
font,
small,
em,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    font: inherit;
    color: inherit;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}


/*用来解决在安卓上的点击出现篮框问题*/

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*解决ios上去除微信点击蓝色边框 */

a:focus,
input:focus,
p:focus,
div:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
html {
    width: 100%!important;
    padding: 0!important;
    font-size: 14px;
    overflow-x: hidden;
}

*::-webkit-scrollbar {
    width: 3px;
    border-radius: 1.5px;
}

*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-track {
    background-color: #eee;
}

*::-webkit-scrollbar-thumb {
    background-color: #666;
}


/* 浮动与清浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}

.cl::after {
    content: '\20';
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.hide {
    display: none;
}

.show {
    display: block;
}


.cc_botton {
    text-align: center;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

#pagination{
    overflow: hidden;
    display: inline-block;
}
#pagination>div{
    float: left;
    
}
#page_left_botton a,
#page_left_botton span{
    display: inline-block;
    padding:0 10px;
    line-height: 30px;
    border: 1px solid #ccc;
    margin:0 5px;
    cursor: pointer;
    
}
#page_left_botton a:hover,
#page_left_botton a{
    background-color: #fd8f00;
    color: #fff;
}

#page_center_botton{
    display: none;
}


.nav_button {
    overflow: hidden;
    width: 23px;
    position: relative;
    z-index: 999;
    /* display: none; */
}

.nav_button .nav_bar {
    width: 23px;
    height: 2px;
    display: block;
    margin: 6px 0;
    background: #333;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.nav_button .mid {
    width: 18px;
}

.nav_button.animate .nav_bar {
    background: #949494;
}

.nav_button.animate .top {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.nav_button.animate .mid {
    width: 0;
}

.nav_button.animate .bottom {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}


/*nav for mobile*/
.nav_m{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background: #2e2929;
    z-index: 998;
    overflow: hidden;
    overflow-y: scroll;
    padding: 0 15px;
}

.nav_m .head-wap{
    position: fixed;
    height: 90px;
    top: 0;
    background: #2e2929;
    width: 100%;
    max-width: 768px;
    margin-left: -15px;
    z-index: 999;
}

.nav_m .logo{
    width: 134px;
    display: block;
    float: left;
    margin-top: 10px;
}

.nav_m .logo img{
    width: 100%;
    display: block;
}

.nav_m .menu{
    min-height: 100%;
    margin-top: 90px;
    padding-bottom: 60px;
}

.nav_m .main_item{
    overflow: hidden;
    border-bottom: 1px solid #5a5a5a;
    opacity: 0;
    -webkit-transform: scale(1.1) translateY(-24px);
    transform: scale(1.1) translateY(-24px);
    -webkit-transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
    transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    transition: opacity 0.35s ease-out, transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

.nav_m .main_item:nth-child(2){
    -webkit-transition-delay: 80ms;
    transition-delay: 80ms;
}

.nav_m .main_item:nth-child(3){
    -webkit-transition-delay: 160ms;
    transition-delay: 160ms;
}

.nav_m .main_item:nth-child(4){
    -webkit-transition-delay: 240ms;
    transition-delay: 240ms;
}

.nav_m .main_item:nth-child(5){
    -webkit-transition-delay: 360ms;
    transition-delay: 360ms;
}

.nav_m .main_item:nth-child(6){
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.nav_m .main_item:nth-child(7){
    -webkit-transition-delay: 480ms;
    transition-delay: 480ms;
}

.nav_m .main_item:nth-child(8){
    -webkit-transition-delay: 560ms;
    transition-delay: 560ms;
}

.nav_m .main_item:nth-child(9){
    -webkit-transition-delay: 640ms;
    transition-delay: 640ms;
}

.nav_m .main_item:nth-child(10){
    -webkit-transition-delay: 720ms;
    transition-delay: 720ms;
}


.nav_m .main_item:nth-child(11){
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}
.nav_m .main_item:nth-child(12){
    -webkit-transition-delay: 880ms;
    transition-delay: 880ms;
}
.nav_m .main_item:nth-child(13){
    -webkit-transition-delay: 960ms;
    transition-delay: 960ms;
}
.nav_m .main_item:nth-child(14){
    -webkit-transition-delay: 1040ms;
    transition-delay: 1040ms;
}














.nav_m .main_item>a{
    display: block;
    line-height: 48px;
    font-size: 14px;
    color: #ccc;
    background: url('../images/public/plus.png') 98% center no-repeat;
    background-size: 12px;
}

.nav_m .menu.show .main_item{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.nav_m .on{
    border: none;
    height: auto;
}

.nav_m .on>a{
    background-image: url('../images/public/minus.png');
}

.nav_m .link>a{
    background-image: url('../images/public/arrow.png');
}

.nav_m .drop_two{
    display: flex;
    border-bottom: 1px solid #5a5a5a;
}


.drop_list{
    display: none;
}

.drop_list ul a{
    text-indent: 40px;
    font-size: 12px;
    display: block;;
}
.drop_list a{
    display: block;
    font-size: 14px;
    color: #999;
    /* border-bottom: 1px solid #5a5a5a; */
    text-indent: 20px;
    height: 42px;
    line-height: 42px;
}
.container {
    /*width: 100%;*/
    padding-right: 6px;
    padding-left: 6px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}
div.info-top div{
    width: 240px;
}

/* // 手机端默认隐藏 */

.head_wap{
    display: none;

}

.head-wap a{
  display: flex;
  color: #fff;
  align-items: center;
  padding: 20px;
}
.head-wap a img{
  width: 30px;
}
.head-wap a p{
  padding:0 10px;
}