/*
 * 1. 样式都通过ID去限定
 * 2. 尽可能多使用直接子代选择器
*/

/*公共样式*/

body {
  font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB,
    WenQuanYi Micro Hei, sans-serif;
}
body {
  position: relative;
  overflow-x: hidden;
}
body,
html {
  height: 100%;
  background-color: white;
}
.btn:focus, /*清除btn按钮点击出现的边框*/
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none !important;
  box-shadow: none !important;
}
.b-flex {
  display: flex;
}
.b-flex-row {
  flex-direction: row;
}
.b-flex-column {
  flex-direction: column;
}
.b-flex-center {
  align-items: center;
}
.b-flex-around {
  justify-content: space-around;
}
.b-flex-j-left {
  justify-content: flex-end;
}
.b-flex-warp {
  flex-wrap: wrap;
}
.b-flex-r-center {
  justify-content: center;
}
.text-color-light {
  color: #fff;
}
.mb {
  margin-top: 10px;
}
.mt {
  margin-bottom: 10px;
}
.mr {
  margin-right: 10px;
}
.ml {
  margin-left: 10px;
}

.headerBtn {
  padding-left: 33px;
  padding-right: 33px;
  border-radius: 20px;
  color: rgba(76, 124, 215, 1);
  list-style-type: none;
}
.loginBtn {
  border-color: rgba(76, 124, 215, 1);
}
.font-type {
  color: white;
}

.nav .open > a {
  background-color: transparent;
}
.nav .open > a:hover {
  background-color: transparent;
}
.nav .open > a:focus {
  background-color: transparent;
}

/*navbar-defalut扩展*/
.navbar-default-jerome {
  background-color: #fff;
  border-color: #f5f5f5;
  margin-bottom: 0;
  top: 0;
  width: 100%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: none;
}
.navbar-default-jerome .navbar-brand {
  color: #777;
  height: 80px;
}
.navbar-default-jerome .navbar-brand:hover,
.navbar-default-jerome .navbar-brand:focus {
  color: #5e5e5e;
  /* background-color: #fff; */
}
.navbar-default-jerome .navbar-text {
  color: #777;
}
.navbar-default-jerome .navbar-nav > li > a {
  color: #777;
  line-height: 44px;
  font-size: 16px;
  border-top: 2px solid #fff;
}
.navbar-default-jerome .navbar-nav > li > a:hover .loginBtn,
.navbar-default-jerome .navbar-nav > li > a:focus .loginBtn {
  border-color: #4c7cd7;
  background-color: #fff;
  color: #4c7cd7;
  outline: none;
  box-shadow: none !important;
}
.navbar-default-jerome .navbar-nav > li > a:hover,
.navbar-default-jerome .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
  border-top: 2px solid #4c7cd7;
}
.navbar-default-jerome .navbar-nav > .active > a,
.navbar-default-jerome .navbar-nav > .active > a:hover,
.navbar-default-jerome .navbar-nav > .active > a:focus {
  color: rgba(51, 51, 51, 1);
  background-color: transparent;
  border-top: 2px solid #4c7cd7;
  font-size: 16px;
  font-weight: bold;
}
.navbar-default-jerome .navbar-nav > .disabled > a,
.navbar-default-jerome .navbar-nav > .disabled > a:hover,
.navbar-default-jerome .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default-jerome .navbar-toggle {
  border-color: #ddd;
  margin-top: 23px;
  margin-bottom: 23px;
}
.navbar-default-jerome .navbar-toggle:hover,
.navbar-default-jerome .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default-jerome .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default-jerome .navbar-collapse,
.navbar-default-jerome .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default-jerome .navbar-nav > .open > a,
.navbar-default-jerome .navbar-nav > .open > a:hover,
.navbar-default-jerome .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default-jerome
    .navbar-nav
    .open
    .dropdown-menu
    > .disabled
    > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
