.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 概览数据 */
.glsj-wrap {
  width: 100%;
  background: #fff;
}

.glsj-container {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.glsj-list {
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 24px 32px 27px;
  width: 1050px;
  border-radius: 10px;
}

.glsj-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glsj-item-num {
  font-family: Helvetica;
  font-weight: 600;
  font-size: 30px;
  color: #337AF6;
  line-height: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glsj-container.animate-in .glsj-item-num {
  opacity: 1;
}

.glsj-item-desc {
  margin-top: 4px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #666666;
  line-height: 21px;
}

/* E 概览数据 */

/* S 福利一站式解决方案 */
.jjfa-wrap {
  width: 100%;
  background-color: #fff;
}

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

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

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

.jjfa-tabs {
  border-bottom: 1px solid #DCDFE6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
  padding: 48px 25px 0;
}

.jjfa-tabs-divider {
  width: 1px;
  height: 40px;
  background-color: #DCDFE6;
  position: relative;
  top: -10px;
}

.jjfa-tabs-item {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 1px;
  padding-bottom: 22px;
  cursor: pointer;
}

.jjfa-tabs-item img {
  width: 40px;
  height: 40px;
  display: block;
}

.jjfa-tabs-item .jjfa-tabs-icon-normal {
  display: block !important;
}

.jjfa-tabs-item .jjfa-tabs-icon-active {
  display: none !important;
}

.jjfa-tabs-item-active .jjfa-tabs-icon-normal {
  display: none !important;
}

.jjfa-tabs-item-active .jjfa-tabs-icon-active {
  display: block !important;
}

.jjfa-tabs-label {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 20px;
  line-height: 26px;
  text-align: right;
  font-style: normal;
  margin-left: 10px;
}

.jjfa-tabs-item-active#jjfa-tabs-gyfl .jjfa-tabs-label {
  color: #337AF6;
  transition: color 0.3s ease;
}

.jjfa-tabs-item-active#jjfa-tabs-gyfl {
  border-bottom: 1px solid #337AF6;
  padding-bottom: 21px;
}

.jjfa-tabs-item-active#jjfa-tabs-srfl .jjfa-tabs-label {
  color: #FF6602;
  transition: color 0.3s ease;
}

.jjfa-tabs-item-active#jjfa-tabs-srfl {
  border-bottom: 1px solid #FF6602;
  padding-bottom: 21px;
}

.jjfa-tabs-item-active#jjfa-tabs-njww .jjfa-tabs-label {
  color: #CC0000;
  transition: color 0.3s ease;
}

.jjfa-tabs-item-active#jjfa-tabs-njww {
  border-bottom: 1px solid #CC0000;
  padding-bottom: 21px;
}

.jjfa-tabs-item-active#jjfa-tabs-ghhd .jjfa-tabs-label {
  color: #337AF6;
  transition: color 0.3s ease;
}

.jjfa-tabs-item-active#jjfa-tabs-ghhd {
  border-bottom: 1px solid #337AF6;
  padding-bottom: 21px;
}

.jjfa-tabs-icon-normal {
  display: block;
}

.jjfa-tabs-icon-active {
  display: none;
}

.jjfa-tabs-item-active .jjfa-tabs-icon-normal {
  display: none;
}

.jjfa-tabs-item-active .jjfa-tabs-icon-active {
  display: block;
}

.jjfa-contents-item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
}

.jjfa-contents-item-active {
  visibility: visible;
  opacity: 1;
  position: relative;
}

.jjfa-gyfl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jjfa-gyfl-content {
  display: flex;
}

.jjfa-gyfl-content-lt {
  margin-top: 50px;
}

.jjfa-gyfl-content-lt-title-1 {
  display: flex;
  align-items: center;
}

.jjfa-gyfl-content-lt-title-1 img {
  width: 37px;
  height: 36px;
  display: block;
}

.jjfa-gyfl-content-lt-title-1 span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 20px;
  color: #337AF6;
  line-height: 26px;
  margin-left: 3px;
}

.jjfa-gyfl-content-lt-desc-1 {
  display: flex;
  margin-top: 20px;
}

