@charset "UTF-8";
/**
 * 引导页
 * date: 2025-09-29
 * author: jyxuan
 */
html,
body {
  overflow: hidden;
}

body {
  background: url("../images/guide_bg.png") no-repeat center bottom/cover;
}

.guide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.guide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 1200px;
  height: 100%;
  min-height: 610px;
}
.guide-title {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  line-height: 73px;
}
.guide-text {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  line-height: 49px;
  letter-spacing: 24px;
}
.guide-bd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 150px;
}
.guide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 282px;
  height: 332px;
  border: 6px solid #b4c0e0;
  border-radius: 18px;
  background-color: #fff;
}
.guide-item:first-child .guide-name {
  background-color: #0b87ef;
}
.guide-item:last-child .guide-name {
  background-color: #f69834;
}
.guide-item:hover .guide-name {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.guide-item + .guide-item {
  margin-left: 200px;
}
.guide-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 0;
}
.guide-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 20px 20px;
  padding: 0 20px;
  height: 52px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  border-radius: 26px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}