
/* 全局公共容器通用样式 */
.jyindex-indexcontainer {
  width: 1260px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family:font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans GB", "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans", "Noto Sans SC", sans-serif; ;
}

/* ====================== 首页轮播模块 ====================== */
/* 板块标题通用 */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 30px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}
.section-head p {
  font-size: 16px;
  color: #666;
}

/* 轮播外层容器 */
.carousel-box {
  position: relative;
  overflow: hidden;
}
/* 图片轨道 一屏3张 */
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease-in-out;
}
.carousel-item {
  flex: 0 0 calc( (100% - 16px * 2) / 3 );
}
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* 左右切换按钮 */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  cursor: pointer;
  z-index: 9;
  transition: background 0.3s;
}
.slide-btn:hover {
  background: #ffffff;
}
.prev-btn {
  left: 12px;
}
.next-btn {
  right: 12px;
}

/* 底部圆点指示器 */
.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: #4ab344;
}

/* ====================== 微信注册登录模块 ====================== */
.login-horizontal-section {
  background: #f7f9f8;
}
.login-card {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* 左侧绿色图文栏 */
.login-left {
  width: 40%;
  background: url("/uploadfile/202607/dbfde38b5a54fd8e42f0b59c6681031f.jpg") center center / cover no-repeat;
  padding: 40px 35px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.title-block {
  font-size: 42px;
  color: #595e5b;
  font-weight: 600;
  letter-spacing: 3px;
}

/* 右侧表单区域 */
.login-right {
  width: 60%;
  padding: 50px 45px;
  position: relative;
}
/* 半透明白色遮罩，避免文字看不清 */
.login-right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}
/* 表单内容层级提升，显示在遮罩上方 */
.form-wrap, .third-login {
  position: relative;
  z-index: 2;
}
.form-wrap {
  margin-bottom: 45px;
}

/* 输入框行 */
.input-row {
  display: flex;
  align-items: center;
  border: 1px solid #eaeaea;
  background: #f8f8f8;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 22px;
  gap: 12px;
}
.input-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  outline: none;
}
.input-icon {
  font-size: 20px;
  color: #777;
}

/* 提交按钮 */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #52b73e;
  border: none;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  margin: 10px 0 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #45a034;
}
.register-text {
  display: block;
  text-align: center;
  font-size: 17px;
  color: #333;
  text-decoration: none;
}

/* 第三方登录分割线 */
.split-line {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  color: #999;
  font-size: 16px;
}
.split-line::before,
.split-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #ddd;
}
.split-line::before {
  left: 0;
}
.split-line::after {
  right: 0;
}

/* 微信登录圆形按钮 */
.wx-circle {
  width: 70px;
  height: 70px;
  background: #e6f7e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.2s;
}
.wx-circle:hover {
  transform: scale(1.08);
}
.wx-icon {
  font-size: 34px;
  color: #52b73e;
}

/* ====================== 响应式媒体查询 ====================== */
@media (max-width: 992px) {
  /* 容器宽度自适应 */
  .indexcontainer {
    width: 100%;
  }
  /* 轮播单张展示 */
  .carousel-item {
    flex: 0 0 100%;
  }
  /* 登录卡片上下布局 */
  .login-card {
    flex-direction: column;
  }
  .login-left, .login-right {
    width: 100%;
  }
  .title-block {
    font-size: 32px;
  }
}
.indexbg{
  background: #f0f0f0;
  padding-top: 40px;
}