.jjfa-gyfl-content-lt-desc-1-item {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.jjfa-gyfl-content-lt-desc-1-item:first-child {
  margin-left: 0;
}

.jjfa-gyfl-content-lt-desc-1-item img {
  width: 9px;
  height: 9px;
  display: block;
}

.jjfa-gyfl-content-lt-desc-1-item div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  margin-left: 6px;
}

.jjfa-gyfl-content-lt-desc-1-item span {
  color: #337AF6;
}

.jjfa-gyfl-content-lt-title-2 {
  display: flex;
  align-items: center;
  margin-top: 46px;
}

.jjfa-gyfl-content-lt-title-2 img {
  width: 30px;
  height: 30px;
  display: block;
}

.jjfa-gyfl-content-lt-title-2 span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 20px;
  color: #337AF6;
  line-height: 26px;
  margin-left: 8px;
}

.jjfa-gyfl-content-lt-desc-2 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.jjfa-gyfl-content-lt-desc-2 img {
  width: 9px;
  height: 9px;
  display: block;
}

.jjfa-gyfl-content-lt-desc-2 div {
  margin-left: 5px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}

.jjfa-gyfl-content-lt-desc-2 span {
  color: #337AF6;
}

.jjfa-gyfl-content-lt-desc-3 {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.jjfa-gyfl-content-lt-desc-3-label {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  margin-left: 5px;
}

.jjfa-gyfl-content-lt-desc-3 img {
  width: 9px;
  height: 9px;
  display: block;
}

.jjfa-gyfl-content-lt-desc-3-list {
  display: flex;
  align-items: center;
}

.jjfa-gyfl-content-lt-desc-3-list-item {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 17px;
  padding: 3px 6px;
  border: 1px solid rgba(51, 122, 246, 0.3);
  text-align: center;
  margin-left: 10px;
}

.jjfa-gyfl-content-lt-desc-3-list-item-dot {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 12px;
  color: #337AF6;
  line-height: 17px;
  padding: 0 6px 6px;
}

.jjfa-gyfl-content-rt {
  width: 550px;
  height: 531px;
  position: relative;
  margin-left: -72px;
  margin-top: 30px;
}

.jjfa-gyfl-content-rt-img {
  width: 550px;
  height: 531px;
  display: block;
}

.jjfa-gyfl-content-rt-nums {
  position: absolute;
  top: 172px;
  left: 38px;
}

.jjfa-gyfl-content-rt-nums-item {
  display: flex;
  align-items: flex-end;
  margin-top: 10px;
}

.jjfa-gyfl-content-rt-nums-item.pl-8 {
  padding-left: 8px;
}

.jjfa-gyfl-content-rt-nums-item.pl-14 {
  padding-left: 14px;
}

.jjfa-gyfl-content-rt-nums-item:first-child {
  margin-top: 0;
}

.jjfa-gyfl-content-rt-nums-item-num {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 20px;
  color: #337AF6;
  line-height: 26px;
}

.jjfa-gyfl-content-rt-nums-item-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #666666;
  line-height: 19px;
  margin-left: 5px;
  padding-bottom: 1px;
}

.jjfa-gyfl-btn {
  margin-top: 40px;
  width: 200px;
  height: 40px;
  background: #337AF6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jjfa-gyfl-btn div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

.jjfa-gyfl-btn img {
  width: 53px;
  height: 12px;
  display: block;
  margin-left: 9px;
}

#jjfa-gyfl-swiper-1 {
  margin-top: 30px;
  width: 389px;
  position: relative;
}

#jjfa-gyfl-swiper-1 .jjfa-gyfl-swiper-1-shadow1 {
  width: 65px;
  height: 98px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

#jjfa-gyfl-swiper-1 .jjfa-gyfl-swiper-1-shadow2 {
  width: 65px;
  height: 98px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

#jjfa-gyfl-swiper-1 .jjfa-gyfl-swiper-1-container {
  width: 389px;
  height: 100%;
  overflow: hidden;
}

#jjfa-gyfl-swiper-1 .swiper-slide {
  box-sizing: border-box;
  width: 89px;
  height: 98px;
}

#jjfa-gyfl-swiper-1 .swiper-slide img {
  width: 89px;
  height: 42px;
  display: block;
  margin-top: 14px;
}

