﻿.product-container {
  width: 100%;
  min-height: calc(573 / 1920 *100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #F5F5F5;
}

.pContainer{
  width: 75%;
  /* height: 100%; */

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.pContainer .selectionType{
    margin-top: calc(10 / 1920 *100vw);
    width: 100%;
    height: calc(150 / 1920 *100vw);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
}
.pContainer .selectionType .typeLine{
  margin-top: calc(19 / 1920 *100vw);
    width: 100%;
    height: calc(30 / 1920 *100vw);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.pContainer .selectionType .typeLine .lineTitle1{
  font-size: calc(17 / 1920 *100vw);
    margin-left: calc(30 / 1920 *100vw);
    font-weight: bold;
}
.pContainer .selectionType .typeLine .lineTitle2{
    font-size: calc(20 / 1920 *100vw);
    margin-left: calc(20 / 1920 *100vw);
    cursor: pointer;
}

.pContainer .eachItem{
  margin-top: calc(20 / 1920 *100vw);

  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: calc(40 / 1920 *100vw);
}

.pContainer .eachItem .itemBox{
  border-bottom-right-radius: calc(10 / 1920 *100vw);
    width: 23%;
    height: calc(333 / 1920 *100vw);
    margin-top: calc(20 / 1920 *100vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    border-bottom-left-radius: calc(10 / 1920 *100vw);
    cursor: pointer;
}
.pContainer .eachItem .itemBox:hover{
  cursor: pointer;
  border-bottom-right-radius: calc(10 / 1920 *100vw);
    width: 23%;
    height: calc(333 / 1920 *100vw);
    margin-top: calc(20 / 1920 *100vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    border-bottom-left-radius: calc(10 / 1920 *100vw);

    
     /*动画配置 */
    /* 1、设置动画名称 */
    animation-name: LeftToRight;
    /* 2、动画持续时间 */
    animation-duration: 300;
    /* 3、动画执行速度 */
    animation-timing-function: linear;
    /* 4、等待时长 */
    /* animation-delay: 2s; */
    /* 5、设置动画播放次数 */
    animation-iteration-count: 1;
    /* 6、设置动画是否反向播放 */
    animation-direction: normal;
    /* 7、动画结束时应用最后一帧 */
    animation-fill-mode: forwards;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
                    
}
@keyframes LeftToRight {
  0% {
    transform: translateY(calc( 0/ 1920 *100vw));
  }

  100% {
    transform: translateY(calc(-5 / 1920 *100vw));
    box-shadow: calc(2 / 1920 *100vw) calc( 4/ 1920 *100vw) calc( 5/ 1920 *100vw) calc( 0/ 1920 *100vw) rgba(214, 209, 209, 0.5);
    
  }
}
.pContainer .eachItem .itemBox .itemBoxImgOut{
  width: 100%;
  height: calc(170 / 1920 *100vw);
  overflow: hidden;
}
.pContainer .eachItem .itemBox .itemBoxImgOut .itemBoxImg{
  width: 100%;
}
.pContainer .eachItem .itemBox .itemBoxImgOut .itemBoxImg:hover{
  width: 100%;
  scale: 1.1;
}

.pContainer .eachItem .itemBox .title{
  font-size: calc(16 / 1920 *100vw);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
    margin-top: calc(8 / 1920 *100vw);
    margin-left: calc(38 / 1920 *100vw);
    letter-spacing: calc(1 / 1920 *100vw);
}
.pContainer .eachItem .itemBox .explain{
  margin-top: calc(12 / 1920 *100vw);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font-size: calc(14 / 1920 *100vw);
    margin-left: calc(37 / 1920 *100vw);
}
.pContainer .eachItem .itemBox .price{
  font-weight: bold;
  margin-top: calc(28 / 1920 *100vw);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: calc(17 / 1920 *100vw);
  margin-right: calc(48 / 1920 *100vw);
  color: red;
    
}
/*************************************************************************************************/

.scene-container {
  width: 100%;
  height: calc( 769/ 1920 *100vw);
  background: #f1f7fb;
  padding-top: calc(80 / 1920 *100vw);
  overflow: hidden;
}

.scene-container .content {
  display: flex;
  justify-content: center;
  margin-top: calc(101 / 1920 *100vw);
}

.scene-container .content .content-left {
  margin-right: calc( 244/ 1920 *100vw);
}

.scene-container .scene-item {
  width: calc(453 / 1920 *100vw);
}

.scene-container .scene-item img {
  width: calc(158 / 1920 *100vw);
  height: calc(150 / 1920 *100vw);
  vertical-align: middle;
}

.scene-container .scene-item .right {
  display: flex;
  flex-direction: column;
  width: calc(295 / 1920 *100vw);
  margin-left: calc(24 / 1920 *100vw);
}

.scene-container .scene-item + .scene-item {
  margin-top: calc(145 / 1920 *100vw);
}

.scene-item .right .title {
  font-size: calc(18 / 1920 *100vw);
  font-weight: 400;
  color: #333;
  margin-top: calc(9 / 1920 *100vw);
}

.scene-item .right .description {
  margin-top: calc(17 / 1920 *100vw);
  font-size: calc(14 / 1920 *100vw);
  font-weight: 400;
  color: rgba(51, 51, 51, 0.4);
}

.information-container {
  width: 100%;
  height: calc(402 / 1920 *100vw);
  background: url('../images/info-bg.png') center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.information-container .info-item {
  display: flex;
  flex-direction: column;
}

.information-container .info-item + .info-item {
  margin-left: calc( 44/ 1920 *100vw);
}

.information-container .info-item .top {
  font-family: 'AdiHaus', 'AdiHaus-Bold';
  font-weight: 700;
  margin-bottom: calc(4 / 1920 *100vw);
  font-size: calc(40 / 1920 *100vw);
  background: linear-gradient(180deg, #1ee7a9, #06bda0 72%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.information-container .info-item .bottom {
  color: #333;
  font-size: calc(16 / 1920 *100vw);
  font-weight: 400;
}

.cooperation-container {
  width: 100%;
  height: calc(470 / 1920 *100vw);
  position: relative;
  overflow: hidden;
  background-color: #f7fbfd;
}

.cooperation-container .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(803 / 1920 *100vw);
  height: calc(226 / 1920 *100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: url('../images/filter.png') center center no-repeat;
  background-size: cover;
  z-index: 99;
}

.cooperation-container .title span {
  font-size: calc(32 / 1920 *100vw);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

.cooperation-container ul li {
  display: block;
  width: 800%;
  overflow: hidden;
}

.cooperation-container ul li:nth-child(odd) .imgList {
  animation-duration: 15s;
  animation-delay: 1s;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.cooperation-container .imgList {
  float: left;
  animation: move 15s linear infinite forwards;
}






.foot{
  width: 100%;
  height: calc(200 / 1920 *100vw);

  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
}
.foot .left{
  margin-left: calc(270 / 1920 *100vw);
  width: calc(534 / 1920 *100vw);
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.foot .left .leftImg{
  margin-top: calc(21 / 1920 *100vw);
  width: calc(250 / 1920 *100vw);
}
.foot .left .linkBox{
  width: 100%;
  height: calc(20 / 1920 *100vw);

  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: calc(20 / 1920 *100vw);

}
.foot .left .linkBox span{
  color: black;
  padding-left: calc(20 / 1920 *100vw);
  padding-right: calc(20 / 1920 *100vw);
    font-size: calc(15 / 1920 *100vw);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot .middle{
  width: calc(400 / 1920 *100vw);
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.foot .middle .phone{
  font-weight: 600;
    margin-top: calc(75 / 1920 *100vw);
    font-size: calc(28 / 1920 *100vw);
    color: black;
}
.foot .middle .font{
  color: black;
}
.foot .right{
  width: calc(400 / 1920 *100vw);
  height: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: calc(200 / 1920 *100vw);
}
.foot .right .ewm{
  width: calc(150 / 1920 *100vw);
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

}

.foot .right .ewm .squareBox{
  margin-top: calc(30 / 1920 *100vw);
    width: calc(120 / 1920 *100vw);
    height: calc(120 / 1920 *100vw);
    border: calc(1 / 1920 *100vw) solid white;
    border-radius: calc(10 / 1920 *100vw);
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot .right .ewm .squareBox .img{
  width: calc(105 / 1920 *100vw);
  height: calc(105 / 1920 *100vw);
  background-color: #fff;
  border-radius: calc(10 / 1920 *100vw);
}
.foot .right .ewm .squareBox .img img{
  width: 100%;
}

.foot .right .ewm .font{
  font-size: calc(14 / 1920 *100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: calc(10 / 1920 *100vw);
}