@media (min-width: 1200px) {
  .navbar-default-jerome .navbar-nav .open .dropdown-menu {
    border: none;
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a {
    color: rgba(51, 51, 51, 0.6);
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding: 0 48px;
    width: 100%;
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > li > a:focus {
    color: rgba(67, 136, 230, 1);
    background-color: rgba(241, 247, 255, 1);
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: rgba(67, 136, 230, 1);
    background-color: rgba(241, 247, 255, 1);
  }
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default-jerome .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default-jerome
    .navbar-nav
    .open
    .dropdown-menu
    > .disabled
    > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default-jerome .navbar-link {
  color: #777;
}
.navbar-default-jerome .navbar-link:hover {
  color: #333;
}
.navbar-default-jerome .btn-link {
  color: #777;
}
.navbar-default-jerome .btn-link:hover,
.navbar-default-jerome .btn-link:focus {
  color: #333;
}
.navbar-default-jerome .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default-jerome .btn-link:hover,
.navbar-default-jerome .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default-jerome .btn-link:focus {
  color: #ccc;
}

/* 头部区域 */

#header .mobile-link {
  font-size: 12px;
  color: #888;
}

#header .mobile-link > img {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  top: 26px;
  z-index: 1001;
}

#header .mobile-link:hover {
  text-decoration: none;
}

#header .mobile-link:hover > img {
  display: block;
}

#header .icon-icon {
  font-size: 50px;
  color: #f54f65;
  line-height: 50px;
  vertical-align: middle;
}

#header .icon-logo {
  font-size: 32px;
  color: #333;
  line-height: 50px;
  vertical-align: middle;
}
#header .submitBtn {
  background-color: #4c7cd7;
  color: #fff;
  border-color: rgba(76, 124, 215, 1);
}
.ehm, .eap{
  display: none;
  position: absolute;
  top: 0;
  left: 160px;
  padding: 24px;
  box-sizing: border-box;
  background-color: #fff;
  border-left: 1px solid #D9D9D9;
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}
.ehm ul, .eap ul{
  margin-top: 40px;
  margin-left: 0;
  padding-left: 0;
}
.ehm li, .eap li {
  list-style-type: none;
  display: inline-block;
  width: 23%;
  text-align: left;
  margin-bottom: 10px;
}
.ehm li a, .eap li a{
  text-decoration: none;
  color: rgba(51, 51, 51, 0.6);
}
.ehm li a:hover, .eap li a:hover{
  color: #4C7CD7;
}
.eap li{
  width: 30%;
}
.navbar-default-jerome .navbar-nav .open .dropdown-menu .equipment-manage:hover .ehm{
  display: block;
}
.navbar-default-jerome .navbar-nav .open .dropdown-menu .edge-iot:hover .eap{
  display: block;
}
.equipment-manage .menu-wrapper{
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 0;
  /* height: 220px; */
  z-index: 999;
  position: absolute;
  top:20px;
  left:100px;
  padding: 10px;
  padding-bottom: 4px;
  
}
.edge-iot .eap-menu-wrapper{
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 0;
  z-index: 999;
  position: absolute;
  top:90px;
  left:100px;
  padding: 10px;
  padding-bottom: 4px;
  
}
.edge-iot .eap-menu-wrapper ul,
.equipment-manage .menu-wrapper ul
{
 margin-top: 0px;
}

.edge-iot .eap-menu-wrapper ul li a,
.equipment-manage .menu-wrapper ul li a
{
  white-space: nowrap;
}
#footer {
  background: #24303f;
  color: #fff;
  font-size: 12px;
}
#footer .footerText {
  /*text-align: center;*/
  padding: 25px;
  border-top: 1px solid #fff;
}
#footer .footerMain {
  padding: 60px 0;
}
#footer .footerText a {
  color: #fff;
}
#footer .footerText .links {
  margin-bottom: 20px;
}

#footer .footerText .links .title {
  font-weight: bold
}
/**
* 通栏轮播
*/

#main_ad > .carousel-inner > .item {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  padding-bottom: 80px;
}
#main_ad > .carousel-inner {
  /* padding-top: 80px;
  padding-bottom: 80px; */
}
/* 评价轮播 */
.evaluateMain {
  height: 120px;

  background-color: #f8faff;
}
.evaluateMain #main_ad > .carousel-inner > .item {
  padding: 26px 68px;
}
.evaluateMain #main_ad .content .userName {
  font-size: 15px;
  line-height: 1.42857143;
  color: rgba(51, 51, 51, 0.4);
}
.evaluateMain #main_ad .content p {
  font-size: 15px;
}
/* 解决方案 */