#jjfa-gyfl-swiper-1 .swiper-slide img:first-child {
  margin-top: 0;
}

#jjfa-gyfl-swiper-1 .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;
}

#jjfa-gyfl-swiper-2 {
  margin-top: 30px;
  width: 442px;
  position: relative;
}

#jjfa-gyfl-swiper-2 .jjfa-gyfl-swiper-2-container {
  width: 442px;
  height: 100%;
  overflow: hidden;
}

#jjfa-gyfl-swiper-2 .swiper-slide {
  box-sizing: border-box;
  width: 105px;
  height: 126px;
}

#jjfa-gyfl-swiper-2 .swiper-slide img {
  width: 105px;
  height: 34px;
  display: block;
  margin-top: 10px;
}

#jjfa-gyfl-swiper-2 .swiper-slide img:first-child {
  margin-top: 0;
}

#jjfa-gyfl-swiper-2 .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;
}

#jjfa-gyfl-swiper-2 .jjfa-gyfl-swiper-2-shadow1 {
  width: 60px;
  height: 126px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

#jjfa-gyfl-swiper-2 .jjfa-gyfl-swiper-2-shadow2 {
  width: 60px;
  height: 126px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}


.jjfa-srfl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jjfa-srfl-content {
  display: flex;
}

.jjfa-srfl-content-lt {
  margin-top: 60px;
}

.jjfa-srfl-content-lt-title-1 {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 20px;
  color: #FF6602;
  line-height: 26px;
  margin-left: 20px;
}

.jjfa-srfl-content-lt-title-1 span {
  font-weight: 500;
}

.jjfa-srfl-content-lt-desc {
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-left: 20px;
}

.jjfa-srfl-content-lt-desc-item {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.jjfa-srfl-content-lt-desc-item:first-child {
  margin-left: 0;
}

.jjfa-srfl-content-lt-title-2 {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 20px;
  color: #FF6602;
  line-height: 26px;
  margin-top: 40px;
  margin-left: 20px;
}

.jjfa-srfl-content-lt-title-2 span {
  font-weight: 500;
}

.jjfa-srfl-content-lt-desc-item img {
  width: 9px;
  height: 9px;
}

.jjfa-srfl-content-lt-desc-item span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  margin-left: 6px;
}

.jjfa-srfl-content-lt-btm {
  width: 500px;
  height: 300px;
  margin-top: 40px;
  background: url(https://res.youlianfuwu.com/website/img/home-jjfa-srfl-bg-01.png) center center no-repeat;
  background-size: cover;
}

.jjfa-srfl-content-lt-btm-nums {
  display: flex;
  padding-top: 40px;
  margin-left: 40px;
}

.jjfa-srfl-content-lt-btm-nums-rt {
  margin-left: 30px;
}

.jjfa-srfl-content-lt-btm-nums-item {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #333333;
  line-height: 21px;
  margin-top: 18px;
}

.jjfa-srfl-content-lt-btm-nums-item:first-child {
  margin-top: 0;
}

.jjfa-srfl-content-lt-btm-nums-item span {
  color: #FF6602;
}

#jjfa-srfl-swiper-1 {
  margin-top: 30px;
  margin-left: 40px;
  width: 420px;
  position: relative;
}

#jjfa-srfl-swiper-1 .jjfa-srfl-swiper-1-shadow1 {
  width: 45px;
  height: 137px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

#jjfa-srfl-swiper-1 .jjfa-srfl-swiper-1-shadow2 {
  width: 45px;
  height: 137px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

#jjfa-srfl-swiper-1 .jjfa-srfl-swiper-1-container {
  width: 420px;
  height: 100%;
  overflow: hidden;
}

#jjfa-srfl-swiper-1 .swiper-slide {
  box-sizing: border-box;
  width: 60px;
  height: 137px;
}

#jjfa-srfl-swiper-1 .swiper-slide img {
  width: 60px;
  height: 60px;
  display: block;
  margin-top: 17px;
}

#jjfa-srfl-swiper-1 .swiper-slide img:first-child {
  margin-top: 0;
}

#jjfa-srfl-swiper-1 .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;
}

