/* ----------------- 公共部分 - 开始 ----------------- */
/* 盒模型统一 */

*,
*::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;
}

/* ------------------------------------ 公共样式---------------------------------------- */

/* --- swiper样式 --- */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

/* 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;
}

/* --- swiper导航菜单 + 导航内容 --- */
#software-function-application .thumb-swiper-nav-menu {
  height: 13rem;
}

/* swiper导航菜单底线样式 */
#software-function-application .thumb-swiper-nav-menu .swiper-slide-thumb-active .nav-list-item {
  border-bottom: 2px solid #238d81 !important;
  cursor: pointer;
}

/* swiper导航菜单背景样式 */
#software-function-application .thumb-swiper-nav-menu .swiper-slide-thumb-active .nav-list-item .sub-nav-list-item {
  background-color: #eefaf9;
}

/* swiper导航菜单图标样式 */
#software-function-application .nav-list-item img {
  width: 45px !important;
  height: 45px !important;
}

#software-function-application .thumb-swiper-nav-menu .swiper-slide-thumb-active .nav-list-item img {
  opacity: 1 !important;
}

/* 选中swiper导航菜单时的文字样式 */
#software-function-application .thumb-swiper-nav-menu .swiper-slide-thumb-active .nav-list-item span {
  color: #238d81 !important;
}

/* swiper导航内容中的标题背景图样式 */
.swiper-l1-title-bg {
  background-image: url('//esa-cdn.beiing.net/pkysoft_com/newsite/swiper_title_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1.6;
}

/* swiper中钻石图标样式 */

.swiper-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  color: #238d81;
  transition: all 0.3s ease;
  vertical-align: middle;
  margin-bottom: 3px;
}


/* 分割线样式 */
.divider {
  height: 1px;
  background-color: #dee2e6;
  width: 100%;
}

/* 文字下划线样式 */
.title-with-line {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: fit-content;
}

.title-with-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 5px;
  background-color: #5bd4be;
  z-index: -1;
}

/* 免费试用按钮 样式 */
.learn_more {
  display: inline-block;
  font-size: 16px;
  border: 1px solid #238d81;
  color: #238d81;
  border-radius: 20px;
  padding: 8px 20px;
}

.btn-free-application {
  display: inline-block;
  padding: 1.2rem 6rem;
  border: 2px solid #238d81;
  border-radius: 30px;
  background-color: #238d81;
  color: white;
  text-decoration: none;
}

/* 服务保障样式 */

#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;
}

/* 新闻列表 */

#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(//esa-cdn.beiing.net/pkysoft_com/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;
}

/* ------------------------------------ 自定义：开始---------------------------------------- */
/* ------ 宽高类 ------ */
.max-w-80px {
  max-width: 80px;
}

/* ------ 字体类 ------ */
.fs-14px {
  font-size: 14px;
}

.fs-16px {
  font-size: 16px;
}

.fs-18px {
  font-size: 18px;
}

.fs-26px {
  font-size: 26px;
}

/* ------ 颜色类 ------ */
/* 字体颜色 */

.text-099282 {
  color: #099282;
}

.text-17766b {
  color: #17766b;
}

.text-238d81 {
  color: #238d81;
}

.text-4d4d4d {
  color: #4d4d4d;
}

.text-464646 {
  color: #464646;
}

.text-a8a8a8 {
  color: #a8a8a8;
}

.text-8c8c8c {
  color: #8c8c8c;
}

.text-999999 {
  color: #999999;
}

/* 背景颜色 */
.bg-00ccb3 {
  background-color: #00ccb3;
}

.bg-238d81 {
  background-color: #238d81;
}

.bg-31d4c1 {
  background-color: #31d4c1;
}

.bg-46c2ba {
  background-color: #46c2ba;
}

.bg-5ccffe {
  background-color: #5ccffe;
}

.bg-53c4be {
  background-color: #53c4be;
}

.bg-5b5b5b {
  background-color: #5b5b5b;
}

.bg-af70ff {
  background-color: #af70ff;
}

.bg-ffbf44 {
  background-color: #ffbf44;
}

.bg-f5f5f5 {
  background-color: #f5f5f5;
}

.bg-f7f7f7 {
  background-color: #F7F7F7;
}

.bg-fed42a {
  background-color: #fed42a;
}

