html {
  font-size: 16px;
}

::selection {
  background-color: #007fdf;
  color: #fff;
}

::-webkit-selection {
  background-color: #007fdf;
  color: #fff;
}

::-moz-selection {
  background-color: #007fdf;
  color: #fff;
}

#container {
  width: 100%;
}

#header {
  width: 100%;
  height: 560px;
  position: relative;
  padding-top: 165px;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    #367bf0 0%,
    #3b87f3 20%,
    #3e94f6 40%,
    #40a0f9 60%,
    #41acfc 80%,
    #41b9ff 100%
  );
}

#header .head_container {
  width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.head_container .img_body {
  position: relative;
}

.head_container .title {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  line-height: 56px;
}

.head_container .desc {
  margin-top: 24px;
  margin-bottom: 40px;
  width: 560px;
  font-size: 20px;
  color: #ffffff;
  line-height: 32px;
}

.head_container .bt_con {
  display: flex;
}

.bt_con .bt {
  width: 160px;
  padding: 4px 44px;
  background: #ffffff;
  border-radius: 2px;
  font-size: 18px;
  color: #007fdf;
  line-height: 32px;
  user-select: none;
  cursor: pointer;
  transition: transform 0.3s linear;
}

.bt_con .bt:hover {
  transform: translateY(-2px);
}

.bt_con .telphone {
  height: 40px;
  width: 153px;
  border-radius: 2px;
  text-align: center;
  line-height: 40px;
  cursor: auto;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.bt_con .telphone img {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 11px;
  position: relative;
  top: 2px;
  vertical-align: initial;
}

.bt_con .telphone span {
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
}

#middle {
  width: 100%;
  position: relative;
  text-align: center;
}

/* tab切换 */

.switch_tab {
  height: 80px;
  width: 100%;
  position: absolute;
  top: -79px;
  text-align: center;
  background: rgba(0, 96, 255, 0.1);
  z-index: 9999;
  transition: background 0.1s linear;
}

.switch_tab .tab_container {
  width: 1180px;
  margin: 0 auto;
  height: 100%;
}

.fix_tab {
  position: fixed;
  top: 0px !important;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(198, 211, 220, 0.2) 0px 5px 20px 0px;
  color: #37475a;
}

.switch_tab_wrap {
  height: 100%;
  min-width: 450px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  overflow-x: auto;
}

.switch_tab_wrap li {
  height: 100%;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  width: 100px;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s linear;
  line-height: 80px;
}

.switch_tab_wrap li.tab_right {
  margin-right: 160px;
}

.switch_tab_wrap p {
  white-space: nowrap;
  color: white;
}

.fix_tab .switch_tab_wrap p {
  color: #37475a;
}

.fix_tab .switch_tab_wrap p:hover {
  color: #007fdf;
}

.tab_container .switch_tab_wrap .currentLiColor {
  color: #007fdf;
}

.switch_tab_wrap span {
  right: 50%;
  width: 0;
  height: 0;
  border-bottom-width: 14px;
  border-bottom-style: solid;
  border-bottom-color: #f2faff;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  position: absolute;
  bottom: 0;
  transition: all 0.25s ease-out;
}

.switch_tab_wrap .current_arrow {
  margin-right: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

#middle .advantage {
  padding: 80px 0;
  background: #dff3ff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage .title {
  font-size: 32px;
  font-weight: 400;
  color: #1a2736;
  line-height: 40px;
  text-align: center;
}