.jjfa-srfl-content-rt {
  margin-top: 26px;
  margin-left: -73px;
}

.jjfa-srfl-content-rt-img {
  width: 589px;
  height: 546px;
  display: block;
}

.jjfa-srfl-btn {
  margin-top: 30px;
  width: 200px;
  height: 40px;
  background: #FF7216;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jjfa-srfl-btn div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

.jjfa-srfl-btn img {
  width: 53px;
  height: 12px;
  display: block;
  margin-left: 9px;
}

.jjfa-njww-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jjfa-njww-content-img {
  margin-top: 35px;
  width: 294px;
  height: 26px;
  display: block;
}

.jjfa-njww-content {
  margin-top: 35px;
  display: flex;
}

.jjfa-njww-content-lt-top {
  display: flex;
}

.jjfa-njww-content-lt-top-1 {
  width: 318px;
  height: 262px;
  background: url(https://res.youlianfuwu.com/website/img/home-jjfa-njww-bg-01.png) center center no-repeat;
  background-size: cover;
}

.jjfa-njww-content-lt-top-1-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: #E72B1D;
  line-height: 21px;
  margin-left: 31px;
  padding-top: 27px;
}

.jjfa-njww-content-lt-top-1-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  padding: 20px 0 0 31px;
}

.jjfa-njww-content-lt-top-1-desc.pt-10 {
  padding-top: 10px;
}

.jjfa-njww-content-lt-top-1 img {
  width: 272px;
  height: 99px;
  display: block;
  margin-left: 23px;
  margin-top: 19px;
}

.jjfa-njww-content-lt-top-2 {
  width: 318px;
  height: 262px;
  background: url(https://res.youlianfuwu.com/website/img/home-jjfa-njww-bg-02.png) center center no-repeat;
  background-size: cover;
  margin-left: 22px;
}

.jjfa-njww-content-lt-top-2-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: #337AF6;
  line-height: 21px;
  margin-left: 31px;
  padding-top: 27px;
}

.jjfa-njww-content-lt-top-2-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  padding: 20px 0 0 31px;
}

.jjfa-njww-content-lt-top-2-desc.pt-10 {
  padding-top: 10px;
}

.jjfa-njww-content-lt-top-2 img {
  width: 280px;
  height: 106px;
  display: block;
  margin-left: 19px;
  margin-top: 16px;
}

.jjfa-njww-content-lt-btm {
  width: 658px;
  height: 192px;
  background: url(https://res.youlianfuwu.com/website/img/home-jjfa-njww-bg-03.png) center center no-repeat;
  background-size: cover;
  display: flex;
  margin-top: 22px;
}

.jjfa-njww-content-lt-btm-1-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: #FF6602;
  line-height: 21px;
  padding: 41px 0 0 31px;
}

.jjfa-njww-content-lt-btm-1-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  padding: 20px 0 0 31px;
}

.jjfa-njww-content-lt-btm-1-desc.pt-10 {
  padding-top: 10px;
}

.jjfa-njww-content-lt-btm-img {
  width: 146px;
  height: 130px;
  display: block;
  margin: 29px 0 0 18px;
}