.programmeMain .content {
  line-height: 32px;
  padding: 20px 0;
  font-size: 22px;
  text-align: justify;
}
.programmeMain h1 {
  line-height: 32px;
  font-size: 22px;
  text-align: justify;
}
/* 主页通用样式 */
.currencyBox h4 {
  font-size: 22px;
}
.currencyBox h1 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.currencyBox {
  padding: 100px 0;
}
/* 现在开始 */
.startMain {
  background: url("../img/start_bg.png") no-repeat 100% 100%;
  padding: 79px 0;
  background-size: cover;
}
.startMain .container {
  background-color: #fff;
  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 4px;
}
.startMain .container .content {
  padding: 33px;
  display: flex;
  justify-content: space-between;
}
.startMain .container .content button {
  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 36px;
  background: #f9ce54;
  cursor: pointer;
  padding-left: 40px;
  padding-right: 40px;
  border: none;
  font-size: 16px;
  line-height: 44px;
  font-weight: bold;
}
/* 当屏幕宽度大于768时，将元素高度设置为410px */

@media (min-width: 768px) {
  /*大屏幕时用图片作背景，没有内容，所以加上高度*/
  #main_ad > .carousel-inner > .item {
    /* height: 120px; */
  }
}
/*小屏幕时轮播图用img，避免小图没有占满屏幕*/
#main_ad > .carousel-inner > .item > img {
  width: 100%;
}
#main_banner .arrow-left , #main_banner .arrow-right{
  position: absolute;
  top: 300px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: #fff;
}
#main_banner .arrow-left{
  left: 50px;
}
#main_banner .arrow-right{
  right: 50px;
}
/* 首页 */
.efficientBg {
  background: url("../img/bg_02.png") no-repeat;
}
.efficientBg .thumbnail {
  height: 95%;
  position: relative;
  padding-top: 30px;
}

.efficientBg .thumbnail .caption {
  padding-top: 10px;
}

.efficientTitle {
  margin-bottom: 60px;
}

.efficientBg .thumbnail::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.5rem;
  background-color: #ffd048;
  position: absolute;
  top: 0;
  left: 0;
}

/* 设备资产管理 */
.ehmMain .container {
  margin-top: 100px;
  margin-bottom: 100px;
}
.ehmMain .title {
  margin-bottom: 80px;
}
.ehmMain .title h1 {
  font-size: 40px;
  font-weight: bold;
}
.ehmMain .title .bottomLine {
  width: 420px;
  height: 1px;
  background-color: #d9d9d9;
}
.ehmMain .title .bottomLine .lineBorder {
  width: 115px;
  height: 3px;
  background-color: #4c7cd7;
  margin-top: -1px;
}
.ehmMain .title .bottomLine .lineBorder.yellow {
  background-color: #ffd048;
}
.ehmMain .title .bottomLine .lineBorder.purple {
  background-color: #4f5dff;
}
.ehmMain .title .bottomLine .lineBorder.green {
  background-color: #32a752;
}
.ehmMain .title .bottomLine .lineBorder.red {
  background-color: #ff544e;
}
.ehmMain .title .bottomLine .lineBorder.blue {
  background-color: #0096fa;
}
.ehmMain .title .bottomLine .lineBorder.orange {
  background-color: #ff8a00;
}

.ehmMain .title .bottomLine .lineBorder::after {
  content: "";
  display: inline-block;

  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #4c7cd7;
}
.ehmMain .title .bottomLine .lineBorder.orange::after {
  border-top: 12px solid #ff8a00;
}
.ehmMain .title .bottomLine .lineBorder.blue::after {
  border-top: 12px solid #0096fa;
}
.ehmMain .title .bottomLine .lineBorder.red::after {
  border-top: 12px solid #ff544e;
}
.ehmMain .title .bottomLine .lineBorder.green::after {
  border-top: 12px solid #32a752;
}
.ehmMain .title .bottomLine .lineBorder.purple::after {
  border-top: 12px solid #4f5dff;
}
.ehmMain .title .bottomLine .lineBorder.yellow::after {
  border-top: 12px solid #ffd048;
}
.ehmMain .text {
  margin-bottom: 80px;
}
.ehmMain .text h3 {
  line-height: 35px;
}
.ehmMain .details p {
  font-size: 22px;
  margin-bottom: 20px;
}
.ehmMain .details .title {
  font-size: 28px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}
