
/* 产品功能 */
.product-box {
  margin-bottom: 166px;
}
.product-container {
  display: flex;
}
.product-left {
  box-sizing: border-box;
  min-width: 308px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 92px;
  border-right: 2px solid #F0F0F0;
}
.product-left-title {
  font-size: 30px;
  font-weight: 600;
  padding: 92px 0 59px;
}
.product-menu-icon {
  width: 30px;
  height: 30px;
}
.product-right {
  display: flex;
  justify-content: center;
  padding: 92px 20px 0;
  width: 100%;
}
.product-right-title {
  font-size: 16px;
  padding-bottom: 68px;
  text-align: center;
}
.product-right-ft {
  text-align: center;
  margin-bottom: 28px;
  margin-top: 20px;
}
.product-right-free {
  width: 100%;
  max-width: 400px;
  height: 64px;
  line-height: 64px;
  background: #FFFFFF;
  border: 1px solid #D6E2E8;
  border-radius: 32px;
  font-size: 22px;
  cursor: pointer;
  transition: background .3s;
}
.product-right-free:hover {
  background: #fafafa;
}
/* 菜单 */
.product-menu {
}
.product-menu-card {
  max-width: 440px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 16px 30px;
  background: #FFFFFF;
  box-shadow: 0px 32px 79px 0px rgba(106,142,201,0.15);
  border-radius: 8px;
  margin-bottom: 19px;
  cursor: pointer;
}
.product-menu-card:hover {
  opacity: .8;
}
.product-menu-card.active {
  color: #3F65CA;
}
.product-menu-card.active:after {
  content: '';
  position: absolute;
  right: -32px;
  top: 50%;
  width: 5px;
  height: 42px;
  transform: translateY(-50%);
  background-color: #6692EC;
}
.product-menu-title {
  font-size: 22px;
  font-weight: 600;
  color: #3F65CA;
}
.product-menu-sub {
  font-size: 14px;
  opacity: 0.3;
  margin-top: 6px;
}
.product-menu-img {
  width: 28px;
  height: 28px;
}
.product-menu-main {
  flex: 1;
  margin-left: 18px;
}
/* 菜单 => 免费试用按钮 */
.product-menu-tree {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background: #6692EC;
  box-shadow: 0px 32px 79px 0px rgba(106,142,201,0.15);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  height: 88px;
  display: flex;
  padding-left: 37px;
  padding-right: 37px;
  align-items: center;
  transition: opacity 0.2s;
}
.product-menu-tree:hover {
  opacity: 0.8;
}
.product-menu-tree .iconfont {
  font-size: 24px;
}
/* 新闻列表 */
.product-news-card {
  display: block;
  color: #000;
  border-radius: 16px;
  margin: 0 auto 61px;
  overflow: hidden;
  max-width: 440px;
  background: #FFFFFF;
  border: 1px solid #EAECF0;
}
.product-news-img {
  -o-object-fit: cover;
  object-fit: cover;
  /* height: 248px; */
  width: 100%;
  transform-origin: center center
}

.product-news-bd {
  padding: 27px 36px 28px
}

.product-news-title {
  font-size: 20px;
  font-weight: 600;
}
.product-news-des {
  margin-top: 4px;
  font-size: 16px;
  color: #525968;
  line-height: 24px;
}
/* 移动端布局 */
@media (max-width: 992px) {
  .product-left-title {
    font-size: 16px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 20px;
    text-align: center;
  }
  .product-menu-tree .iconfont {
    display: none;
  }
  .product-menu-icon {
    display: none;
  }
  .product-menu-main {
    margin-left: 0;
    text-align: center;
  }
  .product-menu-sub {
    display: none;
  }
  .product-menu-tree,
  .product-menu-card {
    padding: 8px 0;
    margin-bottom: 0px;
    border-radius: 0;
  }
  .product-menu-card.active:after {
    right: 0;
    height: 20px;
  }
  .product-menu-tree {
    height: auto;
    font-size: 14px;
    justify-content: center;
  }
  .product-menu-card {
    transition: opacity 0.2s;
  }
  .product-menu-card:hover {
    opacity: 0.8;
    background: rgba(106,142,201,0.05);
  }
  .product-menu-title {
    font-size: 16px;
    font-weight: 400;
  }
  .product-left {
    padding: 0;
    padding-bottom: 0;
    max-width: 308px;
    min-width: 100px;
  }
  .product-left-title,
  .product-right {
    padding-top: 40px;
  }
  .product-right-title {
    padding-bottom: 40px; 
  }
  .product-news-card {
    margin-bottom: 20px;
  }
  .product-news-bd {
    padding: 10px 20px 10px; 
  }
  .product-news-title {
    font-size: 18px;
  }
  .product-news-des {
    font-size: 14px;
  }
  .product-right-free {
    max-width: 220px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
  }
}