.jjfa-njww-content-lt-btm-2 {
  width: 87px;
  height: 90px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(255, 102, 2, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 57px;
  margin-left: -10px;
}

.jjfa-njww-content-lt-btm-2-desc1 {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 10px;
  color: #333333;
  line-height: 14px;
}

.jjfa-njww-content-lt-btm-2-desc1.mt-8 {
  margin-top: 8px;
}

.jjfa-njww-content-lt-btm-2-desc2 {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 10px;
  color: #D9492F;
  line-height: 14px;
}

.jjfa-njww-content-rt {
  width: 324px;
  height: 476px;
  background: url(https://res.youlianfuwu.com/website/img/home-jjfa-njww-bg-04.png) center center no-repeat;
  background-size: cover;
  margin-left: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jjfa-njww-content-rt-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: #EEAB00;
  line-height: 21px;
  margin-top: 27px;
}

.jjfa-njww-content-rt-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  margin-top: 14px;
  padding-bottom: 16px;
}

.jjfa-njww-content-rt-item {
  display: flex;
  align-items: center;
}

.jjfa-njww-content-rt-line {
  width: 273px;
  height: 1px;
  background-color: rgba(255, 219, 139, 0.6);
  margin: 20px 0;
}

.jjfa-njww-content-rt-item-label {
  width: 28px;
  height: 38px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #EC9700;
  line-height: 19px;
}

.jjfa-njww-content-rt-item-img {
  width: 250px;
  height: 90px;
  display: block;
  margin-left: 4px;
}

.jjfa-njww-btn {
  margin-top: 39px;
  width: 200px;
  height: 40px;
  background: #E72B1D;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jjfa-njww-btn div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

.jjfa-njww-btn img {
  width: 53px;
  height: 12px;
  display: block;
  margin-left: 9px;
}

.jjfa-ghhd-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}

.jjfa-ghhd-icon-list {
  display: flex;
}

.jjfa-ghhd-icon-item.mt--4 {
  margin-top: -4px;
}

.jjfa-ghhd-icon-item {
  width: 100px;
  height: 106px;
}

.jjfa-ghhd-icon-img {
  width: 100px;
  height: 106px;
  display: block;
}

.jjfa-ghhd-icon-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #333333;
  line-height: 19px;
  text-align: center;
  margin-top: -40px;
}

.jjfa-ghhd-btn {
  margin-top: 50px;
  width: 200px;
  height: 40px;
  background: #337AF6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jjfa-ghhd-btn div {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
}

.jjfa-ghhd-btn img {
  width: 53px;
  height: 12px;
  display: block;
  margin-left: 9px;
}

/* 轮播图容器样式 */
#jjfa-ghhd-swiper {
  margin-top: 30px;
  position: relative;
  width: 1020px;
}

#jjfa-ghhd-swiper .jjfa-ghhd-swiper-shadow1 {
  width: 80px;
  height: 407px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

#jjfa-ghhd-swiper .jjfa-ghhd-swiper-shadow2 {
  width: 80px;
  height: 407px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

#jjfa-ghhd-swiper .jjfa-ghhd-swiper-container {
  width: 1020px;
  height: 100%;
  overflow: hidden;
}

/* Swiper包装器样式 */
#jjfa-ghhd-swiper .swiper-wrapper {
  transition-timing-function: ease;
}

/* Swiper幻灯片样式 */
#jjfa-ghhd-swiper .swiper-slide {
  box-sizing: border-box;
  width: 209px;
  height: 370px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

/* Swiper幻灯片图片样式 */
#jjfa-ghhd-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 209px;
  height: auto;
  border: 3px solid #fff;
  box-sizing: border-box;
}

/* 轮播图左右切换按钮样式 */
#jjfa-ghhd-swiper .jjfa-ghhd-swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -64px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url('https://res.youlianfuwu.com/website/img/home-jjfa-ghhd-btn-01.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

#jjfa-ghhd-swiper .jjfa-ghhd-swiper-button-next {
  position: absolute;
  top: 50%;
  right: -64px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url('https://res.youlianfuwu.com/website/img/home-jjfa-ghhd-btn-02.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

#jjfa-ghhd-swiper .jjfa-ghhd-swiper-button-prev:after,
#jjfa-ghhd-swiper .jjfa-ghhd-swiper-button-next:after {
  content: '';
}

/* E 福利一站式解决方案 */

/* S 运营服务 */
.yyfw-wrap {
  width: 100%;
  background: url(https://res.youlianfuwu.com/website/img/home-yyfw-bg-01.png) center center no-repeat;
  background-size: cover;
}

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

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

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

.yyfw-content {
  margin: 68px auto 0;
  display: flex;
  justify-content: center;
  width: 400px;
  height: 378px;
  position: relative;
}

.yyfw-content-example-img {
  width: 400px;
  height: 378px;
  display: block;
}

.yyfw-content-item {
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(193, 208, 255, 0.4);
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.yyfw-container.animate-in .yyfw-content-item-1 {
  transition-delay: 0.1s;
}

.yyfw-container.animate-in .yyfw-content-item-2 {
  transition-delay: 0.3s;
}

.yyfw-container.animate-in .yyfw-content-item-3 {
  transition-delay: 0.5s;
}

.yyfw-container.animate-in .yyfw-content-item-4 {
  transition-delay: 0.7s;
}

.yyfw-content-item-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 20px;
  line-height: 26px;
}

.yyfw-content-item-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  margin-top: 8px;
}

