/* ----------------- 公共部分 - 开始 ----------------- */
/* 盒模型统一 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 移除默认边距 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* 基础文档设置 */

html {
  /* 1rem = 10px (方便计算) */
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* 列表样式重置 */

ol,
ul {
  list-style: none;
}

/* 链接默认样式 */

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* 媒体元素适配 */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 表单元素重置 */

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

textarea {
  resize: vertical;
}

/* 表格重置 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 代码字体 */

code,
kbd,
pre,
samp {
  font-family: Menlo, Consolas, monospace;
  font-size: 1em;
}

/* 清除浮动 */

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ---------------------------------------------------------------------------- */

/* 重置bootstrap样式 */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0;
  padding-right: 0;
  padding-left: 0;
}

/* ---------------------------------------------------------------------------- */

/* 标题分隔线 */

.divider {
  width: 80px;
  height: 3px;
  background-color: #238d81;
  margin: 1rem auto;
}

/* ------ 宽高类 ------ */

.width-100px-important {
  width: 100px;
}

.width-220px-important {
  width: 220px;
}

.height-5rem {
  height: 5rem;
}

.height-77px {
  height: 77px;
}

.width-height-15px {
  width: 15px;
  height: 15px;
}

.width-height-30px {
  width: 30px;
  height: 30px;
}

.max-width-80px {
  max-width: 80px;
}

.max-height-177px {
  max-height: 177px;
}

.gap-8rem {
  gap: 8rem;
}

/* ------ 颜色类 ------ */
/* 字体颜色 */

.text-color-1c8cd2 {
  color: #1c8cd2;
}

.text-color-a8a8a8 {
  color: #a8a8a8;
}

.text-color-464646 {
  color: #464646;
}

.text-color-8c8c8c {
  color: #8c8c8c;
}

.text-color-dddddd {
  color: #dddddd;
}

.text-color-238d81 {
  color: #238d81;
}

.text-color-3db8a4 {
  color: #3db8a4;
}

/* 背景颜色 */
.bg-color-1fb5a4 {
  background-color: #1fb5a4;
}

.bg-color-238d81 {
  background-color: #238d81;
}

.bg-color-333333 {
  background-color: #333333;
}

.bg-color-46c2ba {
  background-color: #46c2ba;
}

.bg-color-50cdc5 {
  background-color: #50cdc5;
}

.bg-color-f5f5f5 {
  background-color: #f5f5f5;
}

.bg-color-f6f6f6 {
  background-color: #f6f6f6;
}

.bg-color-f7f7f7 {
  background-color: #f7f7f7;
}

.bg-color-fed42a {
  background-color: #fed42a;
}

/* 圆形或椭圆形的渐变色 */
.bg-radial-gradient-l71f1e2-t00bfa8 {
  background: radial-gradient(at left top, #71f1e2, #00bfa8);
}

/* 线性渐变色 */
.bg-linear-gradient-4fc6b3-73e7d4 {
  background: #4fc6b3;
  /* 备用纯色 */
  background: -webkit-linear-gradient(top, #73e7d4, #4fc6b3);
  background: linear-gradient(to bottom, #73e7d4, #4fc6b3);
}

/* 边框颜色 */

.border-color-3db8a4-important {
  border-color: #3db8a4 !important;
}

.border-color-238d81-important {
  border-color: #238d81 !important;
}

.border-color-ffffff-important {
  border-color: #ffffff !important;
}

.border-left-3px-solid-238d81 {
  border-left: 3px solid #238d81;
}

.border-1px-solid-dddddd {
  border: 1px solid #dddddd;
}

.border-1px-solid-238d81 {
  border: 1px solid #238d81;
}

/* ------ 字体类 ------ */
.font-size-16px {
  font-size: 16px;
}

.font-size-18px {
  font-size: 18px;
}

.text-indent-40px {
  text-indent: 40px;
}

/* ------ 间距类 ------ */
.padding-top-75px {
  padding-top: 7.5rem;
}

/* ------ 过渡类 ------ */
.transition-opacity-dot3s-ease {
  transition: opacity 0.3s ease;
}

/* ------ 阴影类 ------ */
.box-shadow-000000-dot1 {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow-right-1dot5px-currentColor {
  text-shadow: 1.5px 0 0 currentColor;
}

/* ------ 其他类 ------ */
.cursor-pointer {
  cursor: pointer;
}

/* 免费试用按钮 */

.learn-more {
  font-size: 16px;
  border: 1px solid #238d81;
  color: #238d81;
  border-radius: 20px;
  padding: 8px 20px;
}

/* swiper 导航列表hover 底线样式 */

#function-nav-list-2 .nav-list-item.active {
  border-bottom: 2px solid #238d81 !important;
  cursor: pointer;
}

#function-nav-list-2 .nav-list-item.active .sub-nav-list-item {
  background-color: #eefaf9;
}

#function-nav-list-2 .nav-list-item img {
  width: 45px !important;
  height: 45px !important;
}

#function-nav-list-2 .nav-list-item.active img {
  opacity: 1 !important;
}

