.split__wrapper {
  position: relative;
  display: block;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  border-top: 1px solid #373737;
}
.split__wrapper:after {
  content: " ";
  display: block;
  clear: both;
}
.split__wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.split__left {
  width: 48%;
  float: left;
  margin-right: 1.69492%;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .split__left {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}
.split__right {
  width: 48%;
  float: right;
  margin-right: 0;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .split__right {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    border-top: 1px solid #373737;
    padding-top: 25px;
  }
}
.split__bottom {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid #373737;
  padding-top: 25px;
}
@media screen and (max-width: 1024px) {
  .split__bottom {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .split__title {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .split__title h4 {
    line-height: 1;
  }
}
@media screen and (max-width: 1024px) {
  .split__list {
    padding-left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .split__list {
    padding-left: 0px;
  }
}
.split__list ul {
  padding: 0;
  margin-top: 20px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .split__list ul {
    margin-top: 23px;
    margin-bottom: 2px;
  }
}
.split__list ul li {
  position: relative;
  display: block;
  margin-bottom: 11px;
  padding-left: 18px;
  font-family: "montserrat-regular", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .split__list ul li {
    margin-bottom: 22px;
    line-height: 1.3;
  }
}
.split__list ul li:nth-last-child(-n + 1) {
  margin-bottom: 0;
}
.split__list ul li:before {
  content: "";
  position:absolute;
  display: block;
  width: 4px;
  height: 4px;
  top: 8px;
  left: 2px;
  /* background-color: #d0c86c;
  border-radius: 50%; */
}

.split__soc {
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .split__soc .social ul li {
    margin-right: 5px;
  }
}
.split__soc .social ul li a {
  border: 1px solid #8392a8;
  width: 42px;
  height: 42px;
  line-height: 39px;
  box-sizing: border-box;
}
.split__soc .social ul li a svg path {
  fill: #8392a8;
}
.split__soc .social ul li a:hover {
  border-color: #2c9aed;
}
.split__soc .social ul li a:hover svg path {
  fill: #fff;
}
.split__button .btn {
  padding: 18px 32px;
}
.split__bottomTitle {
  width: 6.77966%;
  float: left;
  margin-right: 1.69492%;
}
@media screen and (max-width: 1024px) {
  .split__bottomTitle {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding-bottom: 10px;
  }
}
.split__bottomTitle p {
  margin: 0;
  font-family: "montserrat-regular", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.2em;
  color: #526480;
}
.split__bottomText {
  width: 91.52542%;
  float: right;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .split__bottomText {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .split__bottomText {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.split__bottomText p {
  margin: 0;
  font-family: "opensans-italic", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #8392a8;
}




/* 彻底打破原有限制 */
.game-immersive-flow {
    margin-top: 50px;
    width: 100%;
}

.flow-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px; /* 增加模块间距，显得大气 */
    position: relative;
    gap: 40px;
}

.flow-item.reverse {
    flex-direction: row-reverse;
}

.flow-image {
    flex: 1.6;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    /* 给图片加一个暗色的呼吸感投影 */
    /* box-shadow: 0 30px 60px rgba(0,0,0,0.8); */
}

.flow-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.flow-image:hover img {
    transform: scale(1.05);
}

/* 将图片容器宽度从原来的 flex 比例中微调，或者直接限制最大宽度 */
.flow-image {
    flex: 1.28 !important; /* 原来是 1.6，缩小 20% 后约为 1.28 */
    max-width: 80%;       /* 限制最大宽度为原来的 80% */
    margin: 0 auto;       /* 如果是居中模块，确保它依然居中 */
}

/* 或者使用更简单的方法：直接让图片本身缩放 */
.flow-image img {
    width: 100%;
    transform: scale(0.8); /* 整体缩放到 80% */
    transform-origin: center; /* 确保缩放中心在中间 */
}

/* 如果你使用了居中聚焦的那张图 (center-focus)，也需要对应调整 */
.flow-item.center-focus .flow-image {
    width: 64% !important; /* 原来是 80%，80% 的 80% 是 64% */
}

.flow-content {
    flex: 1;
    z-index: 2;
}

.gold-title {
    color: #c5a059 !important;
    font-size: 2.2rem !important;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eee;
    margin-bottom: 1.5rem;
}

.clean-list {
    list-style: none !important;
    padding: 0 !important;
}

.clean-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 10px;
    color: #c5a059;
}

.clean-list li::before {
    content: "◈";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* 居中模块样式 */
.flow-item.center-focus {
    flex-direction: column;
    text-align: center;
}

.flow-item.center-focus .flow-image {
    width: 80%;
    margin-bottom: 30px;
}

/* 底部支持 */
.support-footer {
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 40px;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* 移动端适配 */
@media screen and (max-width: 980px) {
    .flow-item, .flow-item.reverse {
        flex-direction: column;
        margin-bottom: 80px;
    }
    .flow-content {
        text-align: center !important;
        padding: 0 20px;
    }
    .gold-title {
        font-size: 1.8rem !important;
    }
}


