/* 共用banner */
.common-banner {
  display: block;
  position: relative;
  /* 切换的tab */
}
.common-banner .pic img {
  display: block;
  width: 100%;
  height: auto;
}
.common-banner .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(344 / 895 * 100%);
}
.common-banner .text .title {
  font-weight: bold;
  font-size: var(--font60);
  color: #ffffff;
  line-height: 1;
}
.common-banner .text .sub-title {
  font-weight: 400;
  font-size: var(--font23);
  color: rgba(255, 255, 255, 0.38);
  line-height: 1;
  margin-top: 15px;
}
.common-banner .tab-list {
  display: flex;
  margin-top: 1.29rem;
}
.common-banner .tab-list .tab {
  background: #ffffff;
  border-radius: 25px;
  font-weight: 400;
  font-size: var(--font18);
  color: #515151;
  white-space: nowrap;
  width: fit-content;
  padding: 13px max(0.2rem, 15px);
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--duration);
  flex-shrink: 0;
}
.common-banner .tab-list .tab:not(:last-child) {
  margin-right: max(0.2rem, 15px);
}
.common-banner .tab-list .tab::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #f5aa00;
  z-index: -1;
  transition: var(--duration);
}
.common-banner .tab-list .tab.active,
.common-banner .tab-list .tab:hover {
  color: #fff;
}
.common-banner .tab-list .tab.active::after,
.common-banner .tab-list .tab:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
/* 共用分页器 */
.common-pagination {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 90%;
}
.common-pagination .prev {
  margin-right: max(15px, 0.39rem);
}
.common-pagination .next {
  margin-left: max(15px, 0.39rem);
}
.common-pagination .custom {
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  user-select: none;
  cursor: pointer;
  border-radius: 18px;
  border: 1px solid #dddddd;
  transition: var(--duration);
  padding: 9px max(15px, 0.31rem);
  line-height: 1;
  white-space: nowrap;
}
.common-pagination .custom:hover {
  background-color: #0557a3;
  color: #fff;
}
.common-pagination .item {
  padding: 9px 12px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 50%;
  font-weight: 400;
  font-size: var(--font16);
  color: #cdcdcd;
  margin-right: 8px;
}
.common-pagination .item:last-of-type {
  margin-right: 0;
}
.common-pagination .item.active,
.common-pagination .item:hover {
  background-color: #f5aa00;
  color: #fff;
  transition: var(--duration);
}
.about-page {
  overflow: hidden;
}
.about-page .about-bg {
  background-color: rgba(245, 248, 255, 0.85);
}
/* 关于我们-简介模块 */
.about-desc {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: max(var(--space), 2.5rem);
  background-color: transparent;
}
.about-desc .desc-wrap {
  max-width: 1261px;
}
.about-desc .title-area {
  text-align: center;
  margin-top: 10px;
}
.about-desc .title-area .title {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  line-height: 1;
}
.about-desc .title-area .sub-title {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
  margin-top: 13px;
  line-height: 1;
}
.about-desc .desc-text {
  margin-top: 0.95rem;
}
.about-desc .desc-text p {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.32rem;
}
.about-desc .desc-text p:last-child {
  margin-bottom: 0;
}
/* 8-13 修改 */
.about-desc .count-list {
  margin-top: max(30px, 0.82rem);
  max-width: 1047px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* column-gap: 2.1rem; */
  column-gap: 1.85rem;
}
.about-desc .count-list .count-item {
  position: relative;
  --point-width: 12px;
}

