/* 清除内外边距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 清除默认字体 */
body{
    font-family: "Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
}

/* 清除列表默认样式 */
ul, ol {
    list-style: none;
}

/* 清除链接默认样式 */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 清除图片默认样式 */
img {
    vertical-align: middle;
}

/* 清除表格默认样式 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 清除表单默认样式 */
form {
    display: inline;
}

/* 清除按钮默认样式 */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* 清除输入框默认样式 */
input, textarea {
    border: none;
    outline: none;
    resize: none;
}

/* 清除文字选择 */
/* ::selection {
    background-color: transparent;
} */

/* 清除滚动条默认样式 */
/* ::-webkit-scrollbar {
    width: 0;
    height: 0;
} */

.all-wrap {
    min-width: 1200px;
    width: 100%;
}

.wrap{
    width: 1200px;
    margin: 0 auto;
}

@font-face {
    font-family: 'iconfont';
    src: url('./iconfont/iconfont.woff2?t=1752110868936') format('woff2'),
        url('./iconfont/iconfont.woff?t=1752110868936') format('woff'),
        url('./iconfont/iconfont.ttf?t=1752110868936') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer{
    height: 160px;
    background: url('../img/footer_bg.jpg') no-repeat center left / cover;
}

.footer-address{
    height: 170px;
    /* background-color: grey; */
}

.footer-address .address-con{
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.footer-address .address-con .left{
    display: inline-flex;
    align-items: center;
}

.footer-address .address-con .logo{
    margin: 0 46px 0 40px;
}

.footer-address .address-con .address p{
    color: #fefefe;
    font-size: 16px;
    line-height: 38px;
    text-align: center;
}

.footer-address .address-con .address p i{
    color: #fefefe;
    margin-right: 10px;
}

.footer-address .address-con .address a{
    color: #fefefe;
    font-size: 16px;
}

.footer-address .address-con .address a:hover{
    color: red;
}

.footer-address .address-con .right{
    position: absolute;
    right: 282px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-address .address-con .to-phone{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.footer-address .address-con .to-phone span{
    color: #fefefe;
    font-size: 16px;
    margin-top: 8px;
}

.header{
    height: 244px;
    background: url(../img/top_bg.jpg) no-repeat center center;
}

.header>div{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav{
    height: 50px;
    background-color: #1e72f9;
    margin-bottom: 39px;
}

.nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav a{
    line-height: 50px;
    display: block;
    padding: 0 26px;
    font-size: 20px;
    color: #fefeff;
    font-weight: bold;
    transition: all 0.3s;
}

.nav li{
    transition: all 0.3s;
}

.nav li:hover,.nav li.active{
    background-color: #fff;
}

.nav li:hover a,.nav li.active a{
    color: #1e72f9;
}

.header .header-search{
    height: 40px;
    box-sizing: border-box;
    width: 300px;
}

.header .header-search .iconfont{
    font-size: 24px;
    color: #2b2b2b;
    cursor: pointer;
}

.header .header-search .form-con{
    display: flex;
    justify-content: space-between;
}

.header .header-search .form-con input{
    width: 256px;
    height: 40px;
    font-size: 16px;
    padding: 0 10px;
    color: #333333;
    background-color: #fff;
}

.header .header-search .form-con input::placeholder{
    color: #333333;
}

.header .header-search .form-con button{
    width: 44px;
    height: 40px;
    font-size: 20px;
    background-color: #1e72f9;
    color: #fefefe;
}

.list-style .hd{
    overflow: hidden;
    border-bottom: 1px solid #dddddd;
    position: relative;
    margin-bottom: 24px;
}

.list-style .hd li{
    margin: 0 20px;
    float: left;
}

.list-style .hd .title{
    font-size: 20px;
    color: #444545;
    font-weight: bold;
    display: inline-block;
    line-height: 44px;
}

.list-style .hd .more{
    display: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.list-style .hd .more:hover{
    color: #1e72f9;
}

.list-style .hd li .title{
    border-bottom: 4px solid transparent;
}

.list-style .hd li.on .title{
    color: #1e72f9;
    border-bottom: 4px solid #1e72f9;
}

.list-style .hd li.on .more{
    display: block;
}

.list-style .bd li{
    padding-left: 20px;
    position: relative;
    height: 36px;
    overflow: hidden;
}

.list-style .bd li a{
    display: inline-block;
    color: #3c3c3c;
    line-height: 36px;
    font-size: 16px ;
    transition: all 0.3s;
    max-width: calc(100% - 30px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.list-style .bd li::after{
    content: '';
    width: 3px;
    height: 3px;
    background-color: #3c3c3c;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.list-style .bd li a:hover{
    transform: translateX(8px);
}

.list-style .bd li:hover a{
    color: #1e72f9;
}
.list-style .bd li .time{
    float: right;
}

.footer-links{
    height: 80px;
    margin-bottom: 28px;
}

.footer-links .links-con{
    height: 80px;
    display: flex;
    align-items: center;
    background-color: #f6f6f6;
}

.footer-links .links-con .links-title{
    font-size: 18px;
    color: #535353;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-right: 60px;
}

.footer-links .links-con .links-title i{
    font-size: 28px;
    margin: 0 10px 0 4px;
}

.footer-links .links-con .layui-form{
    width: calc(100% - 174px);
}

.footer-links .links-con .layui-form>div{
    margin-right: 30px;
}

.footer-links .links-con .layui-form>div:last-child{
    margin-right: 0;
}

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

.footer p{
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.footer a{
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.footer a:hover{
    color: #1e72f9;
}

.nav-toggler{
    position: fixed;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    color: #1e72f9;
    z-index: 999;
    display: none;
}

.nav-show,.nav-hide{
    display: none;
}