.ehmMain .details .title::before {
  content: "";
  display: inline-block;
  height: 26px;
  width: 4px;
  background: #6a99f9;
  border-radius: 12px;
  margin-right: 12px;
}
.ehmMain .details .title.purple::before {
  background: #4f5dff;
}
.ehmMain .details .title.orange::before {
  background: #ff8a00;
}
.ehmMain .details .title.blue::before {
  background: #0096fa;
}
.ehmMain .details .title.red::before {
  background: #ff544e;
}
.ehmMain .details .title.green::before {
  background: #32a752;
}
.ehmMain .details .title.yellow::before {
  background: #ffd048;
}
.ehmMain .details .content {
  padding-right: 37px;
}
/* 合作伙伴 */
.cooperationMain {
  background-color: #f8faff;
  padding-top: 56px;
  padding-bottom: 0;
}
.cooperationMain .container .title-wrap  h1{
  margin: 0;
  white-space: nowrap;
}
.cooperationMain #main_ad .carousel-control {
  background-image: none;
  width: 8%;
  display: flex;
  align-items: center;
  opacity: 1;
}

.cooperationMain #main_ad .carousel-control.right {
  justify-content: flex-end;
}
/* 按钮扩展样式 */
.ehm-btn-radius {
}

/* 在线客服 */
.customer {
  position: fixed;
  top: 31%;
  right: 0;
  background-color: #fff;
  padding: 0 15px;
  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 8px 0px 0px 8px;
  z-index: 999;
}
.customer .customerContent {
  width: 64px;
}
.customer .customerContent h4 {
  line-height: 24px;
  padding: 5px 0;
}
.customer:hover {
  background: rgba(254, 195, 25, 1);
  color: #fff;
}
.customer:hover .customerCode {
  display: block;
}
.customer .customerIcon {
  background: rgba(249, 206, 82, 1);
  padding-bottom: 15px;
  padding-top: 15px;
  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 8px 0px 0px 0px;
}

.customer .customerCode {
  display: none;
  position: absolute;
  top: 0;
  right: 78px;
  width: 194px;
  height: 189px;
  background: #ffffff;
  mix-blend-mode: normal;
  /* A */

  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 12px;
  overflow: hidden;
}
/* 功能亮点 */
.functionalHighlights .container > div:first-child {
  margin-bottom: 80px;
}
.functionalHighlights .functionItem {
  margin-bottom: 75px;
}
.functionalHighlights .functionItem li {
  margin-bottom: 8px;
}
.functionalHighlights .functionItem li a {
  display: block;
  color: rgba(51, 51, 51, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 14px 48px 24px 48px;
}
.functionalHighlights .functionItem li a > h1 {
  transform: scale(1.8);
}

.functionalHighlights .functionItem li.active,
.functionalHighlights .functionItem li:hover,
.functionalHighlights .functionItem li:focus {
  color: #fff;
  background: rgba(76, 124, 215, 1);
}
.functionalHighlights .functionItem li.active a,
.functionalHighlights .functionItem li:hover a,
.functionalHighlights .functionItem li:focus a {
  color: #fff;
  background: rgba(76, 124, 215, 1);
}
.functionalHighlights .functionItem li.active figcaption,
.functionalHighlights .functionItem li:hover figcaption,
.functionalHighlights .functionItem li:focus figcaption {
  border: 12px solid;
  border-radius: 50%;
}
.functionalHighlights .functionItem li.active figcaption img,
.functionalHighlights .functionItem li:hover figcaption img,
.functionalHighlights .functionItem li:focus figcaption img {
  background: #fff;
}
.functionalHighlights .functionItem li.active.yellow,
.functionalHighlights .functionItem li.yellow:hover,
.functionalHighlights .functionItem li.yellow:focus {
  color: #fff;
  background: #ffd048;
}
.functionalHighlights .functionItem li.active.yellow figcaption,
.functionalHighlights .functionItem li.yellow:hover figcaption,
.functionalHighlights .functionItem li.yellow:focus figcaption {
  border: 12px solid;
  border-radius: 50%;
}
.functionalHighlights .functionItem li.active.yellow figcaption img,
.functionalHighlights .functionItem li.yellow:hover figcaption img,
.functionalHighlights .functionItem li.yellow:focus figcaption img {
  background: #fff;
}
.functionalHighlights .functionItem li.active.yellow a,
.functionalHighlights .functionItem li.yellow:hover a,
.functionalHighlights .functionItem li.yellow:focus a {
  color: #fff;
  background: #ffd048;
}
.functionalHighlights .functionItem li a > div {
  flex: 1;
  padding: 0 48px;
}
.functionalHighlights .functionItem li a > div h1 {
  font-size: 96px;
  font-weight: bold;
}
.functionalHighlights .functionItem li a > div h2 {
  font-weight: bold;
  font-size: 32px;
}
.functionalHighlights .functionItem .card {
  background: #ffffff;
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.0488298);
  border-radius: 4px;
  padding: 0;
  padding-bottom: 65px;
}
.functionalHighlights .functionItem .card > div {
  display: none;
}
.functionalHighlights .functionItem .card > div.active {
  display: block;
}
.functionalHighlights .functionItem .card h4 {
  font-size: 22px;
  text-align: justify;
  color: #333;
  padding: 32px 40px 0 40px;
  line-height: 32px;
}
/*-------------------------------*/
/*           Wrappers   申请试用 */
/*-------------------------------*/
#wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding-left: 0;
  transition: all 0.5s ease;
}
#wrapper .wrapper-right {
  /* position: fixed;
  top: 0;
  right: 0; */
}
#wrapper.toggled {
  padding-right: 220px;
}
#wrapper.toggled #sidebar-wrapper {
  width: 600px;
}

