@import "iconfonts/iconfont.css";
* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #333;
}
html {
  margin: 0;
  padding: 0;
  min-width: 1280px;
}
ul {
  list-style: none;
}
.mt10 {
  margin-top: 10px;
}
/* 弹窗提示 */
.ui-show-tip {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  z-index: 9999 !important;
}
.ui-show-tip .ui-show-type {
  display: flex;
  align-items: center;
  padding: 15px 12px;
  min-width: 150px;
  border-radius: 5px;
}
.ui-show-tip .ui-show-type .show-tip-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}
.ui-show-tip .ui-show-type .show-tip-text {
  display: inline-block;
  font-size: 16px;
}
.ui-show-tip .success {
  background: rgba(240, 248, 232, 0.9);
  border: 1px solid #d1efb5;
}
.ui-show-tip .success .icon-success {
  color: #7ab83a;
}
.ui-show-tip .success .show-tip-text {
  color: #7ab83a;
}
.ui-show-tip .error {
  background: rgba(250, 238, 238);
  border: 1px solid #d86363;
}
.ui-show-tip .error .icon-error {
  color: #d86363;
}
.ui-show-tip .error .show-tip-text {
  color: #d86363;
}
.qr-code {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.hr {
  width: 100%;
  height: 1px;
  background: #EAEAEA;
}
.ui-ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body {
  background: #fff;
  font-family: HarmonyOS Sans SC, HarmonyOS Sans SC, Arial, sans-serif;
  position: relative;
}
.min-width {
  min-width: 1080px;
}
/*滚动条处理*/
.scrollable {
  -webkit-overflow-scrolling: touch;
}
::-webkit-scrollbar {
  height: 0;
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #D8D8D8;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #D8D8D8;
}
::-webkit-scrollbar-track {
  background-color: #D8D8D8;
}
::-webkit-scrollbar-track:hover {
  background-color: #D8D8D8;
}
.auto-min-with {
  width: 1280px;
  margin: 0 auto;
}
.flag {
  width: 18px;
  height: 12px;
  display: inline-block;
}
.flag-cn {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/f69134df-66cc-49b3-8f1b-eae4062a4689.png") no-repeat 100% 100%;
}
.flag-s {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/5241896a-c18a-4a21-a705-cd07838c45e0.png") no-repeat 100% 100%;
}
.web-header {
  width: 100%;
  height: 80px;
  padding: 0 80px;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
.web-header .web-header-logo {
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 142px;
}
.web-header .web-header-logo .active-logo {
  display: none;
  width: 142px;
  height: 24px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/18/e425bf44-53b6-4e7e-ac20-bb5c3459485e.png") no-repeat;
  background-size: contain;
}
.web-header .web-header-logo .white-logo {
  display: block;
  width: 142px;
  height: 24px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/18/8b68f37f-bed1-408c-8c96-8c8f6c8df9f0.png") no-repeat;
  background-size: contain;
}
.web-header .min-width {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.web-header .web-header-menu {
  color: #fff;
}
.web-header .web-header-menu .menu-container {
  overflow: hidden;
}
.web-header .web-header-menu .menu {
  height: 80px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  /* 隐藏滚动条 */
}
.web-header .web-header-menu .menu::-webkit-scrollbar {
  display: none;
  /* 隐藏滚动条 */
}
.web-header .web-header-menu .menu .menu-item {
  height: 100%;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  line-height: 80px;
  margin: 0 20px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.web-header .web-header-menu .menu .menu-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
}
.web-header .web-header-menu .slider {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: #E82D3E;
  /* 红色滑块 */
  margin-left: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 平滑过渡动画 */
  will-change: width, left;
  /* 优化动画性能 */
}
.web-header:hover,
.web-header.active {
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.04), 0 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 平滑过渡动画 */
}
.web-header:hover .active-logo,
.web-header.active .active-logo {
  display: block;
}
.web-header:hover .white-logo,
.web-header.active .white-logo {
  display: none;
}
.web-header:hover .web-header-menu,
.web-header.active .web-header-menu {
  color: #333;
}
.web-header:hover .web-header-menu .menu-item a,
.web-header.active .web-header-menu .menu-item a {
  color: #333;
}
.web-banner {
  height: 600px;
  background: #ccc;
  /* 1. 容器样式（可选，仅为演示） */
  /* 2. 切换按钮基础样式：默认隐藏 */
  /* 3. 鼠标移入容器时，显示按钮 */
  /* 可选：按钮 hover 效果 */
}
.web-banner .my-swiper {
  overflow: hidden;
}
.web-banner .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f5f5f5;
  font-size: 24px;
}
.web-banner .swiper-button-prev,
.web-banner .swiper-button-next {
  opacity: 0;
  /* 透明=隐藏 */
  pointer-events: none;
  /* 隐藏时禁止点击 */
  /* 可选：自定义按钮样式（如背景、颜色） */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 60px;
  height: 60px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.web-banner .swiper-button-next {
  right: -60px;
}
.web-banner .swiper-button-prev {
  left: -60px;
}
.web-banner .swiper:hover .swiper-button-prev {
  opacity: 1;
  /* 不透明=显示 */
  pointer-events: auto;
  /* 显示时恢复点击 */
  left: 30px;
}
.web-banner .swiper:hover .swiper-button-next {
  opacity: 1;
  /* 不透明=显示 */
  pointer-events: auto;
  /* 显示时恢复点击 */
  right: 30px;
}
.web-banner .swiper-button-prev:hover,
.web-banner .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.web-banner .swiper-button-prev:hover::after {
  transform: translateX(-8px);
}
.web-banner .swiper-button-next:hover::after {
  transform: translateX(8px);
}
.web-banner .swiper-button-prev::after,
.web-banner .swiper-button-next::after {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 32px;
}
@keyframes ripple {
  to {
    transform: scale(2.4);
    opacity: 0.12;
  }
}
.web-banner .swiper {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
}
.web-banner .swiper .swiper-slide {
  width: 100%;
  height: 600px;
  text-align: center;
  font-size: 18px;
  background: #fff;
  padding-top: 80px;
  position: relative;
}
.web-banner .swiper .swiper-slide .auto-min-with {
  height: 520px;
  display: flex;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left {
  width: 750px;
  height: 100%;
  padding-top: 50px;
  text-align: left;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .logo {
  height: 48px;
  width: 202px;
  margin-bottom: 30px;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .introduction {
  text-transform: uppercase;
  color: #333;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .description {
  font-size: 16px;
  line-height: 19px;
  color: #416663;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap {
  margin-top: 40px;
  display: flex;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .qr-code {
  border-radius: 7px;
  width: 120px;
  height: 120px;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .wxChat-mini,
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .wxChat-mini-customer {
  width: 120px;
  height: 120px;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .wxChat-mini img,
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .wxChat-mini-customer img {
  width: 120px;
  height: 120px;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-left .qr-code-wrap .wxChat-mini {
  margin-right: 30px;
}
.web-banner .swiper .swiper-slide .auto-min-with .pay-right {
  width: 485px;
  height: 490px;
  margin-top: 30px;
}
.web-banner .swiper .swiper-slide.pay {
  width: 100%;
  background: linear-gradient(180deg, #83F0F7 0%, #5BD8F1 100%);
}
.web-banner .swiper .swiper-slide.pay .wxChat-mini {
  width: 120px;
  height: 120px;
}
.web-banner .swiper .swiper-slide.rent {
  background: linear-gradient(180deg, #FF8D81 1%, #FF4E5E 100%);
}
.web-banner .swiper .swiper-slide.rent .introduction,
.web-banner .swiper .swiper-slide.rent .description {
  color: #fff !important;
}
.column-title {
  font-size: 48px;
  line-height: 48px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.web-content #ABOUTUS {
  padding-top: 120px;
  display: flex;
}
.web-content .content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.web-content .content-row .content-column {
  width: 50%;
}
.web-content .content-row .content-column .column-box {
  width: 100%;
}
.web-content .content-row .content-column.about-us {
  margin-right: 40px;
  position: relative;
  animation: transformY 1.1s linear forwards;
}
.web-content .content-row .content-column.about-us .column-box {
  padding: 35px 25px 0;
  width: 620px;
  box-sizing: border-box;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/15/5504c4a6-6bdc-4edb-8a49-1e6384e5f78d.png") no-repeat;
  background-size: 100% 100%;
}
.web-content .content-row .content-column.about-us .column-box .head-title {
  font-size: 32px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.web-content .content-row .content-column.about-us .column-box .intro {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  margin-top: 12px;
}
.web-content .content-row .content-column.about-us-news {
  position: relative;
}
.web-content .content-row .content-column.about-us-news .column-box {
  height: 500px;
  overflow: hidden;
}
.web-content .content-row .content-column.about-us-news .column-box ul {
  display: flex;
  flex-direction: column;
}
.web-content .content-row .content-column.about-us-news .column-box ul li {
  width: 100%;
  height: 100px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EAEAEA;
  transition: all 1s linear;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .date {
  width: 80px;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .date .month-day {
  color: #999;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: all 0.5s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .date .year {
  font-size: 16px;
  line-height: 16px;
  color: #999;
  font-weight: 500;
  transition: all 0.5s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .v-line-box {
  width: 2px;
  height: 40px;
  margin: 0 20px;
  overflow: hidden;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .v-line {
  width: 100%;
  height: 100%;
  background: #EAEAEA;
  transition: all 0.3s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .news-brief {
  flex: 1;
  height: 48px;
  line-height: 24px;
  text-align: start;
  color: #666;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-transform: capitalize;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .arrow-right {
  width: 48px;
  margin-left: 36px;
  transition: all 0.3s linear;
  position: relative;
  display: flex;
  align-items: center;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .arrow-right .iconfont {
  font-size: 24px;
  color: #666;
  position: absolute;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .arrow-right .icon-arrow-right {
  opacity: 0;
  left: -12px;
  transition: all 0.2s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li .arrow-right .icon-arrow {
  opacity: 1;
  right: 0;
  transition: all 0.2s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:first-child {
  border-top: 1px solid #EAEAEA;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover,
.web-content .content-row .content-column.about-us-news .column-box ul li.active {
  cursor: pointer;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .v-line,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .v-line {
  transform: translateY(-40px);
  opacity: 0;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .month-day,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .month-day {
  color: #E82D3E;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .news-brief,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .news-brief,
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .year,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .year {
  color: #000;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .icon-arrow-right,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .icon-arrow-right {
  color: #E82D3E;
  transform: translateX(36px);
  opacity: 1;
  transition: all 0.26s linear;
}
.web-content .content-row .content-column.about-us-news .column-box ul li:hover .icon-arrow,
.web-content .content-row .content-column.about-us-news .column-box ul li.active .icon-arrow {
  opacity: 0;
  transform: translateX(24px);
}
.web-content .product-service {
  padding-top: 120px;
  width: 100%;
  position: relative;
}
.web-content .product-service .column-title {
  width: 100%;
  text-align: center;
}
.web-content .product-service ul {
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.web-content .product-service ul li {
  width: 620px;
  height: 300px;
  margin-bottom: 40px;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.web-content .product-service ul li .content-area {
  width: 100%;
  height: 100%;
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
}
.web-content .product-service ul li .content-area .sort-left {
  width: 260px;
  height: 260px;
  margin-right: 20px;
  border-radius: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.web-content .product-service ul li .content-area .sort-right {
  position: relative;
  width: calc(100% - 260px);
  height: 100%;
  box-sizing: border-box;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-title {
  width: 190px;
  height: 76px;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #000;
  margin-top: 10px;
  font-weight: 700;
  margin-bottom: 15px;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-title.logo {
  width: 100%;
  height: 30px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-intro {
  width: 280px;
  font-size: 16px;
  line-height: 20px;
  color: #666;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-arrow {
  position: absolute;
  left: -10px;
  bottom: 0;
  padding: 10px;
  cursor: pointer;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-arrow .iconfont {
  font-size: 24px;
  display: block;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-arrow .icon-arrow {
  color: #666;
}
.web-content .product-service ul li .content-area .sort-right .sort-right-arrow .icon-arrow-right {
  color: #E82D3E;
}
.web-content .product-service ul li .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
}
.web-content .product-service ul li .mask .qr-code {
  width: 160px;
  height: 160px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/24/05fb227f-072e-4c68-87a9-08cf2b210cde.png") no-repeat;
  background-size: 160px 160px;
}
.web-content .product-service ul li .mask .search-icon {
  width: 48px;
  height: 48px;
  background: #E82D3E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s, transform 0.3s linear;
}
.web-content .product-service ul li .mask .search-icon .iconfont {
  font-size: 18px;
  color: #fff;
}
.web-content .product-service ul li .mask .search-icon:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transform: scale(1.1);
}
.web-content .product-service ul li:nth-child(2n) {
  margin-right: 0;
}
.web-content .product-service ul .mask.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.web-content .product-service ul .mask.visible .search-icon {
  opacity: 1;
}
.web-content .product-service ul .mask.hidden {
  visibility: hidden;
  opacity: 0;
}
.web-content .product-service ul li.z-home .sort-left {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/c268020f-ab8d-4ebc-bfd6-16c2233cc5d9.png");
}
.web-content .product-service ul li.z-home .mask .qr-code {
  background-image: url("https://file-cn.liuzhuapp.com/uploads/202509/16/4cca034d-bb27-4246-9424-fae1dc5facc2.png");
}
.web-content .product-service ul li.z-pay .sort-left {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/d8e243e1-3cf2-4f47-af8d-6cae1f889f0a.png");
}
.web-content .product-service ul li.campus-equipment .sort-left {
  background: url('https://file-cn.liuzhuapp.com/uploads/202509/16/59166dcd-47fd-4a0a-97a7-f9ab6968cfa6.png');
}
.web-content .product-service ul li.overseas-butler .sort-left {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/705c8e45-84cc-474d-8d6c-3df7d7bb1478.png");
}
.web-content .product-service ul li.liulianlian-crm .sort-left {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/2072bd60-632d-4770-a053-ea2f51eb9afa.png");
}
.web-content .product-service ul li.homework-escort .sort-left {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/d72336ce-09c6-4fba-be67-43ae67264a96.png");
}
.web-content .product-service ul li.homework-escort .sort-right-intro {
  width: 260px !important;
}
.web-content .product-service ul li:nth-child(1),
.web-content .product-service ul li:nth-child(4),
.web-content .product-service ul li:nth-child(5) {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/15/00355fbc-1009-4523-92e0-76e07a821c07.png") no-repeat;
  background-size: 100% 100%;
}
.web-content .product-service ul li:nth-child(2),
.web-content .product-service ul li:nth-child(3),
.web-content .product-service ul li:nth-child(6) {
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/15/07c719fa-ae5e-4468-930b-7edd973e9d4c.png") no-repeat;
  background-size: 100% 100%;
}
.contact-us {
  margin-top: 80px;
  width: 100%;
  position: relative;
}
.contact-us .column-title {
  text-align: center;
}
.contact-us .auto-min-with {
  width: 1280px;
  height: 100%;
}
.contact-us .column-bg {
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f6f6;
}
.contact-us .column-bg .column-bg-left {
  width: 1120px;
  height: 100%;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/97dec1e8-7b91-47ef-9bdb-7a7894569cb5.png") no-repeat;
  background-size: auto 440px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.contact-us .column-bg .column-bg-left .contact-box-after {
  max-width: 320px;
}
.contact-us .column-bg .column-bg-left ul {
  flex: 1;
  align-items: center;
}
.contact-us .column-bg .column-bg-right {
  width: 800px;
  background-size: auto 440px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/2a7c17e7-0019-44f4-b4de-e39210409e90.png") no-repeat;
}
.contact-us .column-bg .contact-box {
  height: 440px;
  box-sizing: border-box;
}
.contact-us .column-bg .contact-box ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: 15px;
}
.contact-us .column-bg .contact-box ul li {
  padding: 30px 0;
  border-bottom: 1px solid #EAEAEA;
  box-sizing: border-box;
  display: flex;
  align-items: start;
}
.contact-us .column-bg .contact-box ul li .left-icon {
  width: 18px;
  height: 12px;
  margin-right: 12px;
}
.contact-us .column-bg .contact-box ul li .title {
  vertical-align: middle;
}
.contact-us .column-bg .contact-box ul li .title i {
  width: 18px;
  height: 12px;
  margin-right: 12px;
}
.contact-us .column-bg .contact-box ul li .title .title-text {
  font-size: 16px;
  color: #666;
  line-height: 16px;
}
.contact-us .column-bg .contact-box ul li .title .title-location {
  font-size: 16px;
  color: #E82D3E;
  font-weight: 700;
}
.contact-us .column-bg .contact-box ul li .content {
  width: 470px;
  font-size: 20px;
  line-height: 24px;
  color: #333;
  text-transform: capitalize;
  margin-top: 15px;
}
.contact-us .column-bg .contact-box ul li.email {
  border-bottom: none;
}
.contact-us .column-bg .contact-box ul li.email .iconfont {
  display: inline-block;
  width: 18px;
  height: 12px;
}
.contact-us .column-bg .contact-box ul li.email .icon-email {
  color: #E82D3E;
}
.contact-us .column-bg .contact-box ul li.email .content {
  color: #E82D3E;
  text-transform: lowercase;
}
.contact-us .column-bg .download-box {
  padding-top: 47px;
  height: 440px;
  box-sizing: border-box;
  padding-left: 80px;
}
.contact-us .column-bg .download-box .download-title {
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-us .column-bg .download-box .download-qrcode {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.contact-us .column-bg .download-box .download-qrcode .qr-code-box img {
  width: 160px;
  height: 160px;
}
.contact-us .column-bg .download-box .download-qrcode .qr-code-box .qr-code-title {
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  width: 160px;
  text-align: center;
  margin-top: 10px;
}
.contact-us .column-bg .download-box .download-qrcode .qr-code-box:nth-child(1) {
  margin-right: 60px;
}
.web-footer {
  width: 100%;
  height: 156px;
  background: #fff;
  position: relative;
  animation: transformY 1.8s linear;
}
.web-footer .footer-top {
  height: 104px;
  width: 100%;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.web-footer .footer-top .web-logo {
  width: 142px;
  height: 24px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/dd75b9c6-d936-4a3e-8dfe-b079a31c1c28.png") no-repeat;
  background-size: auto 100%;
}
.web-footer .footer-top .web-menu ul {
  display: flex;
  align-items: center;
}
.web-footer .footer-top .web-menu ul li {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin-left: 20px;
  text-transform: uppercase;
}
.web-footer .footer-top .web-menu ul li:hover a {
  color: #E82D3E;
}
.web-footer .footer-copyright {
  height: 52px;
  font-size: 14px;
  line-height: 20px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: start;
}
.banner {
  margin-top: 80px;
  padding-top: 20px;
  height: 200px;
  box-sizing: border-box;
}
.banner .catalogue {
  margin-bottom: 50px;
}
.banner .catalogue span {
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  text-transform: uppercase;
}
.banner .catalogue .iconfont {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}
.banner .brand {
  font-size: 56px;
  color: #fff;
  line-height: 56px;
  font-weight: 700;
  text-transform: uppercase;
}
.news-popup .news-title {
  font-size: 24px;
  color: #000;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}
.news-popup .news-date {
  font-size: 16px;
  color: #999;
}
.news-popup .news-content {
  font-size: 16px;
  color: #333;
  line-height: 28px;
}
.news-popup.visible {
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
}
.news-popup.hidden {
  transition: 0.5s;
  animation: maskHidden 0.5s;
  visibility: hidden;
}
.news {
  min-width: 1228px;
  height: 280px;
  border: 1px solid transparent;
  background-size: 100% 280px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/9370bf95-4179-415e-9840-7ab62c2578f7.png") no-repeat fixed;
  box-sizing: border-box;
}
.news .banner {
  min-width: 1080px;
  margin-left: 100px;
  padding-left: 220px;
}
.news .auto-min-with {
  width: 1080px;
}
.news .news-list {
  width: 1080px;
  margin: 40px auto 140px;
}
.news .news-list ul {
  width: 100%;
  min-height: 400px;
}
.news .news-list ul li {
  padding: 40px 0;
  border-bottom: 1px solid #EAEAEA;
  cursor: pointer;
}
.news .news-list ul li .grid-date {
  color: #999;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}
.news .news-list ul li .grid-header {
  font-size: 24px;
  line-height: 32px;
  color: #000;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.news .news-list ul li .grid-content {
  font-size: 16px;
  color: #666;
  line-height: 16px;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .news-list ul li .grid-read-more {
  font-size: 16px;
  color: #666;
  line-height: 16px;
  position: relative;
}
.news .news-list ul li .grid-read-more .iconfont {
  position: absolute;
  margin-left: 10px;
  color: #666;
  font-size: 16px;
}
.news .news-list ul li .grid-read-more .icon-arrow {
  opacity: 1;
  transition: all 0.2s linear;
}
.news .news-list ul li .grid-read-more .icon-arrow-right {
  opacity: 0;
  transition: all 0.2s linear;
}
.news .news-list ul li:hover .grid-header {
  color: #E82D3E;
}
.news .news-list ul li:hover .grid-read-more {
  color: #E82D3E;
}
.news .news-list ul li:hover .grid-read-more .icon-arrow {
  opacity: 0;
  transition: all 0.2s linear;
  transform: translateX(20px);
}
.news .news-list ul li:hover .grid-read-more .icon-arrow-right {
  color: #E82D3E;
  opacity: 1;
  transition: all 0.2s linear;
  transform: translateX(20px);
}
.news .news-list .more {
  margin-top: 40px;
  cursor: pointer;
  width: 100%;
  height: 48px;
  border: 1px solid #E82D3E;
  border-radius: 4px;
  text-align: center;
  line-height: 48px;
  color: #E82D3E;
  font-size: 16px;
}
.news .news-list .more.visible {
  opacity: 1;
  overflow: visible;
}
.news .news-list .more.hidden {
  opacity: 0;
  overflow: hidden;
}
.ui-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-popup .ui-popup-content {
  width: 1080px;
  height: 740px;
  background: #fff;
  padding: 20px 40px 10px;
  box-sizing: border-box;
  position: relative;
}
.ui-popup .ui-popup-content .ui-popup-close {
  width: 100%;
  height: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.ui-popup .ui-popup-content .ui-popup-close .iconfont {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.ui-popup .ui-popup-content .ui-popup-header {
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: none;
}
.ui-popup .ui-popup-content .ui-popup-header.active,
.ui-popup .ui-popup-content .ui-popup-body.active {
  display: block;
}
.ui-popup .ui-popup-content .ui-popup-body {
  width: 100%;
  display: none;
  overflow-y: auto;
  height: calc(100% - 150px);
}
.ui-popup .ui-popup-loading {
  font-size: 32px;
  text-align: center;
  /* 应用动画 */
}
.ui-popup .ui-popup-loading span {
  padding: 20px 40px;
  color: #333;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loadingAnimate 1.5s infinite ease-in-out;
}
@keyframes loadingAnimate {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.95);
  }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.48);
  transform: scale(0);
  animation: ripple 240ms linear;
}
.copy-email {
  width: 120px;
  height: 48px;
  border: 1px solid #E82D3E;
  border-radius: 4px;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  color: #E82D3E;
  cursor: pointer;
  /* 开启定位是为了给波纹动画元素使用 */
  position: relative;
  /* 必须加上超出隐藏，注释掉以后效果很明显 */
  overflow: hidden;
  /* hover过渡一下 */
  transition: all 0.9s;
}
.copy-email:hover {
  background: #E82D3E;
  color: #fff;
}
.copy-email.active {
  background: #E82D3E;
  color: #fff;
}
.recruitment {
  width: 100%;
  min-width: 1228px;
  height: 280px;
  border: 1px solid transparent;
  background-size: 100% 280px;
  background: url("https://file-cn.liuzhuapp.com/uploads/202509/16/b55bbdf2-57b7-4ef1-b3be-a038295567f8.png") no-repeat fixed;
}
.recruitment .banner {
  min-width: 1080px;
  margin-left: 100px;
  padding-left: 220px;
}
.recruitment .auto-min-with {
  width: 1080px;
}
.recruitment .grid-read-more {
  font-size: 16px;
  color: #666;
  line-height: 16px;
  margin-top: 20px;
  position: relative;
}
.recruitment .grid-read-more .iconfont {
  position: absolute;
  margin-left: 10px;
  color: #666;
  font-size: 16px;
}
.recruitment .grid-read-more .icon-arrow {
  opacity: 1;
  transition: all 0.2s linear;
}
.recruitment .grid-read-more .icon-arrow-right {
  opacity: 0;
  transition: all 0.2s linear;
}
.recruitment .recruitment-list {
  min-height: 360px;
  width: 1080px;
  margin: 40px auto 140px;
}
.recruitment .recruitment-list ul li {
  padding: 40px 0;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recruitment .recruitment-list ul li .row-left {
  width: calc(100% - 150px);
}
.recruitment .recruitment-list ul li .row-left .grid-title {
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
.recruitment .recruitment-list ul li .row-left .grid-content {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #666;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recruitment .recruitment-list ul li .row-left .grid-content .flag {
  margin-right: 2px;
}
.recruitment .recruitment-list ul li .row-left .grid-content .v-line {
  width: 1px;
  height: 16px;
  margin: 0 5px;
  background: #666;
}
.recruitment .recruitment-list ul li:hover {
  cursor: pointer;
}
.recruitment .recruitment-list ul li:hover .grid-title {
  color: #E82D3E;
}
.recruitment .recruitment-list ul li:hover .grid-read-more {
  color: #E82D3E;
}
.recruitment .recruitment-list ul li:hover .grid-read-more .icon-arrow {
  opacity: 0;
  transition: all 0.2s linear;
  transform: translateX(20px);
}
.recruitment .recruitment-list ul li:hover .grid-read-more .icon-arrow-right {
  color: #E82D3E;
  opacity: 1;
  transition: all 0.2s linear;
  transform: translateX(20px);
}
.recruitment-popup .ui-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
}
.recruitment-popup .ui-popup-header .header-left {
  width: calc(100% - 140px);
}
.recruitment-popup .ui-popup-header .header-left .header-title {
  font-size: 24px;
  color: #000;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
.recruitment-popup .ui-popup-header .header-left .header-sub {
  display: flex;
  align-items: center;
}
.recruitment-popup .ui-popup-header .header-left .header-sub .flag {
  margin-right: 3px;
}
.recruitment-popup .ui-popup-header .header-left .header-sub .text {
  font-size: 16px;
  color: #666;
  line-height: 16px;
}
.recruitment-popup .ui-popup-header .header-left .header-sub .v-line {
  width: 1px;
  height: 16px;
  background-color: #666;
  margin: 0 5px;
}
.recruitment-popup .content-sort .sort-title {
  font-size: 20px;
  line-height: 20px;
  color: #000;
  margin-bottom: 10px;
}
.recruitment-popup .content-sort .sort-desc {
  margin-bottom: 30px;
}
.recruitment-popup .content-sort .sort-need,
.recruitment-popup .content-sort .sort-desc {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  line-height: 28px;
}
.recruitment-popup.visible {
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
}
.recruitment-popup.hidden {
  transition: 0.5s;
  animation: maskHidden 0.5s;
  visibility: hidden;
}
/*# sourceMappingURL=index.css.map */