@charset "utf-8";

/*iphone手机的input的样式问题*/

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-appearance: none;

}

input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*css初始值*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: #f9f9f9;
    margin: 0px;
    padding: 0;
    font-family: "microsoft yahei", "宋体", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    width: 100%;
    min-width: 1250px;
}

html,
body,
div,
p,
ul,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
select,
button,
textarea,
iframe,
table,
th,
td {
    margin: 0;
    padding: 0;
    list-style-type: none;
    outline: none;
}

img {
    border: 0;
}

input,
select {
    border: 0;
}

a:link {
    font-family: "microsoft yahei", "宋体", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
}

a:visited {
    font-family: "microsoft yahei", "宋体", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
}

a:hover {
    font-family: "microsoft yahei", "宋体", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

div:focus {
    outline: none !important;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 14px
}

button {
    border: none;
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

cite,
em,
s,
i,
b {
    font-style: normal
}

input,
button,
textarea,
select {
    font-size: 14px;
    font-family: 'microsoft yahei', Verdana, Arial, Helvetica, sans-serif;

}

button:focus {
    outline: unset;
}

bu
a,
input,
textarea {
    text-decoration: none;
    outline: 0;
    resize: none;
}

li,
img,
label,
input {
    vertical-align: middle
}

.floatL {
    float: left;
}

.floatR {
    float: right;
}

.clear:after {
    content: "";
    display: block;
    clear: both;
}

.clear {
    zoom: 1;
}

.toast {
    display: none;
    position: fixed;
    padding: 9px 15px;
    background-color: #333;
    z-index: 8000;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
    line-height: 20px;
    text-align: center;
}

.ovHide {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ovHide2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.ovHide3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.ovHide4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.ovHide5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.ovHide6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.bx-content {
    width: 1200px;
    margin: 0 auto;
}

.flex-box {
    display: flex;
    align-items: center;
}

.flex-start {
    align-items: flex-start;
}
.flex-wrap{
    flex-wrap: wrap;
}
.around-box {
    justify-content: space-around;
}

.between-box {
    justify-content: space-between;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10;
    display: none;
}



/*
    头部样式
*/
.header {
    width: 100%;
    height: 166px;
    background: #ffffff;
}

.head {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {

    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
}

.logo b {
    font-size: 22px;
    color: #1d8825;
    font-weight: bold;
    letter-spacing: 11px;
}

.logo p {
    font-size: 14px;
    color: #1d8825;
    font-weight: bold;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    margin-right: 10px;
}

.zxtel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.zxtel span {
    font-size: 14px;
    color: #333333;
    margin-left: 10px;
}

.header-nav-box {
    width: 100%;
    background-color: #3b84eb;
}

/*.header-nav-list {*/
/*    width: 100%;*/
/*    height: 76px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.header-nav-list a {*/
/*    width: 115px;*/
/*    height: 76px;*/
/*    line-height: 76px;*/
/*    text-align: center;*/
/*    font-size: 16px;*/
/*    color: #ffffff;*/
/*}*/

/*.header-nav-list a:hover {*/
/*    font-weight: bold;*/
/*    color: #fff000;*/
/*}*/

/*.header-nav-list a.active {*/
/*    color: #fff000;*/
/*    font-weight: bold;*/
/*    border-bottom: 2px solid #fff000;*/
/*    line-height: 78px;*/
/*}*/

.header .header-nav {
    width: 100%;
        height: 76px;
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.header .header-nav .li {
        width: 115px;
        height: 76px;
    position: relative;
}

.header .header-nav .li > a {
    display: block;
        width: 115px;
        height: 76px;
        line-height: 76px;
        text-align: center;
        font-size: 16px;
        color: #ffffff;

}

.header .header-nav .li > a.active {
        color: #fff000;
        font-weight: bold;
        border-bottom: 2px solid #fff000;
        line-height: 78px;
}

.header .header-nav .li .childrenList {
    width: 115px;
    display: none;
    z-index: 1000;
    position: absolute;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    left: 0px;
    background: rgba(74, 137, 255, 0.6);
}

.header .header-nav .li .childrenList a {
    display: block;
    min-height: 40px;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-wrap: wrap;*/
    text-align: center;
    padding: 15px 8px;
}

.header .header-nav .li .childrenList a:hover {
    color: #fff000;
    font-weight: bold;
}


/*
    底部
*/

.footer {
    width: 100%;
    padding-top: 50px;
}

.fooot-contact {
    width: 100%;
    background-color: #3b84eb;
}

.contact-list {
    width: 100%;
    height: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-item {
    width: 260px;
}

.contact-tex {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #f9f9f9;
}

.contact-tex img {
    margin-right: 10px;
}

.contact-num {
    width: 100%;
    font-size: 18px;
    color: #f9f9f9;
    font-weight: bold;
    margin-top: 10px;
}

.contact-ewm {
    width: 138px;
    height: 138px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px;
    margin-left: 200px;
}

.contact-ewm img {
    width: 100%;
    height: 100%;
}

.contact-item:first-child {
    width: 170px;
}

.contact-item:nth-child(3n) {
    width: 300px;
}

.footer-nav {
    width: 100%;
    background-color: #333333;
}

.footer-list {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.footer-item {
    width: max-content;
}

.footer-item-title {
    width: max-content;
    font-size: 16px;
    color: #f9f9f9;
    font-weight: bold;
}

.footer-item-list {
    width: max-content;
    padding-top: 15px;
}

.footer-item-list a {
    display: block;
    font-size: 16px;
    color: #f9f9f9;
    width: max-content;
    margin-top: 15px;
}

.footer-item-list a:hover {
    color: #fff000;
}

.footer-num {
    width: 100%;
    height: 75px;
    border-top: 1px solid #666666;
    line-height: 75px;
    font-size: 16px;
    color: #f9f9f9;
    background-color: #333333;
    text-align: center;
}

.footer-num a {
    font-size: 16px;
    color: #f9f9f9;
}


/*
    分页样式
*/
.page-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.page-box .totles {
    font-size: 14px;
    color: #666666;
    margin-left: 20px;
}
.pager {
    max-width: 800px;
    text-align: center;
    display: inline-block
}

.pager a {
    cursor: pointer
}

.pager a, .pager span {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #ebebeb;
    margin-left: -1px;
    color: #666666;
    display: inline-block;
    line-height: 32px;
    float: left;
    font-size: 14px;
    text-decoration: none;
    margin: 0 4px;
    border-radius: 2px;
}

.pager a:hover, .pager span:hover {
    border-color: #3b84eb;
    color: #3b84eb;
    position: relative;
    z-index: 1
}

.pager span.current {
    background-color: #3b84eb;
    color: #fff;
    border-color: #ebebeb;
    position: relative;
    z-index: 1
}

/*.pager .pg-prev, .pager .pg-next {*/
/*background: #fff url(../images/page_bg.jpg) 8px 7px no-repeat*/
/*}*/

/*.pager .pg-first:hover, .pager .pg-prev:hover, .pager .pg-next:hover, .pager .pg-last:hover {*/
/*    background: #fff url(../icon/page_bg_hover.jpg) 8px 7px no-repeat*/
/*}*/

.pager .pg-prev, .pager .pg-prev:hover {
    background-position: 3px -24px;
    background: #F2F2F2;
}

.pager .pg-next, .pager .pg-next:hover {
    background-position: -27px -24px;
    background: #F2F2F2;
}

.pager .pg-last, .pager .pg-last:hover {
    background-position: -21px 7px
}

/*.pager .pg-prev[disabled=true], .pager .pg-prev[disabled=true]:hover {*/
/*    cursor: default;*/
/*    background-image: url(../icon/page_bg.jpg)*/
/*}*/

/*.pager .pg-next[disabled=true], .pager .pg-next[disabled=true]:hover {*/
/*    cursor: default;*/
/*    background-image: url(../icon/page_bg.jpg)*/
/*}*/

.pager .pg-prev[disabled=true], .pager .pg-next[disabled=true] {
    border-color: #eee;
}

.pager span.els {
    border-color: transparent
}

.pagerHtmlWrap {
    width: 800px;
    margin: 30px auto
}

.pagerHtmlWrap .cc_cells {
    width: 100%;
    height: 35px;
    padding: 5px 0;
    border-bottom: 1px #ccc solid
}

.pagerHtmlWrap .cc_cells a {
    color: #454545;
    font-size: 14px;
    line-height: 35px;
    text-decoration: none
}

.pagerHtmlWrap .cc_cells a span {
    display: inline-block;
    width: 25%;
    text-align: left;
    margin: 0
}
.yq-list {
    width: 100%;
    padding: 20px 25px;
    /*padding-bottom: 0;*/
    background-color: rgba(255,255,255,0.1);
    font-size: 16px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*margin-bottom: 30px;*/
}

.yq-list a {
    font-size: 16px;
    color: #ffffff;
    padding: 0 20px;
    /*margin-bottom: 20px;*/
    position: relative;
}

.yq-list a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 4px;
    width: 1px;
    background: #ffffff;
    height: 15px;
}

.yq-list a:last-child:after {
    display: none;
}