#function-nav-list-2 .nav-list-item.active p {
  color: #238d81 !important;
}

/* swiper 导航列表 轮播器-按钮 样式 */

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-button-next:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23dddddd' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

.swiper-button-prev:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23dddddd' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

/* swiper 导航列表 轮播器-分页器 样式 */

.swiper-pagination-bullet {
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .3);
}

.swiper-pagination-bullet-active {
  width: 15px;
  border-radius: 10px;
  background-color: #238d81;
  opacity: 1;
}

/* icon图标公共样式 */

.swiper-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  color: #238d81;
  transition: all 0.3s ease;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* 新闻列表 */

#industry-news .industry-news-li:hover>div {
  border: 1px solid #a9dbd8 !important;
  box-shadow: 0 0 20px rgba(129, 212, 208, 0.6);
}

#industry-news .industry-news-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#industry-news .industry-news-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#industry-news .industry-news-img img {
  max-height: 180px;
}

/* 新闻详情页 */

.new-show .news-content p {
  line-height: 2;
  margin: 2rem 0;
}

.new-show .news-content p a {
  color: #238d81;
}

.new-show .news-content p img {
  margin: 0 auto;
}

.new-show .container .row {
  --bs-gutter-x: 0;
}

.new-show .news-content ul {
  margin: 2rem 0;
}

.new-show .news-content h1,
.new-show .news-content h2,
.new-show .news-content h3,
.new-show .news-content h4,
.new-show .news-content h5,
.new-show .news-content h6 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.new-show .news-content strong {
  font-weight: bold;
}

/* 分页器 */

#pages {
  margin: 3rem auto;
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 1.4rem;
}

#pages a,
#pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 1rem;
  border: 1px solid #eee;
  color: #666;
  transition: all 0.3s ease;
}

#pages .a1 {
  background-color: #f5f5f5;
}

#pages span {
  background-color: #337ab7;
  color: white;
  border-color: transparent;
}

#pages a:hover {
  background: #238d81;
  color: white;
  border-color: #238d81;
}

/* 
  解决哪些问题头部背景图
  1. 排课教务效率低
  2. 招生引流转化难
  ......
  共6个问题
*/

.solve-problems-bg {
  width: 100%;
  background-image: url(//cdn.beiing.net/beiing_net/newsite/bak_big_01.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #f2faf9;
}

.system-deployment-switch.active button {
  background-color: #238d81 !important;
  color: #fff !important;
  border-color: #238d81 !important;
}

.title-two-level {
  font-size: 3.5rem;
}

/* 行业分类 */

#industry-classification {
  border-top: 5px solid #58d1ca;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#industry-classification .height-7rem {
  height: 7rem;
}

#industry-classification .swiper-button-next {
  right: 0px;
  color: #4fbfb9;
}

#industry-classification .swiper-button-prev {
  left: 0px;
  color: #4fbfb9;
}

/* 更多客户案例按钮 */
.customer-case-btn {
  background: -webkit-linear-gradient(top, #73e7d4, #4fc6b3);
  width: 220px !important;
  height: 77px;
}

/* ----------------- 公共部分 - 结束 ----------------- */
/* ------------------ header - 头部导航 - 开始 ------------------ */
.header-trans-bg {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-box-shadown {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

header .logo-img {
  height: auto;
  max-width: 100%;
}

header .logo-span-text {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
}

header .font-size-16px {
  font-size: 1.6rem;
}

header .navbar-expand-lg .navbar-nav .dropdown-menu {
  border: 1px solid transparent;
  border-radius: 0;
}

header .dropdown-menu .kong-height {
  height: 13px;
  background-color: transparent;
}

header .dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

header .nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
}

header .collapse.show {
  background-color: white;
}

header .navbar-toggler {
  background-color: transparent;
  font-size: 3rem;
  border-color: transparent;
  margin-right: 1rem;
}

header .navbar-toggler:focus,
header .navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

header .navbar-toggler .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23238d81' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3e%3c/svg%3e");
}

header .cp-free-hover {
  color: #238d81;
  border-color: #238d81;
  transition: all 0.2s ease-in-out;
}

header .cp-free-hover:hover {
  color: #fff;
  background-color: #238d81;
}

header .free-trial {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 20px;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out;
}

header .free-trial:hover {
  color: #238d81;
  background-color: #fff;
}

header .free-trial.free-trial-a-scroll-down {
  color: #238d81;
  border: 1px solid #238d81;
}

header .free-trial.free-trial-a-scroll-down:hover {
  color: #fff;
  background-color: #238d81;
}

header .free-trial-mfsy {
  color: #238d81;
  border: 1px solid #238d81;
  padding: 8px 20px;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out;
}

header .free-trial-mfsy:hover {
  color: #fff;
  background-color: #238d81;
}

header .nav-link .bi-chevron-down {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
}

header .hover-bottom-0 {
  position: relative;
}

header .hover-bottom-0::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #238d81;
  transition: width 0.3s ease-in-out;
}

