/*
公用的style样式
 */
/** 清除内外边距 **/
body,
a,
img,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
    {
    margin: 0;
    padding: 0;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f6f6f6;
    box-sizing: border-box;
}

/** 设置默认字体 **/
/** {*/
/*    font-family: "Microsoft YaHei UI","微软雅黑", "Microsoft YaHei";*/
/*    background: none;*/
/*    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
/*}*/

body,
div,
a,
img,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
    {
    /*moz-user-select: -moz-none;*/
    /*-moz-user-select: none;*/
    /*-o-user-select: none;*/
    /*-khtml-user-select: none;*/
    /*-webkit-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
    font-family: "Microsoft YaHei UI", "微软雅黑", "Microsoft YaHei";
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}

/* 统一等宽字体 */
/** 重置列表元素 **/
ul,
ol,
nav {
    list-style: none;
}

/** 重置文本格式元素 **/
a {
    text-decoration: none;
    color: inherit;
}

button {
    outline: none;
}

.clear,
.clearfix:after {
    clear: both;
    height: 0;
    overflow: hidden;
    display: block
}

.clearfix:after {
    visibility: hidden;
    content: "."
}

.clearfix {
    *zoom: 1
}

/** 重置表单元素 **/
legend {
    color: #000;
}

/* for ie6 */
fieldset,
img {
    border: 0;
}

/* images 搭车：让链接里的 images 无边框 */
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/*取消浏览器默认样式*/
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input,
button,
select,
textarea {
    outline: none;
}

/*浮动*/
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

/*白色背景*/
.white-bg {
    background-color: #fff;
}

/*flex布局-两端对齐*/
.flex-space {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

/*flex布局-水平垂直居中*/
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-nowrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

/*flex-横向分布*/
.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.flex-start {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.flex-column-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/*文字一行中超出宽度显示为省略号*/
.ell-style {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}

/*ul样式初始化*/
ul {
    list-style: none;
}

/*文字行数限制*/
/*两行显示*/
.two-lines-style {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*三行显示*/
.three-lines-style {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*四行显示*/
.four-lines-style {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex-container {
    display: flex;
    flex-direction: column;
    /* 上下布局 */
    min-height: 100vh;
}

.flex-container .news-list-wrap {
    flex-grow: 1;
}

.mg-1200 {
    width: 1200px;
    margin: auto;
}

.show-bread-info {
    padding: 24px 0;
}

.show-bread-info span {
    font-size: 16px;
    color: #858585;
}

.show-bread-info span:not(:last-child) {
    margin-right: 16px;
}

.common-wrap {
    padding: 32px 24px;
    background-color: #fff;
    margin-bottom: 36px;
}

.common-wrap .header-title {
    gap: 16px;
    align-items: center !important;
    margin-bottom: 50px;
}

.common-wrap .header-title h2 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
}

.common-wrap .title-icon {
    width: 24px;
    height: 27px;
    vertical-align: middle;
}

/* 联系我们页面样式 */
.contact-container {
    margin: 40px 0;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-item {
    width: calc(50% - 20px);
    display: flex;
    border: 1px solid;
    border-image: linear-gradient(to right, rgb(72, 192, 163), rgb(95, 209, 213)) 1;
    margin-right: 40px;
    margin-bottom: 40px;
}

.contact-item:nth-child(2n) {
    margin-right: 0;
}

.contact-left {
    background-image: url('../images/contact.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.contact-icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    text-align: center;
}

.contact-right {
    width: 60%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.show-pc-flex {
    display: flex;
}

.show-pc {
    display: block;
}

.show-wap {
    display: none;
}

/*分页 */
div.zxf_pagediv {
    text-align: center;
    color: #999999;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.zxf_pagediv a {
    text-decoration: none;

}

div.zxf_pagediv span,
div.zxf_pagediv a {
    display: inline-block;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 4px;
    font-size: 20px;
    color: rgba(51, 51, 51, 0.6);
}

div.zxf_pagediv span.current {
    color: rgb(95, 209, 213);
    border: 1px solid rgb(95, 209, 213);
}

.zxfPagenum {
    color: #666;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    border-radius: 3px;
}

.nextpage {

    margin: 0 5px;
}

.nextbtn,
.prebtn,
span.disabled {
    color: #666;
    background: #fff;
    width: 88px;
    height: 42px;
    line-height: 42px;
    border-radius: 3px;
}

div.zxf_pagediv span.disabled {
    display: none;

}

.zxfinput {
    width: 50%;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 50%;
    padding-left: 10px;
    font-size: 20px;
    color: rgba(51, 51, 51, 0.6);
    /* width: 50px;
	height: 42px;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #E6E6E6;
	margin: 0 12px;
	border-radius: 3px;
	color: #666; */
}

div.zxf_pagediv span.zxfokbtn {
    width: 50%;
    color: rgb(95, 209, 213);
    border: 1px solid rgb(95, 209, 213);
    margin: 0;
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.zxf_pagediv_search {
    width: 90px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .show-pc {
        display: none !important;
    }

    .show-pc-flex {
        display: none;
    }

    .show-wap {
        display: block;
    }

    .mg-1200 {
        width: 100%!important;
        margin: auto;
    }

    .contact-item {
        width: 100%;
        margin-right: 0;
    }

    .common-wrap {
        padding: 25px 16px;
        margin-bottom: 0;
    }

    .text-list-more {
        width: 230px;
        line-height: 40px;
        margin: 16px auto;
        text-align: center;
        font-size: 16px;
        color: #333;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    .wap-title {
        background-color: #fff;
        padding: 0.8rem 1.3rem;
        position: relative;
    }
    .wap-title .lf-back {
        position: absolute;
        left: 1.1rem;
        z-index: 2;
    }
    .wap-title .center-title {
        font-size: 18px;
    }
    .show-bread-info {
        padding: 1rem;
        background-color: #FFFFFF;
    }
    .show-bread-info span {
        font-size: 14px;
    }
    .show-bread-info span:not(:last-child) {
        margin-right: 8px;
    }
}
