.page {
  background-color: #fff;
  position: relative;
  width: 100%;
  min-width: 1440px;
  min-height: 100vh;
}

/* S 顶部导航 */
.nav-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 9999;
  transition: box-shadow 0.3s ease;
}

.nav-wrap.nav-sticky-shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
  width: 1440px;
  height: 60px;
  margin: 0 auto;
  align-items: center;
  padding: 0 220px 0;
}

.nav-logo {
  width: 94px;
  height: 30px;
}

.nav-logo img {
  width: 94px;
  height: 30px;
}

.nav-menu {
  margin-left: 258px;
}

.nav-item {
  height: 60px;
  overflow-wrap: break-word;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  text-align: left;
  white-space: nowrap;
  line-height: 60px;
  margin-left: 50px;
  position: relative;
  cursor: pointer;
}

.nav-item .nav-item-icon {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}

.nav-item:first-child {
  margin-left: 0;
}

.nav-item:hover {
  color: #337AF6;
  font-weight: 500;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
}

.nav-item-active {
  color: #337AF6;
  font-weight: 500;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
}

.nav-item-active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 25%;
  background-color: rgba(51, 122, 246, 1);
  border-radius: 1px;
  width: 50%;
  height: 2px;
}

.nav-item-submenu {
  position: absolute;
  top: 60px;
  left: -28px;
  width: 130px;
  height: 147px;
  background: #FFFFFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 14px 0 23px;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.nav-item:hover .nav-item-submenu,
.nav-item-submenu:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.nav-item-submenu::before {
  content: '';
  position: absolute;
  top: -12px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 12px solid #FFFFFF;
  filter: drop-shadow(1px -2px 2px rgba(0, 0, 0, 0.07));
}

.nav-item-submenu-item {
  display: flex;
  align-items: center;
}

.nav-item-submenu-item a {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 21px;
  margin-left: 10px;
}

.nav-item-submenu-item img {
  width: 16px;
  height: 16px;
  margin-top: -2px;
}

.nav-item-submenu-item-active a {
  color: #337AF6;
  font-weight: 600;
}

/* E 顶部导航 */

/* S banner */
.banner-wrap {
  width: 100%;
}

.banner-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* E banner */

/* S 整体介绍 */
.ztjs-wrap {
  width: 100%;
  background: linear-gradient(#fff 0%, #fff 56%, RGBA(254, 255, 255, 1) 57%, rgba(51, 122, 246, 0.25) 100%);
}

.ztjs-container {
  padding: 46px 0 24px;
  width: 1440px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ztjs-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ztjs-content-1 {
  display: flex;
  margin: 0 220px;
}

.ztjs-content-1-lt img {
  width: 405px;
  height: 279px;
  display: block;
}

.ztjs-content-1-rt {
  flex: 1;
  margin-left: 30px;
}

.ztjs-content-1-rt-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 28px;
  color: #337AF6;
  line-height: 37px;
}

.ztjs-content-1-rt-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 33px;
  text-indent: 2em;
  margin-bottom: 22px;
  margin-top: 10px;
}

.ztjs-content-1-rt-desc:last-child {
  margin-bottom: 0;
  margin-top: 0;
}

.ztjs-content-1-rt-desc span {
  color: rgba(51, 122, 246, 1);
}

.ztjs-content-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 86px 220px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ztjs-content-2.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ztjs-content-2-item {
  display: flex;
  align-items: center;
}

.ztjs-content-2-item-img {
  width: 52px;
  height: 52px;
  display: block;
}

.ztjs-content-2-item-rt {
  margin-left: 13px;
}

.ztjs-content-2-item-rt-num {
  font-family: Impact, system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 30px;
  color: #333333;
  line-height: 36px;
}

.ztjs-content-2-item-rt-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #8E93A3;
  line-height: 21px;
  margin-top: 2px;
}

.ztjs-content-3 {
  display: flex;
  align-items: center;
  margin: 68px 265px 0 248px;
}

.ztjs-content-3-lt {
  width: 472.31px;
  height: 419px;
  position: relative;
}

.ztjs-content-3-lt-label {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #FFFFFF;
  width: 60px;
  height: 19px;
  background: #CE4E57;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 148px;
  right: 135px;
}

.ztjs-content-3-lt-img {
  width: 472.31px;
  height: 419px;
  display: block;
}

.ztjs-content-3-rt {
  display: flex;
  margin-left: 126px;
}

.ztjs-content-3-rt-2 {
  margin-left: 29px;
}