header .hover-bottom-0.top-position::after {
  background-color: #fff;
}

header .hover-bottom-0:hover::after {
  width: 100%;
}

header .hover-bottom-0.active::after {
  width: 100%;
}

header .hover-bottom-mfsy {
  position: relative;
}

header .hover-bottom-mfsy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #238d81;
  transition: width 0.3s ease-in-out;
}

header .hover-bottom-mfsy:hover::after {
  width: 100%;
}

/* ------------------ header - 头部导航 - 结束 ------------------ */
/* ------------------ 轮播图 - 开始 ------------------ */

#carouseSwiper {
  position: relative;
  width: 100%;
}

#carouseSwiper .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#carouseSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

#carouseSwiper .mySwiper2 {
  width: 100%;
  height: 56.25vw;
  max-height: 75rem;
  min-height: 51rem;
}

#carouseSwiper .mySwiper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

#carouseSwiper .mySwiper .swiper-wrapper {
  width: 100%;
  max-width: 1200px;
}

#carouseSwiper .mySwiper .swiper-slide {
  width: 25% !important;
  height: 100px;
  opacity: 0.8;
  cursor: pointer;
}

#carouseSwiper .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

#carouseSwiper .carouse-text-p1 {
  font-size: 4.3rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

#carouseSwiper .carouse-text-p1 span {
  color: #ffef41;
}

#carouseSwiper .carouse-text-p2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}

#carouseSwiper .carouse-text-p3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#carouseSwiper .industry-text-p3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#carouseSwiper .carousel-mid-img {
  max-width: 100%;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center;
}

#carouseSwiper .small-banner-free {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.15);
}

#carouseSwiper .small-banner-free:hover {
  border: 2px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.15);
}

/* 轮播图按钮样式  */

#carouseSwiper .swiper-button-next,
#carouseSwiper .swiper-button-prev {
  width: 6rem;
  height: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}

#carouseSwiper .swiper-button-next:after,
#carouseSwiper .swiper-button-prev:after {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#carouseSwiper .swiper-button-next:after,
#carouseSwiper .swiper-button-prev:after {
  content: "";
  width: 5.5rem;
  height: 5.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#carouseSwiper .swiper-button-next:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23f1f1f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

#carouseSwiper .swiper-button-prev:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23f1f1f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

/* 轮播图分页器 */

#carouseSwiper .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 30px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 5%);
  background: #fff;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.3);
}

#carouseSwiper .swiper-pagination-bullet-active {
  background-color: #eee;
  opacity: 1;
}

/* ------------------ 轮播图 - 结束 ------------------ */
/* -------------------------------------------- 内页 - 开始 -------------------------------------------- */
/* 内页 - 公共部分 - 开始 */
/* 核心功能中心 - 悬浮图变换 */

#core-function .image-container {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#core-function .image-container .default-img {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

#core-function .image-container:hover .default-img {
  opacity: 0;
  transform: scale(0.9);
}

#core-function .image-container .default-img,
#core-function .image-container .hover-img {
  width: 80px;
  height: 80px;
}

#core-function .image-container .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

#core-function .image-container:hover .hover-img {
  opacity: 1;
  transform: scale(1);
}

#core-function article a {
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

#core-function article a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#core-function article div:first-of-type:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#core-function article a:hover h3 {
  color: #238d81;
}

#core-function article a:hover p:first-of-type {
  color: #6d767e;
}

/* --- 内页 - zby - 特色功能 --- */
#featured-features article:hover p {
  color: #238d81 !important;
}

/* --- 内页 - zby - 适用范围 --- */
#application-range {
  background-image: url("//cdn.beiing.net/beiing_net/newsite/zby/zby_bg_01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* --- 内页 - 成功案例分类页 - */
#success-case-classify .case-classify-left {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

#success-case-classify nav {
  color: #444;
  font-size: 16px;
}

