@charset "UTF-8";
@import url(../Base.css);
.button-hover {
  transition: all 0.3s ease; }

.button-hover:hover {
  -webkit-box-shadow: 0px 2px 4px 0px #208aec;
  box-shadow: 0px 2px 4px 0px #208aec;
  -webkit-transform: translateY(-0.2rem);
  transform: translateY(-0.2rem);
  -webkit-transition-duration: .45s;
  transition-duration: .45s; }

.product-page .product-component {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 47px;
  background-color: #F7F8FA;
  height: 909px;
  position: relative; }
  .product-page .product-component .product-wrap {
    width: 1200px;
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%); }
    .product-page .product-component .product-wrap .side-tab {
      display: -webkit-flex;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: nowrap;
      position: absolute;
      top: 0;
      left: -54px;
      width: 54px;
      transition: all 0.3s linear;
      -moz-transition: all 0.3s linear;
      /* Firefox 4 */
      -webkit-transition: all 0.3s linear;
      /* Safari 和 Chrome */
      -o-transition: all 0.3s linear;
      /* Opera */ }
      .product-page .product-component .product-wrap .side-tab > a {
        background-color: #fff;
        height: 132px;
        width: 100%;
        font-size: 18px;
        font-weight: 400;
        padding: 18px 14px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
        box-shadow: -2px 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 12px 0 0 12px;
        display: block; }
        .product-page .product-component .product-wrap .side-tab > a:not(:last-child) {
          margin-bottom: 2px; }
      .product-page .product-component .product-wrap .side-tab .current {
        background-color: #207CFF;
        color: #fff; }
    .product-page .product-component .product-wrap .product-item {
      width: 100%;
      height: 440px;
      background-color: #fff;
      padding-top: 60px;
      padding-bottom: 75px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      box-shadow: 0 8px 27px 0 rgba(20, 24, 30, 0.07);
      border-radius: 6px;
      position: relative;
      display: -webkit-flex;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap; }
      .product-page .product-component .product-wrap .product-item:not(:last-child) {
        margin-bottom: 30px; }
      .product-page .product-component .product-wrap .product-item > header {
        font-size: 36px;
        color: #333333;
        text-align: center;
        margin-bottom: 30px; }
        .product-page .product-component .product-wrap .product-item > header:after {
          content: '';
          display: block;
          width: 30px;
          height: 4px;
          background: #207cff;
          margin: 10px auto 0; }
      .product-page .product-component .product-wrap .product-item > p {
        font-size: 16px;
        color: #666666;
        text-align: center;
        margin-bottom: 60px; }
      .product-page .product-component .product-wrap .product-item > ul {
        width: 100%;
        padding: 0 100px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap; }
        .product-page .product-component .product-wrap .product-item > ul > li {
          text-align: center; }
          .product-page .product-component .product-wrap .product-item > ul > li > a {
            width: 140px;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap; }
            .product-page .product-component .product-wrap .product-item > ul > li > a:hover {
              background: linear-gradient(180deg, white 0%, #f0f3f7 50%, white 100%); }
            .product-page .product-component .product-wrap .product-item > ul > li > a > img {
              width: 80px;
              height: 80px;
              border-radius: 18px;
              margin-bottom: 16px; }