.advantage .advantage_list {
  width: 1180px;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advantage_list .item {
  height: 190px;
  width: calc(25% - 3px);
  padding: 24px 32px 32px;
  margin-top: 4px;
  position: relative;
  background-color: #fff;
  text-align: left;
}

.advantage_list .item i {
  position: absolute;
  display: inline-block;
  width: 36px;
  height: 36px;
  top: 24px;
  left: 36px;
  background-image: url(/assets/images/xinchuangProduct/icon_features.svg);
  background-position-y: 0;
}

.advantage_list .item p {
  padding-left: 56px;
  font-size: 24px;
  color: #1a2736;
  line-height: 36px;
}

.advantage_list .item div {
  font-size: 16px;
  color: #5e6978;
  line-height: 26px;
  margin-top: 20px;
}

.advantage_i1 {
  background-position-x: 0;
}

.advantage_i2 {
  background-position-x: -36px;
}

.advantage_i3 {
  background-position-x: -72px;
}

.advantage_i4 {
  background-position-x: -108px;
}

.advantage_i5 {
  background-position-x: -144px;
}

.advantage_i6 {
  background-position-x: -180px;
}

.advantage_i7 {
  background-position-x: -216px;
}

.advantage_i8 {
  background-position-x: -252px;
}

#middle .msg_cloud {
  padding: 80px 0;
  background: linear-gradient(0, #ffffff 0%, #f2faff 100%);
}

.msg_cloud .title {
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
  margin: 0 auto 60px;
}

.msg_cloud ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.msg_cloud li {
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(224, 229, 238, 0.2);
  border-radius: 4px;
  width: 380px;
  padding: 24px 32px 32px;
}

.msg_cloud li:nth-child(2) {
  margin-left: 20px;
  margin-right: 20px;
}

.msg_cloud li div:first-child {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background-image: url(/assets/images/xinchuangProduct/icon_overview.svg);
  background-repeat: no-repeat;
  background-position-y: 0;
}

.msg_cloud li > p {
  margin-top: 12px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
  color: #1a2736;
  line-height: 28px;
}

.msg_cloud li div:last-child {
  font-size: 16px;
  color: #5e6978;
  line-height: 30px;
  text-align: left;
}

.msg_cloud .xc_img1 {
  background-position-x: 0;
}

.msg_cloud .xc_img2 {
  background-position-x: -64px;
}

.msg_cloud .xc_img3 {
  background-position-x: -128px;
}

.list .list_container {
  width: 1180px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
}

.list_container .title {
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
  text-align: center;
}

.list_container ul {
  display: flex;
  flex-wrap: wrap;
}

.list_container li {
  margin-top: 50px;
  text-align: left;
  width: calc(50% - 50px);
}

.list_container li:nth-child(odd) {
  margin-right: 100px;
}

.list_container .feature {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}

.list_container .feature .text {
  line-height: 28px;
  color: #1a2736;
  font-size: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.product_overview .feature .img {
  background-image: url(/assets/images/xinchuangProduct/icon_overview.svg);
}

.feature .img {
  margin-right: 20px;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
}

.list_container .introduction {
  font-size: 16px;
  color: #5e6978;
  line-height: 31px;
}

#middle .product_img {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.product_img .title {
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
}

.product_img .desc {
  font-size: 16px;
  color: #5e6978;
  line-height: 32px;
  margin: 40px 0;
}

.product_img .out_con {
  width: 1180px;
  height: auto;
  margin: 0 auto;
}

.product_img .in_con {
  width: 100%;
}

.product_img .in_con img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.case_switch {
  padding-top: 80px;
  width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.case_switch > div {
  padding: 44px 0;
  width: 350px;
  font-size: 24px;
  color: #1a2736;
  line-height: 32px;
  cursor: pointer;
  border-radius: 2px;
  background-position-x: 100%;
  background-position-y: 0;
  background-repeat: no-repeat;
  transition: width 0.1s ease-in-out;
  user-select: none;
}

.case_switch > div[data-case="baremetal"] {
  background-image: url(/assets/images/xinchuangProduct/banner_baremetal.svg);
}

.case_switch > div[data-case="government"] {
  background-image: url(/assets/images/xinchuangProduct/banner_gov.svg);
}

.case_switch > div[data-case="cloud_safe"] {
  background-image: url(/assets/images/xinchuangProduct/banner_security.svg);
}

.case_switch > div:hover {
  background-position-y: -120px;
  color: #007fdf;
}

.case_switch > div.active {
  width: 440px;
  background-position-y: -120px;
  color: #007fdf;
  font-weight: 500;
}

.solution .case_introduction {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 1180px;
  margin: 0 auto;
}

.case_types {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 60px;
}

.case_types .text {
  font-size: 36px;
  color: #1a2736;
  line-height: 40px;
  text-align: left;
}

.case_types .bt {
  width: 110px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
}

.case_types .bt i {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(/assets/images/xinchuangProduct/icon_switch.svg);
  background-repeat: no-repeat;
}

.case_types .bt .left_i {
  transform: rotate(180deg);
}

.case_types .bt .left_i:hover {
  background-position: -40px 0;
}

.case_types .bt .right_i:hover {
  background-position: -40px 0;
}

.business_scene .text {
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
  margin-bottom: 9px;
}

.business_scene .desc {
  font-size: 16px;
  color: #5e6978;
  line-height: 31px;
  text-align: left;
  margin-top: 31px;
}

.solution .case_img {
  background: #f2faff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.solution .case_img img {
  width: 1180px;
  height: auto;
}

.case_img .text {
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
  margin-bottom: 50px;
}

.solution .case_href {
  width: 1180px;
  padding-top: 60px;
  padding-bottom: 120px;
  margin: 0 auto;
  border-top: 1px solid #d8d8d8;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #5e6978;
  line-height: 40px;
}

.case_href i {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-image: url(/assets/images/xinchuangProduct/icon_switch.svg);
}

.case_href i:first-child {
  margin-left: 0;
  margin-right: 10px;
  transform: rotate(180deg);
}

.case_href > div {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
}

.case_href > div:hover {
  color: #007fdf;
}

.case_href > div:hover .href_i {
  background-position: -40px 0;
}

.product_overview .feature_img1 {
  background-position: -192px 0;
}

.product_overview .feature_img2 {
  background-position: -256px 0;
}

.product_overview .feature_img3 {
  background-position: -320px 0;
}

.product_overview .feature_img4 {
  background-position: -384px 0;
}

.product_overview .feature_img5 {
  background-position: -448px 0;
}

.product_overview .feature_img6 {
  background-position: -512px 0;
}

.baremetal .feature .img {
  background-image: url(/assets/images/xinchuangProduct/icon_baremetal.svg);
}

.baremetal .feature_img1 {
  background-position: 0 0;
}

.baremetal .feature_img2 {
  background-position: -64px 0;
}

.baremetal .feature_img3 {
  background-position: -128px 0;
}

.baremetal .feature_img4 {
  background-position: -192px 0;
}

.baremetal .feature_img5 {
  background-position: -256px 0;
}

.government .feature .img {
  background-image: url(/assets/images/xinchuangProduct/icon_gov.svg);
}

.government .feature_img1 {
  background-position: 0 0;
}

.government .feature_img2 {
  background-position: -64px 0;
}

.government .feature_img3 {
  background-position: -128px 0;
}

.government .feature_img4 {
  background-position: -192px 0;
}

.government .feature_img5 {
  background-position: -256px 0;
}

.cloud_safe .feature .img {
  background-image: url(/assets/images/xinchuangProduct/icon_safe.svg);
}

.cloud_safe .feature_img1 {
  background-position: 0 0;
}

.cloud_safe .feature_img2 {
  background-position: -64px 0;
}

.cloud_safe .feature_img3 {
  background-position: -128px 0;
}

.cloud_safe .feature_img4 {
  background-position: -192px 0;
}

.ecological_top_container {
  background: #f2faff;
  /* padding: 80px 0; */
  padding-top: 80px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.ecological_atlas .title {
  text-align: center;
  font-size: 32px;
  color: #1a2736;
  line-height: 40px;
}

.ecological_atlas .desc {
  text-align: center;
  width: 1080px;
  font-size: 16px;
  color: #5e6978;
  line-height: 32px;
  margin: 40px auto;
}

.ecological_top_container .logo_container {
  width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 -1px 0 0 inset #e2e7eb;
}

.logo_container > div:first-child,
.logo_container > div:last-child {
  margin-bottom: 20px;
}

.logo_container .jump_bt {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_container .jump_bt i {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url(/assets/images/icon_page_jump.svg);
  background-position-y: 0;
}

.logo_container .left_bt i {
  background-position-x: -32px;
}

.logo_container .left_bt[type="enable"]:hover .left_bt_i {
  background-position-x: -48px;
}

.logo_container .right_bt i {
  background-position-x: -32px;
  transform: rotate(180deg);
}

.logo_container .right_bt[type="enable"]:hover .right_bt_i {
  background-position-x: -48px;
  transform: rotate(180deg);
}

.logo_container .logo_list {
  width: 926px;
  overflow: hidden;
}

.logo_list .container {
  width: 1227px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.logo_list img {
  height: 70px;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  padding-bottom: 20px;
  cursor: pointer;
}

.ecological_top_container .logo_article {
  width: 1180px;
  margin: 0 auto 0;
  height: 442px;
  position: relative;
  padding-top: 0px;
}

.logo_list img.active,
.logo_list img:hover {
  box-shadow: 0 -2px 0 0 inset #007fdf;
}

.logo_article .article_item {
  padding: 0px 65px 50px 65px;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(224, 229, 238, 0.2);
  width: 100%;
  /*height: 100%;*/
  transition: all 0.5s ease-out;
  display: none;
}

.article_item.active {
  display: block;
}

.article_item .logo_con {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article_item .logo_con > div {
  position: relative;
}

.article_item .logo_con > div > a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.article_item .logo_con > div > i {
  width: 12px;
  height: 10px;
  display: inline-block;
  position: relative;
  background: url(/assets/images/caseSelection/arrow_detail.svg)
    no-repeat;
}

.article_item .logo_con > i {
  width: 200px;
  height: 64px;
  display: inline-block;
  /* background-image: url(/assets/images/xinchuangProduct/logo_vertical_logo.svg); 
   background-position-x: 0;  */
}

/* .logo_con .logo_1 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
  background-image: url(/assets/images/xinchuangProduct/logo_feiteng1.png);
} */
.logo_con .logo_1 img {
  width: 200px;
  height: 64px;
}

.logo_con .logo_2 img {
  width: 200px;
  height: 64px;
}
.logo_con .logo_3 img {
  width: 200px;
  height: 64px;
}

/* .logo_con .logo_2 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -64px;
  background-image: url(/assets/images/xinchuangProduct/logo_haiguang1.png);
} */

/* .logo_con .logo_3 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -128px;
  background-image: url(/assets/images/xinchuangProduct/logo_longxin1.png);
} */
/* 
.logo_con .logo_4 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -192px;
  background-image: url(/assets/images/xinchuangProduct/logo_huiwei1.png);
} */
.logo_con .logo_4 img {
  width: 200px;
  height: 64px;
  display: inline-block;
}
.logo_con .logo_5 img {
  width: 200px;
  height: 64px;
  display: inline-block;
}
.logo_con .logo_6 img {
  width: 200px;
  height: 64px;
  display: inline-block;
}
.logo_con .logo_7 img {
  width: 200px;
  height: 64px;
  display: inline-block;
}
/* 
.logo_con .logo_5 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -256px;
  background-image: url(/assets/images/xinchuangProduct/logo_zhaoxin1.png);
} */

/* .logo_con .logo_6 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -320px;
  background-image: url(/assets/images/xinchuangProduct/logo_qilin1.png);
} */

/* .logo_con .logo_7 {
  width: 200px;
  height: 64px;
  display: inline-block;
  background-position-y: -384px;
  background-image: url(/assets/images/xinchuangProduct/logo_tongxin1.png);
 
} */

.article_item .logo_con span {
  font-size: 14px;
  color: #007fdf;
  line-height: 26px;
  margin-right: 5px;
}

.article_item .content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.article_item .content .left_content {
  width: 640px;
}

.article_item .content .left_content p {
  font-size: 16px;
  color: #5e6978;
  line-height: 32px;
  text-align: justify;
}

.article_item .left_content .second_chapter {
  margin-top: 10px;
}

.article_item .content .img {
  width: 360px;
  height: auto;
  cursor: pointer;
}

.article_item .content .img > img {
  max-height: 100%;
  max-width: 100%;
}

.ecological_bottom_container {
  background-color: #fff;
  padding: 80px 0 120px;
}

.ecological_bottom_container .chart_icon {
  width: 1180px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 -1px 0 0 inset #e2e7eb;
}

.chart_icon .icon_img {
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.chart_icon .icon_img i {
  height: 16px;
  width: 16px;
  display: inline-block;
  cursor: pointer;
  background-image: url(/assets/images/icon_page_jump.svg);
  background-position-y: 0;
}

.icon_img .left_icon_i {
  background-position-x: -32px;
}

.icon_img.left_icon[type="enable"]:hover .left_icon_i {
  background-position-x: -48px;
}

.icon_img .right_icon_i {
  background-position-x: -32px;
  transform: rotate(180deg);
}

.icon_img.right_icon[type="enable"]:hover .right_icon_i {
  background-position-x: -48px;
  transform: rotate(180deg);
}

.chart_icon .icon_container {
  width: 960px;
  overflow: hidden;
  position: relative;
}

.icon_container .icon_list {
  width: 1480px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.icon_list .item {
  height: 70px;
  width: 56px;
  background-image: url(/assets/images/xinchuangProduct/icon_xinchuang.svg);
  background-position-y: 0;
  background-repeat: no-repeat;
  margin-right: 80px;
  cursor: pointer;
  padding-bottom: 33px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  white-space: nowrap;
}

.icon_list .item:hover,
.item_hover {
  box-shadow: 0 -2px 0 0 inset #007fdf;
}

.icon_list .item.item_i1 {
  background-position-x: 0;
}

.icon_list .item.item_i2 {
  background-position-x: -50px;
}

.icon_list .item.item_i3 {
  background-position-x: -100px;
}

.icon_list .item.item_i4 {
  background-position-x: -144px;
}

.icon_list .item.item_i5 {
  background-position-x: -198px;
}

.icon_list .item.item_i6 {
  background-position-x: -250px;
}

.icon_list .item.item_i7 {
  background-position-x: -300px;
}

.icon_list .item.item_i8 {
  background-position-x: -350px;
}

.icon_list .item.item_i9 {
  background-position-x: -400px;
}

.icon_list .item.item_i10 {
  background-position-x: -450px;
}

.icon_list .item.item_i11 {
  background-position-x: -500px;
}

.icon_list .item.item_i12 {
  background-position-x: -550px;
}

.icon_list .item:last-child {
  margin-right: 0;
}

.ecological_bottom_container .chart_list {
  margin: 0 auto;
  width: 1180px;
}

.logo2_container {
  margin-bottom: 80px;
}

.logo2_container .container {
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-self: center;
  width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 60px 20px;
}

.logo2_container .container .imgs2 {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  display: inline-flex;
  flex-wrap: wrap;
  width: auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 72px;
  margin: 0;
  background: #ffffff;
  border: 1px solid #dce2e7;
  justify-content: space-between;
  width: calc((100% - 60px) / 4);
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}

.logo2_container .container > div {
  margin-top: 20px;
  padding: 8px 0;
  background: #ffffff;
  border: 1px solid #dce2e7;
  cursor: pointer;
}

.logo2_container .container > .three {
  width: calc((100% - 40px) / 3);
}

.logo2_container .container > .four {
  width: calc((100% - 60px) / 4);
}

.logo2_container .logo_i.logo1 {
  width: 160px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo2 {
  width: 100px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo3 {
  width: 160px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo4 {
  width: 128px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo5 {
  width: 72px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo6 {
  width: 60px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}
.logo2_container .logo_i.logo7 {
  width: 98px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}

.logo2_container .logo_i.logo8 {
  width: 82px;
  height: 64px;
  display: inline-block;
  background-position-y: 0;
}

.logo2_container .logo_i.logo1 {
  background-image: url(/assets/images/xinchuangProduct/logo_feiteng.svg);
}

.logo2_container .logo_i.logo2 {
  background-image: url(/assets/images/xinchuangProduct/logo_haiguang.svg);
}

.logo2_container .logo_i.logo3 {
  background-image: url(/assets/images/xinchuangProduct/logo-longxin.svg);
}

.logo2_container .logo_i.logo4 {
  /*background-image: url(/assets/images/xinchuangProduct/logo-huawei.svg);*/
  background-image: url(/assets/images/xinchuangProduct/logo-kunpeng3.svg);
  background-size: cover;
}

.logo2_container .logo_i.logo5 {
  background-image: url(/assets/images/xinchuangProduct/logo-zhaoxin.svg);
}

.logo2_container .logo_i.logo6 {
  background-image: url(/assets/images/xinchuangProduct/logo-qilin.svg);
}

.logo2_container .logo_i.logo7 {
  background-image: url(/assets/images/xinchuangProduct/logo-tongxin.svg);
}
.logo2_container .logo_i.logo8 {
  background-image: url(/assets/images/xinchuangProduct/logo-shenwei.png);
  background-size: cover;
}

.logo2_container .logo2_list .active {
  background: rgba(240, 249, 255, 0.5) !important;
  border: 1px solid #40a3fa !important;
  cursor: pointer;
  box-shadow: 0px 0px 0px 3px #d9edfe;
  /* box-shadow: rgb(217, 237, 254, 0.3) 0px 0px 3px; */
}

.logo2_container .logo2_list .active .logo_i {
  background-position-y: 64px;
}

.ecological_bottom_container .icon_list .item {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  padding-top: 58px;
  margin-bottom: 1px;
  flex-wrap: nowrap;
  display: flex;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #1a2736;
  line-height: 20px;
}

/* 
.logo2_list #imgs_1,
#imgs_3 {
  width: 100%;
  max-width: 100%;
  padding-left: 90px;
  padding-right: 90px;
}

.logo2_list #imgs_2 {
  padding-left: 120px;
  padding-right: 120px;
}

.logo2_list #imgs_4 {
  width: 100%;
  max-width: 100%;
  padding-left: 61px;
  padding-right: 61px;
  border: 1px solid black;
}

.logo2_list #imgs_5 {
  max-width: 100%;
  padding-left: 89px;
  padding-right: 89px;
}

.logo2_list #imgs_6 {
  max-width: 100%;
  padding-left: 95px;
  padding-right: 95px;
}

.logo2_list #imgs_7 {
  max-width: 100%;
  padding-left: 76px;
  padding-right: 76px;
}

.logo2_container .logo2_list #imgs_1,
#imgs_2,
#imgs_3 {
  width: calc((100% - 40px) / 3);
  margin-top: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #dce2e7;
}

.logo2_container .logo2_list #imgs_4,
#imgs_5,
#imgs_6,
#imgs_7 {
  width: calc((100% - 60px) / 4);
  margin-top: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #dce2e7;
}

.logo2_list {
  width: 100%;
}

.logo2_container .logo2_list img #imgs_5,
#imgs_6,
#imgs_7 {
  width: calc(100% - 40px) / 3;
}

.item_list .item.half_4 {
  width: calc((100% - 60px) / 4);
} */

.show {
  display: block;
}

/* .logo_article {
  display: none;
} */

/*尾0000000000000000000000000*/

.chart_list .chart {
  background: #f8fafcff;
  border: 1px solid #dae0e6;
  position: relative;
  padding: 0 16px 16px;
  height: 178px;
  transition: all 0.3s ease-in-out;
  margin-top: 16px;
}

.chart_list .chart.os {
  width: 100%;
  height: 60px;
  padding: 4px 16px 14px;
  display: flex;
  justify-content: space-between;
}

.chart_list .chart_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chart .chart_title {
  font-size: 16px;
  font-weight: 500;
  color: #1a2736;
  line-height: 22px;
  margin: 12px 0 2px;
  text-align: left;
}

.chart.os .chart_title {
  line-height: 28px;
}

.chart .item_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chart .item_list .item {
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid #c9d1d8;
  font-size: 14px;
  color: #1a2736;
  line-height: 30px;
}

.item_list .item.all {
  width: 100%;
}

.item_list .item.half {
  width: calc(50% - 5px);
}

.item_list .item.half_4 {
  width: calc(40% - 5px);
}

.item_list .item.half_6 {
  width: calc(60% - 5px);
}

.item_list .item.three {
  width: calc((100% - 20px) / 3);
}

.item_list .item.four {
  width: calc(25% - 4.5px);
}
.item_list .item.four.tb{
  width: 46px;
}
.item_list .item.four.sh{
  width: 66px; 
  margin-left: 4px; 
  margin-right: 7px;
}
.item_list .item.four.xh{
  width: 66px; 
  margin-left: 6px;
  margin-right: -4px;
}
.item_list .item.five {
  width: calc(20% - 8px);
}

.item_list .item.six {
  width: calc((100% - 36px) / 6);
}
.item_list .item.seven {
  width: calc((100% - 36px) / 7);
}

.item_list .item.fix_80 {
  width: 80px;
}

.item_list .item.fix_106 {
  width: 106px;
}

.chart.os .item_list {
  width: 1022px;
}

.chart.middleware,
.chart.safety,
.chart.backup {
  width: 302px;
}

.chart.database {
  width: 218px;
}

.chart.vdi,
.chart.chip,
.chart switch {
  width: 178px;
}

.chart.cmp {
  width: 286px;
}

.chart.mini {
  width: 286px;
}

.chart.server {
  width: 684px;
}

.chart.storage {
  width: 286px;
}

.chart.switch {
  /* width: 232.5px; */
  height: 178px;
  margin-top: 16px;
  padding: 4px 16px 14px;
}

.chart.switch .chart_title {
  margin-top: 15px;
}

.img_zstack_logo {
  width: 186px;
  height: 178px;
  background: #f8fafcff;
  border: 1px solid #dae0e6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.img_zstack_logo img {
  height: 82px;
  width: auto;
  max-width: 100%;
}

.blue,
.yellow,
.green,
.pink {
  background: rgba(64, 163, 250, 0.2) !important;
  border: 1px solid #40a3fa !important;
}

@media screen and (max-width: 1440px) {
  #header {
    height: auto;
  }
  #header .head_container {
    flex-direction: column;
    align-items: center;
    width: 80%;
    height: auto;
    padding-bottom: 100px;
  }
  .head_container .title {
    margin-top: 0;
    text-align: center;
  }
  .head_container .bt_con {
    justify-content: center;
  }
  .head_container .img_body {
    margin-top: 20px;
  }
  .head_container .desc {
    width: 80%;
    margin: 24px auto 48px;
    text-align: center;
  }
  .switch_tab .tab_container,
  .list .list_container,
  .solution .case_href {
    width: 80%;
  }
  .product_img .img_container,
  .solution .case_introduction,
  .case_img img {
    width: 80%;
  }
  .msg_cloud ul {
    width: 80%;
    margin: 0 auto;
  }
  .head_container > img {
    margin-top: 20px;
  }
  .case_switch {
    width: 80%;
  }
  .case_switch > div,
  .case_switch > div.active {
    width: 32%;
  }
  .case_href > div:first-child {
    margin-right: 10%;
  }
  .case_href {
    width: 450px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1280px) {
  .logo2_container .logo2_list.container {
    height: auto;
    margin-top: 0px;
    display: flex;
    margin: 0 auto;
  }

  .logo2_container {
    width: 100%;
    margin: 0 auto;
  }
  .logo2_container {
    margin-bottom: 40px;
  }
  .logo2_container .container .imgs1 {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo2_container .container .imgs2 {
    margin-top: 20px;
  }
  .ecological_atlas .desc,
  .ecological_top_container .logo_container,
  .advantage .advantage_list,
  .product_img .out_con {
    width: 80%;
  }
  .ecological_atlas .title,
  .advantage .title,
  .product_img .title {
    margin: 0 auto;
    width: 80%;
  }
  .product_img .desc {
    margin: 40px auto;
    width: 80%;
  }
  .advantage_list .item {
    height: auto;
  }
  .ecological_top_container .logo_article,
  .logo2_container .container {
    width: 80%;
    height: auto;
  }
  .logo2_container .container {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }
  .logo2_container {
    padding-bottom: 30px;
  }
  .logo_article .article_item {
    padding: 15px 30px 30px;
  }
  .article_item .content {
    flex-direction: column-reverse;
  }
  .article_item .content .left_content {
    width: 100%;
    margin-top: 20px;
  }
  .article_item .content .img {
    width: 100%;
    background-color: #f1f6fa;
  }
  .article_item .content .img > img {
    width: 45%;
  }
  .logo_container .logo_list,
  .chart_icon .icon_container {
    width: 100%;
  }
  .logo_container .jump_bt {
    display: none;
  }
  .ecological_bottom_container .chart_icon,
  .ecological_bottom_container .chart_list {
    width: 80%;
  }
  .logo2_container {
    width: 80%;
    height: auto;
  }
  .logo2_list .container > img #imgs_1 {
    width: 160px;
    height: 64px;
  }
  .logo2_list .container > img #imgs_2 {
    width: 100px;
    height: 64px;
  }
  .logo2_list .container > img #imgs_3 {
    width: 160px;
    height: 64px;
  }
  .logo2_list .container img #imgs_4 {
    width: 128px;
    height: 64px;
  }
  .logo2_list .container img #imgs_5 {
    width: 72px;
    height: 64px;
  }
  .logo2_list .container img #imgs_6 {
    width: 60px;
    height: 64px;
  }
  .logo2_list .container img #imgs_6 {
    width: 98px;
    height: 64px;
  }
  .chart.middleware,
  .chart.database,
  .chart.safety {
    width: calc(33.33% - 10px);
  }
  .chart.backup,
  .chart.storage {
    width: calc(30% - 8px);
  }
  .chart_list .chart.os {
    width: calc(70% - 8px);
    height: auto;
    display: block;
    padding-top: 0;
  }
  .chart.os .chart_title {
    line-height: 22px;
  }
  .chart.os .item_list {
    width: 100%;
  }
  .chart.os .item_list .item {
    width: calc((100% - 20px) / 3);
  }
  .chart.os .item_list .item:nth-child(7),
  .chart.os .item_list .item:nth-child(8),
  .chart.os .item_list .item:nth-child(9),
  .chart.os .item_list .item:nth-child(10) {
    width: calc(25% - 7.5px);
  }
  .chart.mini,
  .chart.chip {
    width: calc(30% - 10px);
  }
  .chart_list .chart_row .col {
    width: calc(40% - 10px);
  }
  .img_zstack_logo,
  .chart.switch {
    width: 100%;
  }
  .chart.server {
    width: calc(70% - 8px);
  }
  .chart.vdi {
    width: calc(40% - 8px);
  }
  .chart.cmp {
    width: calc(60% - 8px);
  }
}
@media screen and (max-width:1163px){
  .chart.storage{
    height: 224px;
  }
}
@media screen and (max-width: 1060px) {
  .advantage_list .item {
    width: calc(50% - 10px);
    margin-top: 10px;
  }
  .logo2_container .container > div {
    margin-right: -5px;
    margin-left: -5px;
  }

  .logo2_container .container > .three {
    width: calc((100% - 10px) / 2);
    margin-top: 20px;
  }

  .logo2_container .container > .four {
    width: calc((100% - 10px) / 2);
  }
  .logo2_container .container > .ii {
    width: calc((100% - 10px) / 2);
    margin-right: -5px;
    margin-left: -5px;
  }
}

@media screen and (max-width: 990px) {
  .chart.middleware,
  .chart.database,
  .chart.safety,
  .chart.backup,
  .chart.storage,
  .chart.mini,
  .chart.chip,
  .chart_list .chart_row .col {
    width: calc(50% - 8px);
  }
  .chart.storage{
    height: 179px;
  }
  
  .item_list .item.four.sh {
    width: calc(25% - 4.5px);
  }
  .item_list .item.four.xh{
    width: calc(25% - 4.5px);
  }
  .item_list .item.four.tb{
    width:calc(25% - 4.5px);
  }
  .chart_list .chart.os,
  .chart.server {
    width: 100%;
  }
  .logo2_container .container > div {
    margin-right: -5px;
    margin-left: -5px;
  }

  .logo2_container .container > .three {
    width: calc((100% - 10px) / 2);
    margin-top: 20px;
  }

  .logo2_container .container > .four {
    width: calc((100% - 10px) / 2);
  }
  .logo2_container .container > .ii {
    width: calc((100% - 10px) / 2);
  }
}

@media screen and (max-width: 980px) {
  .ecological_bottom_container .chart_icon {
    display: none;
  }
  .ecological_atlas .desc {
    margin-bottom: 24px;
  }
  .product_img .out_con {
    overflow: scroll;
  }
  .product_img .in_con {
    width: 980px;
  }
  .msg_cloud ul {
    flex-direction: column;
    align-items: center;
  }
  .msg_cloud li:nth-child(2) {
    margin: 20px 0;
  }
  /* .logo2_container .logo2_list .container > div {
    width: 50%;
    margin: 10px, 20px, 20px;
    justify-content: space-between;
  }
  .logo2_container .container > div {
    margin-right: -5px;
    margin-left: -5px;
  } */
}

@media screen and (max-width: 820px) {
  .case_switch > div,
  .case_switch > div.active {
    width: 350px;
  }
  .case_switch {
    width: auto;
    flex-direction: column;
    align-items: center;
  }
  .case_switch > div:nth-child(2) {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .article_item .content .img > img {
    width: 70%;
  }
  .logo2_container .logo2_list .container > div {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .switch_tab_wrap {
    justify-content: flex-start;
  }
  .switch_tab5 {
    padding-right: 20px;
  }
  .switch_tab_wrap {
    justify-content: center;
  }
  .list_container li {
    width: calc(50% - 10px);
  }
  .list_container li:nth-child(odd) {
    margin-right: 20px;
  }
  .list_container .feature {
    flex-direction: column;
    margin-bottom: 0;
  }
  .msg_cloud .title {
    width: 80%;
  }
  .switch_tab_wrap li.tab_right {
    margin-right: 15%;
  }
  .solution .case_img {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .head_container .desc {
    width: 100%;
  }
  .solution .case_href {
    flex-direction: column;
    align-items: center;
  }
  .case_href {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
  .case_href > div {
    flex-direction: column;
    align-items: center;
  }
  .case_href > div:first-child {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 680px) {
  .list_container ul {
    margin-top: 30px;
  }
  .list_container li {
    width: 100%;
    margin-top: 20px;
  }
  .list_container li:nth-child(odd) {
    margin-right: 0;
  }
  .chart_list .chart_row {
    justify-content: center;
  }
  .chart.middleware,
  .chart.database,
  .chart.safety,
  .chart.backup,
  .chart.storage,
  .chart.mini,
  .chart.chip,
  .chart_list .chart_row .col {
    width: 100%;
  }
  .chart.vdi,
  .chart.cmp,
  .chart.middleware,
  .chart.database,
  .chart.safety,
  .chart.backup,
  .chart.storage,
  .chart.mini,
  .chart.chip,
  .chart_list .chart_row .col {
    width: 100%;
  }
  .chart.switch .chart_title {
    width: auto;
    margin-top: 15px;
  }
  .chart.server {
    height: auto;
  }
  .server .item_list .item {
    width: calc((100% - 20px) / 3);
  }
  .server .item_list .item:nth-child(16),
  .server .item_list .item:last-child {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 570px) {
  .advantage_list .item {
    width: 100%;
  }
  .switch_tab .tab_container {
    overflow: scroll;
  }
  .switch_tab_wrap li.tab_right {
    margin-right: 5%;
  }
}

@media screen and (max-width: 530px) {
  .case_types {
    flex-direction: column;
    padding-bottom: 10px;
  }
  .case_types .bt {
    width: 100%;
    margin-top: 10px;
  }
  .chart.os .item_list .item:nth-child(7),
  .chart.os .item_list .item:nth-child(8),
  .chart.os .item_list .item:nth-child(9),
  .chart.os .item_list .item:nth-child(10) {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 480px) {
  .msg_cloud li {
    width: 100%;
  }
  .article_item .content .img > img {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .case_switch > div,
  .case_switch > div.active {
    width: 85%;
  }
  .server .item_list .item {
    width: calc(50% - 8px);
  }
  .server .item_list .item:last-child {
    width: 100%;
  }
  .article_item .logo_con {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
