/* Start custom CSS for html, class: .elementor-element-2dcd8da *//* 固定悬浮侧边栏 */
.floating-side-menu {
  position: fixed;

  top: 50%;
  right: 0;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  width: 58px;
  padding: 18px 0;

  background-color: #af203f;

  overflow: hidden;

  transform: translateY(-50%);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);

  transition:
    width 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

/* 强制侧边栏链接在所有状态下保持白色 */
.floating-side-menu a,
.floating-side-menu a:link,
.floating-side-menu a:visited,
.floating-side-menu a:hover,
.floating-side-menu a:focus,
.floating-side-menu a:active {
  color: #ffffff !important;
  text-decoration: none !important;
}



/* 鼠标移入后展开 */
.floating-side-menu:hover {
  width: 240px;
  padding: 18px 20px;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}


/* 链接 */
.floating-side-menu a {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 44px;
  padding: 8px 14px;

  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;

  opacity: 0;

  transform: translateX(16px);

  transition:
    opacity 0.25s ease,
    transform 0.3s ease,
    background-color 0.2s ease;
}


/* 默认收起时显示一个小标记 */
.floating-side-menu::before {
  content: "Menu";

  position: absolute;
  top: 50%;
  left: 50%;

  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  white-space: nowrap;

  transform:
    translate(-50%, -50%)
    rotate(-90deg);

  transition: opacity 0.2s ease;
}


/* 展开后隐藏 Menu 标记 */
.floating-side-menu:hover::before {
  opacity: 0;
}


/* 展开后显示链接 */
.floating-side-menu:hover a {
  opacity: 1;
  transform: translateX(0);
}


/* 链接悬停效果 */
.floating-side-menu a:hover {
  background-color: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}


/* 当前链接前面的细线 */
.floating-side-menu a::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 3px;
  height: 0;

  background-color: #ffffff;

  transform: translateY(-50%);

  transition: height 0.2s ease;
}


.floating-side-menu a:hover::before {
  height: 60%;
}

/* 鼠标悬停或键盘聚焦时展开 */
.floating-side-menu:hover,
.floating-side-menu:focus-within {
  width: 240px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.floating-side-menu:hover::before,
.floating-side-menu:focus-within::before {
  opacity: 0;
}

.floating-side-menu:hover a,
.floating-side-menu:focus-within a {
  opacity: 1;
  transform: translateX(0);
}

/* 手机和平板隐藏 */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .floating-side-menu {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a211f11 */.ppa-grid {
  --ppa-ink: #11182b;
  --ppa-card: #fffdf7;
  --ppa-accent: #bb1e41;
  --ppa-muted: #626879;
  --ppa-line: rgba(17, 24, 43, 0.18);
  width: 100%;
  padding-top: 80px;
  background: #fff;
  color: var(--ppa-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.ppa-grid,
.ppa-grid * {
  box-sizing: border-box;
}

.ppa-grid a {
  color: inherit;
  text-decoration: none;
}

.ppa-grid__title {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--ppa-accent);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.ppa-grid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.ppa-grid__filter {
  padding: 9px 15px;
  color: var(--ppa-accent);
  border: 1px solid rgba(187, 30, 65, 0.35);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.ppa-grid__filter:hover,
.ppa-grid__filter[aria-pressed="true"] {
  color: #fff;
  border-color: var(--ppa-accent);
  background: var(--ppa-accent);
}

.ppa-grid__filter:focus-visible,
.ppa-card:focus-visible {
  outline: 3px solid rgba(187, 30, 65, 0.25);
  outline-offset: 3px;
}

.ppa-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 24px;
  align-items: stretch;
}

.ppa-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ppa-line);
  background: var(--ppa-card);
  overflow: hidden;
}

.ppa-card[hidden] {
  display: none !important;
}

.ppa-card__image {
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e6e9, #f6f3ed);
}

.ppa-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ppa-card:hover .ppa-card__image img {
  transform: scale(1.04);
}

.ppa-card__body {
  flex: 1 1 auto;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.ppa-card__series {
  margin: 0 0 6px;
  color: var(--ppa-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ppa-card__process {
  margin: 0 0 15px;
  color: var(--ppa-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ppa-card__title {
  margin: 0 0 15px;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.ppa-card__date {
  min-height: 16px;
  margin: auto 0 0;
  color: var(--ppa-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .ppa-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ppa-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ppa-grid__items {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */