@charset "utf-8";
/* 是一个CSS声明，用于定义文档的字符编码。这里指定的是UTF-8字符编码。 */
/* 设置body */
body{font-size: 12px;font-family:"PingFang SC", "Microsoft YaHei","Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif;background-color: #fff;}

/* 版心 */
.w {width: 100%;padding: 0 2%;}
/* 显示一行超出省略号 */
.ellipsis {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
/* 可以对选中文本进行自定义样式设计，例如改变选中文本的背景色、文字颜色等 */
::selection{background:#06f;color:#fff;}
/* 是一个用于 Firefox 浏览器的 CSS 伪元素选择器，与 ::selection 类似，但它专为 Firefox 设计 */
::-moz-selection{background:#06f;color:#fff;}
/* 可以为输入框的占位符文本设置特定的样式，例如颜色、字体、大小 */
::-webkit-input-placeholder{text-overflow:ellipsis}
/* 双伪元素清除法 */
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}

/* 设置分页 */
.pagination{ width:auto; height:auto; overflow:hidden; clear:both; text-align:center;  margin:20px auto 20px auto;}
.pagination li{ min-width:32px; height:32px;text-align:center; display:inline-block; line-height:32px; margin-right:4px;border:solid 1px #d9d9d9; border-radius:4px;}
.pagination li:first-child a,.pagination li:last-child a{box-sizing: border-box;padding: 0 10px;}
.pagination li a{ width:100%; height:32px; text-align:center; line-height:32px; display:block; font-size:14px; color:#666; box-sizing: border-box; }
.pagination li:hover,.pagination li.active{ background:#00911a; color:#fff; border:solid 1px #00911a; }
.pagination li:hover a{ color: #fff;}

.more:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* 头部 */
.header {
    position: relative;
    top: 0px;
    width: 100%;
    height: 90px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 9999;
}
.header .logo {
    font-size: 0;
    width: 279px;
    height: 62px;
    overflow: hidden;
}
.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header .nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.header .nav li {
    position: relative;
    flex: 1;
    height: 100%;
    text-align: center;
}
.header .nav li a{
    position: relative;
    display: inline-block;
    height: 100%;
    line-height: 90px;
    font-size: 18px;
    color: #000;
    font-weight: normal;
}
.header .nav li .dropdown-menu {
    display: none;
    position: absolute;
    top:100%;
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    background-color: red;
}
.header .nav li.active a{
    font-weight: bold;
}
.header .nav li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #007ee8;
}

.header .nav li:hover a {
    font-weight: bold;
}
.header .other {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 235px;
    height: 24px;
}
.header .other .phone {
    display: flex;
    align-items: center;
}
.header .other .phone span {
    font-size: 24px;
    color: #007ee8;
}
.header .other .phone .number {
    margin-left: 10px;
    font-size: 22px;
    line-height: 24px;
    color: #222222;
}
.header .other .search {
    margin-right: 0px;
}
.header .other .search span {
    font-size: 20px;
    line-height: 24px;
    color: #000;
}

.header .other .classify {
    display: none;
    position: absolute;
    right: 15px;
    height: 44px;
    width: 44px;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s; 
    z-index: 999;
}
.classify:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
}
.classify span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 2px) / 2);
    width: 25px;
    height: 2px;
    background-color: #000;
}
.classify span:nth-child(1) {transform: translateY(10px) rotate(0deg);}
.classify span:nth-child(2) {opacity: 0;}
.classify span:nth-child(3) {transform: translateY(-10px) rotate(0deg);}
.classify-active span:nth-child(1) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clickfirst;}
.classify-active span:nth-child(2) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clicksecond;}
.classify-active span:nth-child(3) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clickthird;}
/*第一条线旋转动画*/
@keyframes clickfirst {
    0% {
        transform: translateY(8px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}
/*第二条线淡入淡出动画动画*/
@keyframes clicksecond {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*第三条线旋转动画*/
@keyframes clickthird {
    0% {
        transform: translateY(-8px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}
.classify-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}
.classify-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}
.classify-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}
@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-8px) rotate(0deg);
    }
}
@keyframes outsecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes outthird {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(8px) rotate(0deg);
    }
}
/* 分类容器 */
.asidewrap {position: fixed;top: 0px; left: 0;  right: 0;  bottom: 0; z-index: 999;display: none;background-color: #f5f5f5;padding: 0 3%; padding-top: 110px;}
.asidewrap ul {width: 100%;overflow-y: auto;height: calc(100vh - 110px);}
.asidewrap li {border-bottom: 1px solid #dcdcdc;font-size: 16px;}
.asidewrap li .asideheader {display: flex;justify-content: space-between;align-items: center;height: 60px;}
.asidewrap li .asideheader .tit {flex: 1;font-size: 16px;color: #333;line-height: 60px;}
.asidewrap li .asideheader .kz {width: 60px;font-size: 35px;font-style: normal;font-weight: normal;text-align: right;color: #666;}
.asidewrap li .asideheader .tit:hover {color: #007ee8;}
.asidewrap li .asidecontent {padding: 0 15px;display: none;}
.asidewrap li .asidecontent a {display: block;position: relative;line-height: 44px;color: #666;font-size: 14px;padding-left: 15px;}
.asidewrap li .asidecontent a:hover {color: #007ee8;}

/* 底部 */
.footer {
    width: 100%;
    background-image: url(../../images/footerbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.footer a:hover {
    color: #007ee8;
}
.footer .main {
    padding-top: 90px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}
.footer .main .right {
    width: 290px;
}
.footer .main .right h3 {
    position: relative;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    padding-bottom: 10px;
}
.footer .main .right h3::after {
    content: '';
    position: absolute;
    left: 0;
    background-color: #00911a;
    width: 14px;
    height: 2px;
    bottom: 0;
}
.footer .main .right .phone {
    margin-top: 20px;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}
.footer .main .right p {
    color: #888;
    font-size: 15px;
    line-height: 32px;
}
.footer .main .right .codewrap {
    display: flex;
    margin-top: 49px;
    height: 48px;
}
.footer .main .right .codewrap a {
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    background-color: #262626;
    margin-right: 20px;
    border-radius: 50%;
}
.footer .main .right .codewrap a span {
    font-size: 18px;
    color: #929292;
}
.footer .main .right .codewrap a:hover {
    color: #fff;
    background-color: #007ee8;
}
.footer .main .right .codewrap a:hover span {
    color: #fff;
}
.footer .main .right .codewrap a .pic {
    display: none;
    position: absolute;
    top: -110px;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    background-color: #fff;
}
.footer .main .right .codewrap a .pic::after {content: ''; position: absolute; width: 0;height: 0; border-left: 10px solid transparent;  border-right: 10px solid transparent;border-top: 10px solid #fff; bottom: -10px;left: calc(50% - 10px);}
.footer .main .right .codewrap a .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .main .left {
    flex: 1;
    display: flex;
}
.footer .main .left dl {
    margin-right: 120px;
}
.footer .main .left dl:last-child{
    margin-right: 0;
}

.footer .main .left dt {
    position: relative;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.footer .main .left dt::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 2px;
    background-color: #007ee8;
}

.footer .main .left dd {
    font-size: 16px;
    line-height: 42px;
    color: #888888;
}



.footer .foot {
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #999;
    font-size: 14px;
    line-height: 30px;
}
.footer .foot .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer .foot .left a {
    margin-left: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer .foot .left a img{
    margin-right: 5px;
}

/* 其他页面的banner */
.banner {
    position: relative;
    width: 100%;
    height: 380px;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .mask {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 2%;
}
.banner .mask h2 {
    color: #fff;
    font-size: 34px;
    line-height: 46px;
}
.banner .mask h3 {
    font-size: 30px;
    color: #fff;
    line-height: 46px;
}

.othernav {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
    overflow-x: auto;
    white-space: nowrap; /* 防止内容换行 */  
}
.othernav .othernavwrap a {
    position: relative;
    display: inline-block;
    width: 144px;
    height: 76px;
    font-size: 16px;
    color: #222222;
    line-height: 76px;
    text-align: center;
}
.othernav a.active {
    background-color: #007fe8;
    color: #fff;
}
.othernav a.active::after {
    content: '';
    position: absolute;
    left: calc(50% - 6px);
    bottom: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;  
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
.othernav::-webkit-scrollbar{width:0px;height:0px;overflow:auto}

/* 暂无数据 */
.ui-nodata{ text-align: center; padding: 20px; box-sizing: border-box; overflow: hidden;}
.ui-nodata img{ display:block; margin: 0 auto;}
.ui-nodata p{ font-size: 13px; color: #666; line-height: 38px;}



/* 对于小屏幕设备（手机等） */
@media only screen and (max-width: 600px) {
    /* 在此处添加针对小屏幕设备的样式 */
    
    /* 版心 */
    .w {width: 100%;padding: 0 15px;}

    /* 头部 */
    .header {
        position: fixed;
        padding: 0 15px;
        height: 110px;
    }
    .header .logo {
        height: 70px;
    }
    .header .nav {
        display: none;
    }
    .header .other {
        flex-direction: row-reverse;
        height: 70px;
    }
    .header .other .phone {
        display: none;
    }
    .header .other .search {
        margin-right: 52px;
    }
    .header .other .search span {
        font-size: 28px;
    }
    .header .other .classify {
        display: block;
    }

    /* 底部 */
    .footer .main {
        padding-top: 30px;
        padding-bottom: 36px;
    }
    .footer .main .left {
        display: none;
    }
    .footer .main .right .codewrap {
        margin-top: 25px;
    }
    .footer .foot .left a {
        margin-left: 0;
    }

     /* banner */
     .banner {
        margin-top: 110px;
        height: 240px;
    }
    .banner .mask h2 {
        font-size: 25px;
    }
    .banner .mask h3 {
        font-size: 18px;
    }

    .pagination{ width:auto; height:auto; overflow:hidden; clear:both; text-align:center;  margin:10px auto;}
    .pagination li{ min-width:22px; height:22px;text-align:center; display:inline-block; line-height:22px; margin-right:4px;border:solid 1px #d9d9d9; border-radius:4px;}
    .pagination li:first-child a,.pagination li:last-child a{box-sizing: border-box;padding: 0 10px;}
    .pagination li a{ width:100%; height:22px; text-align:center; line-height:22px; display:block; font-size:14px; color:#666; box-sizing: border-box; }
    .pagination li:hover,.pagination li.active{ background:#00911a; color:#fff; border:solid 1px #00911a; }
    .pagination li:hover a{ color: #fff;}

    .othernav .othernavwrap a {
        height: 60px;
        line-height: 60px;
    }

}
/* 对于中等屏幕设备（平板等） */
@media only screen and (min-width: 601px) and (max-width: 1199px) {
    /* 在此处添加针对中等屏幕设备的样式 */

    /* 版心 */
    .w {width: 100%;padding: 0 15px;}

    /* 头部 */
    .header {
        position: fixed;
        padding: 0 15px;
        height: 110px;
    }
    .header .logo {
        height: 70px;
    }
    .header .nav {
        display: none;
    }
    .header .other {
        flex-direction: row-reverse;
        height: 70px;
    }
    .header .other .phone {
        display: none;
    }
    .header .other .search {
        margin-right: 52px;
    }
    .header .other .search span {
        font-size: 28px;
    }
    .header .other .classify {
        display: block;
    }
    /* 底部 */
    .footer .main .left {
        display: none;
    }

    /* banner */
    .banner {
        margin-top: 110px;
        height: 240px;
    }
    .banner .mask h2 {
        font-size: 25px;
    }
    .banner .mask h3 {
        font-size: 18px;
    }

    .othernav .othernavwrap a {
        height: 60px;
        line-height: 60px;
    }


}

.searchwrap {
    position: fixed;  
    top: 0px;  
    left: 0;  
    right: 0;  
    bottom: 0;  
    background-color: #333333;  
    z-index: 99999;  
    display: none;  
}
.searchwrap .closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
}
.searchwrap .closebtn span {
    font-size: 25px;
    color: #fff;
    line-height: 50px;
}
.searchwrap .search {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(50% - 30px);
    height: 60px;
    border-bottom:1px solid #515151;
}
.searchwrap .search input {
    width: 100%;
    height: 100%;
    padding-left: 60px;
    padding-right: 60px;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    caret-color: white;  
    color: #fff;
    border: none;
}
.searchwrap .search span {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 30px;
    color: #fff;
}
.searchwrap .search .enter {
    position: absolute;
    right: 0;
    top: 15px;
    width: 60px;
    font-size: 20px;
    color: #fff;
}