#success-case-classify .classify-title {
  font-weight: bold;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-left: 4px solid #238d81;
  padding-left: 1.2rem;
  background-color: #e8e8e8;
}

#success-case-classify .classify-sub {
  border-bottom: 1px dotted #ccc;
}

#success-case-classify .classify-sub:hover {
  color: #238d81;
  background-color: rgba(129, 212, 208, 0.1);
}

#success-case-classify .classify-sub.active {
  color: #1B6960;
  font-weight: bold;
}

/* --- 内页 - 申请试用页 - 开始 --- */

#free-use-page .left-content {
  background-image: url(//cdn.beiing.net/beiing_net/newsite/free_use_left_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  max-width: 342px;
  height: 385px;
  background-position: center center;
}

#free-use-page .right-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/* --- 申请试用 按钮样式 --- */
.btn-free-trial {
  width: 220px;
  height: 77px;
  background: linear-gradient(to bottom, #73e7d4, #4fc6b3);
}

/* --- 内页 - 申请试用页 - 结束 --- */

/* 内页 - 公共部分 - 结束 */
/* 内页 - index */
.swiper-title-bg {
  background-image: url("//cdn.beiing.net/beiing_net/newsite/switer_title_bg.png");
  background-size: 135px 100%;
  background-repeat: no-repeat;

}

.institution-bg,
.service-guarantee-bg {
  background-image: url("//cdn.beiing.net/beiing_net/newsite/index/big_02.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

#institution-selection .num-style {
  color: #4fbfb9;
  font-size: 4rem;
  font-weight: bold;
  line-height: 5rem;
  padding: 0 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
}

#service-guarantee .num-style {
  color: #4fbfb9;
  font-size: 4rem;
  font-weight: bold;
  line-height: 5rem;
  padding: 0 0.6rem;
  border-radius: 1rem;
  background-color: #fff;
}

/* 内页 - index - 适用行业 */

#applicable-industries .industry-item {
  text-decoration: none;
  height: 20.5rem;
}

#applicable-industries .industry-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(calc(100% - 38%));
  transition: transform 0.3s ease;
}

#applicable-industries .industry-overlay p {
  font-size: 14px;
}

#applicable-industries .industry-overlay .industry-a-style {
  color: #4fbfb9;
  width: max-content;
}

#applicable-industries .transition-all {
  transition: all 0.3s ease;
}

/* 内页 - index - 行业分类 */

#industry-classification .swiper-button-next:after,
#industry-classification .swiper-button-prev:after {
  font-size: 3rem;
}

#industry-classification .swiper-slide a:hover {
  color: #4fbfb9 !important;
}

#industry-classification .industry-hover-shadow {
  transition: box-shadow 0.3s ease;
}

#industry-classification .industry-hover-shadow:hover {
  box-shadow: 0 0 15px 7px rgba(0, 0, 0, 0.3) !important;
}

/* ------------------ 专题新闻 - 开始 ------------------ */

#textScrolling {
  height: 60px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

#textScrolling .swiper {
  width: 100%;
  height: 100%;
}

#textScrolling .swiper-wrapper {
  height: 100%;
  padding: 0 40px;
}

#textScrolling .swiper-slide {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  padding: 0 15px;
  /*  */
  border-bottom: 2px solid rgba(190, 190, 190, 0.25);
  box-sizing: border-box;
}

#textScrolling .swiper-slide:hover {
  color: #238d81;
}

#textScrolling .swiper-slide a {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

#textScrolling .swiper-button-next,
#textScrolling .swiper-button-prev {
  width: 6rem;
  color: #238d81;
  opacity: 1;
  height: 60px;
  margin-top: 0;
  top: 0;
  border: none;
  border-radius: 0%;
  background-color: #fff;
}

#textScrolling .swiper-button-next:after,
#textScrolling .swiper-button-prev:after {
  width: 6rem;
  height: 6rem;
  font-size: 35px;
  border: 0px solid #fff;
  border-radius: 0;
  padding: 12px 15px;
  height: 60px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

#textScrolling .swiper-button-next:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23238d81' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

#textScrolling .swiper-button-prev:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23238d81' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
  opacity: 0.85;
}

#textScrolling .swiper-button-prev,
#textScrolling .swiper-rtl .swiper-button-next {
  left: -2rem;
}

#textScrolling .swiper-button-next,
#textScrolling .swiper-rtl .swiper-button-prev {
  right: -2rem;
}

/* ------------------ 专题新闻 - 结束 ------------------ */

/* 内页 - cgal - 成功案例 */

.implementation-article {
  min-height: 28rem;
}

