html, body{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}

body{
  overflow: auto;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

.header{
  background: rgb(36,43,58);
}

.container{
}

.home-container{
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
}

.home-main-content{
  position: relative;
  padding-top: calc(100vh - 440px);
}

.scroll-container{
  position: sticky;
  top: calc(100vh - 440px);
  right: 0;
  left: 0;
  width: 100%;
  height: 440px;
}

.scroll-container .scroll-background{
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1140px;
  height: 440px;
  margin: 0 auto;
  background: hsla(0,0%,96.1%,.96);
  box-shadow: 0 0 100px rgb(0 0 0 / 10%);
  will-change: width,height;
}

.scroll-out .scroll-background{
  animation: scroll-out .3s linear;
  animation-fill-mode: forwards;
}

.scroll-in .scroll-background {
  animation: scroll-in .3s linear;
  animation-fill-mode: forwards;
}

@keyframes scroll-out {
  0% {
    width: 1280px;
    height: 600px;
  }
}

@keyframes scroll-in {
  100% {
    width: 1280px;
    height: 600px;
  }
}

.scroll-container .scroll-text{
  position: absolute;
  bottom: 100px;
  left: calc(50% - 570px);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1140px;
}

.scroll-out .scroll-text {
  animation: scroll-text-out .3s linear;
  animation-fill-mode: forwards;
}

.scroll-in .scroll-text {
  animation: scroll-text-in .3s linear;
  animation-fill-mode: forwards;
}

@keyframes scroll-text-out  {
  0% {
    transform: translateY(-160px);
  }
}

@keyframes scroll-text-in  {
  100% {
    transform: translateY(-160px);
  }
}

.scroll-container .scroll-text .scroll-title {
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 700;
  line-height: 100px;
  color: #1d1d1f;
}

.scroll-container .scroll-button-group {
  position: absolute;
  bottom: 0;
  left: calc(50% - 208px);
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 416px;
  height: 64px;
  opacity: 0;
  transform: translateY(64px);
  will-change: opacity;
}

.scroll-in .scroll-button-group {
  animation: scroll-btn-in .3s linear;
  animation-fill-mode: forwards;
}

.scroll-out .scroll-button-group {
  animation: scroll-btn-out .3s linear;
  animation-fill-mode: forwards;
}

@keyframes scroll-btn-out  {
  0% {
    opacity: 1;
    transform: translateY(-160px);
  }
}

@keyframes scroll-btn-in  {
  100% {
    opacity: 1;
    transform: translateY(-160px);
  }
}

.scroll-container .scroll-button-group .scroll-button {
  width: 168px;
  height: 100%;
  margin: 0 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 62px;
  text-align: center;
  border-radius: 40px;
}

.scroll-container .scroll-button-group .scroll-button-document {
  color: #000;
  border: 1px solid rgba(29,29,31,.2);
}

.scroll-container .scroll-button-group .scroll-button-link {
  color: #fff;
  background: #1d1d1f;
  border: 1px solid transparent;
}

.home-main-content .home-other-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  background-color: #f5f5f5;
}

.home-main-content .intro-cards {
  width: 1200px;
  margin: 0px auto 0;
}

.home-main-content .intro-title {
  margin-left: 80px;
  font-size: 40px;
  font-weight: 600;
  line-height: 53px;
  color: #1d1d1f;
}

.home-main-content .intro-cards .intro-hint-title {
  margin: 16px 0 40px 80px;
  font-size: 20px;
  color: #1d1d1f;
}

:root {
  --lessH: 45px;
}

.agents-low{
  display: flex;
  flex-direction: row;
}

.agents-col{
  display: flex;
  flex-direction: column;
  width: 33%;
  padding-right: 20px;
  box-sizing: border-box;
}

.agents-col:last-of-type{
  padding-right: 0;
}

.agents-item{
  border-radius: 20px;
  padding: 23px 20px;
  position: relative;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  transition: height .3s linear;
}

.agents-item .agents-logo{
  height: 48px;
  display: block;
}

.agents-item .agents-name{
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #1d1d1f;
  position: absolute;
  transition: left .3s ease, top .3s ease;
}

.agents-item .agents-introduction{
  font-size: 18px;
  line-height: 27px;
  color: #1d1d1f;
  opacity: .6;
  position: absolute;
  transition: left .3s ease, top .3s ease;
}

.agents-item .agents-infoList{
  font-size: 18px;
  line-height: 35px;
  color: #1d1d1f;
  opacity: .6;
  margin-top: 130px;
  overflow: hidden;
  height: 70px;
  transition: height .3s ease, margin-top .3s ease;
}

.agents-item #map,.agents-item .map{
  width: 100%;
  height: 330px;
  background-color: #fff;
  opacity: .6;
  transform: translateY(230px);
  transition: opacity .3s;
}
.agents-item .map-in{
  animation: map-in .3s linear;
  animation-fill-mode: forwards;
}

.agents-item .map-out{
  animation: map-out .3s linear;
  animation-fill-mode: forwards;
}

@keyframes map-out {
  0% {
    transform: translateY(-145px);
  }
}

@keyframes map-in {
  100% {
    transform: translateY(-145px);
    opacity: 1;
  }
}

.agents-item-max{
  /* height: 265px; */
  height: calc(335px - var(--lessH));
}

.agents-item-max .agents-name{
  top: 90px;
  left: 20px;
}

.agents-item-max .agents-introduction{
  top: 125px;
  left: 20px;
  width: calc(100% - 40px);
}

.agents-item-min{
  height: calc(140px - var(--lessH));
}

.agents-item-min .agents-name{
  top: 15px;
  left: 80px;
  font-size: 16px;
}

.agents-item-min .agents-introduction{
  top: 45px;
  left: 80px;
  width: calc(100% - 40px - 80px);
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.agents-item-map{
  /* height: 390px; */
  height: calc(530px - var(--lessH));
}

.agents-item-map .agents-name{
  /* top: 30px;
  left: 105px; */
  top: 90px;
  left: 20px;
}

.agents-item-map .agents-introduction{
  /* top: 70px;
  left: 105px;
  width: calc(100% - 80px - 80px); */
  top: 125px;
  left: 20px;
  width: calc(100% - 40px);
}

.agents-item-map .agents-infoList{
  height: 240px;
}

.home-main-content footer {
  width: 100%;
  margin-top: 80px;
}

.home-main-content footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin: 0px auto 0;
  font-size: 14px;
  color: rgba(29,29,31,.4);
}

