/*
* @作者: 庄晓辉
* @制作日期: 2021-03-29 20:37:34
* @上次修改者: 庄晓辉
* @上次修改时间: 2021-03-29 20:37:34
*/

/* Animate.css动画演示 */
@import "../css/animate.css";

/* Swiper 6.4.1 */
@import "../swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../css/iconfont.css";

/* 公共样式 */
@import "../css/public.css";
.text_btn{
  position: relative;
}
.text_btn::after{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left:0;
  top:0;
  background-color: #85c03f;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.text_btn:hover:after{
  width: 100%;
}
.text_span{
  position: relative;
  z-index: 1000;
}

/* 顶部 */
.topbox {
  width: 100%;
  border-top: 1px solid #006fc0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 36px;
  font-size: 12px;
  color: #888;
}
.top_nav a {
  float: left;
  color: #888;
  padding-left: 20px;
}
.top_nav a:nth-child(1){
  background: url(../images/top_icon1.png) no-repeat left center;
}
.top_nav a:nth-child(3){
  background: url(../images/top_icon2.png) no-repeat left center;
}
.top_nav a:last-child{
  margin-left: 20px;
  padding: 0 20px 0 40px;
  background: url(../images/top_icon3.png) no-repeat 20px center #006fc0;
  color: #fff;
}
.top_nav span{
  float: left;
  margin: 0 20px;
}
.top_nav a:hover {
  color: #006fc0;
  text-decoration: underline;
}
.top_nav a:last-child:hover{
  color: #fff;
}

/* 头部 */
.header {
  width: 100%;
  background-color: #f8f8f8;
}
.logo{
  padding: 45px 0;
}
.logo > a{
  width: 330px;
}
.logo img {
  width: 100%;
  display: block;
  height: auto;
}
.logo_txt{
  width: 320px;
  margin-left: 22px;
}
.header_dianhua {
  line-height: 18px;
  color: #353535;
  font-size: 13px;
  background: url(../images/header_dianhua.png) no-repeat left center;
  padding-left: 50px;
  margin-top: 52px;
}
.header_dianhua span{
  display: block;
  line-height: 28px;
  font-size: 27px;
  color: #009ad5;
  font-weight: bold;
}