.yyfw-content-item-1 {
  width: 297px;
  top: -18px;
  left: -300px;
}

.yyfw-content-item-1 .yyfw-content-item-title {
  color: #337AF6;
  text-align: right;
}

.yyfw-content-item-1 .yyfw-content-item-desc {
  text-align: right;
}

.yyfw-content-item-2 {
  width: 312px;
  top: -18px;
  left: 402px;
}

.yyfw-content-item-2 .yyfw-content-item-title {
  color: #FF6602;
  text-align: left;
}

.yyfw-content-item-2 .yyfw-content-item-desc {
  text-align: left;
}

.yyfw-content-item-3 {
  width: 297px;
  bottom: -20px;
  left: -300px;
}

.yyfw-content-item-3 .yyfw-content-item-title {
  color: #FF6602;
  text-align: right;
}

.yyfw-content-item-3 .yyfw-content-item-desc {
  text-align: right;
}

.yyfw-content-item-4 {
  width: 321px;
  bottom: 2px;
  left: 398px;
}

.yyfw-content-item-4 .yyfw-content-item-title {
  color: #337AF6;
  text-align: left;
}

.yyfw-content-item-4 .yyfw-content-item-desc {
  text-align: left;
}

/* 运营服务项目hover效果 */
.yyfw-content-item {
  transition: opacity 0.3s ease, transform 0.5s ease;
  cursor: pointer;
}

.yyfw-content-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0px 5px 15px 0px rgba(193, 208, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: 0s !important;
}

/* E 运营服务 */

/* S 专属服务 */
.zsfw-wrap {
  width: 100%;
  background-color: #fff;
}

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

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

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

.zsfw-content {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.zsfw-tabs-item {
  width: 400px;
  margin-top: 30px;
  padding-left: 54px;
  padding-right: 22px;
  padding-top: 20px;
  cursor: pointer;
}

.zsfw-tabs-item.zsfw-tabs-item-active {
  margin-top: 50px;
  background: linear-gradient(90deg, #F4F9FF 0%, #FFFFFF 100%);
  box-shadow: 0px 0px 10px 0px rgba(193, 208, 255, 0.4);
  border-radius: 10px;
  padding: 20px 22px 25px 54px;
  position: relative;
  transition: background-color 0.5s ease, box-shadow 0.5s ease, border-radius 0.5s ease, padding 0.5s ease;
}

.zsfw-tabs-item:first-child {
  margin-top: 0;
}

.zsfw-tabs-item-title {
  display: flex;
  align-items: center;
}

.zsfw-tabs-item-title span {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 18px;
  color: #8E93A3;
  line-height: 24px;
  margin-left: 7px;
}

.zsfw-tabs-item-icon {
  width: 9px;
  height: 9px;
  display: block;
  position: relative;
  top: -2px;
}

.zsfw-tabs-item-icon-on {
  width: 9px;
  height: 9px;
  display: none;
}

.zsfw-tabs-item-active .zsfw-tabs-item-icon {
  display: none;
}

.zsfw-tabs-item-active .zsfw-tabs-item-icon-on {
  display: block;
  position: relative;
  top: -2px;
}

.zsfw-tabs-item-active .zsfw-tabs-item-title span {
  color: #337AF6;
  transition: color 0.5s ease;
}

.zsfw-tabs-item-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 14px;
  color: #666666;
  line-height: 19px;
  margin-top: 10px;
  padding-left: 16px;
  display: none;
}

.zsfw-tabs-item-active .zsfw-tabs-item-desc {
  display: block;
}

.zsfw-tabs-item-num {
  width: 100px;
  height: 80px;
  position: absolute;
  top: 10px;
  left: 15px;
  display: none;
}

.zsfw-tabs-item-active .zsfw-tabs-item-num {
  display: block;
}

.zsfw-details {
  width: 550px;
  margin-left: 50px;
}

.zsfw-details-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.zsfw-details-item-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* s swiper-01 */
#zsfw-swiper-01 {
  width: 550px;
  position: relative;
  overflow: hidden;
}

