*,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px;
}

.font-100 {
  font-size: 100px;
}

.font-48 {
  font-size: 48px;
}

.font-14 {
  font-size: 14px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-top-52 {
  margin-top: 52px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-33 {
  margin-top: 33px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-33-0 {
  margin-top: 33px;
  margin-bottom: 33px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-0-auto {
  margin: 0 auto;
}

.margin-0-15 {
  margin: 0 15px;
}

.margin-top-50 {
  margin-top: 50px;
}

.padding-0 {
  padding: 0;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.bgc-f6f7fb {
  background-color: #f6f7fb;
}

.bgc-blue {
  background-color: #00bf80;
}

.color-blue {
  color: #00bf80;
}

.bgc-white {
  background-color: white;
}

.bgc-white-opacity-7 {
  background-color: rgba(255, 255, 255, 0.7);
}

.border-radius-10 {
  border-radius: 10px;
}

.line-icon {
  width: 36px;
  height: 4px;
}

.line-height-30 {
  line-height: 30px;
}

@media screen and (min-width: 1200px) {
  .container-1600 {
    max-width: 1600px;
    margin: 0 auto;
  }
  .small-title {
    padding: 0 12px;
  }
}

@media (min-width: 1200px) {
  .container-750 {
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) and (max-width: 1600px) {
  .container-1600 {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 992px) {
  .small-title {
    padding-left: 15px;
  }
  .card-con {
    padding: 0 15px;
  }
}

/* 导航开始 */
.navbar-style {
  background: #fff;
  box-shadow: 0 0 10px rgba(151, 151, 151, 0.2);
  transition: all 0.3s ease-in-out;
}
.image-logo {
  width: 50%;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}
.navbar-toggler .icon-list {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.nav-style.active::before {
  transform: scale(1);
}
.nav-style.active,
.nav-style.active .iconfont,
.drop-down-text ul li a.active {
  color: #00bf80;
}
.drop-down-text ul li a {
  display: inline-flex;
  color: #5f5f5f;
  transition: all 0.3s ease-in-out;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .nav-style {
    position: relative;
    display: flex;
    color: #fff;
    align-items: center;
    column-gap: 0.3125rem;
    transition: all 0.3s ease-in-out;
  }
  .nav-style-small {
    color: #222;
  }
  .nav-style::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1875rem;
    background: #00bf80;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
  }
  .nav-item:hover .nav-style::before {
    transform: scale(1);
  }
  .nav-style .iconfont {
    font-size: 0.875rem;
    line-height: 0.75rem;
    transition: all 0.3s ease-in-out;
  }
  .nav-item:hover .iconfont {
    transform: rotate(180deg);
  }
  /* 下拉菜单 */
  .drop-down {
    position: absolute;
    top: 105%;
    left: -220%;
    min-width: 37.5rem;
    background: #fff;
    padding: 1.875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0 1.25rem rgba(151, 151, 151, 0.2);
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
  }
  .nav-item:hover .drop-down {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .drop-down img {
    width: 15rem;
    border-radius: 0.3125rem;
  }
  .drop-down-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  .drop-down-text h5 {
    color: #4a4a4a;
  }
  .drop-down-text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  .drop-down-text ul li {
    transform: translateY(10px);
    transition-delay: 0s;
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }
  .nav-item:hover .drop-down ul li {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 70ms;
  }
  .drop-down-text ul li a:hover {
    transform: translateX(4px);
    color: #00bf80;
  }
}
@media (max-width: 992px) {
  .nav-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5f5f5f;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
  }
  .nav-style:not(.active):hover {
    color: #222;
    transform: translateX(4px);
  }
  .nav-style .iconfont {
    font-size: 0.875rem;
    line-height: 0.75rem;
    transition: all 0.3s ease-in-out;
    color: #5f5f5f;
  }
  .rotate {
    transform: rotate(180deg);
  }
  .nav-style:not(.active):hover .iconfont {
    color: #222;
  }
  .drop-down {
    display: none;
  }
  .drop-down-text ul li {
    border-bottom: 1px solid #f0f0f0;
  }
  .drop-down-text ul li a {
    display: flex;
    transition: all 0.3s ease-in-out;
  }
  .drop-down-text ul li a:hover {
    transform: translateX(4px);
    color: #222;
  }
}
/* 下拉菜单 */

/* 导航结束 */

/* 底部导航开始 */
.tfood-logo {
  width: 141px;
  height: 49px;
}
.phone-num-con {
  display: flex;
  align-items: center;
}
.phone-con .iconfont {
  color: #00bf80;
  font-size: 1.5rem;
}
.phone-num {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #00bf80;
  font-size: 20px;
  margin-left: 10px;
}
.round {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #00bf80;
  text-align: center;
  color: #fff;
  line-height: 15px;
  font-weight: bold;
  margin-left: 10px;
}
.tfood-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  color: #888888;
}

.tfood-list a {
  color: #989898;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}
.tfood-list a:not(:first-child):hover {
  color: #00bf80;
  transform: translateX(3px);
}
.tfood-list-title {
  font-size: 16px !important;
  font-weight: bolder !important;
  color: #1e1e1e !important;
}

.phone-item {
  display: flex;
  justify-content: flex-end;
  height: 350px;
}

.code-img img {
  width: 100px;
  text-align: right;
}
.code-img {
  opacity: 0;
  transition: 0.5s;
}
.tencent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tencent img {
  height: 40px;
}
.tencent img:hover {
  cursor: pointer;
}
.img-active {
  opacity: 1;
  transition: 0.5s;
}

.article {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 30px;
  background-color: #00bf80;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
  align-items: center;
  color: white;
  font-size: 14px;
  margin-top: 30px;
}

.article ul {
  width: 40%;
  margin: 0;
  justify-content: space-around;
}

.article p {
  margin: 0;
}

.article ul li {
  color: white;
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .article {
    padding: 16px;
  }
  .tfood > div {
    margin-top: 30px;
  }
  .phone-img,
  .phone-con {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tfood-list a {
    font-size: 14px;
  }
}

/* 底部导航结束 */

/* 海报开始 */

.banner {
  height: 932px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.index-banner {
  background: url('/zhinengruanjian/images/海报1.jpg') no-repeat center;
  background-size: cover;
}

.product-banner {
  background: url('/zhinengruanjian/images/产品介绍banner.png') no-repeat center;
  background-size: cover;
}

.service-banner {
  background: url('/zhinengruanjian/images/服务案例banner.png') no-repeat center;
  background-size: cover;
}

.case-banner {
  background: url('/zhinengruanjian/images/服务案例banner.png') no-repeat center;
  background-size: cover;
}

.news-banner {
  background: url('/zhinengruanjian/images/矩形\ 1.png') no-repeat center;
  background-size: cover;
}

.aboutus-banner {
  background: url('/zhinengruanjian/images/关于我们.png') no-repeat center;
  background-size: cover;
}

.cloudmes-banner {
  background: url('/zhinengruanjian/images/xbgc.png') no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .banner {
    height: 500px;
  }
  .banner-text .font-100 {
    font-size: 38px;
  }
  .banner-text .font-48 {
    font-size: 26px;
  }
}

/* 海报结束 */

/* 案例详细详情开始 */
/* 新 */
/* 头部导航 */
.case-nav {
  display: flex;
  border-bottom: 1px solid #e6e6e6;
}
.case-nav button {
  border: unset;
  background: none;
  position: relative;
  color: #222222;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.case-nav button::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #0078d7;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.case-nav button.active {
  color: #0078d7;
}
.case-nav button.active::before {
  transform: scale(1);
}
.case-nav button:hover::before {
  transform: scale(1);
}
/* 头部导航 */
/* 内容 */
.case-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.case-content {
  width: 400%;
  color: #5f5f5f;
  display: flex;
  transform: translateX(0);
  transition: all 0.5s ease-in-out;
}
.case-content-text {
  width: calc(100% / 4);
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-content: center;
  row-gap: 0.625rem;
  font-size: 0.875rem;
}
.second-content-text,
.third-content-text {
  display: flex;
  flex-direction: column;
}
.third-content-text ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.four-content {
  width: calc(100% / 4);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
}
/* 内容 */
/* 新 */
.news-details-title,
.case_details_title {
  padding: 1rem;
  margin: 1.875rem auto;
  text-align: center;
  color: #555555;
  border-bottom: 1px dashed #888888;
  padding-bottom: 2.5rem;
  font-size: 28px;
  font-weight: bolder;
}
#news-details img,
.details img {
  max-width: 100%;
  /* width: 100%;
    max-height: 400px; */
  display: block;
  margin: 0 auto;
  margin-bottom: 1.875rem;
}
@media (min-width: 1200px) {
  #news-details .container,
  #news-details .container-sm,
  #news-details .container-md,
  #news-details .container-lg,
  #news-details .container-xl {
    max-width: 1140px;
  }
}
.news-details-body {
  line-height: 2.25rem;
  font-size: 14px !important;
  padding-bottom: 6.25rem;
}
.details {
  margin: 0 auto;
  color: #5f5f5f;
}
.details div {
  margin-top: 40px;
}
h6 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a4a4a;
}

.details p {
  margin-bottom: 5px;
}

/* 案例详细详情结束 */

/* 悬浮联系方式开始 */
.float {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  position: fixed;
  bottom: 10%;
  right: 3%;
  z-index: 9999;
}
.float-content {
  display: inline-flex;
  flex-direction: column;
  padding: 1.25rem 0.75rem;
  row-gap: 1.25rem;
  border-radius: 3.125rem;
  box-shadow: 0 0 0.625rem rgba(151, 151, 151, 0.2);
  background: #fff;
}
.float-item {
  position: relative;
}
.float-icon {
  font-size: 0.875rem;
  display: inline-flex;
  flex-direction: column;
  row-gap: 0.125rem;
  cursor: pointer;
  color: #222222;
  transition: all 0.3s ease-in-out;
}
.float-icon .iconfont {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.float-icon:hover {
  color: #00bf80;
}
.float-pop {
  position: absolute;
  min-width: 16.25rem;
  right: 200%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  background: #fff;
  background-size: 100%;
  padding: 1.25rem;
  border-radius: 0.625rem;
  box-shadow: 0 0 10px rgba(151, 151, 151, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.float-pop h6 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222222;
  padding: 0 0.625rem;
}
.float-pop-item {
  display: flex;
  column-gap: 0.625rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.float-pop-item .icon-telephone {
  display: inline-flex;
  align-items: center;
  font-size: 1.875rem;
  line-height: 1.875rem;
  padding: 0.625rem;
  background: #f5f5f5;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.float-pop-text {
  display: flex;
  flex-direction: column;
  row-gap: 0.3125rem;
  font-size: 0.875rem;
  color: #4a4a4a;
  transition: all 0.3s ease-in-out;
}
.float-pop-text p:last-child {
  font-size: 0.75rem;
  color: #5f5f5f;
  transition: all 0.3s ease-in-out;
}
.float-pop .icon-right {
  font-size: 1.875rem;
  color: #fff;
}
.float-phone .float-pop-text p:last-child {
  color: #00bf80;
}
.float-pop-item:hover {
  background: #f5f5f5;
  color: #00bf80;
}
.float-pop-item:hover .icon-telephone {
  background: #fff;
}
.float-pop-item:hover .float-pop-text,
.float-pop-item:hover .float-pop-text p:last-child {
  color: #00bf80;
}
.icon-backtop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  line-height: 2rem;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(151, 151, 151, 0.2);
  border-radius: 100%;
  color: #222222;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.icon-backtop:hover {
  color: #00bf80;
}
/* 悬浮联系方式结束 */