/* 2025-10-30 修改 */
.about-desc .count-list .count-item .circle {
  display: block;
  width: 100%;
  display: none;
}
.about-desc .count-list .count-item .text-site {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.about-desc .count-list .count-item .text-site .year {
  font-weight: bold;
  color: #f5aa00;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: var(--font54);
}
.about-desc .count-list .count-item .text-site .year span {
  display: flex;
  align-items: flex-end;
}
.about-desc .count-list .count-item .text-site .year sub {
  font-size: var(--font24);
}
.about-desc .count-list .count-item .text-site .text {
  font-weight: 400;
  font-size: var(--font20);
  color: #111111;
  text-align: center;
  margin-top: 10px;
}
/* 2025-10-30 修改 */
.about-desc .count-list .count-item .point {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  animation: rotateAbout 10s linear infinite;
  display: none;
}
.about-desc .count-list .count-item .point::before {
  content: "";
  position: absolute;
  top: -4.5px;
  left: 0;
  right: 0;
  margin: auto;
  width: var(--point-width);
  height: var(--point-width);
  background: #f5aa00;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .about-desc .count-list {
    width: 100%;
  }
}
/* 关于我们-企业文化 */
.about-culture {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
}
.about-culture .title-area {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: max(30px, 0.88rem);
}
.about-culture .title-area .title {
  font-weight: bold;
  font-size: var(--font48);
  color: #ffffff;
}
.about-culture .title-area .sub-title {
  font-weight: bold;
  font-size: var(--font30);
  color: rgba(231, 231, 231, 0.3);
}
.about-culture .culture-list {
  display: flex;
}
.about-culture .culture-list .item {
  width: 25%;
  flex-shrink: 0;
  padding-top: max(140px, 3.2rem);
  padding-bottom: max(2.2rem, 45px);
  background-color: rgba(3, 22, 54, 0.8);
  padding-left: 15px;
  padding-right: 15px;
  overflow-wrap: break-word;
  transition: 0.6s ease;
}
.about-culture .culture-list .item .icon {
  width: max(1.27rem, 90px);
  height: max(1.27rem, 90px);
  border-radius: 50%;
  border: 1px solid rgba(233, 233, 233, 0.34);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.33rem;
  margin-left: auto;
  margin-right: auto;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.about-culture .culture-list .item .icon img {
  display: block;
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.6;
  transition: var(--duration);
}
.about-culture .culture-list .item .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: #e5b433;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  transition: 0.6s ease;
}
.about-culture .culture-list .item .text {
  text-align: center;
}
.about-culture .culture-list .item .text .title-zh {
  font-weight: 400;
  font-size: var(--font30);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--duration);
}
.about-culture .culture-list .item .text .title-en {
  font-weight: 400;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--duration);
}
.about-culture .culture-list .item .text .desc {
  margin-top: max(15px, 0.4rem);
  font-weight: 400;
  font-size: var(--font20);
  color: rgba(245, 170, 0, 0.9);
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: var(--duration);
}
.about-culture .culture-list .item:hover {
  background: rgba(4, 53, 128, 0.55);
}
.about-culture .culture-list .item:hover .icon {
  border-color: transparent;
}
.about-culture .culture-list .item:hover .icon::after {
  width: 100%;
  height: 100%;
}
.about-culture .culture-list .item:hover .icon img {
  opacity: 1;
}
.about-culture .culture-list .item:hover .text .title-zh {
  color: #ffffff;
}
.about-culture .culture-list .item:hover .text .desc {
  opacity: 1;
}
/* 关于我们-企业风采 */
.about-style {
  padding-top: max(1.06rem, 45px);
  padding-bottom: max(1.27rem, 45px);
}
.about-style .title-area {
  text-align: center;
  white-space: nowrap;
  margin-bottom: max(30px, 0.8rem);
}
.about-style .title-area .title-zh {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  line-height: 1;
  margin-bottom: 12px;
}
.about-style .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: rgba(231, 231, 231, 0.6);
  line-height: 1;
}
.about-style .about-style-swiper {
  max-width: 1270px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .about-style .about-style-swiper {
    display: none;
  }
}
.about-style .about-style-swiper .swiper-slide {
  margin-bottom: max(35px, 0.71rem);
}
.about-style .about-style-swiper .swiper-slide .line {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item {
  width: 48.81889764%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
  margin-bottom: max(0.3rem, 20px);
  border: none !important;
  outline: none !important;
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item .pic {
  display: block;
  width: 100%;
  position: relative;
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 72.58064516%;
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item .pic:hover img {
  transform: scale(1.05);
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration, 0.45s);
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item .text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 9.32%;
  width: 100%;
  font-family: HarmonyOS Sans SC;
  font-weight: 400;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.45;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding: 0 max(15px, 0.3rem);
}
.about-style .about-style-swiper .swiper-slide .line1 .line1-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  height: 45%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item {
  width: 31.73228346%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item .pic {
  position: relative;
  cursor: pointer;
  user-select: none;
  border: none !important;
  outline: none !important;
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item .pic:hover img {
  transform: scale(1.05);
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration, 0.45s);
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item .pic::after {
  content: "";
  display: block;
  padding-bottom: 72.70471464%;
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item .text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 9.32%;
  width: 100%;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  line-height: 1.45;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  padding: 0 max(10px, 0.3rem);
}
.about-style .about-style-swiper .swiper-slide .line2 .line2-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  height: 45%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}
.about-style .about-style-swiper .style-pagination-line {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-style .about-style-swiper .style-pagination-line .arrow {
  user-select: none;
  cursor: pointer;
}
.about-style .about-style-swiper .style-pagination-line .arrow .hover {
  display: none;
}
.about-style .about-style-swiper .style-pagination-line .arrow .default {
  display: block;
}
.about-style .about-style-swiper .style-pagination-line .arrow:hover .default {
  display: none;
}
.about-style .about-style-swiper .style-pagination-line .arrow:hover .hover {
  display: block;
}
.about-style .about-style-swiper .style-pagination-line .about-style-pagination {
  position: initial;
  width: fit-content;
  margin-left: max(30px, 0.53rem);
  margin-right: max(0.53rem, 30px);
}
.about-style .about-style-swiper .style-pagination-line .about-style-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cccccc;
  border-radius: 50%;
  opacity: 1;
  margin-left: 0;
  margin-right: max(10px, 0.2rem);
}
.about-style .about-style-swiper .style-pagination-line .about-style-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.about-style .about-style-swiper .style-pagination-line .about-style-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #326af1;
}
/* 关于我们-招贤纳新 */
.about-hire {
  background-repeat: no-repeat;
  background-size: 76% auto;
  background-position: center -7%;
  padding-bottom: max(45px, 1.8rem);
}
.about-hire .about-hire-wrap {
  width: 84%;
  display: block;
  margin: 0 auto;
  max-width: 1250px;
}
@media (max-width: 768px) {
  .about-hire .about-hire-wrap {
    width: 92%;
  }
}
.about-hire .title-area {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 995px;
}
.about-hire .title-area .title {
  font-weight: bold;
  font-size: var(--font36);
  color: #0557a3;
  line-height: 1;
  text-align: center;
  margin-bottom: 12px;
}
.about-hire .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: rgba(231, 231, 231, 0.6);
  line-height: 1;
  text-align: center;
}
.about-hire .title-area .hire-desc {
  margin-top: max(0.3rem, 15px);
  font-weight: 300;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.875;
  text-align: center;
}
.about-hire .hire-list {
  width: 100%;
  margin-top: max(0.75rem, 30px);
}
.about-hire .hire-list .hire-head {
  display: flex;
  align-items: center;
  background: #0557a3;
  border-radius: max(0.2rem, 10px);
}
.about-hire .hire-list .hire-head .item {
  flex: 1;
  font-weight: bold;
  font-size: var(--font18);
  color: #ffffff;
  padding-top: max(0.28rem, 15px);
  padding-bottom: max(0.28rem, 15px);
  text-align: center;
}
.about-hire .hire-list .hire-main .hire-item {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  user-select: none;
  cursor: pointer;
  transition: 0.6s ease;
}
.about-hire .hire-list .hire-main .hire-item .item-text {
  font-weight: 400;
  font-size: var(--font16);
  color: #999999;
  flex: 1;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  padding-top: max(15px, 0.31rem);
  padding-bottom: max(15px, 0.3rem);
  transition: var(--duration);
}
.about-hire .hire-list .hire-main .hire-item .item-text.text1 {
  font-weight: 500;
  color: #000000;
}
.about-hire .hire-list .hire-main .hire-item .item-text.text2 {
  color: #2e65cb;
}
/* 关于我们-地址信息 */
.about-site {
  display: flex;
  background-color: #f8f8f8;
  overflow: hidden;
}
.about-site .map {
  width: 50%;
  flex-shrink: 0;
}
.about-site .map .about-map {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .about-site .map .about-map img {
    width: 32px;
    height: auto;
    object-fit: contain;
  }
}
.about-site .right {
  width: 50%;
  flex-shrink: 0;
  padding-top: max(30px, 1.34rem);
  padding-bottom: max(30px, 1.45rem);
  padding-left: 1.74rem;
  padding-right: 2.94rem;
}
.about-site .right .list {
  width: 100%;
  display: block;
}
.about-site .right .list .item {
  user-select: none;
  cursor: pointer;
}
.about-site .right .list .item:not(:last-child) {
  margin-bottom: max(20px, 0.39rem);
}
.about-site .right .list .item .site {
  font-weight: bold;
  font-size: var(--font20);
  color: #000000;
  margin-bottom: 10px;
  line-height: 1;
  white-space: nowrap;
}
.about-site .right .list .item .info {
  font-weight: 400;
  font-size: var(--font18);
  color: #000000;
  line-height: 2;
  padding-bottom: max(10px, 0.23rem);
  border-bottom: 1px solid #e9e9e9;
}
/* 关于我们-公司信息 ，瑞安优势页面模块共用*/
.about-company-info {
  position: relative;
  z-index: 10;
}
.about-company-info .company-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: max(30px, 0.61rem);
  transform: translateX(-50%);
}
.about-company-info .company-wrap .about-logo {
  width: max(2.27rem, 130px);
  margin-right: 0.94rem;
}
.about-company-info .company-wrap .about-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
.about-company-info .company-wrap .about-list {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.about-company-info .company-wrap .about-list .item {
  margin-right: 1.34rem;
}
.about-company-info .company-wrap .about-list .item:last-child {
  margin-right: 0;
}
.about-company-info .company-wrap .about-list .item .title {
  font-weight: bold;
  font-size: var(--font20);
  color: #0557a3;
  margin-bottom: 0.2rem;
}
.about-company-info .company-wrap .about-list .item .description {
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
}
.about-company-info .company-wrap .qrcode {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.about-company-info .company-wrap .qrcode .item {
  margin-right: max(0.3rem, 15px);
}
.about-company-info .company-wrap .qrcode .item:last-child {
  margin-right: 0;
}
.about-company-info .company-wrap .qrcode .item .pic {
  width: 80px;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.about-company-info .company-wrap .qrcode .item .pic img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.about-company-info .company-wrap .qrcode .item .text {
  font-weight: 400;
  font-size: var(--font14);
  color: #0557a3;
  margin-top: 12px;
  text-align: center;
}
.about-company-info .company-pic img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}
/* 招聘信息弹窗,共用 */
.common-job-info-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.common-job-info-mask .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-job-info-mask .job-panel {
  width: 90%;
  max-width: 1400px;
}
.common-job-info-mask .job-panel .panel-close {
  margin-left: auto;
  width: fit-content;
  user-select: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.common-job-info-mask .job-panel .panel-close img {
  transition: var(--duration);
}
.common-job-info-mask .job-panel .panel-close:hover {
  background-color: var(--active-color);
}
.common-job-info-mask .job-panel .panel-close:hover img {
  filter: brightness(0) invert(1);
}
.common-job-info-mask .job-panel .panel-main {
  width: 96.572%;
  margin-top: 8px;
  background-color: #ffffff;
  height: 76vh;
  max-height: 810px;
  overflow-y: auto;
  padding-left: max(20px, 0.49rem);
  padding-right: max(20px, 0.57rem);
  padding-bottom: max(0.81rem, 30px);
}
.common-job-info-mask .job-panel .panel-main::-webkit-scrollbar {
  background: #f4f4f4;
  border-radius: 5px;
  width: max(0.1rem, 6px);
}
.common-job-info-mask .job-panel .panel-main::-webkit-scrollbar-thumb {
  background: var(--active-color);
  border-radius: 5px;
  width: max(0.1rem, 6px);
}
.common-job-info-mask .job-panel .panel-main .panel-top {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: max(0.39rem, 20px);
  position: sticky;
  top: 0;
  background-color: #fff;
  padding-top: max(0.42rem, 20px);
}
.common-job-info-mask .job-panel .panel-main .panel-top .job-name {
  font-weight: bold;
  font-size: var(--font26);
  color: #2e65cb;
  line-height: 1.15384615;
  margin-bottom: max(10px, 0.15rem);
}
.common-job-info-mask .job-panel .panel-main .panel-top .job-info-list {
  display: flex;
  align-items: center;
  padding-bottom: max(10px, 0.2rem);
  border-bottom: 1px solid #eeeeee;
}
.common-job-info-mask .job-panel .panel-main .panel-top .job-info-list .job-text {
  font-weight: 400;
  font-size: var(--font16);
  color: #a1a4aa;
  line-height: 1.875;
  margin-right: max(10px, 0.2rem);
}
/* 员工风采弹窗 */
.common-style-info-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.common-style-info-mask .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-style-info-mask .style-panel {
  width: 90%;
  max-width: 1400px;
}
.common-style-info-mask .style-panel .panel-close {
  margin-left: auto;
  width: fit-content;
  user-select: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.common-style-info-mask .style-panel .panel-close img {
  transition: var(--duration);
}
.common-style-info-mask .style-panel .panel-close:hover {
  background-color: var(--active-color);
}
.common-style-info-mask .style-panel .panel-close:hover img {
  filter: brightness(0) invert(1);
}
.common-style-info-mask .style-panel .panel-main {
  width: 96.572%;
  margin-top: 8px;
  background-color: #ffffff;
  height: 76vh;
  max-height: 810px;
  overflow-y: auto;
  padding-left: max(20px, 0.49rem);
  padding-right: max(20px, 0.57rem);
  padding-top: max(0.6rem, 30px);
  padding-bottom: max(0.6rem, 30px);
  /* 限制图文显示 */
}
.common-style-info-mask .style-panel .panel-main::-webkit-scrollbar {
  background: #f4f4f4;
  border-radius: 5px;
  width: max(0.1rem, 6px);
}
.common-style-info-mask .style-panel .panel-main::-webkit-scrollbar-thumb {
  background: var(--active-color);
  border-radius: 5px;
  width: max(0.1rem, 6px);
}
.common-style-info-mask .style-panel .panel-main p,
.common-style-info-mask .style-panel .panel-main span,
.common-style-info-mask .style-panel .panel-main a,
.common-style-info-mask .style-panel .panel-main div,
.common-style-info-mask .style-panel .panel-main li,
.common-style-info-mask .style-panel .panel-main * {
  max-width: 100%;
  overflow-wrap: break-word;
}
.common-style-info-mask .style-panel .panel-main img,
.common-style-info-mask .style-panel .panel-main video {
  max-width: 100%;
  vertical-align: top;
}
.case-page {
  background-color: var(--n-page-color);
  padding-bottom: max(1.09rem, var(--space));
}
/* 合作案例列表 */
.case-list-area {
  margin-top: 40px;
}
.case-list-area .case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px max(15px, 0.37rem);
  margin-bottom: max(30px, 0.88rem);
}
.case-list-area .case-list .item {
  overflow: hidden;
  transition: var(--duration);
}
.case-list-area .case-list .item .pic {
  padding-bottom: 58.94736842%;
  position: relative;
  overflow: hidden;
}
.case-list-area .case-list .item .pic:hover img {
  transform: scale(1.05);
}
.case-list-area .case-list .item .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration, 0.45s);
}
.case-list-area .case-list .item .text {
  padding-top: max(15px, 0.35rem);
  padding-left: max(15px, 0.24rem);
  padding-right: max(15px, 0.24rem);
  padding-bottom: max(15px, 0.25rem);
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
}
.case-list-area .case-list .item .text .title {
  font-weight: 400;
  font-size: var(--font22);
  color: #000000;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.case-list-area .case-list .item .text .time {
  display: flex;
  align-items: center;
  margin-top: max(0.24rem, 15px);
}
.case-list-area .case-list .item .text .time .icon {
  display: flex;
  align-items: center;
}
.case-list-area .case-list .item .text .time .time-text {
  font-weight: 400;
  font-size: var(--font16);
  color: #9d9c9c;
  margin-left: 8px;
  transition: var(--duration);
}
.case-list-area .case-list .item .text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--active-color);
  z-index: -1;
  transition: var(--duration);
}
.case-list-area .case-list .item:hover {
  background-color: var(--active-color);
}
.case-list-area .case-list .item:hover .pic img {
  transform: scale(1.05);
}
.case-list-area .case-list .item:hover .text::after {
  height: 100%;
  top: 0;
  bottom: auto;
}
.case-list-area .case-list .item:hover .text .title {
  color: #fff;
}
.case-list-area .case-list .item:hover .text .time .icon img {
  filter: brightness(0) invert(1);
}
.case-list-area .case-list .item:hover .text .time .time-text {
  color: #fff;
}
/* 合作案例详情页面 */
.case-detail-page {
  background-color: var(--n-page-color);
  padding-bottom: max(1.43rem, var(--space));
}
.case-detail-article {
  max-width: 1300px;
  width: 82%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-size: var(--font16);
  line-height: 1.5;
  color: #000000;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .case-detail-article {
    width: 92%;
  }
}
.case-detail-article .article-title {
  font-weight: bold;
  font-size: var(--font36);
  color: #000000;
  text-align: center;
  overflow-wrap: break-word;
  padding-bottom: 0.77rem;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: max(30px, 0.75rem);
}
.case-detail-article .article-main {
  width: 90%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.case-detail-article .article-main p,
.case-detail-article .article-main span,
.case-detail-article .article-main a,
.case-detail-article .article-main div,
.case-detail-article .article-main * {
  max-width: 100%;
  height: auto;
}
.case-detail-article .article-main img,
.case-detail-article .article-main video {
  vertical-align: top;
}
.case-detail-article .article-main .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.service-page {
  overflow: hidden;
}
.service-page .section-list {
  position: relative;
  z-index: 2;
}
.service-page .section-list .page-section-pic {
  position: absolute;
  right: 0;
  top: -1.26rem;
  width: max(0.95rem, 60px);
}
.service-page .section-list .page-section-pic img {
  display: block;
  max-width: 100%;
  height: auto;
}
.service-page .service-section .section-wrap {
  display: flex;
  align-items: center;
  max-width: 1370px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .service-page .service-section .section-wrap {
    width: 92%;
  }
}
.service-page .service-section .section-wrap .pic {
  width: 43.94160584%;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px dashed #e5e5e5;
  position: relative;
}
.service-page .service-section .section-wrap .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.service-page .service-section .section-wrap .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}
.service-page .service-section .section-wrap .other {
  flex: 1;
  min-width: 0;
}
.service-page .service-section .section-wrap .other .panel {
  /* max-width: 487px; */
  /* width: 90%; */
  background: #edf2fc;
  border-radius: 10px;
  font-weight: 400;
  font-size: var(--font18);
  color: #3b94ff;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: max(10px, 0.24rem);
  padding-right: max(10px, 0.24rem);
}
.service-page .service-section .section-wrap .other .title-line {
  margin-top: max(0.38rem, 15px);
  display: flex;
  align-items: center;
}
.service-page .service-section .section-wrap .other .title-line .index {
  width: 47px;
  height: 47px;
  background: #f9b71f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-weight: 500;
  font-size: var(--font30);
  color: #ffffff;
  line-height: 1;
}
.service-page .service-section .section-wrap .other .title-line .title-text {
  font-weight: 500;
  font-size: var(--font36);
  color: #000000;
  line-height: 1;
}
.service-page .service-section .section-wrap .other .description {
  font-weight: 400;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.77777778;
  margin-top: max(0.17rem, 15px);
  margin-bottom: max(0.4rem, 15px);
}
.service-page .service-section .section-wrap .other .link-btn {
  width: 110px;
  height: 37px;
  background: linear-gradient(74deg, #4480ef 0%, #2c63c8 100%);
  border-radius: 19px;
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-page .section-type1 {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  margin-top: 0.6rem;
  padding-bottom: max(30px, 1.25rem);
  position: relative;
  z-index: 2;
}
.service-page .section-type1 .pic {
  margin-right: 1.84rem;
}
.service-page .section-type1 .modify-pic {
  position: absolute;
  left: 0;
  top: 2%;
  z-index: -1;
  pointer-events: none;
}
.service-page .section-type2 {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  padding-top: max(35px, 1.51rem);
  padding-bottom: max(35px, 3.3rem);
  position: relative;
  z-index: 2;
}
.service-page .section-type2:last-of-type::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-color: #f5f8ff;
  pointer-events: none;
}
.service-page .section-type2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  background-image: url(../images/service-section-color.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.service-page .section-type2 .pic {
  margin-left: 1.6rem;
}
.service-page .section-type2 .modify-pic {
  position: absolute;
  right: 0;
  top: 2%;
  z-index: -1;
  pointer-events: none;
}
.service-detail-page {
  background-color: var(--n-page-color);
  padding-bottom: max(1.35rem, var(--space));
}
.service-detail-page .text-box {
  margin-bottom: 0.95rem;
}
.service-detail-page .text-box .title {
  color: #0557a3;
  font-size: var(--font48);
  font-weight: bold;
  text-align: center;
}
.service-detail-page .text-box .sub-title {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
  line-height: 1.4;
  margin-bottom: 0.36rem;
  text-align: center;
}
.service-detail-page .text-box .desc {
  font-weight: 400;
  font-size: var(--font16);
  color: #666666;
  line-height: 2.625;
  text-align: center;
}
.service-detail-page .article-main p,
.service-detail-page .article-main span,
.service-detail-page .article-main a,
.service-detail-page .article-main div,
.service-detail-page .article-main * {
  max-width: 100%;
  overflow-wrap: break-word;
}
.service-detail-page .article-main img,
.service-detail-page .article-main video {
  max-width: 100%;
  vertical-align: top;
}
.service-detail-page .article-main .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.service-detail-page .group-type1 {
  margin-bottom: max(0.97rem, 35px);
}
.service-detail-page .group-type1:last-of-type {
  margin-bottom: 0;
}
.service-detail-page .group-type1 .group-title {
  font-weight: bold;
  font-size: var(--font32);
  color: #0557a3;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: max(25px, 0.56rem);
}
.service-detail-page .group-type1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(30px, 0.45rem) max(15px, 0.45rem);
}
.service-detail-page .group-type1 .list .item {
  overflow: hidden;
  padding-top: max(20px, 0.29rem);
  padding-bottom: max(20px, 0.29rem);
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  user-select: none;
  overflow-wrap: break-word;
  background: url(../images/service-detail-item.png) no-repeat center center / cover;
}
.service-detail-page .group-type1 .list .item .i-title {
  font-weight: 400;
  font-size: var(--font20);
  color: #333333;
  line-height: 2.1;
  text-align: center;
}
.service-detail-page .group-type1 .list .item .i-title-en {
  font-weight: 400;
  font-size: var(--font16);
  color: #999999;
  line-height: 1.45;
  text-align: center;
  margin-top: 5px;
}
.service-detail-page .group-type2 {
  margin-top: max(45px, 1.21rem);
  overflow: hidden;
}
.service-detail-page .group-type2 .group-title {
  font-weight: bold;
  font-size: var(--font30);
  color: #0557a3;
  text-align: center;
  line-height: 1.4;
  margin-bottom: max(25px, 0.65rem);
}
.service-detail-page .group-type2 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px max(20px, 0.6rem);
}
.service-detail-page .group-type2 .list .item {
  overflow: hidden;
  overflow-wrap: break-word;
  background: url(../images/service-detail-item.png) no-repeat center center / cover;
  padding-top: max(20px, 0.34rem);
  padding-bottom: max(20px, 0.34rem);
  padding-right: max(0.28rem, 15px);
  --left: max(36px, 0.46rem);
  min-height: 2.5rem;
}
.service-detail-page .group-type2 .list .item .i-title {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 2.1;
  margin-bottom: max(0.12rem, 10px);
  position: relative;
  padding-left: var(--left);
}
.service-detail-page .group-type2 .list .item .i-title::before {
  content: "";
  position: absolute;
  left: max(0.21rem, 15px);
  top: 0.8em;
  width: 10px;
  height: 10px;
  background: #0557a3;
  border-radius: 50%;
}
.service-detail-page .group-type2 .list .item .i-desc {
  font-size: var(--font16);
  color: #666666;
  line-height: 2;
  padding-left: var(--left);
}
/* 新闻列表 */
.news-list-page {
  background-color: var(--n-page-color);
  padding-bottom: max(1rem, var(--space));
  overflow: hidden;
}
.news-list-page .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: max(0.7rem, 35px);
  margin-bottom: 0.34rem;
}
.news-list-page .news-list .item {
  width: 48.66666667%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  padding-left: max(0.3rem, 15px);
  padding-right: max(0.26rem, 15px);
  padding-top: max(0.31rem, 20px);
  padding-bottom: max(0.34rem, 20px);
  margin-bottom: max(0.4rem, 30px);
}
.news-list-page .news-list .item:hover .other .title {
  color: #1562a9;
}
.news-list-page .news-list .item:hover .other .info-line .btn {
  color: #ffffff;
}
.news-list-page .news-list .item:hover .other .info-line .btn::after {
  width: 100%;
  right: auto;
  left: 0;
}
.news-list-page .news-list .item .pic {
  width: 34.32835821%;
  flex-shrink: 0;
  position: relative;
  margin-right: max(0.3rem, 15px);
  overflow: hidden;
}
.news-list-page .news-list .item .pic:hover img {
  transform: scale(1.05);
}
.news-list-page .news-list .item .pic::before {
  content: "";
  display: block;
  padding-bottom: 84.7826087%;
}
.news-list-page .news-list .item .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--duration);
}
.news-list-page .news-list .item .other {
  flex: 1;
  min-width: 0;
}
.news-list-page .news-list .item .other .title {
  font-weight: 400;
  font-size: var(--font22);
  color: #000000;
  line-height: 1.36363636;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: 8px;
  height: calc(var(--font22) * (30 / 22) * 2);
  transition: 0.6s ease;
}
.news-list-page .news-list .item .other .desc {
  font-weight: 400;
  font-size: var(--font16);
  color: #999999;
  line-height: 1.875;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  margin-top: 10px;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: max(0.17rem, 10px);
}
.news-list-page .news-list .item .other .info-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-list-page .news-list .item .other .info-line .btn {
  width: 101px;
  height: 34px;
  background: #ededed;
  border-radius: 17px;
  font-weight: 400;
  font-size: var(--font14);
  color: #888888;
  line-height: 1;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--duration);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.news-list-page .news-list .item .other .info-line .btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #1562a9;
  transition: var(--duration);
  z-index: -1;
}
.news-list-page .news-list .item .other .info-line .time {
  font-weight: 400;
  font-size: var(--font16);
  color: #cdcdcd;
}
/* 新闻咨询 */
.news-detail-page {
  padding-bottom: max(0.72rem, 45px);
}
.news-detail-page .news-detail-wrap {
  margin-top: 0.4rem;
  max-width: 1300px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
  /* 文章录入区域 */
}
@media (max-width: 768px) {
  .news-detail-page .news-detail-wrap {
    width: 92%;
  }
}
.news-detail-page .news-detail-wrap .article-title {
  font-weight: bold;
  font-size: var(--font36);
  color: #000000;
  text-align: center;
}
.news-detail-page .news-detail-wrap .article-info-line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.35rem;
  padding-bottom: max(15px, 0.23rem);
  border-bottom: 1px solid #e9e9e9;
}
.news-detail-page .news-detail-wrap .article-info-line .article-info {
  font-weight: 300;
  font-size: var(--font16);
  color: #888888;
}
.news-detail-page .news-detail-wrap .article-info-line .article-info:not(:last-child) {
  margin-right: 2.2rem;
}
.news-detail-page .news-detail-wrap .main {
  padding-top: max(20px, 0.5rem);
  padding-bottom: max(30px, 0.7rem);
  border-bottom: 1px solid #e9e9e9;
}
.news-detail-page .news-detail-wrap .main p,
.news-detail-page .news-detail-wrap .main span,
.news-detail-page .news-detail-wrap .main a,
.news-detail-page .news-detail-wrap .main div,
.news-detail-page .news-detail-wrap .main * {
  max-width: 100%;
  overflow-wrap: break-word;
}
.news-detail-page .news-detail-wrap .main img,
.news-detail-page .news-detail-wrap .main video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.news-detail-page .news-detail-wrap .main .table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
.recommend-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.48rem;
}
.recommend-area .left {
  flex: 1;
  min-width: 0;
  margin-right: max(45px, 1.4rem);
}
.recommend-area .left .item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font16);
  line-height: 2.25;
  width: 100%;
}
.recommend-area .left .item .text {
  color: #111111;
}
.recommend-area .left .item .link {
  color: #005bac;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.recommend-area .right {
  white-space: nowrap;
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.recommend-area .right .return {
  display: flex;
  align-items: center;
}
.recommend-area .right span {
  font-weight: 400;
  font-size: var(--font18);
  color: #0a57a6;
  margin-left: max(10px, 0.17rem);
}
/* 瑞安优势 */
.advantage-page {
  overflow: hidden;
}

/* 2025-9-26 修改 */
.advantage-ensure {
  position: relative;
  padding-bottom: max(1.4rem, var(--space));
}
.advantage-ensure .modify-pic {
  position: absolute;
  right: 0;
  top: -1.15rem;
}
.advantage-ensure .modify-pic img {
  width: max(0.95rem, 60px);
}
.advantage-ensure .title-area {
  margin-top: 0.35rem;
  margin-bottom: 1.53rem;
}
.advantage-ensure .title-area .title {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  text-align: center;
}
.advantage-ensure .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
  text-align: center;
}
.advantage-ensure .ensure-list {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* 2025-9-26 修改 */
.advantage-ensure .ensure-list .ensure-item {
  overflow: hidden;
}
.advantage-ensure .ensure-list .ensure-item .pic {
  width: 48.18181818%;
  position: relative;
  z-index: 2;
}
.advantage-ensure .ensure-list .ensure-item .pic img {
  display: block;
  max-width: 100%;
  height: auto;
}
.advantage-ensure .ensure-list .ensure-item .pic .mask {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 82%;
  height: calc(100% + 1.15rem);
  background: #ffffff;
  box-shadow: 0px 0px 38px 2px rgba(0, 0, 0, 0.05);
}
.advantage-ensure .ensure-list .ensure-item .text {
  padding-top: 0.7rem;
}
.advantage-ensure .ensure-list .ensure-item .text .t-title {
  font-weight: bold;
  font-size: var(--font22);
  color: #0557a3;
  line-height: 1.63636364;
  margin-bottom: max(0.23rem, 10px);
}
.advantage-ensure .ensure-list .ensure-item .text .t-list .text-item {
  font-weight: 400;
  font-size: var(--font18);
  color: #666666;
  line-height: 2;
}

.advantage-ensure .ensure-list .ensure-item {
  flex-shrink: 0;
  margin-bottom: 0 !important;
}
.advantage-ensure .ensure-list .ensure-item1 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  /* margin-bottom: 2.2rem; */
}
.advantage-ensure .ensure-list .ensure-item1 .pic {
  margin-right: max(30px, 1.27rem);
}
.advantage-ensure .ensure-list .ensure-item1 .pic img {
  margin-left: auto;
}
.advantage-ensure .ensure-list .ensure-item1 .pic .mask {
  left: 0;
}
.advantage-ensure .ensure-list .ensure-item2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2.38rem;
}
.advantage-ensure .ensure-list .ensure-item2 .pic {
  margin-left: max(30px, 2.29rem);
}
.advantage-ensure .ensure-list .ensure-item2 .pic .mask {
  right: 0;
}
/* 全国布局 */
.advantage-layout {
  background-color: #f5f8ff;
  padding-top: max(1.07rem, var(--space));
}
.advantage-layout .title-area {
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
}
.advantage-layout .title-area .title-zh {
  font-size: var(--font48);
  color: #0557a3;
  margin-bottom: 13px;
}
.advantage-layout .title-area .title-en {
  font-size: var(--font30);
  color: #e7e7e7;
}
.advantage-layout .title-area .desc {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  margin-top: 0.56rem;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.45;
}
.advantage-layout .layout-map {
  display: block;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.advantage-layout .layout-map::after {
  content: "";
  display: block;
  padding-bottom: 82.57425743%;
}
.advantage-layout .layout-map #layout-map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* 服务体系 */
.advantage-service {
  background-color: #f5f8ff;
  padding-top: max(1.94rem, var(--space));
  padding-bottom: max(1.82rem, var(--space));
}
.advantage-service .title-area .title {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  text-align: center;
  line-height: 1;
}
.advantage-service .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
  text-align: center;
  margin-top: 13px;
  line-height: 1;
}
.advantage-service .title-area .desc {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 2.33333333;
  text-align: center;
  overflow-wrap: break-word;
  margin-top: 0.42rem;
}
.advantage-service .service-list {
  margin-top: max(0.5rem, 30px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(30px, 0.5rem) max(20px, 0.5rem);
}
.advantage-service .service-list .item {
  background: #ffffff;
  padding-top: max(20px, 0.67rem);
  padding-bottom: max(20px, 0.5rem);
  padding-left: 10px;
  padding-right: 10px;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.advantage-service .service-list .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: url(../images/advantage-service-bg.png) no-repeat center / cover;
  transition: var(--duration);
  z-index: -1;
}
.advantage-service .service-list .item .icon {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.advantage-service .service-list .item .icon img {
  display: block;
  transition: var(--duration);
  height: max(35px, 0.7rem);
}
.advantage-service .service-list .item .item-text {
  margin-top: 0.42rem;
  text-align: center;
  overflow-wrap: break-word;
}
.advantage-service .service-list .item .item-text .title-zh {
  font-weight: bold;
  font-size: var(--font26);
  color: #0557a3;
  line-height: 1.38461538;
  transition: var(--duration);
}
.advantage-service .service-list .item .item-text .title-en {
  font-weight: 400;
  font-size: var(--font16);
  color: #b7c4d1;
  line-height: 1.625;
  transition: var(--duration);
}
.advantage-service .service-list .item:hover::after {
  top: 0;
  bottom: auto;
  height: 100%;
}
.advantage-service .service-list .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.advantage-service .service-list .item:hover .item-text .title-zh {
  color: #fff;
}
/* 高标准 */
.advantage-standard {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(1.19rem, var(--space));
  padding-bottom: max(1.11rem, var(--space));
}
.advantage-standard .standard-wrap .title-area {
  text-align: center;
}
.advantage-standard .standard-wrap .title-area .title-zh {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 12px;
}
.advantage-standard .standard-wrap .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
}
.advantage-standard .standard-wrap .desc-text {
  font-weight: 300;
  font-size: var(--font18);
  color: #666666;
  line-height: 2;
  margin-top: 0.85rem;
  text-align: center;
  margin-bottom: 0.8rem;
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide {
  user-select: none;
  cursor: pointer;
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide .pic {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide .pic:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 68.36158192%;
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide .pic img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 0.28rem);
  height: calc(100% - 0.24rem);
  object-fit: contain;
  object-position: center center;
  transition: var(--duration);
}
.advantage-standard .standard-swiper-container .standard-swiper .swiper-slide .text {
  font-weight: 400;
  font-size: var(--font20);
  color: #333333;
  margin-top: max(15px, 0.21rem);
  text-align: center;
}
.advantage-standard .standard-swiper-container .pagination-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: max(30px, 1.07rem);
}
.advantage-standard .standard-swiper-container .pagination-line .arrow {
  user-select: none;
  cursor: pointer;
}
.advantage-standard .standard-swiper-container .pagination-line .arrow .hover {
  display: none;
}
.advantage-standard .standard-swiper-container .pagination-line .arrow .default {
  display: block;
}
.advantage-standard .standard-swiper-container .pagination-line .arrow:hover .hover {
  display: block;
}
.advantage-standard .standard-swiper-container .pagination-line .arrow:hover .default {
  display: none;
}
.advantage-standard .standard-swiper-container .pagination-line .standard-pagination {
  position: static;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: max(20px, 0.53rem);
  margin-right: max(20px, 0.53rem);
}
.advantage-standard .standard-swiper-container .pagination-line .standard-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin-left: 0;
  margin-right: max(0.2rem, 10px);
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
}
.advantage-standard .standard-swiper-container .pagination-line .standard-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.advantage-standard .standard-swiper-container .pagination-line .standard-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #326af1;
}
/* it 优势 */
.advantage-it {
  background-color: #f5f8ff;
  padding-top: max(var(--space), 1.89rem);
  padding-bottom: max(var(--space), 1.7rem);
}
.advantage-it .advantage-it-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.advantage-it .advantage-it-wrap .left-area {
  width: 33.33333333%;
  flex-shrink: 0;
}
.advantage-it .advantage-it-wrap .left-area .title-area {
  margin-bottom: 0.93rem;
}
.advantage-it .advantage-it-wrap .left-area .title-area .title-zh {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
}
.advantage-it .advantage-it-wrap .left-area .title-area .title-en {
  font-weight: bold;
  font-size: var(--font30);
  color: #e7e7e7;
}
.advantage-it .advantage-it-wrap .left-area .text-list .text-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.advantage-it .advantage-it-wrap .left-area .text-list .text-item .zh {
  font-weight: 400;
  font-size: var(--font20);
  color: #000000;
  line-height: 1.8;
}
.advantage-it .advantage-it-wrap .left-area .text-list .text-item .en {
  font-size: var(--font18);
  color: #999999;
  font-weight: 400;
  line-height: 2;
}
.advantage-it .advantage-it-wrap .right-area {
  width: 57.33333333%;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantage-it .advantage-it-wrap .right-area .item {
  width: 48.8372093%;
  flex-shrink: 0;
  background-color: #fff;
  padding-top: max(20px, 0.4rem);
  padding-bottom: max(20px, 0.4rem);
  padding-left: max(20px, 0.49rem);
  padding-right: max(20px, 0.36rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.advantage-it .advantage-it-wrap .right-area .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-image: url(../images/advantage-service-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: var(--duration);
  z-index: -1;
}

.advantage-it .advantage-it-wrap .right-area .item:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.advantage-it .advantage-it-wrap .right-area .item:hover .text-content .text {
  color: #fff;
}

.advantage-it .advantage-it-wrap .right-area .item:hover .item-title {
  color: #fff;
}

.advantage-it .advantage-it-wrap .right-area .item:hover .text-content .text::before {
  background-color: #fff;
}

.advantage-it .advantage-it-wrap .right-area .item .item-title {
  font-weight: bold;
  font-size: var(--font20);
  color: #0557a3;
  line-height: 1.5;
  margin-bottom: 0.29rem;
  transition: var(--duration);
}
.advantage-it .advantage-it-wrap .right-area .item .text-content .text {
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
  list-style: none;
  position: relative;
  margin-bottom: 10px;
  transition: var(--duration);
}
.advantage-it .advantage-it-wrap .right-area .item .text-content .text:last-child {
  margin-bottom: 0;
}
.advantage-it .advantage-it-wrap .right-area .item .text-content .text::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: #0557a3;
  border-radius: 50%;
  transition: var(--duration);
}
/* 新添加右侧侧边栏 */
.common-aside-nav {
  position: fixed;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: calc(999 * 10);
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
  border-radius: 10px;
  transition: var(--duration);
}

/* 默认的隐藏状态 */
.common-aside-nav.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.common-aside-nav .content {
  padding: 20px 15px;
}

.common-aside-nav .common-aside-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 25px;
  height: 45px;
  background-color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}

.common-aside-nav .common-aside-toggle img {
  filter: brightness(0.7);
  transition: var(--duration);
}

.common-aside-nav .common-aside-toggle:hover {
  background-color: var(--theme);
}

.common-aside-nav .common-aside-toggle:hover img {
  filter: brightness(0) invert(1);
}

.common-aside-nav.hide {
  left: calc(-1 * var(--width));
}

.common-aside-nav.hide .common-aside-toggle img {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .common-aside-nav {
    display: none !important;
  }
}
.common-aside-nav .item {
  position: relative;
  font-size: var(--font16);
  color: #999;
  margin-top: max(0.2rem, 10px);
  cursor: pointer;
  user-select: none;
  transition: var(--duration);
  display: flex;
  align-items: center;
}
.common-aside-nav .item:first-child {
  margin-top: 0;
}
.common-aside-nav .item.active {
  color: var(--theme);
}
.common-aside-nav .item.active::before {
  background-color: var(--theme);
}
.common-aside-nav .item::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.45s ease;
  margin-right: 7px;
}
@keyframes rotateAbout {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 大于等于577的这个隐藏掉 */
@media (min-width: 577px) {
  .phone-style-swiper {
    display: none;
  }
}
@media (max-width: 1450px) {
  .common-banner .tab-list {
    margin-top: 0.7rem;
  }
}
@media (max-width: 1200px) {
  .service-detail-page .text-box .desc {
    max-width: none;
    line-height: 1.7;
  }
  .service-detail-page .group-type1 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .about-site {
    flex-wrap: wrap;
  }
  .about-site .map {
    width: 100%;
    min-height: 350px;
    height: 9rem;
  }
  .about-site .right {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
  }
  .about-company-info .company-wrap {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .about-company-info .company-wrap .about-logo {
    margin-bottom: 10px;
  }
  .about-company-info .company-wrap .about-list .item {
    margin-bottom: 10px;
  }
  .about-company-info .company-wrap .qrcode {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
  /* 合作案例 */
  .case-list-area .case-list {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 新闻列表 */
  .news-list-page .news-list .item {
    width: 100%;
  }
  /* 瑞安优势 */
  .advantage-ensure .ensure-list .ensure-item1 {
    flex-wrap: wrap;
  }
  .advantage-ensure .ensure-list .ensure-item1 .pic {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* 9-26 修改 */
  .advantage-ensure .ensure-list .ensure-item1 .pic img {
    margin-left: auto;
    margin-right: auto;
  }
  .advantage-ensure .ensure-list .ensure-item .text {
    padding-top: max(0.14rem, 60px);
    width: 100%;
    text-align: center;
  }
  .advantage-ensure .ensure-list .ensure-item2 {
    flex-wrap: wrap;
  }
  .advantage-ensure .ensure-list .ensure-item2 .pic {
    order: -1;
    width: 100%;
    margin-left: 0;
  }
  .advantage-service .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-it .advantage-it-wrap {
    flex-wrap: wrap;
  }
  .advantage-it .advantage-it-wrap .left-area {
    width: 100%;
  }
  .advantage-it .advantage-it-wrap .right-area {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .common-banner .pic img {
    min-height: 320px;
    object-fit: cover;
  }
  .common-banner .tab-list {
    overflow-x: auto;
  }
  .common-banner .tab-list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .about-desc .count-list {
    column-gap: 0.9rem;
  }
  /* 统一设置页面标题 */
  .about-desc .title-area .title,
  .about-culture .title-area .title,
  .about-style .title-area .title-zh,
  .about-hire .title-area .title,
  .advantage-service .title-area .title,
  .advantage-standard .standard-wrap .title-area .title-zh,
  .advantage-it .advantage-it-wrap .left-area .title-area .title-zh {
    font-size: var(--phone-title);
  }
  /* 统一设置页面副标题 */
  .about-desc .title-area .sub-title,
  .about-culture .title-area .sub-title,
  .about-style .title-area .title-en,
  .advantage-service .title-area .title-en,
  .advantage-standard .standard-wrap .title-area .title-en,
  .advantage-it .advantage-it-wrap .left-area .title-area .title-en,
  .about-hire .title-area .title-en {
    font-size: var(--phone-sub-title);
  }
  .about-site .right {
    padding-left: 4%;
    padding-right: 4%;
  }
  /* 瑞安服务页面 */
  .service-page .service-section .section-wrap {
    flex-wrap: wrap;
  }
  .service-page .service-section .section-wrap .pic {
    order: -1;
    margin-bottom: 30px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 60%;
  }
  .service-page .service-section .section-wrap .other {
    flex: none;
    width: 100%;
  }
  .service-page .service-section .section-wrap .other .panel {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
  }
  .service-page .service-section .section-wrap .other .title-line .index {
    width: 35px;
    height: 35px;
  }
  .service-page .service-section .section-wrap .other .title-line .title-text {
    font-size: 18px;
  }
  .service-page .service-section .section-wrap .other .title-line {
    justify-content: center;
  }
  .service-page .service-section .section-wrap .other .description {
    text-align: center;
  }
  .service-page .service-section .section-wrap .other .link-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .service-page .section-type1 .modify-pic {
    display: none;
  }
  .service-page .section-type2 .modify-pic {
    display: none;
  }
  /* 瑞安优势 */
  .advantage-it .advantage-it-wrap .left-area .text-list .text-item .zh,
  .advantage-it .advantage-it-wrap .left-area .text-list .text-item .en {
    line-height: 1.5;
  }
  /* 统一设置标题 */
  .advantage-ensure .title-area .title,
  .advantage-layout .title-area .title-zh {
    font-size: var(--phone-title);
  }
  .advantage-ensure .title-area .title-en,
  .advantage-layout .title-area .title-en {
    line-height: 1.3;
    font-size: var(--phone-sub-title);
  }

  .news-list-page .news-list .item {
    margin-bottom: 25px;
  }

  /* 2025-8-15 修改 */
  .common-pagination {
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  /* 共用分页器 */
  .common-pagination {
    max-width: 100%;
  }
  .common-pagination .custom {
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 18px;
  }
  .common-pagination .custom.prev {
    margin-right: 10px;
  }
  .common-pagination .custom.next {
    margin-left: 7px;
  }
  .common-pagination .item {
    font-size: 12px;
    margin-right: 2px;
  }
  .common-banner.has-tab-banner .text {
    top: 30%;
  }
  .common-banner .text .title {
    font-size: 24px;
  }
  .common-banner .text .sub-title {
    margin-top: 5px;
  }
  .common-banner.case-banner .pic img {
    object-position: 80% center;
  }
  .common-banner .tab-list {
    margin-top: 40px;
  }
  .common-banner .tab-list .tab {
    min-width: 35%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .about-desc .count-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  /* 2025-6-24 修改 */
  .about-desc .count-list .count-item:first-child {
    display: none;
  }
  .about-culture .culture-list {
    flex-wrap: wrap;
  }
  .about-culture .culture-list .item {
    width: 50%;
    padding-top: 0;
    background-color: rgba(4, 53, 128, 0.55);
  }
  .about-culture .culture-list .item:nth-child(-n + 2) {
    padding-top: 140px;
  }
  .about-culture .culture-list .item .text .desc {
    opacity: 1;
    font-size: 14px;
  }
  .about-culture .culture-list .item .icon {
    width: 50px;
    height: 50px;
  }
  .about-culture .culture-list .item:hover .icon {
    border: 1px solid rgba(233, 233, 233, 0.34);
  }
  .about-culture .culture-list .item:hover .icon:after {
    display: none;
  }
  .about-culture .culture-list .item .text .title-zh {
    font-size: 18px;
  }
  .about-culture .culture-list .item .text .title-en {
    font-size: 12px;
  }
  .about-company-info {
    padding-top: 35px;
  }
  .about-company-info .company-wrap {
    position: static;
    transform: translateX(0);
  }
  .about-company-info .company-wrap .about-list {
    flex-wrap: wrap;
  }
  .about-company-info .company-pic img {
    object-position: 70% bottom;
    height: auto;
    min-height: auto;
  }
  .about-site .map {
    min-height: 230px;
  }
  .case-list-area .case-list {
    grid-template-columns: 1fr;
  }
  .case-detail-article .article-title {
    font-size: 20px;
  }
  /* 服务详情 */
  .service-detail-page .group-type1 .list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .service-detail-page .group-type2 .list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  /* 新闻列表 */
  .news-list-page .news-list .item {
    align-items: center;
  }
  .news-list-page .news-list .item .other .info-line {
    display: none;
  }
  .news-list-page .news-list .item .pic {
    margin-right: 10px;
  }
  .news-list-page .news-list .item .other .desc {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 12px;
  }
  .news-list-page .news-list .item .other .title {
    margin-top: 0;
  }
  .news-list-page .news-list .item .other .title {
    font-size: 16px;
  }
  /* 新闻详情页面 */
  .news-detail-page .news-detail-wrap .article-title {
    font-size: 20px;
  }
  .recommend-area {
    flex-wrap: wrap;
  }
  .recommend-area .left {
    flex: none;
    margin-right: 0;
    width: 100%;
  }
  .recommend-area .right {
    margin-left: auto;
    margin-top: 15px;
  }
  .recommend-area .right .return img {
    width: 18px;
  }
  /* 瑞安优势 */
  .advantage-ensure .ensure-list .ensure-item .pic img {
    max-width: 80%;
  }
  .advantage-service .service-list .item .item-text .title-zh {
    font-size: 16px;
  }
  .advantage-service .service-list .item .item-text .title-en {
    line-height: 1.45;
    font-size: 12px;
  }
  .advantage-it .advantage-it-wrap .right-area .item {
    width: 100%;
  }
  .advantage-service .title-area .desc {
    line-height: 1.7;
  }
  /* 员工风采 */
  .phone-style-swiper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .phone-style-swiper .swiper-slide {
    position: relative;
  }
  .phone-style-swiper .swiper-slide .pic {
    display: block;
    width: 100%;
    padding-bottom: 65%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .phone-style-swiper .swiper-slide .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--duration, 0.45s);
  }
  .phone-style-swiper .swiper-slide .text {
    position: absolute;
    left: 0;
    bottom: 10%;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
    width: 100%;
    height: auto;
  }
  .phone-style-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
    pointer-events: none;
    border-radius: 10px;
  }
  .phone-style-swiper .phone-style-pagination-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .phone-style-swiper .phone-style-pagination-line .about-style-pagination-phone {
    margin-left: 20px;
    margin-right: 20px;
    position: static;
    display: flex;
    align-items: center;
  }
  .phone-style-swiper .phone-style-pagination-line .about-style-pagination-phone .swiper-pagination-bullet {
    opacity: 1;
    width: 6px;
    height: 6px;
    background-color: #cccc;
  }
  .phone-style-swiper .phone-style-pagination-line .about-style-pagination-phone .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--active-color);
  }
  .phone-style-swiper .phone-style-pagination-line .arrow {
    user-select: none;
    display: flex;
    align-items: center;
  }
  .phone-style-swiper .phone-style-pagination-line .arrow .hover {
    display: none;
  }
  .phone-style-swiper .phone-style-pagination-line .arrow:hover .hover {
    display: block;
  }
  .phone-style-swiper .phone-style-pagination-line .arrow:hover .default {
    display: none;
  }
  .advantage-standard .standard-swiper-container .pagination-line .standard-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .advantage-it .advantage-it-wrap .right-area .item .text-content .text::before {
    top: 0.5em;
  }
  /* 员工风采弹窗 , 工作详情弹窗 */
  .common-style-info-mask .style-panel .panel-close,
  .common-job-info-mask .job-panel .panel-close {
    width: 35px;
    height: 35px;
  }
  .common-style-info-mask .style-panel .panel-close img,
  .common-job-info-mask .job-panel .panel-close img {
    max-width: 60%;
    object-fit: contain;
  }
}

/* 网站地图 */
.sitemap {
  padding: 15px 0 110px;
}
.sitemap li {
  list-style: none;
}
.sitemap .title {
  font-weight: 700;
  font-size: var(--font32);
  color: #333;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f1f1;
  line-height: 1;
}
.sitemap .item {
  margin-top: 30px;
}
.sitemap .item .tit {
  color: #333;
  font-size: 20px;
  line-height: 1;
  display: block;
  width: fit-content;
  transition: var(--duration);
}
.sitemap .item .tit:hover {
  color: var(--theme);
}
.sitemap .item ul {
  margin-top: 16px;
  border: 1px solid #f0f0f0;
  padding: 20px 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 15px;
}
.sitemap .item li {
  display: block;
  list-style: none;
}
.sitemap .item li a {
  color: #777;
  font-size: 15px;
  position: relative;
  padding-left: 13px;
  transition: all 0.4s ease;
  display: block;
  transition: var(--duration);
  width: fit-content;
}
.sitemap .item li a:hover {
  color: var(--theme);
}
.sitemap .item li a span {
  padding: 5px;
}
.sitemap .item li a:hover span {
  background: #f9f9f9;
}
.sitemap .item li a:after {
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #d2d2d2;
  transform: translateY(-50%);
  left: 0;
  top: 50%;
  position: absolute;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .sitemap .item ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .sitemap .item ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.job-article {
  font-weight: 400;
  font-size: var(--font16);
  color: #000000;
  line-height: 2;
}

/* 2025-8-14 修改 */
.col-lg-7 {
  width: 70%;
}
.col-1 {
  flex: 1;
}

.col-lg-6 {
  width: 60%;
}

.col-lg-6-3 {
  width: 63%;
}

@media (max-width: 768px) {
  .col-xs-10 {
    width: 100%;
    flex: none;
  }
  .col-xs-10 img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .order-1 {
    order: -1;
  }
}

.common-bread-crumb {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: max(0.6rem, 20px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.6);
}

.common-bread-crumb .item a {
  font-size: var(--font14);
  color: #666666;
  transition: var(--duration);
}

.common-bread-crumb .item::after {
  content: ">";
  font-size: var(--font14);
  color: #666666;
  margin-left: 5px;
  margin-right: 5px;
}

.common-bread-crumb .item:last-child::after {
  display: none;
}

.common-bread-crumb .item:hover a {
  color: #005bac;
}

/* 8-21 修改 */
/* 2025-8-20 新增企业视频 */
.about-video {
  padding-top: max(1.05rem, var(--space));
  padding-bottom: max(1.76rem, var(--space));
}
.about-video .title-area {
  text-align: center;
}
.about-video .title-area .title {
  font-weight: bold;
  font-size: var(--font48);
  color: #0557a3;
  line-height: 1.25;
}
.about-video .title-area .sub-title {
  font-weight: bold;
  font-size: var(--font30);
  color: rgba(231, 231, 231, 0.6);
}
.about-video .video-container {
  margin-top: max(0.86rem, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-video .video-container .arrow {
  user-select: none;
  cursor: pointer;
}
.about-video .video-container .arrow .hover {
  display: none;
}
.about-video .video-container .arrow .default {
  display: block;
}
.about-video .video-container .arrow:hover .default {
  display: none;
}
.about-video .video-container .arrow:hover .hover {
  display: block;
}
.about-video .video-container .about-video-swiper {
  flex: 1;
  min-width: 0;
  margin-left: max(1rem, 20px);
  margin-right: max(1rem, 20px);
}
.about-video .video-container .about-video-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
}
.about-video .video-container .about-video-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.about-video .video-container .about-video-swiper .swiper-slide:hover .play .default {
  display: none;
}
.about-video .video-container .about-video-swiper .swiper-slide:hover .play .hover {
  display: block;
}
.about-video .video-container .about-video-swiper .swiper-slide .pic {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-video .video-container .about-video-swiper .swiper-slide .pic::after {
  content: "";
  display: block;
  padding-bottom: 50.19920319%;
}
.about-video .video-container .about-video-swiper .swiper-slide .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration);
}
.about-video .video-container .about-video-swiper .swiper-slide .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  cursor: pointer;
}
.about-video .video-container .about-video-swiper .swiper-slide .play .hover {
  display: none;
}
.about-video .video-container .about-video-swiper .swiper-slide .play img {
  display: block;
  width: max(0.76rem, 45px);
  object-fit: contain;
}
.about-video .video-container .about-video-swiper .swiper-slide .panel {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: var(--font24);
  color: #ffffff;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  background-color: #000;
  padding: max(0.16rem, 10px) 15px;
  text-align: center;
}
.about-video .video-container .about-video-pagination {
  display: none;
}
.common-video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 76;
  display: none;
}
.common-video .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.common-video .video-panel .close {
  margin-left: auto;
  width: fit-content;
  user-select: none;
  cursor: pointer;
  margin-bottom: 20px;
}
.common-video .video-panel .close img {
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.common-video .video-panel .close:hover img {
  filter: none;
}
.common-video .video-panel video {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .about-video .video-container .arrow {
    display: none;
  }
  .about-video .video-container .about-video-swiper {
    margin-left: 0;
    margin-right: 0;
    flex: none;
    width: 100%;
  }
  .about-video .video-container .about-video-swiper .swiper-slide .pic::after {
    padding-bottom: 65%;
  }
  .about-video .video-container .about-video-pagination {
    position: static;
    display: block;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }
  .about-video .video-container .about-video-pagination .swiper-pagination-bullet {
    margin: 0;
    opacity: 1;
    width: 6px;
    height: 6px;
    background-color: #ccc;
  }
  .about-video .video-container .about-video-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--active-color);
  }
}

/* 202-9-26 添加 */
.service-detail-page .case-detail-tab-list {
  display: flex;
  justify-content: center;
  column-gap: max(0.2rem, 10px);
  margin-top: 30px;
  row-gap: 15px;
  flex-wrap: wrap;
}

.service-detail-page .case-detail-tab-list .tab-item {
  padding: max(0.15rem, 10px) max(0.3rem, 15px);
  text-align: center;
  font-size: var(--font16);
  transition: var(--duration);
  flex-shrink: 0;
  border-radius: 90px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  /* background-color: #fff; */
  /* color: #333; */
  flex-shrink: 0;
  background-color: #0557a3;
  color: #fff;
  transition: var(--duration);
}

.service-detail-page .case-detail-tab-list .tab-item:hover {
  transform: scale(1.05);
}

.advantage-ensure .ensure-pagination {
  position: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: max(0.3rem, 20px);
}

.advantage-ensure .ensure-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0557a3;
}