#sidebar-wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  background: #fff;
  height: 100%;
  right: -220px;
  margin-right: -220px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s ease;
  width: 0;
  z-index: 10000000;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}

#sidebar-wrapper .wrapper-form {
  padding: 64px 48px;
  width: 600px;
}
#sidebar-wrapper .wrapper-form .wrapper-text {
  margin-bottom: 48px;
}
#sidebar-wrapper .wrapper-header {
  height: 48px;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  background-color: #4c7cd7;
  color: #fff;
}
#sidebar-wrapper .submitControl button {
  width: 100%;
  background-color: #4c7cd7;
  color: #fff;
  border-color: rgba(76, 124, 215, 1);
}
#sidebar-wrapper .form-group span {
  color: red;
  padding-right: 2px;
}
.submitErrorMsg {
  margin-top: 10px;
  display: none;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 220px;
}

/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/* bootstrapValidator*/
.bv-form .help-block {
  margin-bottom: 0;
}
.bv-form .tooltip-inner {
  text-align: left;
}
.nav-tabs li.bv-tab-success > a {
  color: #3c763d;
}
.nav-tabs li.bv-tab-error > a {
  color: #ff4d4f;
}
.bv-form .bv-icon-no-label {
  top: 0;
}
.bv-form .bv-icon-input-group {
  top: 0;
  z-index: 100;
}
.has-error .form-control {
  border-color: #ff4d4f;
  -webkit-box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
  box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
}
.has-error .form-control:focus {
  border-color: #ff4d4f;
  -webkit-box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
  box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
}
.has-error .control-label,
.has-error .help-block {
  color: #ff4d4f;
}
.has-success .control-label {
  color: #000;
}
.has-success .form-control {
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
  box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
}
.has-success .form-control:focus {
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
  box-shadow: inset 0 1px 1px rgb(247 244 244 / 0.73);
}
.form-control-feedback {
  /*display: none !important;*/
}
/* 申请试用 */
.applyBox {
  background-color: #f2f2f2;
  padding: 32px 0;
}
.applyBox .alert-success {
  text-align: center;
}

.applyMain {
  background-color: #fff;
  padding: 40px 0;
  padding-right: 66px;
  padding-left: 110px;
  border-radius: 12px;
}
.applyMain .groupInput input {
  padding-left: 40px;
}
.applyMain .groupInput .form-control-feedback {
  left: 18px;
}
.applyMain .groupInput .form-control-feedback.send-code {
  right: 18px;
}
.mainImg {
  margin: 33px 0;
}
.applyCarousel {
  margin-top: 24px;
}
.applyTitle {
  font-weight: bold;
}
.apply-form {
  margin-right: 70px;
}
.apply-form form {
  flex: 1;
}
.apply-form form input {
  border-color: rgba(220, 220, 220, 1);
  border-radius: 4px;
}
.apply-form form .form-group {
  margin-bottom: 24px;
}
.submitControl button {
  width: 50%;
  background: rgba(76, 124, 215, 1);
  color: #fff;
  border-radius: 40px;
  border-color: rgba(76, 124, 215, 1);
  padding: 8px 0;
  margin-top: 20px;
}
.submitControl button:hover {
  background: rgba(76, 124, 215, 1);

  border-color: rgba(76, 124, 215, 1);
}

