.layout {
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}
.layout .header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 999;
  display: flex;
  justify-content: center;
}
.layout .header .container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.layout .header .container .logo {
  padding-top: 10px;
}
.layout .header .container .logo img {
  width: 144px;
  height: 40px;
}
.layout .header .container .nav a {
  margin-left: 60px;
  font-size: 16px;
  color: #000000;
}
.layout .header .container .nav a:hover {
  color: #6262e8;
}
.layout .header .container .nav .active {
  color: #6262e8;
  font-weight: 600;
}
.layout .bottom {
  height: 305px;
  background: #eef2ff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layout .bottom .bottom-top {
  height: 236px;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  padding: 30px 0 40px 0;
}
.layout .bottom .bottom-top .bottom-left,
.layout .bottom .bottom-top .bottom-left-li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.layout .bottom .bottom-top .bottom-left-li {
  height: 42px;
}
.layout .bottom .bottom-top .bottom-left-li .bottom-left-title {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}
.layout .bottom .bottom-top .bottom-left-li .bottom-left-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.layout .bottom .bottom-top .bottom-right {
  display: flex;
}
.layout .bottom .bottom-top .bottom-right .bottom-right-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: 100px;
}
.layout .bottom .bottom-top .bottom-right .bottom-right-img img {
  width: 120px;
  height: 120px;
}
.layout .bottom .bottom-top .bottom-right .bottom-right-img .bottom-right-text {
  font-size: 14px;
  color: #555555;
  text-align: center;
}
.layout .bottom .bottom-line {
  width: 100%;
  height: 1px;
  background: #cbd5ff;
}
.layout .bottom .bottom-text {
  width: 1200px;
  height: 68px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333333;
}
.home-banner-img {
  height: 545px;
  width: 100%;
  min-width: 1600px;
  position: absolute;
  z-index: 1;
}
.content-home {
  width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 305px);
  position: relative;
  z-index: 2;
}
.content-home .banner {
  padding-top: 167px;
}
.content-home .banner img {
  width: 500px;
  height: 71px;
}
.content-home .banner .banner-text {
  font-weight: 600;
  font-size: 20px;
  color: #3f3fd2;
  margin-top: 25px;
}
.content-home .banner .banner-subtext {
  font-weight: 600;
  font-size: 18px;
  color: #3f3fd2;
  margin-top: 25px;
}
.content-home .banner .banner-btn {
  width: 200px;
  height: 50px;
  background: linear-gradient(90deg, #6a55f8 0%, #1275ff 100%);
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 79px 0;
  cursor: pointer;
}
.content-home .content-title {
  padding: 120px 0 40px 0;
  font-weight: 600;
  font-size: 50px;
  color: #3f3fd2;
  text-align: center;
}
.content-home .content-top {
  background-image: url('./homeBg.png');
  background-size: cover;
  background-position: center;
  height: 340px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.content-home .content-top .content-top-text {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  text-align: center;
}
.content-home .content-center {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.content-home .content-center .content-center-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 190px;
  width: 186px;
}
.content-home .content-center .content-center-item img {
  height: 65px;
  width: 65px;
}
.content-home .content-center .content-center-item .content-center-item-title {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  text-align: center;
}
.content-home .content-center .content-center-item .content-center-item-text {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.content-home .content-bottom {
  background-image: url('./homeBg.png');
  background-size: cover;
  background-position: center;
  height: 340px;
  padding: 30px 10px;
  margin-bottom: 120px;
  display: flex;
}
.content-home .content-bottom .content-bottom-item {
  width: 80px;
  height: 280px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  margin: 0 20px;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl; /* 从右到左的垂直排列 */
  text-orientation: upright; /* 保持文字正常方向，不倾斜 */
}
.content-home .content-bottom .content-bottom-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.content-home .content-bottom .content-bottom-nav img {
  width: 100%;
  height: 100px;
}
.content-home .content-bottom .content-bottom-nav .content-bottom-nav-item {
  height: 90px;
  display: flex;
}
.content-home .content-bottom .content-bottom-nav .content-bottom-nav-item .nav-item {
  width: 50%;
  flex-direction: column;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content-home
  .content-bottom
  .content-bottom-nav
  .content-bottom-nav-item
  .nav-item
  .nav-item-title {
  font-weight: 600;
  font-size: 20px;
  color: #2728cb;
}
.content-home
  .content-bottom
  .content-bottom-nav
  .content-bottom-nav-item
  .nav-item
  .nav-item-subtitle {
  font-size: 14px;
  color: #333333;
}
.product-banner-img {
  height: 400px;
  width: 100%;
  min-width: 1600px;
  position: absolute;
  z-index: 1;
}
.content-product {
  width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 305px);
  position: relative;
  z-index: 2;
}
.content-product .banner {
  padding: 190px 0 250px 0;
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  color: #3f3fd2;
}
.content-product .content-item {
  margin-bottom: 120px;
  height: 440px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.content-product .content-item .content-bottom {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #f3f5ff 0%, #fcfcff 100%);
  border-radius: 30px;
  z-index: -1;
}
.content-product .content-item .content-bottom-right {
  background: linear-gradient(90deg, #fcfcff 0%, #f3f5ff 100%);
}
.content-product .content-item .content-item-title {
  display: flex;
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  line-height: 40px;
  height: 140px;
  align-items: center;
  padding: 0 50px;
}
.content-product .content-item .content-item-title img {
  width: 75px;
  height: 70px;
  margin-top: 10px;
}
.content-product .content-item .content-item-title span {
  margin: 0 20px;
}
.content-product .content-item .content-item-subtitle {
  padding: 50px 50px 30px 50px;
  font-weight: 600;
  font-size: 18px;
  color: #4a5ceb;
  line-height: 18px;
}
.content-product .content-item .content-item-text {
  padding: 0 50px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 30px;
}
.content-product .content-item-img {
  width: 480px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content-product .content-item-img img {
  width: 200px;
  height: 433px;
}
.about-banner-img {
  height: 400px;
  width: 100%;
  min-width: 1600px;
  position: absolute;
  z-index: 1;
}
.content-about {
  width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 305px);
  position: relative;
  z-index: 2;
}
.content-about .banner {
  padding: 190px 0 150px 0;
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  color: #3f3fd2;
}
.content-about .content-introduce {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
}
.content-about .content-introduce .content-introduce-title {
  font-weight: 600;
  font-size: 40px;
  color: #3f3fd2;
  line-height: 40px;
  width: 340px;
}
.content-about .content-introduce .content-introduce-text {
  font-size: 15px;
  color: #333333;
  line-height: 28px;
  flex: 1;
}
.content-about .content-introduce .content-introduce-text .text-title {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}
.content-about .content-introduce .content-introduce-text .text-subtitle {
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  padding: 15px 0 50px 0;
}
.share-banner-img {
  height: 400px;
  width: 100%;
  min-width: 1600px;
  position: absolute;
  z-index: 1;
}
.content-share {
  width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 305px);
  position: relative;
  z-index: 2;
}
.content-share .banner {
  padding: 190px 20px 110px 0px;
  font-weight: 600;
  font-size: 55px;
  color: #3f3fd2;
  line-height: 56px;
}
.content-share .content-top {
  height: 380px;
  background: url('./shareBg.png');
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 50px;
  margin-bottom: 100px;
}
.content-share .content-top .content-top-logo {
  display: flex;
}
.content-share .content-top .content-top-logo img {
  width: 100px;
  height: 100px;
  margin-right: 50px;
}
.content-share .content-top .content-top-logo .content-top-logo-title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 46px;
  color: #000000;
}
.content-share .content-top .content-top-logo .content-top-logo-subtitle {
  font-size: 18px;
  color: #555555;
}
.content-share .content-top .content-top-button {
  display: flex;
  margin-top: 50px;
}
.content-share .content-top .content-top-button .top-button {
  width: 250px;
  height: 60px;
  background: #5c5cf1;
  border-radius: 30px;
  font-weight: 600;
  font-size: 19px;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  line-height: 60px;
  margin-right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-share .content-top .content-top-button .top-button img {
  width: 24px;
  height: 24px;
  margin-right: 25px;
}
.content-share .content-top .content-top-tips {
  font-size: 21px;
  color: #555555;
  margin-top: 40px;
  display: flex;
}
.content-share .content-top .content-top-tips div {
  margin-left: 50px;
}
.content-share .content-top .content-top-tips a {
  margin-left: 50px;
}
.content-share .share-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  width: 50%;
}
.content-share .share-item img {
  width: 165px;
  height: 331px;
}
.content-share .share-item .share-item-line {
  width: calc(100% - 215px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.content-share .share-item .share-item-line .share-item-title {
  font-weight: 600;
  font-size: 36px;
  color: #000000;
}
.content-share .share-item .share-item-line .share-item-subtitle {
  font-weight: 600;
  font-size: 24px;
  color: #4a5ceb;
  line-height: 36px;
  margin: 15px 0;
}
.content-share .share-item .share-item-line .share-item-text {
  font-size: 21px;
  color: #555555;
  line-height: 36px;
}
.content-share .share-item-50 {
  margin-left: 50%;
}
