.index {
  display: -moz-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background-color: #f2f2f2;
}

.header-box {
  -moz-flex: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #ffffff;
}

.header {
  display: -moz-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  height: 140px;
  gap: 64px;
}
.header .logo {
  -moz-flex: auto;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: -moz-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #000;
  outline: none;
}
.header .logo img {
  -moz-flex: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  width: 80px;
}
.header .logo .title {
  -moz-flex: auto;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 380px;
  font-size: 39px;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header .logo .p-name {
  display: none;
}
.header .menu {
  display: -moz-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-flex: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  gap: 42px;
}
.header .menu li {
  text-align: center;
}
.header .menu li .cn-title {
  line-height: 1.5;
  font-size: 26px;
  color: #000;
  font-weight: 500;
}
.header .menu li .en-title {
  color: #666666;
  font-size: 18px;
}

.index-product {
  -moz-flex: auto;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 1200px;
  margin: 30px auto;
  padding: 0;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index-product-list {
  display: -moz-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.index-product-list .list-item {
  -moz-flex: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: calc((100% - 80px) / 5);
  padding: 10px 15px 8px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px 2px rgba(26, 36, 86, 0.0784313725);
          box-shadow: 0 0 4px 2px rgba(26, 36, 86, 0.0784313725);
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index-product-list .list-item img {
  display: block;
  width: 100%;
  height: 120px;
}
.index-product-list .list-item .info {
  margin-top: 10px;
}
.index-product-list .list-item .info .title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.index-product-list .list-item .info .desc {
  color: #999;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-product-list .list-item .info .price {
  color: #f40a25;
  font-size: 1.28rem;
  line-height: 1.4;
  margin-top: 8px;
}
.index-product-list .list-item .info .price .unit {
  font-size: 14px;
}
.index-product .view-more {
  margin-top: 20px;
  text-align: center;
}
.index-product .view-more a {
  font-size: 0.896rem;
  color: #999;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .index {
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.96rem;
    min-height: 100vh;
    background-color: #f2f2f2;
  }
  .index .header-box {
    -moz-flex: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    position: relative;
    background-color: transparent;
  }
  .index .header {
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -moz-justify-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    height: auto;
    gap: 0;
  }
  .index .header .logo {
    -moz-flex: auto;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.96rem;
    width: 100%;
  }
  .index .header .logo img {
    -moz-flex: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
    width: 5.12rem;
  }
  .index .header .logo .title {
    display: none;
    -moz-flex: auto;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin: 0;
    max-width: calc(100% - 6.08rem);
    font-size: 1.152rem;
    font-weight: 500;
    line-height: 1.5;
    vertical-align: bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .index .header .logo .p-name {
    display: block;
  }
  .index .header .menu {
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -moz-flex: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    gap: 42px;
    display: none;
  }
  .index .header .menu li {
    text-align: center;
  }
  .index .header .menu li .cn-title {
    line-height: 1.5;
    font-size: 26px;
    color: #000;
    font-weight: 500;
  }
  .index .header .menu li .en-title {
    color: #666666;
    font-size: 18px;
  }
  .index .index-product {
    -moz-flex: auto;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    margin: 1.28rem auto;
    padding: 0;
    background-color: transparent;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .index .index-product .title-box {
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -moz-justify-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: none;
    margin-bottom: 0.96rem;
  }
  .index .index-product .title-box .cn-title {
    font-size: 1.152rem;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
  }
  .index .index-product .title-box .en-title {
    position: relative;
    font-size: 0.896rem;
    color: #999999;
  }
  .index .index-product .title-box .en-title::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 24px;
    height: 1px;
    background-color: #999;
  }
  .index .index-product-list {
    display: -moz-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.96rem;
  }
  .index .index-product-list .list-item {
    -moz-flex: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: calc((100% - 0.96rem) / 2);
    padding: 0.64rem 0.96rem 0.512rem;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 4px 2px rgba(26, 36, 86, 0.0784313725);
            box-shadow: 0 0 4px 2px rgba(26, 36, 86, 0.0784313725);
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .index .index-product-list .list-item img {
    display: block;
    width: 100%;
    height: 7.68rem;
  }
  .index .index-product-list .list-item .info {
    margin-top: 0.64rem;
  }
  .index .index-product-list .list-item .info .title {
    color: #333;
    font-size: 0.896rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .index .index-product-list .list-item .info .desc {
    color: #999;
    font-size: 0.768rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .index .index-product-list .list-item .info .price {
    color: #f40a25;
    font-size: 1.152rem;
    line-height: 1.4;
    margin-top: 0.512rem;
  }
  .index .index-product-list .list-item .info .price .unit {
    font-size: 0.768rem;
  }
  .index .index-product .view-more {
    margin-top: 20px;
    text-align: center;
  }
  .index .index-product .view-more a {
    font-size: 0.896rem;
    color: #999;
    cursor: pointer;
  }
}