.ztjs-content-3-rt-item {
  margin-top: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ztjs-content-3-rt-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(1) {
  transition-delay: 0s;
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(2) {
  transition-delay: 0.05s;
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(3) {
  transition-delay: 0.1s;
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(4) {
  transition-delay: 0.15s;
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(5) {
  transition-delay: 0.2s;
}

.ztjs-content-3-rt-1 .ztjs-content-3-rt-item:nth-child(6) {
  transition-delay: 0.25s;
}

.ztjs-content-3-rt-2 .ztjs-content-3-rt-item:nth-child(1) {
  transition-delay: 0.3s;
}

.ztjs-content-3-rt-2 .ztjs-content-3-rt-item:nth-child(2) {
  transition-delay: 0.35s;
}

.ztjs-content-3-rt-2 .ztjs-content-3-rt-item:nth-child(3) {
  transition-delay: 0.4s;
}

.ztjs-content-3-rt-2 .ztjs-content-3-rt-item:nth-child(4) {
  transition-delay: 0.45s;
}

.ztjs-content-3-rt-2 .ztjs-content-3-rt-item:nth-child(5) {
  transition-delay: 0.5s;
}

.ztjs-content-3-rt-item:first-child {
  margin-top: 0;
}

.ztjs-content-3-rt-item-img {
  width: 150px;
  height: 31px;
  display: block;
}

/* E 整体介绍 */

/* S 企业文化 */
.qywh-wrap {
  width: 100%;
  background-color: #fff;
}

.qywh-container {
  padding: 48px 0 47px;
  width: 1440px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.qywh-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.qywh-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 30px;
  color: #333;
  line-height: 45px;
  text-align: center;
}

.qywh-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 37px 220px 0;
}

.qywh-item {
  position: relative;
  height: 115px;
  width: 321px;
  padding: 15px 0 0 20px;
}

.qywh-item.w-338 {
  width: 338px;
}

.qywh-item-bg {
  width: 321px;
  height: 115px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.qywh-item-bg.w-338 {
  width: 338px;
}

.qywh-item-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 25px;
  color: #337AF6;
  line-height: 34px;
  position: relative;
}

.qywh-item-desc {
  margin-top: 13px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 17px;
  color: #333333;
  line-height: 22px;
  position: relative;
}

.qywh-content-1 {
  position: relative;
  height: 115px;
  padding: 22px 0 0 20px;
  margin: 15px 220px 0;
}

.qywh-content-1-bg {
  width: 996px;
  height: 115px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.qywh-content-1-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 25px;
  color: #337AF6;
  line-height: 34px;
  position: relative;
}

.qywh-content-1-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 17px;
  color: #333333;
  line-height: 22px;
  position: relative;
  margin-top: 13px;
}

#qywh-swiper {
  margin: 36px auto 0;
  width: 996px;
}

#qywh-swiper .qywh-swiper-container {
  width: 996px;
  height: 100%;
  overflow: hidden;
}

#qywh-swiper .swiper-slide {
  box-sizing: border-box;
  width: 222px;
  height: 148px;
}

#qywh-swiper .swiper-slide img {
  width: 222px;
  height: 148px;
}

#qywh-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* E 企业文化 */

/* S 四大数字化平台 */
.szpt-wrap {
  width: 100%;
  background-color: #FFFAF7;
}

.szpt-container {
  padding: 45px 0 68px;
  width: 1440px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.szpt-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.szpt-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 30px;
  color: #333;
  line-height: 45px;
  text-align: center;
}

.szpt-list {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: 37px;
}

.szpt-list:last-child {
  margin-bottom: 0;
  margin-top: 0;
}

.szpt-item {
  width: 491px;
  height: 222px;
  background-color: lightblue;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  margin-left: 18px;
}

.szpt-item:first-child {
  margin-left: 0;
}