/* 导航 */
nav {
  background: #006fc0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
}
.layui-nav{
  background-color: initial;
  padding: 0;
  border-radius: initial;
  -webkit-border-radius: initial;
  -moz-border-radius: initial;
  -ms-border-radius: initial;
  -o-border-radius: initial;
}
.layui-nav .layui-nav-item{
  width: 14.285%;
  line-height: 62px;
  padding-right: 2px;
}
.layui-nav .layui-nav-item::before{
  content: "";
  width: 2px;
  float: left;
  height: 8px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.layui-nav .layui-nav-item:nth-child(7){
  padding: 0;
}
.layui-nav .layui-nav-item:nth-child(7)::before{
  display: none;
}
.layui-nav .layui-nav-item > a{
  padding: 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 1001;
}
.layui-nav .layui-nav-more{
  display: none;
}
.layui-nav .layui-this:after,
.layui-nav-bar,
.layui-nav-tree .layui-nav-itemed:after {
  height: 100%;
  background-color: #009ad5;
}
.layui-nav .layui-nav-item a:hover,
.layui-nav .layui-this a{
  color: #fff;
}
.layui-nav .layui-nav-item:hover > a{
  color: #fff;
}

/* 导航下拉 */
.layui-nav-child{
  top: 100%;
  padding: 2px 0;
  border: none;
  line-height: 34px;
  background-color: rgba(0,111,192,0.8);
  border-radius: initial;
  -webkit-border-radius: initial;
  -moz-border-radius: initial;
  -ms-border-radius: initial;
  -o-border-radius: initial;
}
.layui-nav .layui-nav-child dd a{
  font-size: 14px;
  color: #fff;
  padding: 0;
  text-align: center;
  line-height:44px;
}
.layui-nav .layui-nav-child dd a:hover{
  background-color: #009ad5;
}

/*banner大图*/
.banner {
  width: 100%;
  position: relative;
}
.banner .banner-imgbox .swiper-slide img {
  width: 100%;
}
/*圆点*/
.banner .swiper-pagination {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 15px;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #006fc0;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #009ad5;
}
.banner:hover .swiper-pagination {
  opacity: 1;
}
/*箭头*/
.banner .banner-next {
  right: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/next.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner .banner-prev {
  left: 2%;
  position: absolute;
  top: 50%;
  margin-top: -35px;
  width: 38px;
  height: 70px;
  background: url(../images/imgs/prev.jpg) no-repeat center center;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 999999;
  transition: all 0.4s;
}
.banner:hover .banner-next {
  opacity: 1;
}
.banner:hover .banner-prev {
  opacity: 1;
}

/* 搜索 */
.search{
  width: 100%;
  overflow: hidden;
  background-color: #f6f6f6;
}
.search_form{
  width: 374px;
  float: right;
  border-bottom: 1px solid #000;
}
.search_inp1{
  width: calc(100% - 30px);
  float: left;
  height: 61px;
  line-height: 60px;
  padding: 0 10px;
  color: #000;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  border: none;
  background: none;
}
.search_inp1::-webkit-input-placeholder{
  color: #a1a1a1;
}
.search_inp1:-moz-placeholder{
  color: #a1a1a1;
}
.search_btn{
  width: 30px;
  float: left;
  height: 61px;
  background: url(../images/search_ss.png) no-repeat center center;
  border: none;
  outline: none;
  cursor: pointer;
}
.search_txt{
  display: block;
  overflow: hidden;
  line-height: 22px;
  padding: 20px 0;
  font-size:13px;
}
.search_txt>span{
  float: left;
  background: url(../images/search_icon.png) no-repeat left center;
  padding-left: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.search_txt > a{
  color: #666666; margin-right:6px;
}
.search_txt > a:hover{
  color: #006fc0;
  text-decoration: underline;
}
/* END */

/* 首页内容 */
/* 推荐产品 */
.tjcp{
  width: 100%;
  overflow: hidden;
  padding: 55px 0;
}
.tjcp_left{
  width: 250px;
  float: left;
}
.tjcp_title{
  display: block;
  overflow: hidden;
  background-color: #006fc0;
  padding: 18px 0 18px 24px;
}
.tjcp_title>div{
  display: block;
  padding-left: 50px;
  background: url(../images/about_title_icon.png) no-repeat left center;
}
.tjcp_title>div .tjcp_p{
  line-height: 26px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.tjcp_title>div .tjcp_sp{
  line-height: 14px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.8;
}
.tjcp_ul{
  display: block;
  overflow: hidden;
}
.tjcp_ul>li{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  border: 1px solid #e5e5e5;
}
.tjcp_ul>li>a{
  display: block;
  overflow: hidden;
  height: 44px;
  line-height: 42px;

  padding: 0 20px;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.tjcp_ul>li>a::before{
  content: ">";
  float: right;
}
.tjcp_ul>li:hover>a{
  background-color: #009ad5;
  color: #fff;
}
.tjcp_ul>li.tjcp_on>a{
  background-color: #009ad5;
  color: #fff;
}
.tjcp_dl{
  display: block;
  border-top: 1px solid #e5e5e5;
  padding: 0 20px;
}
.tjcp_dl dd{
  display: block;
  overflow: hidden;
  border-bottom: 1px dashed #e5e5e5;
}
.tjcp_dl dd a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
  color: #555;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.tjcp_dl dd a::before{
  content: "+";
  float: left;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  background-color: #d1d1d1;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  margin: 13px 10px 0 0;
  transition: all 0.4s;
}
.tjcp_dl dd:last-child{
  border-bottom: none;
}
.tjcp_dl dd a:hover{
  color: #009ad5;
}
.tjcp_dl dd a:hover::before{
  background-color: #009ad5;
}
.tjcp_imgs{
  display: block;
  overflow: hidden;
  padding-top: 20px;
}
.tjcp_imgs img{
  width: 100%;
  display: block;
}
.tjcp_right{
  width: 1014px;
  float: right;
}
.tjcp_titles{
  display: block;
  overflow: hidden;
  line-height: 50px;
  border-bottom: 1px solid #ebebeb;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.8);
}
.tjcp_titles>span{
  float: left;
  font-weight: bold;
  font-size: 18px;
  color: rgba(0,0,0,1);
  margin-right: 8px;
  padding-left: 25px;
  position: relative;
}
.tjcp_titles>span::before{
  content: ">";
  width: 18px;
  float: left;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background-color: #009ad5;
  color: #fff;
  font-family: SimSun;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cp_ul{
  display: block;
  width: 1029px;
  padding-top: 10px;
}
.cp_ul li{
  width: 328px;
  float: left;
  margin: 15px 15px 0 0;
}
.cp_ul li a{
  width: 100%;
  float: left;
  padding: 7px;
  border: 1px solid #e6e6e6;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.06);
}
.cp_ul li a .cp_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../images/tjcp_bj.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.cp_ul li a .cp_img::before{
  content: "";
  display: block;
  padding-top: 78.20513%;
}
.cp_ul li a .cp_img::after{
  content: "";
  width: 0;
  height: 0;
  overflow: hidden;
  float: left;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.4s;
}
.cp_ul li a .cp_txt{
  display: block;
  overflow: hidden;
  padding: 0 16px;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  color: #777;
  text-transform: uppercase;
}
.cp_ul li a .cp_txt>span{
  float: left;
  color: #000;
  font-weight: bold;
  margin-right: 8px;
  width:80%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.cp_ul li a .cp_txt::before{
  content: "+";
  width: 16px;
  float: right;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #000;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  margin: 18px 0 0 5px;
  text-overflow:ellipsis;
  white-space: nowrap;
  transition: all 0.4s;
}
.cp_ul li a:hover{
  border-color: #006fc0;
}
.cp_ul li a:hover .cp_img::after{
  width: 100%;
  height: 100%;
}
.cp_ul li a:hover .cp_txt::before{
  background-color: #006fc0;
}

/* 关于我们 */
.gsjj{
  width: 100%;
  overflow: hidden;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 75px 0;
}
.gsjj_title{
  display: block;
  overflow: hidden;
  text-align: center;
}
.gsjj_p{
  display: flex;
  justify-content: center;
}
.gsjj_p>span{
  float: left;
  position: relative;
  padding: 0 20px;
  line-height: 40px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.gsjj_p>span::before,
.gsjj_p>span::after{
  content: "";
  width: 155px;
  float: left;
  height: 2px;
  background-color: #00b8ff;
  position: absolute;
  top:50%;
  left: 100%;
  transform: translateY(-50%);
}
.gsjj_p>span::after{
  left: initial;
  right: 100%;
}
.gsjj_sp{
  line-height: 18px;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.gsjj_heng{
  display: block;
  overflow: hidden;
  height: 1px;
  margin-top: 19px;
  background-color: rgba(255,255,255,0.12);
  position: relative;
}
.gsjj_heng::before{
  content: "";
  width: 35px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.gsjj_contect{
  display: flex;
  overflow: hidden;
  margin-top: 50px;
}
.gsjj_left{
  width: 530px;
  float: left;
  border: 1px solid #d9d9d9;
  padding: 24px;
  background-color: #fff;
  display: flex;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 9;
}
.gsjj_img{
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gsjj_img::before{
  content: "";
  display: block;
  padding-top: 66.6667%;
}
.gsjj_right{
  width: 670px;
  float: left;
  margin: 22px 0;
  background-color: #fff;
  padding: 40px 35px;
}
.gsjj_pp{
  line-height: 32px;
  font-size: 22px;
  color: #000;
  font-weight: bold;
}
.gsjj_hengs{
  display: block;
  overflow: hidden;
  margin: 15px 0;
  width: 30px;
  height: 1px;
  background-color: #006fc0;
}
.gsjj_txt{
  display: block;
  overflow: hidden;
  height: 130px;
  line-height: 26px;
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient: vertical;
}
.gsjj_more{
  display: block;
  overflow: hidden;
  padding: 20px 0 3px 0;
}
.gsjj_more a{
  width: 58px;
  float: left;
  height: 18px;
  line-height: 16px;
  border: 1px solid #dedede;
  border-radius: 9px;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  color: #999;
  box-shadow: 3px 3px 3px #efefef;
}
.gsjj_more a:hover{
  background-color: #009ad5;
  border-color: #009ad5;
  color: #fff;
}

/* 企业证书 */
.qua{
  width: 100%;
  overflow: hidden;
  background: url(../images/qua_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.qua_box{
  display: block;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  background-color: #fff;
  padding: 35px;
}
.qua_title{
  display: block;
  overflow: hidden;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e8e8;
  line-height: 32px
}
.qua_p{
  float: left;
  padding-left: 17px;
  font-size: 28px;
  color: #252525;
  position: relative;
}
.qua_p::before,
.qua_p::after{
  content: "";
  width: 5px;
  float: left;
  height: 13px;
  background-color: #006fc0;
  border-radius: 2px 2px 0 0;
  position: absolute;
  left: 0;
  top:3px
}
.qua_p::after{
  top: initial;
  bottom: 3px;
  background-color: #000;
  border-radius: 0 0 2px 2px;
}
.qua_p>span{
  color: #006fc0;
}
.qua_sp{
  float: left;
  font-size: 12px;
  color: #353535;
  text-transform: uppercase;
  padding-left: 10px;
}
.qua_more{
  float: right;
  padding-top: 5px;
}
.qua_more>a{
  display: block;
  width: 58px;
  height: 24px;
  line-height: 22px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;;
  color: #555;
}
.qua_more>a>span{
  display: inline-table;
  position: relative;
}
.qua_more>a>span::before{
  content: "+";
  float: right;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  background-color: #555;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  border-radius: 50%;
  margin: 5px 0 0 3px;
  transition: all 0.4s;
}
.qua_more>a:hover{
  border-color: #006fc0;
  background-color: #006fc0;
  color: #fff;
}
.qua_more>a:hover>span::before{
  background-color: #fff;
  color: #006fc0;
}
.qua_ul{
  display: block;
  overflow: hidden;
  width: 1225px;
}
.qua_ul li{
  width: 228px;
  float: left;
  margin: 25px 17px 0 0;
}
.qua_ul li a{
  width: 100%;
  float: left;
  border: 1px solid #e6e6e6;
}
.qua_ul li a .qua_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  background-color: #f7f7f7;
}
.qua_ul li a .qua_img::before{
  content: "";
  display: block;
  padding-top: 126.2223%;
}
.qua_ul li a .qua_txt{
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 14px;
  color: #000;
  background-color: #f7f7f7;
}
.qua_ul li a .qua_txt>span{
  display: inline-table;
  padding-right: 25px;
  position: relative;
}
.qua_ul li a .qua_txt>span::before{
  content: "+";
  width: 14px;
  float: left;
  height: 14px;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  line-height: 14px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.qua_ul li a:hover{
  border-color: #006fc0;
}
.qua_ul li a:hover .qua_img{
  border-color: #006fc0;
}
.qua_ul li a:hover .qua_txt{
  background-color: #006fc0;
  color: #fff;
}
.qua_ul li a:hover  .qua_txt>span::before{
  background-color: #fff;
  color: #000;
}

/* 新闻资讯 */
.news{
  width: 100%;
  overflow: hidden;
  padding: 75px 0;;
}
.news .gsjj_p>span{
  color: #000;
}
.gsjj_p>span::before, .gsjj_p>span::after {
  background-color: #006fc0;
}
.news .gsjj_sp{
  color: #000;
}
.news .gsjj_heng{
  background-color: #e5e5e5;
}
.news .gsjj_heng::before{
  background-color: #161d2b;
}
.news_contect{
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_box{
  width: 408px;
  float: left;
  margin: 50px 0 0 0;
}
.news .qua_title{
  padding-bottom: 20px;
}
.news_img{
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news_img::before{
  content: "";
  display: block;
  padding-top: 35.87224%;
}
.news_ul{
  display: block;
  overflow: hidden;
  padding-top: 10px;
}
.news_ul li{
  display: block;
  overflow: hidden;
  border-bottom: 1px dashed #d7d7d7;
}
.news_ul li a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  position: relative;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 12px;
}
.news_ul li a>span{
  float: right;
  color: #888;
}
.news_ul li a::before{
  content: "";
  width: 4px;
  float: left;
  height: 4px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.4s;
}
.news_ul li:hover a{
  color: #006fc0;
  text-decoration: underline;
}
.news_ul li:hover a::before{
  background-color: #006fc0;
}
/* END-首页内容 */

/* 底部 */
.footer {
  background: url(../images/footer_bj.jpg);
  padding: 50px 0;
}
.footer>.container{
  display: flex;
}
.footer>.container>div{
  float: left;
}
.footer_left{
  width: 30.3125%;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 75px;
}
.footer_p{
  line-height: 32px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer_txt{
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  line-height: 25px;
  padding-top: 15px;
}
.footer_txt>b{
  font-size: 18px;
}
.footer_center{
  width: 56.5625%;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-left: 80px;
}
.footer_B{
  width: 25%;
  float: left;
}
.footer_sp{
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.footer_sp::after{
  content: "";
  width: 30px;
  display: block;
  height: 1px;
  background-color: rgba(255,255,255,0.15);
  margin-top: 18px;
}
.footer_ul{
  display: block;
  overflow: hidden;
  padding-top: 16px;
}
.footer_ul li{
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
}
.footer_ul li a{
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.footer_ul li a:hover{
  color: rgba(255,255,255,1);
  text-decoration: underline;
}
.footer_right{
  width: 13.125%;
  padding-left: 28px;
}
.footer_right img{
  width: 100%;
  display: block;
  height: auto;
}
.footer_right span{
  display: block;
  overflow: hidden;
  line-height: 28px;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.copyright{
  width: 100%;
  overflow: hidden;
  background-color: #0067b9;
  line-height: 20px;
  color: #fff;
  font-size: 13px;
  position: relative;
}
.copyright>.container{
  position: relative;
  padding: 17px 0;
}
.copyright a{
  color: #fff;
  margin: 0 5px;
}
.copyright a:hover{
  color: #fff;
  text-decoration: underline;
}
.copyright_btn{
  height: 100%;
  float: left;
  margin: 0;
  padding: 0 26px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #009ad5;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.copyright_btn::before{
  content: "";
  width:0;
  height:0;
  border-right:11px solid #009ad5;
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
  position:absolute;
  left:-11px;
  top:50%;
  margin-top:-9px;
}
/* END-底部 */

/* 关于我们 */
.main{
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.dqwz_title{
  width: 100%;
  float: left;
  border-bottom: 1px dashed #e2e2e2;
  line-height: 24px;
  padding-bottom: 10px;
}
.dqwz_p{
  float: left;
  padding-left: 20px;
  background: url(../images/dqwz_logo.png) no-repeat left center;
}
.dqwz_p>span{
  color: #009ad5;
}
.dqwz_contect{
  width: 100%;
  float: left;
  padding: 25px 0;
}
.main_left{
  width: 250px;
  float: left;
}
.about{
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.about_title{
  display: block;
  overflow: hidden;
  height: 70px;
  line-height: 70px;
  background-color: #006fc0;
  padding-left: 20px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
.about_title>span{
  float: left;
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
}
.about_ul{
  display: block;
  overflow: hidden;
}
.about_ul>li{
  display: block;
  overflow: hidden;
  margin-top: 5px;
  border: 1px solid #e5e5e5;
}
.about_ul>li>a{
  display: block;
  overflow: hidden;
  height: 44px;
  line-height: 42px;
  padding: 0 20px;
  font-size: 14px;
  color: #000;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_ul>li>a::before{
  content: ">";
  float: right;
}
.about_ul>li:hover>a{
  background-color: #009ad5;
  color: #fff;
}
.about_ul>li.tjcp_on>a{
  background-color: #009ad5;
  color: #fff;
}
.about_dl{
  display: none;
  border-top: 1px solid #e5e5e5;
  padding: 0 20px;
}
.about_dl dd{
  display: block;
  overflow: hidden;
  border-bottom: 1px dashed #e5e5e5;
}
.about_dl dd a{
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
  color: #555;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.about_dl dd a::before{
  content: "+";
  float: left;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  background-color: #d1d1d1;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  margin: 13px 10px 0 0;
  transition: all 0.4s;
}
.about_dl dd:last-child{
  border-bottom: none;
}
.about_dl dd a:hover{
  color: #009ad5;
}
.about_dl dd a:hover::before{
  background-color: #009ad5;
}
.about_dl dd a.on{color: #009ad5;}
.about_dl dd a.on::before{
  background-color: #009ad5;
}

.about_B{
 display: block;
 overflow: hidden;
 border: 1px solid #e5e5e5;
}
.about_dianhuaB{
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  padding: 13px 0 13px 22px;
}
.about_dianhua{
  display: block;
  overflow: hidden;
  padding-left: 42px;
  background: url(../images/about_dianhua.png) no-repeat left center;
  line-height: 20px;
}
.about_dianhua>span{
  display: block;
  line-height: 26px;
  font-size: 23px;
  color: #009ad5;
  font-weight: bold;
}
.about_txt{
  display: block;
  overflow: hidden;
  padding: 20px;
  font-size: 13px;
  line-height: 26px;
  color: #464646;
}
.about_txt>b{
  color: #000;
  font-size: 16px;
}
.main_right{
  width: 1014px;
  float: right;
}
.dqwz_titles{
  width: 100%;
  float: left;
  line-height: 50px;
  border-bottom: 1px solid #ebebeb;
  font-size: 18px;
  color: #000;
  font-weight: bold;
}
.dqwz_contects{
  width: 100%;
  float: left;
  padding-top: 15px;
}
.company{
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #555;
}

/* 产品展示 */
.cp_ul1{
  display: block;
  width: 1029px;
}
.cp_ul1 li{
  width: 328px;
  float: left;
  margin: 0 15px 15px 0;
}
.cp_ul1 li a{
  width: 100%;
  float: left;
  padding: 7px;
  border: 1px solid #e6e6e6;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.06);
  padding-bottom:0px;
}
.cp_ul1 li a .cp_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../images/tjcp_bj.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.cp_ul1 li a .cp_img::before{
  content: "";
  display: block;
  padding-top: 75.20513%;
}
.cp_ul1 li a .cp_img::after{
  content: "";
  width: 0;
  height: 0;
  overflow: hidden;
  float: left;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.4s;
}
.cp_ul1 li a .cp_txt{
  display: block;
  overflow: hidden;
  padding: 0 16px;
  height: 44px;
  line-height: 44px;
  font-family: Aparajita;
  font-size: 16px;
  color: #777;
  text-transform: uppercase;
}
.cp_ul1 li a .cp_txt>span{
  float: left;
  color: #000;
  width: 81%;
  font-weight: bold;
  margin-right: 8px; line-height:44px;
}
.cp_ul1 li a .cp_txt::before{
  content: "+";
  width: 16px;
  float: right;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #000;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  margin: 14px 0 0 5px;
  text-overflow:ellipsis;
  white-space: nowrap;
  transition: all 0.4s;
}
.cp_ul1 li a:hover{
  border-color: #006fc0;
}
.cp_ul1 li a:hover .cp_img::after{
  width: 100%;
  height: 100%;
}
.cp_ul1 li a:hover .cp_txt::before{
  background-color: #006fc0;
}



.zz_ul1{
  display: block;
  width: 1029px;
}
.zz_ul1 li{
  width: 242px;
  float: left;
  margin: 0 15px 15px 0;
}
.zz_ul1 li a{
  width: 100%;
  float: left;
  padding: 7px;
  border: 1px solid #e6e6e6;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.06);
  padding-bottom:0px;
}
.zz_ul1 li a .cp_img{
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../images/tjcp_bj.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.zz_ul1 li a .cp_img::before{
  content: "";
  display: block;
  padding-top: 130.20513%;
}
.zz_ul1 li a .cp_img::after{
  content: "";
  width: 0;
  height: 0;
  overflow: hidden;
  float: left;
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.4s;
}
.zz_ul1 li a .cp_txt{
  display: block;
  overflow: hidden;
  padding: 0 16px;
  height: 44px;
  line-height: 44px;
  font-family: Aparajita;
  font-size: 16px;
  color: #777;
  text-transform: uppercase;
}
.zz_ul1 li a .cp_txt>span{
  float: left;
  color: #000;
  font-weight: bold;
  margin-right: 8px; line-height:44px;
}
.zz_ul1 li a .cp_txt::before{
  content: "+";
  width: 16px;
  float: right;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #000;
  border-radius: 50%;
  font-family: SimSun;
  font-size: 12px;
  color: #fff;
  margin: 14px 0 0 5px;
  text-overflow:ellipsis;
  white-space: nowrap;
  transition: all 0.4s;
}
.zz_ul1 li a:hover{
  border-color: #006fc0;
}
.zz_ul1 li a:hover .cp_img::after{
  width: 100%;
  height: 100%;
}
.zz_ul1 li a:hover .cp_txt::before{
  background-color: #006fc0;
}


.cpxq{
  display: block;
  overflow: hidden;
}
.cpxq_p{
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #000;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
}
.cpxq_sp{
  display: block;
  overflow: hidden;
  padding: 5px 0;
  border-bottom: 1px dashed #ebebeb;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #555;
}
.cpxq_sp img{ max-width:100%;}
.cpxq_txt{
  display: block;
  overflow: hidden;
  font-size: 15px;
  color: #000;
  line-height: 28px;
  padding-top: 10px;
}
.cpxq_txt img{
  max-width: 100% !important;
  height: auto !important;
  margin: 10px auto;
}

/* 新闻资讯 */
.xw_ul{
  display: block;
}
.xw_ul li{
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
}
.xw_ul li a{
  width: 100%;
  float: left;
  display: flex;
  border: 1px solid #e3e3e3;
  padding: 20px;
}
.xw_ul li a .xw_img{
  width: 245px;
  float: left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.xw_ul li a .xw_R{
  width: calc(100% - 245px);
  float: left;
  padding-left: 20px;
}
.xw_ul li a .xw_R .xw_p{
  overflow: hidden;
  line-height: 34px;
  height: 34px;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.xw_ul li a .xw_R .xw_sp{
  line-height: 16px;
  height: 16px;
  font-size: 12px;
  color: #b1b1b1;
}
.xw_ul li a .xw_R .xw_txt{
  overflow: hidden;
  line-height: 24px;
  height: 72px;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  text-overflow:ellipsis;
  display: -webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
}
.xw_ul li a .xw_R .xw_more{
  display: block;
  overflow: hidden;
  margin-top: 15px;
  width: 96px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  color: #000;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
}
.xw_ul li a:hover .xw_R .xw_p{
  color: #009ad5;
}
.xw_ul li a:hover .xw_R .xw_more{
  border-color: #009ad5;
  background-color: #009ad5;
  color: #fff;
}

/* 在线留言 */
.zxly{display: block; overflow: hidden; max-width: 500px; margin: 0 auto;}
.zxly>label{width: 100%; float: left; margin-bottom: 20px;}
.zxly>label .zxly_sp{width: 50px; float: left; height: 40px; line-height: 40px; font-size: 16px; color: #000;}
.zxly>label>input{width: calc(100% - 50px); float: left; height: 40px; background-color: #f2f2f2; font-size: 14px; color: #000; padding: 0 10px; border: none;}
.zxly>label>textarea{width: calc(100% - 50px); float: left; height: 120px; line-height: 30px; padding: 5px 10px; font-size: 14px; color: #000; border: none; background-color: #f2f2f2; outline: none;}
.zxly>button{width: calc(100% - 50px); float: right; height: 44px; background: #009ad5; font-size: 18px; color: #fff; font-weight: bold; border: none; outline: none; cursor: pointer;}

/*联系我们*/
.contact_txt {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #000;
  line-height: 30px;
}
.contact_map {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}
/*END-联系我们*/

@media (max-width: 1300px) {
/* 头部 */
.logo{
  padding: 40px 0;
}
.header_dianhua {
  margin-top: 40px;
}

/*首页内容*/
/* 推荐产品 */
.tjcp{
  padding: 40px 0;
}
.tjcp_left{
  width: 24%;
}
.tjcp_right{
  width: 74%;
}
.cp_ul{
  width: 101%;
  margin-left: -0.5%;
}
.cp_ul li{
  width: 32.33%;
  margin: 15px 0.5% 0 0.5%;
}

/* 关于我们 */
.gsjj{
  padding: 50px 0;
}
.gsjj_contect {
  margin-top: 40px;
}

/* 企业证书 */
.qua{
  padding: 50px 0;
}
.qua_box{
  padding: 20px;
}
.qua_ul {
  width: 101%;
  margin-left: -0.5%;
}
.qua_ul li {
  width: 19%;
  margin: 25px 0.5% 0 0.5%;
}

/* 新闻资讯 */
.news{
  padding: 50px 0;;
}
.news_box{
  width: 32.5%;
  margin: 40px 0 0 0;
}
/*END-首页内容*/

/* 底部 */
.footer {
  padding: 40px 0;
}
.footer_left{
  width: 30.3125%;
  padding-right: 50px;
}
.footer_center{
  width: 53.5625%;
  padding-left: 50px;
}
.footer_right{
  width: 16.125%;
  padding-left: 20px;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 50px 0;
}
.main_left{
  width: 24%;
}
.main_right{
  width: 74%;
}

/* 产品展示 */
.cp_ul1{
  width: 102%;
  margin-left: -1%;
}
.cp_ul1 li{
  width: 32.33%;
  margin: 0 0.5% 15px 0.5%;
}
.zz_ul1{
  width: 102%;
  margin-left: -1%;
}
.zz_ul1 li{
  width: 32.33%;
  margin: 0 0.5% 15px 0.5%;
}

}

@media (max-width: 991px) {
/* 导航按钮 */
.icon-menu {
  float: right;
  cursor: pointer;
  width: 40px;
  height: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999999;
  background-size: 100% 100%;
}
.icon-menu span {
  width: 100%;
  height: 6px;
  float: left;
  background: #009ad5;
}

/* 头部 */
.header{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
  height: 68px;
}
.logo{
  padding: 30px 0;
}

/* 导航 */
nav {
  position: fixed;
  padding:0;
  background: none;
  transition: all 0.1s;
}
.layui-nav{
  display: none;
  width: 150px;
  padding: 1px 0;
  background-color: rgba(0,111,192,0.8);
  position: absolute;
  right: 10px;
  top:0;
}
.layui-nav .layui-nav-item{
    width: 100%;
    line-height: 40px;
}
.layui-nav .layui-nav-item::before{
  display: none;
}
.layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after {
  display: none;
}
.layui-nav .layui-nav-item:hover{
  background-color: #fff;
}
.layui-nav .layui-nav-item:hover a{
  color: #fff;
}
.layui-nav .layui-this{
  background-color: #009ad5;
}
.layui-nav .layui-this a{
  color: #fff;
}

/* 搜索 */
.search_txt {
  padding: 9px 0;
}
/* END */

/*首页内容*/
/* 推荐产品 */
.tjcp{
  padding: 30px 0;
}
.tjcp_left{
  width: 29%;
}
.tjcp_title {
  padding: 15px 0 15px 15px;
}
.tjcp_right{
  width: 69%;
}
.cp_ul{
  padding: 0;
}
.cp_ul li{
  width: 49%;
  margin: 15px 0.5% 0 0.5%;
}

/* 关于我们 */
.gsjj{
  padding: 30px 0;
}
.gsjj_contect {
  margin-top: 20px;
}
.gsjj_left {
  width: 42%;
  padding: 10px;
}
.gsjj_right {
  width: 58%;
  margin: 15px 0;
  padding: 20px;
}

/* 企业证书 */
.qua{
  padding: 30px 0;
}
.qua_box{
  padding: 15px;
}
.qua_title {
  padding-bottom: 15px;
}

/* 新闻资讯 */
.news{
  padding: 30px 0;;
}
.news_box{
  width: 32%;
  margin: 20px 0 0 0;
}
.news .qua_title {
  padding-bottom: 10px;
}
.qua_p {
  padding-left: 10px;
  font-size: 24px;
}
.qua_sp {
  padding-left: 5px;
}
/*END-首页内容*/

/* 底部 */
.footer {
  padding: 20px 0;
}
.footer_left{
  width: 27.3125%;
  padding-right: 30px;
}
.footer_center{
  width: 50.5625%;
  padding-left: 30px;
}
.footer_sp::after {
  margin-top: 10px;
}
.footer_right{
  width: 22.125%;
  padding-left: 20px;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 30px 0;
}
.main_left{
  width: 29%;
}
.main_right{
  width: 69%;
}

/* 产品展示 */
.cp_ul1 li{
  width: 49%;
}

.zz_ul1 li{
  width: 49%;
}
/* 新闻资讯 */
.xw_ul li a .xw_img{
  width: 200px;
}
.xw_ul li a .xw_R{
  width: calc(100% - 200px);
}

}

@media (max-width: 767px) {
/* 导航按钮 */
.icon-menu {
  right: 10px;
  width: 30px;
  height: 18px;
}
.icon-menu span {
  height: 3px;
}

/* 头部 */
.logo{
  padding: 15px 0;
  width: 80%;
}
.logo a {
  width: 100%;
}

/* 搜索 */
.search_form{
  width: 100%; margin-bottom:10px;
}
.search_inp1{
  height: 40px;
  line-height: 40px;
}
.search_btn{
  height: 40px;
}
.search_txt{
  width: 100%;
  float: left;
  line-height: 20px;
  padding: 10px 0;
}
/* END */

/*首页内容*/
/* 推荐产品 */
.tjcp{
  padding: 10px 0;
}
.tjcp_left{
  width: 100%;
}
.tjcp_title {
  padding: 10px;
  background-image: url(../images/imgs/sj_jiantou.png);
  background-position: right center;
  background-repeat: no-repeat;
}
.tjcp_ul{
  display: none;
}
.tjcp_right{
  width: 100%;
}
.cp_ul{
  padding: 0;
}
.cp_ul li{
  width: 49%;
  margin: 10px 0.5% 0 0.5%;
}
.cp_ul li a {
  padding: 2px;
}
.cp_ul li a .cp_txt {
  padding: 0 5px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.cp_ul li a .cp_txt::before {
  margin: 12px 0 0 5px;
}

/* 关于我们 */
.gsjj{
  padding: 10px 0;
}
.gsjj_p>span {
  padding: 0 10px;
  line-height: 30px;
  font-size: 20px;
}
.gsjj_sp {
  margin-top: 0;
}
.gsjj_heng {
  margin-top: 5px;
}
.gsjj_contect {
  margin-top: 10px;
  flex-wrap: wrap;
}
.gsjj_left {
  width: 100%;
  padding: 5px;
}
.gsjj_right {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 10px;
}
.gsjj_pp {
  line-height: 30px;
  font-size: 18px;
}
.gsjj_hengs {
  margin: 5px 0;
}
.gsjj_txt {
  height: initial;
  line-height: 24px;
  -webkit-line-clamp: initial;
}
.gsjj_more {
  padding: 10px 0 3px 0;
}

/* 企业证书 */
.qua{
  padding: 10px 0;
}
.qua_box{
  padding: 10px;
}
.qua_title {
  padding-bottom: 5px;
}
.qua_p {
  font-size: 18px;
}
.qua_ul li {
  width: 49%;
  margin: 10px 0.5% 0 0.5%;
}
.qua_ul li a .qua_txt {
  height: 40px;
  line-height: 40px;
}
.qua_ul li:last-child{
  display: none;
}

/* 新闻资讯 */
.news{
  padding: 10px 0;;
}
.news_box{
  width: 100%;
  margin: 10px 0 0 0;
}
.news_img {
  margin-top: 10px;
}
.news_ul li a {
  height: 34px;
  line-height: 34px;
}
/*END-首页内容*/

/* 底部 */
.copyright{
  font-size: 12px;
  text-align: center;
}
.copyright>.container{
  padding: 10px 0;
}
/* END-底部 */

/* 关于我们 */
.main{
  padding: 0;
}
.main_left{
  width: 100%;
}
.about {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-bottom: 0;
}
.about_title{
  height: 50px;
  line-height: 50px;
  background-image: url(../images/imgs/sj_jiantou.png);
  background-position: right center;
  background-repeat: no-repeat;
  font-size: 18px;
  font-weight: bold;
}
.about_ul{
  display: none;
  padding: 0 2px;
}
.about_ul li{
 margin-top: 2px;
}
.about_ul>li>a {
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
}
.about_dl {
  padding: 0 10px;
}
.about_dl dd a {
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
}
.main_right{
  width: 100%;
}
.dqwz_contect{
  padding: 0;
}
.dqwz_contects{
  padding: 10px 0;
}
.company {
  line-height: 24px;
}

/* 产品展示 */
.cp_ul1 li{
  margin: 0 0.5% 1% 0.5%;
}
.cp_ul1 li a .cp_txt {
  padding: 0 5px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.cp_ul1 li a .cp_txt::before {
  margin: 12px 0 0 5px;
}

.zz_ul1 li{
  margin: 0 0.5% 1% 0.5%;
}
.zz_ul1 li a .cp_txt {
  padding: 0 5px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.zz_ul1 li a .cp_txt::before {
  margin: 12px 0 0 5px;
}

/* 新闻资讯 */
.xw_ul li{
  margin-bottom: 10px;
}
.xw_ul li a {
  padding: 5px;
}
.xw_ul li a .xw_img{
  width: 100px;
}
.xw_ul li a .xw_R{
  width: calc(100% - 100px);
  padding-left: 10px;
}
.xw_ul li a .xw_R .xw_p{
  line-height: 30px;
  height: 30px;
  font-size: 16px;
}
.xw_ul li a .xw_R .xw_txt{
  line-height: 20px;
  height: 35px;
  font-size: 12px;
  margin-top: 0;
  -webkit-line-clamp:2;
}
.xw_ul li a .xw_R .xw_more {
  margin-top: 2px;
  width: 68px;
  height: 24px;
  line-height: 22px;
  border-radius: 12px;
}

/* 在线留言 */
.zxly>label{margin-bottom: 10px;}
.zxly>label .zxly_sp{width: 40px; height: 34px; line-height: 34px; font-size: 14px;}
.zxly>label>input{width: calc(100% - 40px); height: 34px;}
.zxly>label>textarea{width: calc(100% - 40px); height: 106px; line-height: 24px;}
.zxly>button{width: calc(100% - 40px); height: 40px; font-size: 16px;}

/*联系我们*/
.contact_map {
  height: 250px;
  margin-top: 10px;
}
/*END-联系我们*/
}

/* 手机底部组件 */
.root_kong {
  width: 100%;
  height: 62px;
  float: left;
  background: #fff;
}
.root {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999999999;
  background: #fff;
}
.root a {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  background: #006fc0;
  text-align: center;
}
.root a > div {
  width: 100%;
  float: left;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
}
.root a > div:first-child {
  height: 30px;
  line-height: 30px;
  font-size: 24px;
}
.root a:hover {
  background: #009ad5;
  color: #fff;
}
.dbbox {
  position: fixed;
  left: 0;
  bottom: 65px;
  z-index: 99999;
  width: 100%;
}
.dbbox .dbs {
  position: relative;
  padding: 0 15px;
  display: none;
  text-align: center;
  transition: initial;
}
.dbbox .dbs .neirong {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #009ad5;
}
.dbbox .dbs img {
  max-width: 140px;
}
/* END */
