/* 通用样式开始 */
*{
  font-family: "Microsoft Yahei";
  margin: 0;
  padding: 0;
}
html{
  height: 100%;
}

body{
  /* min-width: 100%; */
  /* min-width: max-content; */
  min-width: 1188px;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}
.body_flex_height{
  /* flex: 1; */
  flex-grow:1;
  flex-basis:0
}
.hidden{
  display: none;
}
.flex_body #top{
  position: fixed;
  z-index: 1111;
  width: 100%;
}
.flex_body .flex_content{
  /* padding-top: 80px; */
}
a {
  text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
}
/* 公共设置 */
.bg_F1F1F5{
  background: #F1F1F5;
}
.bg_fff{
  background: #fff;
}
.font-12{
  font-size: 12px;
}
.font-14{
  font-size: 14px;
}
.font-20{
  font-size: 20px;
}
.font-24{
  font-size: 24px;
}
.font-36{
  font-size: 36px;
}
.color_333{
  color: #333;
}
.color_666{
  color: #666;
}
.color_999{
  color: #999;
}
.color_fff{
  color: #fff;
}
.color-2285ED{
  color: #2285ED;
}
.color-0098FF{
  color: #0098FF;
}
.mg_auto{
  margin: 0 auto;
}
.pd_lf20{
  padding: 0px 20px;
}
.pd_t20{
  padding-top: 20px;
}
.pd_b20{
  padding-bottom: 20px;
}
.mg_r20{
  margin-right: 20px;
}
.mg_b10{
  margin-bottom: 10px;
}
.mg_r30{
  margin-right: 30px;
}
.text_align{
  text-align: center!important;
}
.text_clamp{
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.text_ellipsis{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.common_big_btn{
  width: 345px;
  height: 80px;
  line-height: 80px;
  background: #0098FF;
  box-shadow: 0px 10px 10px 0px rgba(0, 152, 255, 0.3);
  text-align: center;
  border-radius: 52px;
  font-size: 30px;
  color: #fff;
  border: 0px;
}
/* 首页 */
.more_btn{
  position: relative;
  cursor: pointer;
  color: #666;
}
.more_btn::after{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: -9px;
  border-bottom: 8px solid #666666;
  border-left: 8px solid transparent;
  bottom: 0px;
}

#product_banner_content a:hover{
  color:#fff
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
}
#banner_img{
  width:100%;
  height: 500px;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex_between{
  display: flex;
  justify-content: space-between;
}
.flex_set{
  display: flex;
  justify-content: center;
}
/* 售后服务 */
.sale_list{
  margin: 0 auto;
  margin-bottom: 70px;
}
.sale_list img{
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
}
/* 产品的鼠标移动 */
.product_banner_content{
  /* display: none; */
}
.product_hover_box #product_banner:hover .product_banner_content{
  display: block;
}
#product_banner{
  cursor: pointer;
}
#product_banner_content{
  display: block;
  position: absolute;
  /* margin-top:80px; */
  top: 80px;
  width:100%;
  height: 180px;
  background:#fff;
  border-radius: 3px;
  z-index:2000;
}
.product_banner_content_item{
  padding:15px;
  text-align: center;
  display: inline-block;
}
.product_banner_content_item:hover{
  background-color: #009AFF;
}
.content_width{
  width: 66%;
  max-width: 1080px;
  min-width: 1080px;
}
#connect{
  /* position: absolute; */
  position: fixed;
  top:0;
  right: 0;
  width: 294px;
  color: #fff;
  height: 100%;
  font-size:14px;
  /* font-weight: 600; */
}
#connect .connect_box{
  display:flex;
  height: 200px;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px #ccc solid
}
#connect #connect_pointer{
  /* padding:15px 0 0 15px; */
  padding-top:25px;
  width: 45px;
  height: 100px;
  background: #009AFF;
  border-radius: 10px 0px 0px 10px;
  color:#fff;
  font-size:14px;
  float: right;
  margin-top:280px;
  text-align: center;
}
#connect #connect_content{
  width:210px;
  /* height:700px; */
  background-color: #009AFF;
  border-radius: 10px 0px 0px 10px;
  right:0;
  float: right;
  display: none;
  height: 100%;
  padding-left:20px;
}
#connect .tel_qq{
  width: 48px;
  height: 48px;
  margin-right: 20px;
}
#connect #wx_box{
  text-align: center;
  margin-top: 40px
}
#connect #wx_box .wxQrcode{
  width: 200px;
  height: 200px
}
/* 通用样式结束 */
#top{
  height: 80px;
  /* background-color: #fff; */
}
.join_btn{
  align-items: center;
}
/* #top img{
  width: 100%;
  height: 40%;
} */
#top>div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height:100%;
  /* padding: 0px 50px; */
  box-sizing: border-box;
}
.fixed_top_bg{
  box-shadow: 0px 1px 4px 0px #DCDCDC;
}
.fixed_top_bg_other{
  box-shadow: 0px 1px 4px 0px #DCDCDC;
  position: fixed;
  z-index: 1111;
  width: 100%;
  background: #fff;
}
.fixed_other_content{
  padding-top: 80px;
}
.fixed_top_bg_other .box a{
  color: #666;
}
.fixed_top_bg_other .active a{
  color: #fff;
}
#top>div>div{
  display: flex;
  height: 100%;
}
.box{
  width:100px;
  /* min-width: 100px; */
}
.box a{
  color: #666;
  font-size: 14px;
}
.box.active{
  /* border-bottom:2px solid#00ABEB; */
  /* color:#00ABEB; */
  background: #0098FF;
}
.top_bg .box a{
  color: #fff;
}
.box.active a{
  color: #fff;
  font-size: 14px;
}
.subtitle{
  /* position: fixed; */
  z-index: 11;
  height: 260px;
  box-sizing: border-box;
  padding-top: 80px;
  width: 100%;
  background-color: #fff;
}
.subtitle .content_width{
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding-top: 60px;
  padding-bottom: 50px;
  /* height: 100%; */
}
.subtitle .subtitle_li{
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.subtitle .active_subtitle_li{
  color: #0098FF;
}
.subtitle .active_subtitle_li::after{
  content: '';
  position: absolute;
  background: url(../image/list9.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 9px;
  bottom: -18px;
}
.subtitle .subtitle_li img{
  width: 40px;
  margin-bottom: 10px;
}
.mg_r10{
  margin-right: 10px;
}
.mg_b10{
  margin-bottom: 10px;
}
.common_btn_solid{
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #0098FF;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}
.common_btn_solid a{
  color: #fff;
}
.common_btn_hollow{
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  color: #0098FF;
  border: 1px solid #0098FF;
  background-color: #fff;
  border-radius: 6px;
}
.index_bg{
  position: relative;
}
.index_bg .icon1_min{
  position: absolute;
  bottom: 76px;
  width: 25%;
  right: 211px;
}
.index_bg .slogan{
  width: 530px;
  /* position: absolute;
  bottom: 66px;
  width: 25%;
  right: 211px; */
}
/* 中间轮播图部分 */

/* 首页图中间样式开始 */
/* 新闻资讯 */
#index #info{
  margin: 0 auto;
  padding:60px 0px;
}
/* 合作伙伴 */
#index #partner{
  margin: 0 auto;
  padding-top:60px;
}
/* 首页图中间结束 */

/* 产品优势中间开始 */
#product #saas{
  margin:0 auto;
  padding-top:40px;
  padding-bottom:40px;
}
#product .saas_item{
  width: 250px;
  height: 310px;
  border: 2px solid #E6E6E6;
  border-radius: 20px;
  padding-top:25px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size:24px
}
#product .saas_item img{
  width: 70px;
  height: 64px;
}
#product .saas_item hr{
  width:35px;
  margin:0 auto;
  color: #ccc;
}
#product .saas_item .description{
  font-size: 18px;
  color: #ccc;
}
#yun{
  padding-top:40px;
  padding-bottom:40px;
  background-color: #F7F7FA;
}
#yun .yun_img{
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 15px 30px 0px rgba(101, 101, 101, 0.15);
  border-radius: 20px;
  width: 30%;
  text-align: center;
  color:#666666;
  font-size:18px
}
#safe{
  padding-top:40px;
  padding-bottom:40px;
  margin: 0 auto;
}
#safe .safe_item{
  width: 14%;
  padding-top:20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  height: 280px;
  border: 2px solid #E6E6E6;
  border-radius: 0px 10px 0px 0px;
}
#safe .safe_item .img_content{
  width:104px;
  height: 104px;
  margin:0 auto
}
#safe .safe_item .img_content img{
  height: 100%;
  width: 100%;
}
#safe .safe_item .description{
  font-size: 18px;
  color: #666666;
  margin-top: 12px;
}
/* 服务中间开始 */
#service{
  padding-top:20px;
  padding-bottom:60px;
  margin:0 auto;
}
#service .service_left{
  width: 75%;
  background: #959595;
  align-self: flex-start;
  height: 261px;
  display: flex;
}
#service .service_right{
  width: 75%;
  background: #959595;
  align-self: flex-end;
  height: 261px;
  display: flex;
}
#service .text_content{
  width: 33%;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
}
#service .service_img{
  width: 67%;
}
/* 服务中间结束 */

/* 底部 */
#footer{
  background-color: #666666;
  width: 100%;
  height: 119px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#footer p{
  color: #999999;
  font-size: 14px;
  margin-bottom: 5px;
}
.footer{
  background-color: #666666;
  width: 100%;
}
.footer .content_width{
  display: flex;
  justify-content: space-between;
  padding: 40px 56px 33px 50px;
  color: #fff;
  margin: auto;
}
.footer .footer_left h5{
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.footer .footer_left h6{
  margin-bottom: 57px;
}
.footer_right{

}
.footer_right_img{
  text-align: center;
  display: inline-block;
}
.footer_right_img:first-child{
  margin-right: 30px;
}