.implementation-line {
  color: #238d81;
  line-height: 40px;
  border-radius: 10px;
  border-bottom: 1px solid #e9e9e9;
}

.implementation-line::before {
  content: ' ';
  display: inline-block;
  width: 3px;
  height: 20px;
  margin-right: 10px;
  background: #ffc529;
  vertical-align: middle;
  margin-bottom: 3px;
}

.implementation-des {
  font-size: 1.6rem;
  text-indent: 1rem;
}

.implementation-img {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
}

/* 内页 - gywm - 关于我们 - 团队风采 */

#certify {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  overflow: hidden;
}

#certify .swiper {
  width: 100%;
  height: 100%;
}

#certify .swiper-wrapper {
  width: 100%;
  height: 100%;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

#certify .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
}

#certify .swiper-wrapper .swiper-slide-active,
#certify .swiper-wrapper .swiper-slide-duplicate-active {
  z-index: 2;
}

#certify .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#certify .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#certify .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2rem;
  height: 2rem;
  border: 1px solid #238d81;
  border-radius: 50% !important;
  background: #fff;
  opacity: 1;
}

#certify .swiper-horizontal>.swiper-pagination-bullets,
#certify .swiper-pagination-bullets.swiper-pagination-horizontal,
#certify .swiper-pagination-custom,
#certify .swiper-pagination-fraction {
  position: static;
  padding-top: 20px;
}

#certify .swiper-pagination-bullet-active {
  background-color: #238d81 !important;
}

#certify .swiper-button-next,
#certify .swiper-button-prev {
  color: #fff;
}

#certify .swiper-button-next:after,
#certify .swiper-button-prev:after {
  font-size: 28px;
  border-radius: 50%;
  padding: 8px 14px;
}

/* 价值观 */

#values-concept {
  background-image: url(//cdn.beiing.net/beiing_net/newsite/gywm/values_background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#values-concept .strength-ico {
  width: 9rem;
  height: 9rem;
}

/* 资质认证 */

#aptitude {
  width: 100%;
  height: 350px;
  position: relative;
}

#aptitude .swiper {
  width: 100%;
  height: 100%;
}

#aptitude .swiper-slide {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#aptitude .swiper-slide img {
  width: auto;
  object-fit: contain;
}

#aptitude .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* -------------------------------------------- 页脚 - footer - 开始 -------------------------------------------- */

.footer-menu-column {
  line-height: 2.5;
}

.footer-menu-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
  white-space: nowrap;
}

.footer-menu-list li {
  margin-bottom: 0.5rem;
}

.footer-menu-list a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.3rem;
  white-space: nowrap;
}

.footer-menu-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-sub-columns {
  /* display: flex; */
  gap: 8rem;
}

.footer-sub-columns .footer-menu-list {
  flex: 1;
}

/* 移动端底部悬浮组件 */

#mobile-component.visible {
  opacity: 1 !important;
  z-index: 9 !important;
}

/* PC端右侧悬浮组件 */

#draggableWidget {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1050;
}

#draggableWidget .online-consult,
#draggableWidget .wechat-consult,
#draggableWidget .tel-consult {
  cursor: pointer;
  border: 1px solid #238d81;
  border-radius: 5px;
  height: 85px;
}

#draggableWidget .image-container {
  width: 50px;
  height: 30px;
}

#draggableWidget .image-container .default-img,
#draggableWidget .image-container .hover-img {
  transition: all 0.3s ease-in-out;
}

#draggableWidget .online-consult:hover .default-img,
#draggableWidget .online-consult:hover .hover-img,
#draggableWidget .wechat-consult:hover .default-img,
#draggableWidget .wechat-consult:hover .hover-img,
#draggableWidget .tel-consult:hover .default-img,
#draggableWidget .tel-consult:hover .hover-img {
  transform: translateX(-50px);
}

#draggableWidget .wechat-consult:hover .hover-image-codes {
  display: block;
}

#draggableWidget .hover-image-codes {
  display: none;
  position: absolute;
  bottom: 31%;
  right: 120%;
  width: 98px;
  height: 98px;
  padding: 3px;
  border: 1px solid #238d81;
  border-radius: 5px;
  background-color: #fff;
}

#draggableWidget .hover-tel {
  position: absolute;
  bottom: 0px;
  right: 95%;
  width: 180px;
  height: 85px;
  transform: translateX(140%);
  background-color: #fff;
  border: 1px solid #238d81;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

#draggableWidget .tel-consult:hover .hover-tel {
  transform: translateX(0);
  border-right: 1px solid #fff;
  transition: transform 0.3s ease-in-out;
}

/* -------------------------------------------- 页脚 - footer - 结束 -------------------------------------------- */