﻿.section-header {
  position: relative;
  width: 100%;
  padding-top: 60px;
  background: #F2F8FF;
}

.section-header-products {
  height: 500px;
}

.section-banner-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 64px 0 240px;
}

@media screen and (max-width: 1600px) {
  .section-banner-wrapper {
    padding: 0 32px 0 48px;
  }
}

.bannerBox {
  position: absolute;
  top: 112px;
  padding-left: 80px;
}

.bannerTitle {
  font-size: 32px;
  color: #3399FF;
  letter-spacing: 0;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.bannerP {
  font-size: 16px;
  color: #696969;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.bannerBox .btn {
  color: #fff;
  font-size: 16px;
  outline: none !important;
  border: none;
  font-weight: 400;
  margin: 0;
  width: 165px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(51, 153, 255, 0); /* 预置透明阴影，让 hover 阴影能平滑过渡 */
  transition: transform .3s ease, box-shadow .3s ease;
}

.bannerBox .btn:focus {
  box-shadow: none;
}

.bannerBox .btn:hover {
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(51, 153, 255, 0.35);
  transform: translateY(-5px);
}

.bannerBox .btncolor {
  border: 1px solid rgba(51, 153, 255, 1);
  color: #39F;
}

.bannerBox .btn-exp {
  margin-left: 12px;
  border: 1px solid rgba(51, 153, 255, 1);
  color: #3399FF;
}

.bannerBox .btn-primary {
  border: 1px solid #39F;
  background: #39F;
  color: #FFFFFF;
  margin-left: 0;
}

.section-products {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.39) 0%, rgba(246, 250, 255, 0.70) 100%);
  padding-bottom: 64px;
}

.products-content {
  width: 100%;
  margin: auto;
  height: 250px;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
}

.contentBox {
  width: 28%;
  height: 240px;
  background-image: linear-gradient(180deg, #F2F9FF 0%, #F8FBFF 100%);
  border: 1px solid #B5E1FF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0); /* 预置透明阴影，让 hover 阴影能平滑过渡 */
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.contentTitle {
  padding: 64px 0;
  width: 100%;
  margin: auto;
  text-align: center;
}

.contentTitlep1 {
  font-size: 32px;
  color: #3399FF;
  letter-spacing: 0;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contentTitlep2 {
  font-size: 16px;
  color: #999999;
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
}

.contentimgBox {
  height: 190px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contentimg {
  width: 52.4%;
  transition: transform .3s ease;
}

.contentP {
  height: 48px;
  font-size: 24px;
  color: #3399FF;
  letter-spacing: 0;
  line-height: 48px;
  font-weight: 400;
  text-align: center;
  transition: background-color .3s ease, color .3s ease;
}

.contentBox:hover .contentP {
  background: #3399FF;
  color: #FFFFFF;
  cursor: pointer;
}

.contentBox:hover {
  border: 1px solid #E6F4FF;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}
.contentBox:hover .contentimg {
  transform: scale(1.06);
}

.section-try {
  padding: 80px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/img/try-bg.png);
}

.section-try .experience_btn {
  background-image: linear-gradient(270deg, #776ee3 0%, #2d4ff2 100%);
  border-radius: 32px;
  margin-left: 50px;
  width: 200px;
  height: 64px;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
}

.section-try .experience_title {
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 64px;
  font-weight: 500;
}