.szpt-item-on {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.szpt-item-lt {
  padding: 55px 0 0 16px;
}

.szpt-item-lt h3 {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
}

.szpt-item-lt h4 {
  margin-top: 3px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #337AF6;
  line-height: 19px;
}

.szpt-item-lt p {
  margin-top: 9px;
  width: 204px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #767676;
  line-height: 19px;
  text-align: justify;
  font-style: normal;
}

.szpt-item-1 {
  background-color: #FDF2E5;
}

.szpt-item-1 img {
  width: 247px;
  height: 190px;
  display: block;
  margin-top: 19px;
  margin-left: 6px;
}

.szpt-item-2 {
  background-color: #FEF2F2;
}

.szpt-item-2 img {
  width: 250px;
  height: 164px;
  display: block;
  margin-top: 27px;
  margin-left: 9px;
}

.szpt-item-rt {
  position: relative;
}

.szpt-item-2 .szpt-item-rt p {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 10px;
  color: #333333;
  line-height: 9px;
  position: absolute;
  bottom: 37px;
  left: -2px;
  transform: scale(0.7);
}

.szpt-item-3 {
  background-color: #DAE7FF;
}

.szpt-item-3 img {
  width: 206px;
  height: 135px;
  display: block;
  margin-top: 39px;
  margin-left: 35px;
}

.szpt-item-3 .szpt-item-lt p {
  width: 197px;
}

.szpt-item-3 .szpt-item-rt-desc-1,
.szpt-item-3 .szpt-item-rt-desc-2,
.szpt-item-3 .szpt-item-rt-desc-3 {
  background: rgba(255, 255, 255, 0.71);
  box-shadow: 0px 2px 4px 0px #DAE7FF;
  border-radius: 4px;
  padding: 5px 0 3px 5px;
  position: absolute;
}

.szpt-item-3 .szpt-item-rt-desc-1 p,
.szpt-item-3 .szpt-item-rt-desc-2 p,
.szpt-item-3 .szpt-item-rt-desc-3 p {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 8px;
  color: #333333;
  line-height: 10px;
}

.szpt-item-3 .szpt-item-rt-desc-1 {
  width: 85px;
  top: 45px;
  left: 6px;
}

.szpt-item-3 .szpt-item-rt-desc-2 {
  width: 86px;
  top: 60px;
  left: 168px;
}

.szpt-item-3 .szpt-item-rt-desc-3 {
  width: 103px;
  top: 132px;
  left: 15px;
}

.szpt-item-4 {
  background-color: #FAF0FF;
}

.szpt-item-4 img {
  width: 238.67px;
  height: 154px;
  display: block;
  margin-top: 33px;
  margin-left: 20px;
}

/* E 四大数字化平台 */

/* S 企业资质 */
.qyzz-wrap {
  width: 100%;
  background-color: #fff;
}

.qyzz-container {
  padding: 50px 0 55px;
  width: 1440px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.qyzz-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.qyzz-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 30px;
  color: #333;
  line-height: 45px;
  text-align: center;
}

.qyzz-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.qyzz-top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
}

.qyzz-top-item:first-child {
  margin-left: 0;
}

.qyzz-top-item img {
  width: 185px;
  height: 261px;
  display: block;
}

.qyzz-top-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 25px;
  margin-top: 13px;
}

.qyzz-btm {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.qyzz-btm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 62px;
}

.qyzz-btm-item:first-child {
  margin-left: 0;
}

.qyzz-btm-item img {
  width: 187px;
  height: 129px;
  display: block;
}

.qyzz-btm-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 25px;
  margin-top: 8px;
}

#qyzz-swiper {
  width: 1137px;
  margin: 30px auto 0;
}

#qyzz-swiper .qyzz-swiper-container {
  width: 1137px;
  height: 100%;
  overflow: hidden;
}

#qyzz-swiper .swiper-slide {
  box-sizing: border-box;
  width: 180px;
  height: 311px;
}

#qyzz-swiper .swiper-slide p {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 25px;
  text-align: center;
}

#qyzz-swiper .swiper-slide img {
  margin-bottom: 7px;
  width: 180px;
  height: 259px;
  display: block;
}

#qyzz-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* E 企业资质 */

/* S 公司地址 */
.gsdz-wrap {
  width: 100%;
  background-color: #F3F4F7;
}

.gsdz-container {
  padding: 34px 0 66px;
  width: 1440px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gsdz-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gsdz-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 30px;
  color: #333;
  line-height: 45px;
  text-align: center;
}