#zsfw-swiper-01 .zsfw-swiper-01-container {
  width: 637px;
  overflow: hidden;
  position: relative;
  left: -107px;
  padding: 5px 0;
}

#zsfw-swiper-01 .swiper-slide {
  box-sizing: border-box;
  width: 169px;
  height: 365px;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

#zsfw-swiper-01 .swiper-slide img {
  width: 163px;
  height: 359px;
  box-sizing: border-box;
  border-radius: 16px;
}

.zsfw-details-item-01 {
  position: relative;
}

.zsfw-details-item-01 .swiper-button-prev {
  position: absolute;
  left: -40px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-01 .swiper-button-prev img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-01 .swiper-button-next {
  position: absolute;
  right: -20px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-01 .swiper-button-next img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-01 .swiper-button-prev:after,
.zsfw-details-item-01 .swiper-button-next:after {
  content: '';
}

/* e swiper-01 */

/* s swiper-02 */
#zsfw-swiper-02 {
  width: 550px;
  position: relative;
  overflow: hidden;
  top: -375px;
}

#zsfw-swiper-02 .zsfw-swiper-02-container {
  width: 637px;
  overflow: hidden;
  position: relative;
  left: -107px;
  padding: 5px 0;
}

#zsfw-swiper-02 .swiper-slide {
  box-sizing: border-box;
  width: 169px;
  height: 365px;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

#zsfw-swiper-02 .swiper-slide img {
  width: 163px;
  height: 359px;
  box-sizing: border-box;
  border-radius: 16px;
}

.zsfw-details-item-02 {
  position: relative;
}

.zsfw-details-item-02 .swiper-button-prev {
  position: absolute;
  left: -40px;
  top: -187px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-02 .swiper-button-prev img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-02 .swiper-button-next {
  position: absolute;
  right: -20px;
  top: -187px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-02 .swiper-button-next img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-02 .swiper-button-prev:after,
.zsfw-details-item-02 .swiper-button-next:after {
  content: '';
}

/* e swiper-02 */
/* s swiper-04 */
#zsfw-swiper-04 {
  top: -1108px;
  width: 550px;
  position: relative;
  overflow: hidden;
}

#zsfw-swiper-04 .zsfw-swiper-04-container {
  width: 637px;
  overflow: hidden;
  position: relative;
  left: -107px;
  padding: 5px 0;
}

#zsfw-swiper-04 .swiper-slide {
  box-sizing: border-box;
  width: 169px;
  height: 365px;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

#zsfw-swiper-04 .swiper-slide img {
  width: 163px;
  height: 359px;
  box-sizing: border-box;
  border-radius: 16px;
}

.zsfw-details-item-04 {
  position: relative;
}