.apply-form .bottomLine .lineBorder {
  width: 90px;
  height: 2px;
  background-color: #4c7cd7;
  margin-top: -1px;
}
.apply-form .bottomLine .lineBorder::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 13px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 7px solid #4c7cd7;
}
.apply-form-title {
  margin-bottom: 40px;
}
.apply-form-title h3 {
  color: rgba(76, 124, 215, 1);
}
.code-box .groupInput {
}
.apply-form .code-text button {
  color: rgba(76, 124, 215, 1);
}
.apply-form .code-text button:hover {
  border: 1px solid rgba(76, 124, 215, 1);
  background-color: #fff;
}
.linear-left {
  border-radius: 3.5px;
  background-image: linear-gradient(to left, #4c7cd7, transparent);
}
.linear-right {
  border-radius: 3.5px;
  background-image: linear-gradient(to right, #4c7cd7, transparent);
}
.apply-right h5.text-small {
  margin: 0;
}
/* 关于我们 */
.about-main strong {
  font-size: 36px;
  margin: 10px 0 32px 0;
  display: inline-block;
}
.about-main h5 {
  font-weight: 700;
}
.about-main.details p {
  font-size: 16px;
}
.about-main.container.top-main {
  margin-top: -100px;
}
.about-footer {
  background: rgba(248, 250, 255, 1);

  padding-bottom: 72px;
}
.about-footer .title {
  padding-top: 52px;
  margin-bottom: 72px;
}
.about-footer .container {
  margin-top: 0;
  margin-bottom: 0;
}

/* 联系我们 */
.contactBox .content-box {
  width: 100%;
  background: rgba(248, 250, 255, 1);
  padding: 30px 0;
  border-radius: 12px;
  margin-right: 100px;
  margin-bottom: 20px;
}
.contactBox .content-code {
  padding-left: 56px;
  padding-top: 20px;
}
.contactBox .content-code h5 {
  font-weight: 400;
}
.contactBox .content-code img {
  margin-right: 25px;
}
.contact-form .required {
  color: red;
}
.contact-form label {
  font-size: 16px;
  font-weight: bold;
}
/* 资源中心Banner */
.resourcesBox {
  background: url("../img/resources_bg.png") no-repeat 100% 100%;
  padding: 0;
}
.resourcesBox .container {
  padding: 30px 0;
}
.resourcesBox.functionalHighlights .functionItem li.active,
.resourcesBox.functionalHighlights .functionItem li:hover,
.resourcesBox.functionalHighlights .functionItem li:focus {
  color: #fff;
  background-color: #fff;
}
.resourcesBox.functionalHighlights .functionItem li.active a {
  color: #fff;
  background-color: #fff;
}
.resourcesBox .resources-item {
  margin-left: 48px;
}
.resourcesBox .resources-item .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */

  text-align: justify;

  color: #333333;
}
.resourcesBox .resources-item .time {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: rgba(51, 51, 51, 0.6);
  padding-bottom: 9px;
  padding-top: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.resourcesBox .resources-item .content {
  padding-top: 28px;
  overflow: hidden;
  max-height: 108px;
}
.resourcesBox .resources-item .footer {
  text-align: center;
  color: #fff;
  background: #4c7cd7;
  mix-blend-mode: normal;
  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 36px;
  align-self: flex-end;
  width: 120px;
  padding: 4px 0;
  cursor: pointer;
}
.resourcesBox.functionalHighlights .container > div:first-child {
  margin: 0;
}
.resourcesBox.functionalHighlights .functionItem .card {
  background: rgba(255 255 255 / 0);
  box-shadow: none;
  padding-bottom: 0;
  padding-right: 40px;
}

.resourcesBox.functionalHighlights .functionItem .card-thumbnail {
  padding-left: 32px;
}
.resourcesBox.functionalHighlights .functionItem .card > div.active {
  display: flex;
}
.resourcesBox.functionalHighlights .functionItem li a {
  padding: 0;
  width: 100%;
  display: inline-block;
}

.resourcesBox.functionalHighlights .functionItem li {
  width: 202px;
}
/* 资源中心卡片 */
.author-card {
  left: calc(50% - 384px / 2 + 408px);
  background: #ffffff;
  mix-blend-mode: normal;
  border-radius: 8px;
  padding: 20px 24px;
}
.author-card .img-responsive {
  width: 56px;
  height: 56px;
  left: calc(50% - 56px / 2 + 268px);
  top: 605px;
}
.author-card .title .text {
  padding-left: 16px;
}

.author-card .content {
  padding: 31px 0 10px 0;
}
.author-card .footer {
  align-self: flex-end;
  color: rgba(76, 124, 215, 1);
  text-align: right;
}
/* 资源中心搜索栏 */
.resources-search select,
.resources-search input {
  width: 100%;
  background: #ffffff;
  mix-blend-mode: normal;
  /* A */

  box-shadow: 0px 0px 40px rgba(173, 173, 173, 0.25);
  border-radius: 4px;
  border: none;
}
.resources-search select option {
  padding: 10px 0;
}
.resources-search .groupInput input {
  padding-left: 62px;
}

.resources-search .groupInput .form-control-feedback {
  left: 23px;
  line-height: 42px;
}
/* 生态伙伴 */
.ecoBg .thumbnail {
  height: 100%;
  position: relative;
  padding-top: 70px;
  border-radius: 16px;
}

.ecoBg .thumbnail img {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -50px;
  left: 20px;
}

.ecoBg .thumbnail h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  line-height: 26px;
  padding: 0 9px;
}

.ecoBg .thumbnail p {
  color: #848e9d;
}

.ecoBg button,
.enroll button {
  width: 140px;
  height: 40px;
  background: #4c7cd7;
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
  margin-top: 40px;
}
.ecoBg button img {
  margin-top: -3px;
}
.ecoBg .thumbnail .caption {
  padding-top: 2em;
}
.equity .equity_div {
  width: 100%;
  height: 212px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(209, 209, 209, 0.25);
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.equity .equity_div img {
  width: 96px;
  height: 96px;
  margin: 0 1rem;
}
.equity .equity_div div {
  flex: 1;
  margin-right: 2rem;
}
.equity .equity_div div h6 {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 28px;
  margin-bottom: 1.5rem;
}
.equity .equity_div div p {
  font-size: 18px;
  font-weight: 400;
  color: #848e9d;
  line-height: 21px;
}

.excellent img {
  width: 100%;
}

.enroll .img1 {
  width: 64px;
  height: 64px;
}
.enroll .img2 {
  width: 24px;
}
.enroll .col-xs-1 {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.enroll .col-xs-2 {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.enroll p {
  text-align: center;
  width: 80px;
  font-size: 12px;
  font-weight: bold;
  color: #4c7cd7;
  line-height: 14px;
  margin: 0;
}
#ecoModal .form-group {
  height: 50px;
}
#ecoModal .form-group em {
  margin: 0;
}
#ecoModal .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  transition: none;
  -webkit-transition: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

#ecoModal label {
  font-weight: 400;
  color: rgba(51, 51, 51, 0.6);
}

#ecoModal .submitBtn {
  width: 140px;
  height: 40px;
  background: #4c7cd7;
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
  margin-top: 40px;
}