.gsdz-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.gsdz-row {
  display: flex;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gsdz-row.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gsdz-item-top {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.gsdz-item {
  width: 250px;
  height: 120px;
  padding: 17px 19px;
  border-bottom: 2px dotted #979797;
  border-left: 2px dotted #979797;
  margin-left: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gsdz-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gsdz-item:first-child {
  margin-left: 0;
}

.gsdz-item:first-child {
  border-left: none;
}

.gsdz-row:last-child .gsdz-item {
  border-bottom: none;
}

.gsdz-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 18px;
  color: #333333;
  margin-left: 2px;
}

.gsdz-item img {
  width: 24px;
  height: 24px;
  display: block;
}

.gsdz-item a {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #333333;
  line-height: 19px;
  width: 210px;
  margin-top: 10px;
}

.gsdz-item-coming {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsdz-item-coming img {
  width: 29px;
  height: 29px;
  display: block;
}

.gsdz-item-coming span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 18px;
  color: #333333;
  font-weight: 400;
  margin-left: 8px;
}

/* E 公司地址 */

/* S 底部区域 */
.footer-wrap {
  width: 100%;
  border-top: 1px solid #DCDFE6;
  background-color: #fff;
}

.footer-container {
  width: 1440px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-list {
  display: flex;
}

.footer-list-item {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 12px;
  color: #337AF6;
  line-height: 17px;
  text-align: left;
  cursor: pointer;
}

.footer-list-item:hover {
  color: #1969f3;
}

.footer-list-divider {
  width: 1px;
  height: 34px;
  background-color: #c1d7ff;
  margin: 0 12px;
}

.footer-logo {
  margin-left: 40px;
}

.footer-logo-img {
  width: 80px;
  height: 24px;
  display: block;
}

/* E 底部区域 */

/* S 关注我们 */
.gzwm-wrap {
  display: flex;
  width: 680px;
  height: 275px;
  background: #FFFFFF;
  box-shadow: 0px 2px 8px 0px rgba(0, 30, 83, 0.2);
  border-radius: 14px;
  padding: 29px 29px 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.nav-item:hover .gzwm-wrap,
.gzwm-wrap:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.gzwm-wrap.t-60 {
  top: 60px;
}

.gzwm-wrap.r--120 {
  right: -120px;
}

.gzwm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 38px;
}

.gzwm-item:first-child {
  margin-left: 0;
}

.gzwm-item img {
  width: 182px;
  height: 182px;
  display: block;
}

.gzwm-item div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 21px;
  margin-top: 13px;
}

/* E 关注我们 */


/* S 悬浮菜单 */
.xfcd-wrap {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999;
  transform: scale(0.8);
}

.xfcd-wrap-top {
  width: 92px;
  /* height: 299px; */
  background: #FFFFFF;
  border-radius: 46px 46px 46px 46px;
  border: 1px solid #DCDFE6;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.xfcd-wrap-btm {
  margin-top: 12px;
  width: 92px;
  height: 92px;
  background: #FFFFFF;
  border-radius: 0px 0px 46px 46px;
  border: 1px solid #DCDFE6;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.xfcd-wrap-isShowTOP .xfcd-wrap-top {
  border-radius: 46px 46px 0px 0px;
}

.xfcd-wrap-isShowTOP .xfcd-wrap-top-item:last-child {
  padding-bottom: 15px;
}

.xfcd-wrap-isShowTOP .xfcd-wrap-btm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.xfcd-wrap-top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.xfcd-wrap-top-item:first-child {
  padding-top: 30px;
}

.xfcd-wrap-top-item:last-child {
  padding-bottom: 30px;
  transition: padding-bottom 0.3s ease;
}

.xfcd-wrap-top-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  line-height: 21px;
  margin-top: 7px;
}

.xfcd-wrap-btm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-top: 14px;
  padding-bottom: 19px;
}

.xfcd-wrap-btm-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  line-height: 21px;
  margin-top: 2px;
}

.xfcd-wrap-top-item img {
  width: 36px;
  height: 36px;
}

.xfcd-wrap-btm-item img {
  width: 36px;
  height: 36px;
}

.xfcd-wrap-top-item-img-on {
  display: none;
}

.xfcd-wrap-top-item:hover .xfcd-wrap-top-item-img {
  display: none;
}

.xfcd-wrap-top-item:hover .xfcd-wrap-top-item-img-on {
  display: block;
}

.xfcd-wrap-btm-item-img-on {
  display: none;
}

.xfcd-wrap-btm-item:hover .xfcd-wrap-btm-item-img {
  display: none;
}

.xfcd-wrap-btm-item:hover .xfcd-wrap-btm-item-img-on {
  display: block;
}

.xfcd-wrap-top-item:hover,
.xfcd-wrap-btm-item:hover {
  background-color: #F0F6FF;
}

.xfcd-wrap-top-item:hover span,
.xfcd-wrap-btm-item:hover span {
  color: #3F7AFB;
}

.xfcd-wrap-top-item.hover,
.xfcd-wrap-top-item.hover {
  background-color: #F0F6FF;
}

.xfcd-wrap-top-item.hover span,
.xfcd-wrap-top-item.hover span {
  color: #3F7AFB;
}

.xfcd-wrap-top-item.hover .xfcd-wrap-top-item-img {
  display: none;
}

.xfcd-wrap-top-item.hover .xfcd-wrap-top-item-img-on {
  display: block;
}

.xfcd-wrap .gzwm-wrap.top-22 {
  top: 22px;
}

.xfcd-wrap .gzwm-wrap.r-112 {
  right: 112px;
}

/* 客服热线 */
.kfrx-wrap {
  width: 132px;
  height: 74px;
  background: #FFFFFF;
  box-shadow: 0px 2px 8px 0px rgba(0, 30, 83, 0.2);
  border-radius: 14px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  position: absolute;
  top: 22px;
  right: 112px;
  transform: scale(1.2);
}

.kfrx-wrap-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #333333;
  line-height: 19px;
  margin-top: 15px;
  text-align: center;
}

.kfrx-wrap-tel {
  margin-top: 6px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #337AF6;
  line-height: 21px;
  text-align: center;
}

/* E 悬浮菜单 */