.zsfw-details-item-04 .swiper-button-prev {
  position: absolute;
  left: -40px;
  top: -922px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-04 .swiper-button-prev img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-04 .swiper-button-next {
  position: absolute;
  right: -20px;
  top: -922px;
  width: 39px;
  height: 39px;
}

.zsfw-details-item-04 .swiper-button-next img {
  width: 39px;
  height: 39px;
  display: block;
}

.zsfw-details-item-04 .swiper-button-prev:after,
.zsfw-details-item-04 .swiper-button-next:after {
  content: '';
}

/* e swiper-04 */

.zsfw-details-item-03 {
  position: relative;
  top: -735px;
  display: flex;
}

.zsfw-details-item-03 .mt-20 {
  margin-top: 20px;
}

.zsfw-details-item-03 .ml-20 {
  margin-left: 20px;
}

.zsfw-details-item-03-img-h86 {
  width: 170px;
  height: 86px;
  display: block;
}

.zsfw-details-item-03-img-h254 {
  width: 170px;
  height: 254px;
  display: block;
}

.zsfw-details-item-03-img-h148 {
  width: 170px;
  height: 148px;
  display: block;
}

.zsfw-details-item-03 img {
  transition: transform 0.5s ease;
  cursor: pointer;
}

.zsfw-details-item-03 img:hover {
  transform: scale(1.05);

}

/* E 专属服务 */

/* S 企业社会责任 */
.shzr-wrap {
  width: 100%;
  background: url(https://res.youlianfuwu.com/website/img/home-shzr-bg-01.png) center center no-repeat;
  background-size: cover;
  margin-top: -1050px;
}

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

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

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

.shzr-content {
  display: flex;
  justify-content: center;
  padding-top: 26px;
}

.shzr-lt-item {
  margin-top: 30px;
  padding-left: 26px;
}

.shzr-lt-example-img {
  width: 470px;
  height: 340px;
  display: block;
}

.shzr-lt-item-title {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 16px;
  color: #337AF6;
  line-height: 21px;
}

.shzr-lt-item-desc {
  margin-top: 10px;
  width: 432px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}

.shzr-lt-item-desc span {
  color: #337AF6;
}

.shzr-rt {
  padding-left: 25px;
}

.shzr-rt-desc {
  padding-top: 14px;
}

.shzr-rt-desc-item {
  display: flex;
  margin-top: 10px;
}

.shzr-rt-desc-item:first-child {
  margin-top: 0;
}

.shzr-rt-desc-icon {
  width: 9px;
  height: 9px;
  display: block;
  margin-top: 5px;
}

.shzr-rt-desc-text {
  padding-left: 6px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  width: 466px;
}

.shzr-rt-desc-text span {
  color: #337AF6;
}

.shzr-rt-example-img {
  margin-top: 16px;
  width: 490px;
  height: 200px;
  display: block;
}

#shzr-swiper {
  width: 494px;
  margin-top: 34px;
  position: relative;
}

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

#shzr-swiper .swiper-slide {
  box-sizing: border-box;
  width: 240px;
  height: 191px;
  position: relative;
}

#shzr-swiper .desc {
  width: 240px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 0px 0px 10px 10px;
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 21px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 29px;
}

#shzr-swiper .swiper-slide img {
  width: 240px;
  height: 191px;
}

#shzr-swiper .swiper-button-prev {
  position: absolute;
  left: -40px;
  width: 39px;
  height: 39px;
}

#shzr-swiper .swiper-button-prev img {
  width: 39px;
  height: 39px;
  display: block;
}

#shzr-swiper .swiper-button-next {
  position: absolute;
  right: -40px;
  width: 39px;
  height: 39px;
}

#shzr-swiper .swiper-button-next img {
  width: 39px;
  height: 39px;
  display: block;
}

#shzr-swiper .swiper-button-prev:after,
#shzr-swiper .swiper-button-next:after {
  content: '';
}

/* E 企业社会责任 */

/* S 服务客户 */
.fwkh-wrap {
  width: 100%;
  background: url(https://res.youlianfuwu.com/website/img/home-fwkh-bg-01.png) top center no-repeat;
  background-size: 100% auto;
  background-position: top 164px center;
}

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

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

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

.fwkh-tabs {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.fwkh-tabs-item {
  width: 170px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(90deg, #EDF5FF 0%, #B8D9FF 100%);
  border-radius: 4px;
  cursor: pointer;
  margin-left: 157px;
  color: #337AF6;
  transition: all 0.5s ease;
}

.fwkh-tabs-item-active {
  background: linear-gradient(90deg, #62B2FB 0%, #337AF6 100%);
  box-shadow: 0px 0px 4px 0px rgba(51, 122, 246, 0.3);
  color: #fff;
  transition: all 0.5s ease;
}

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

.fwkh-tabs-item-num {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-weight: 500;
  font-size: 30px;
}

.fwkh-tabs-item-desc {
  font-family: system-ui, -apple-system, 微软雅黑, "Helvetica Neue", Helvetica;
  font-size: 18px;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

.fwkh-content {
  display: flex;
  justify-content: center;
  padding: 50px 0 0;
  height: 350px;
  position: relative;
}

.fwkh-content-img {
  width: 1000px;
  height: 252px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fwkh-content-img-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* E 服务客户 */

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

.qyzz-container {
  padding: 40px 0 70px;
  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%;
  background-color: #fff;
  border-top: 1px solid #DCDFE6;
}

.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 悬浮菜单 */