@media (min-width: 800px) {
  #ecoModal .modal-dialog {
    width: 800px;
  }
  #ecoModal .modal-content {
    border-radius: 0;
  }
  #ecoModal .modal-body {
    padding-bottom: 60px;
  }
}

@media (max-width: 799px) {
  .ehmMain .title h1 {
    font-size: 24px;
  }
  .ecoBg .thumbnail img {
    width: 56px;
    height: 56px;
    top: -28px;
  }
  .partner_types .col-md-3 {
    margin-bottom: 30px;
  }
  .form-group .control-label {
    padding-left: 35px;
    padding-top: 8px;
  }
}

#ecoModal .modal-header-div {
  height: 120px;
  position: relative;
}
#ecoModal .modal-header-div .close {
  width: 16px;
  height: 16px;
  color: #4c7cd7;
  opacity: 1;
  font-weight: 100;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
}
#ecoModal .modal-header-div h5 {
  text-align: center;
  height: 36px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  padding-top: 30px;
}
#ecoModal .modal-header-div h5 span {
  display: inline-block;
  line-height: 36px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
#ecoModal .modal-header-div h5 span::before {
  content: "";
  display: block;
  position: absolute;
  width: 72px;
  height: 3px;
  background: #4c7cd7;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  bottom: -2px;
  left: 50%;
  margin-left: -36px;
}