.bg-000000-dot5 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-radial-gradient-l71f1e2-t00bfa8 {
  background: radial-gradient(at left top, #71f1e2, #00bfa8);
}

/* 边框颜色 */
.border-color-238d81-important {
  border-color: #238d81 !important;
}

.border-color-ffffff-important {
  border-color: #ffffff !important;
}

/* ------ 阴影类 ------ */
.shadow-1dot5-current {
  text-shadow: 1.5px 0 0 currentColor;
}


/* ------ 间距类 ------ */
.pt-75px {
  padding-top: 75px;
}

.text-indent-40px {
  text-indent: 40px;
}

/* ------ 其他类 ------ */
.cursor-pointer {
  cursor: pointer;
}

/* ------------------------------------ 自定义：结束---------------------------------------- */

/* -------------------------------------- 头部样式 -------------------------------------- */
/* 外层全宽背景容器 */
header.navbar-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 滚动时的背景色 */
header.navbar-background.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 导航栏基础样式 */
header .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

/* logo容器定位 */
header .navbar-brand {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 57px;
}

/* logo通用样式 */
header .navbar-brand .logo {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

/* 默认logo */
header .navbar-brand .logo-default {
  opacity: 1;
  visibility: visible;
}

/* 滚动后的logo */
header .navbar-brand .logo-scrolled {
  opacity: 0;
  visibility: hidden;
}

/* 滚动状态下的logo切换 */
header.navbar-background.scrolled .logo-default {
  opacity: 0;
  visibility: hidden;
}

header.navbar-background.scrolled .logo-scrolled {
  opacity: 1;
  visibility: visible;
}

/* 默认状态下的导航链接颜色 */
header .navbar .nav-link {
  font-size: 1.6rem !important;
  transition: color 0.3s ease;
  margin: 0 0.8rem;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  background-color: transparent;
}

header .navbar .nav-link:hover:after {
  width: 100%;
}

header .navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}

header.navbar-background.scrolled .nav-link::after {
  background-color: #238d81;
}

/* 头部导航链接激活状态样式 */
header .navbar .nav-link.active::after,
header.navbar-background.scrolled .nav-link.active::after {
  width: 100%;
}

header .navbar .nav-link.active::after {
  background-color: white;
}

header.navbar-background.scrolled .nav-link.active::after {
  background-color: #238d81;
}


/* 移动端导航栏图标样式 */
header .navbar-toggler {
  background-color: transparent;
  font-size: 2.8rem;
  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");
}

/* logo文字样式 */
header .logo-text {
  color: white;
  transition: color 0.3s ease;
  border-color: white !important;
}

header .logo-span-text {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
}

/* 免费试用按钮样式 */
header .free-trial {
  padding: 0.7rem 2rem;
  border: 1px solid #ffffff;
  margin-right: 0.6rem;
  transition: all 0.3s ease;
}

header.navbar-background.scrolled .free-trial {
  border: 1px solid #238d81;
}

header .free-trial a {
  font-size: 16px;
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

header .free-trial:hover {
  background-color: white;
}

header .free-trial:hover a {
  color: #238d81;
}

header.navbar-background.scrolled .free-trial a {
  color: #238d81;
}

header.navbar-background.scrolled .free-trial:hover {
  background-color: #238d81;
}

header.navbar-background.scrolled .free-trial:hover a {
  color: white;
}

/* 免费试用按钮样式 - 试用页 */
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;
}

/* -------------------------------------- 轮播图样式 -------------------------------------- */
/* 轮播图容器 */
#carouseSwiper {
  position: relative;
  height: 50rem;
}

#carouseSwiper .carouse-text {
  padding-top: 20px;
}

#carouseSwiper .carouse-p1 {
  font-size: 4rem;
  font-weight: 600;
  color: white;
}

#carouseSwiper .carouse-p2 {
  font-size: 2.4rem;
  color: white;
}

/* 轮播图免费按钮 */
#carouseSwiper .carouse-free-btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid white;
  border-radius: 5px;
  padding: 10px 13px;
  color: white;
  font-size: 1.6rem;
  background-color: rgba(0, 0, 0, 0.25);
}

/* 轮播图按钮样式  */
#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;
}

/* -------------------------------------- index 样式 -------------------------------------- */
/* 能解决哪些问题 */
#solve_what_problems .border-bottom {
  border-bottom: 1px solid #b9ddd9 !important;
}

/* 更多应用 */
#more_app li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#more_app li a img {
  width: 80px;
  width: 80px;
}

/* 内页 - 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(//esa-cdn.beiing.net/pkysoft_com/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%;
}


/* --- 内页 - 申请试用页 - 开始 --- */

#free-use-page .left-content {
  background-image: url(//esa-cdn.beiing.net/pkysoft_com/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;
}


/* -------------------------------------- 组件样式 -------------------------------------- */
/* --- 右侧边栏样式 --- */

#icon-slide-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1030;
}

#icon-slide-wrapper .icon-slide-container {
  width: 60px;
  text-align: center;
  position: relative;
}

#icon-slide-wrapper .icon-slide-kuang {
  width: 60px;
  height: 70px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: 1px solid #31d4c1;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
}

#icon-slide-wrapper .icon-track {
  display: flex;
  width: 120px;
  height: 30px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

#icon-slide-wrapper .icon-item {
  width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
}

#icon-slide-wrapper .icon-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#icon-slide-wrapper .icon-slide-container:hover .icon-track,
#icon-slide-wrapper .icon-slide-container:focus-within .icon-track {
  transform: translateX(-60px);
}

/* 微信图标 */
#icon-slide-wrapper .wechat-qrcode-popup {
  position: absolute;
  top: 50%;
  right: 65px;
  /* 紧挨着图标左侧 */
  transform: translateY(-50%);
  background: white;
  border: 1px solid #31d4c1;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 110px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


#icon-slide-wrapper .icon-slide-container:hover .wechat-qrcode-popup,
#icon-slide-wrapper .icon-slide-container:focus-within .wechat-qrcode-popup {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

#icon-slide-wrapper .wechat-qrcode-popup img {
  display: block;
}

/* 电话图标 */
#icon-slide-wrapper #tel-slide-container .tel-slide {
  position: absolute;
  bottom: 0;
  right: -160px;
  transition: all 0.3s ease;
  width: 160px;
  height: 70px;
  border: 1px solid #31d4c1;
  background-color: #fff;
  text-align: left;
  padding: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
}

#icon-slide-wrapper #tel-slide-container:hover .icon-slide-kuang,
#icon-slide-wrapper #tel-slide-container:focus-within .icon-slide-kuang {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-color: transparent;
}

#icon-slide-wrapper #tel-slide-container:hover .tel-slide,
#icon-slide-wrapper #tel-slide-container:focus-within .tel-slide {
  right: 58px;
  border-right-color: transparent;
}

/* --- 底部图标栏 --- */
#icon-bottom-wrapper {
  height: 5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#icon-bottom-wrapper.visible {
  opacity: 1;
  visibility: visible;
}