.m-message {
  z-index: 100000;
}

/* 底部样式 */
.footerMain .footer-logo {
  margin-left: -29px;
  margin-top: -20px;
}
.footerMain .footer-call {
  margin-top: 10px;
}

.footerMain .footer-call .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
}
.footerMain .footer-call .text {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-left: 8px;
}

.footerMain .footer-section .footer-menu {
  font-weight: 400;
  font-size: 14px;
}
.footerMain .footer-section .footer-menu > a {
  display: inline-block;
  margin-bottom: 9px;
  color: #fff;
  text-decoration: underline;
}
.footerMain .footer-section .footer-menu-item {
  margin-top: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
}

.footerMain .footer-section .footer-menu-item a {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  text-decoration: underline;
}
.footerMain .footer-code {
  margin-top: 30px;
  text-align: center;
}
.footerMain .footer-code .code-label {
  margin-top: 10px;
}
.footerMain .footer-code img {
  display: inline-block;
  width: 96px;
  height: 96px;
}
/* 博文右侧更多电子版资料卡片 */
.right-card-more {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 20px 0;
  color: #333333;
  margin-bottom: 24px;
}
.right-card-more .title {
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
  margin: 0 24px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 100;
}
.right-card-more .text {
  padding: 0 9px;
}
.right-card-more .more-btn {
  background-color: #fff;
  mix-blend-mode: normal;
  border: 1px solid #4c7cd7;
  border-radius: 6px;
  color: rgba(76, 124, 215, 1);
  width: 100%;
  margin-bottom: 20px;
  font-weight: 500;
}

.right-card-more .more-btn-active {
  background: rgba(76, 124, 215, 0.1);
}
/* 扫码获取文本样式 */
.modal-detail-right p {
  margin: 0 0 15px;
}
.modal-detail-title {
  display: inline-block;
  position: relative;
}
.modal-detail-title::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #4c7cd7;
  position: absolute;
  left: 0;
  bottom: -17px;
}
.modal-detail-header button {
  color: #4c7cd7;
  opacity: 1;
  background: #fff;
}
/*  设备自动化系统EAP start */
.know-content{
  margin-top: 100px;
  margin-bottom: 50px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around;
}
.know-more{
  display: inline-block;
  text-align: center;
}
.know-more img {
  width: 320px;
  height: 200px;
}
.know-more p {
  width: 100%;
  height: 60px;
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
  word-wrap: break-word;
  cursor: pointer;
}
.know-more p a{
color: #333;
}
.know-more p a span{
  display: block;
 }
.know-more p:hover, .know-more p a:hover {
color: #0096fa;
}
/*  设备自动化系统EAP end */

.bb{
  border: 1px solid red;
}

/* 移动端专用 start */
@media (max-width: 812px) {
  /* 移动端隐藏 */
  .b-none {
    display: none !important;
  }
  .m-flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .programmeMain .content {
    line-height: 32px;
    padding: 20px 0;
    font-size: 14px;
    text-align: justify;
  }
  
  /* 主页通用样式 */
  .currencyBox h4 {
    font-size: 12px;
  }
  .currencyBox .container .title-wrap h4 {
    font-size: 12px;
    transform: translateX(-30%);
  }
  .currencyBox h1 {
    font-size: 20px;
    font-weight: bold;
  }
}
@media (min-width: 1200px) {
  .b-pc-none {
    display: none !important;
  }
}

.slider-x {
  overflow: hidden;
  width: calc(100% - 20px);
  margin: 0 10px;
  margin-bottom: 18px;
  margin-top: 18px;
}
.slider-x .slider-wrapper{
  width: calc(540% + 180px);
  flex-wrap: nowrap;
  animation: slide 18s infinite;

}
.slider-x .slider-wrapper img {
  display: block;
  width: 30%;
  height: 88px;
  margin-right: 10px;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
/* 移动端专用 end */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spin 0.8s linear infinite;
  margin-right: 10px;
}

.loading-text {
  font-size: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}