@import url(./common.css);

.products{
  background-color: #F0F0F0;
}
.products .content{
  max-width:120rem;
  margin:0 auto;
  padding: 10rem 0;
  display: flex;
}
.products .content .leftMenu{
  min-width: 20rem;
  margin-right: 12rem;
}
.products .content .leftMenu .button{
  display: none;
  justify-content: flex-end;
  cursor: pointer;
}
.products .content .leftMenu .title{
  margin-bottom: 1rem;
  font-size:1.8rem;
  display:block;
}
.products .content .leftMenu ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size:1.8rem;
}
.products .content .leftMenu ul li{
  cursor: pointer;
}
.products .content .leftMenu > ul > li.sub > a:after{
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-left: 10px;
  font-size: 1rem;
}
.products .content .leftMenu > ul > li.sub.active > a:after{
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-left: 10px;
  font-size: 1rem;
}
.products .content .leftMenu > ul > li.sub.active > a{
	color:#28A7E1;
}
.products .content .leftMenu > ul > li + li{
  margin-top: 1rem;
}
.products .content .leftMenu > ul > li > .subMenu{
  overflow: hidden;
  transition: height .3s ease;
  padding-left:1.4rem;
}
.products .content .leftMenu > ul > li > .subMenu > li{
  margin-top: 1rem;
  font-size: 1.4rem;
}
.products .content .leftMenu > ul > li > .subMenu > li:last-child{
	margin-bottom:1rem;
}
.products .content .leftMenu > ul > li > .subMenu > li:hover{
	color:#28A7E1;
}
.products .content .rightList{
  padding: 0 15PX;
  flex: 1;
}
.products .content .rightList .selectedMenu{
  flex: 0 0 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.products .content .rightList .selectedMenu .item{
  margin-right: 1.6rem;
  background-color: #fff;
  color: #000;
  padding: .8rem 2.4rem;
  border-radius: 4.8rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.products .content .rightList .selectedMenu .item img{
  width: 1.2rem;
  cursor: pointer;
  margin-right: 1rem;
}
.products .content .rightList .selectedMenu .item img:hover{
  opacity: .8;
}
.products .content .rightList .list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.products .content .rightList .list .product{
  padding: 0 5px;
  margin-bottom: 4rem;
  flex: 0 0 25%;
}
.products .content .rightList .list .product .img{
  position: relative;
  margin-bottom: 1.2rem;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #fff;
}
.products .content .rightList .list .product .img img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.products .content .rightList .list .product .img .quikBtn{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: .8rem 0;
  background-color: #28A7E1;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  display: none;
}
.products .content .rightList .list .product .img:hover .quikBtn{
  display: flex;
}
.products .content .rightList .list .product .img .quikBtn i{
  margin-right: 13px;
}
.products .content .rightList .list .product .name{
  font-size: 1.4rem;
}
.products .content .rightList .list .product .name a{
  color: #000;
  text-decoration: none;
}
.products .content .rightList .list .product .name a:hover{
  opacity: .8;
}
@media (max-width: 1200px){
  .products .content{
    flex-wrap: wrap;
    padding:3.2rem 0;
  }
  .products .content .leftMenu{
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1.6rem;
    position: relative;
  }
  .products .content .leftMenu .button{
    display: flex;
    padding: 1rem 0;
  }
  .products .content .leftMenu .title{
    display: none;
  }
  .products .content .leftMenu > ul{
    width: 100%;
    padding: 1.5rem 2rem;
    position: absolute;
    z-index: 2;
    background-color: #fff;
    transform: scaleY(0);
    transition-duration: .3s;
    transform-origin: top;
  }
  .products .content .leftMenu.active > ul{
    transform: scaleY(1);
  }
  .products .content .rightList .selectedMenu{
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
  }
  .products .content .rightList .selectedMenu .item{
    font-size: 1.2rem;
    padding: .4rem 1.6rem;
    white-space:nowrap;
    margin-bottom: 1.2rem;
  }
  .products .content .rightList .selectedMenu .item img{
    width: .8rem;
  }
  .products .content .rightList .list .product{
    flex: 0 0 50%;
    margin-bottom: 2.4rem;
  }
  .products .content .rightList .list .product .name{
    font-size: 1.2rem;
  }
}
/* 彈窗 */
.productDialog{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: none;
}
.productDialog.active{
  display: block;
}
.productDialog::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .4;
}
.productDialog .container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
}
.productDialog .content{
  position: relative;
  width: 100%;
  background-color: #fff;
  width: 120rem;
  padding: 8rem 9.6rem 0 9.6rem;
}
.productDialog .content .closeBtn{
  position: absolute;
  width: 3.2rem;
  top: 3.2rem;
  right: 3.2rem;
  cursor: pointer;
}
.productDialog .content .closeBtn:hover{
  opacity: .8;
}
.productDialog .content .main{
  display: flex;
  margin-bottom: 8rem;
}
.productDialog .content .main .productImg{
  flex: 0 0 46.2rem;
  margin-right: 8rem;
}
.productDialog .content .main .productImg img{
  width: 100%;
}
.productDialog .content .main .desc{
  flex: 1;
}
.productDialog .content .main .desc .name{
  font-size: 4.6rem;
  font-weight: 600;
}
.productDialog .content .main .desc .iso{
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
}
.productDialog .content .main .desc .txt{
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
}
.productDialog .content .main .desc .txt .item{
  display: flex;
  align-items: center;
  margin-bottom: .56rem;
}
.productDialog .content .main .desc .txt .item label{
  margin-bottom: 0;
  flex: 0 0 9.6rem;
  margin-right: 3.2rem;
}
.productDialog .content .main .desc .tip{
  color: #7B7B7B;
  font-size: 1.2rem;
}
.productDialog .content .moreBtn{
  background-color: #28A7E1;
  color: #fff;
  margin: 0 -9.6rem;
}
.productDialog .content .moreBtn a{
  display: block;
  padding: 2.4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.productDialog .content .moreBtn a:hover{
  opacity: .8;
}
@media (max-width: 1200px){
  .productDialog .content{
    width: 100%;
    padding: 8rem 6.4rem 0 6.4rem;
  }
  .productDialog .content .main .productImg{
    flex: 0 0 32rem;
    margin-right: 4.8rem;
  }
  .productDialog .content .moreBtn{
    margin: 0 -6.4rem;
  }
}
@media (max-width: 991px){
  .productDialog .content{
    width: 100%;
    padding: 6.4rem 4.8rem 0 4.8rem;
  }
  .productDialog .content .closeBtn{
    width: 2.4rem;
    top: 2.4rem;
    right: 2.4rem;
  }
  .productDialog .content .main{
    margin-bottom: 4.8rem;
  }
  .productDialog .content .main .productImg{
    flex: 0 0 28.8rem;
    margin-right: 3.2rem;
  }
  .productDialog .content .main .desc .name{
    font-size: 2.4rem;
  }
  .productDialog .content .main .desc .iso{
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .productDialog .content .main .desc .txt{
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .productDialog .content .moreBtn{
    margin: 0 -4.8rem;
    padding: 1.6rem 0;
  }
}
@media (max-width: 767px){
  .productDialog .content .main{
    flex-wrap: wrap;
  }
  .productDialog .content .main .productImg{
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
  .productDialog .content{
    padding: 6.4rem 3.2rem 0 3.2rem;
    max-height: 70vh;
    overflow-y: scroll;
  }
  .productDialog .content .moreBtn{
    margin: 0 -3.2rem;
  }
}

.productInfo{
  margin-top: 81px;
  padding: 6.8rem 0;
  background-color: #F0F0F0;
}
.productInfo .top{
  max-width: 1040px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.productInfo .top .backBtn{
  margin-bottom: 8rem;
  cursor: pointer;
}
.productInfo .top .backBtn a{
  display: flex;
  align-items: center;
}
.productInfo .top .backBtn a span{
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #28A7E1;
  color: #fff;
  border-radius: 100%;
  margin-right: 1rem;
}
.productInfo .top .main{
  display: flex;
  margin-bottom: 8rem;
}
.productInfo .top .main .productSlider{
  flex: 0 0 46.2rem;
  margin-right: 8rem;
}
.productInfo .top .main .productImg{
  position: relative;
  margin-bottom: 10px;
  background-color: #fff;
}
.productInfo .top .main .productImg img{
  width: 100%;
}
.productInfo .top .main .productImg .zoom{
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  cursor: pointer;
}
.productInfo .top .main .productImg .zoom:hover{
  opacity: .8;
}
.productInfo .top .main .productSlider .list{
  margin: 0 -5px;
  display: flex;
  align-items: center;
}
.productInfo .top .main .productSlider .list .pro{
  flex: 0 0 20%;
  padding: 0 5px;
}
.productInfo .top .main .productSlider .list .pro .img{
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
.productInfo .top .main .productSlider .list .pro .img::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
}
.productInfo .top .main .productSlider .list .pro .img:hover::after{
  opacity: .2;
}
.productInfo .top .main .desc{
  flex: 1;
}
.productInfo .top .main .desc .name{
  font-size: 3.6rem;
  font-weight: 600;
}
.productInfo .top .main .desc .iso{
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
}
.productInfo .top .main .desc .txt{
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
}
.productInfo .top .main .desc .txt .item{
  display: flex;
  align-items: center;
  margin-bottom: .6rem;
}
.productInfo .top .main .desc .txt .item label{
  margin-bottom: 0;
  flex: 0 0 9.6rem;
  margin-right: 3.2rem;
}
.productInfo .top .main .desc .tip{
  color: #7B7B7B;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
.productInfo .top .main .desc .download .item{
  display: flex;
  align-items: center;
  font-size:1.4rem;
  margin-bottom: 1.2rem;
  cursor: pointer;
}
.productInfo .top .main .desc .download .item:last-child{
  margin-bottom: 0;
}
.productInfo .top .main .desc .download .item:hover{
  opacity: .8;
}
.productInfo .top .main .desc .download .item img{
  width: 1.4rem;
  margin-right: 1.2rem;
}
.productInfo .proBgWhite{
  background-color: #fff;
  padding: 10rem 0;
}
.productInfo .middle{
  max-width: 896px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.productInfo .middle .title{
  color: #28A7E1;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2.625rem;
}
.productInfo .bottom{
  padding-top: 6.875rem;
}
.productInfo .bottom .title{
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5rem;
}
.productInfo .bottom .slider{
  position: relative;
}
.productInfo .bottom .slider .productBottomSlider{
  width:112rem;
  margin: 0 auto;
}
.productInfo .bottom .slider .productBottomSlider .item .img{
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-color: #fff;
  margin-bottom: 2.4rem;
}
.productInfo .bottom .slider .productBottomSlider .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.productInfo .bottom .slider .productBottomSlider .item .name a{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.productInfo .bottom .slider .productBottomSlider .item .name a span{
  flex: 0 0 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #28A7E1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
}
.productInfo .bottom .slider .sliderBtns{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.productInfo .bottom .slider .sliderBtns .pre,.productInfo .bottom .slider .sliderBtns .next{
  width: 5.4rem;
  cursor: pointer;
}
.productInfo .bottom .slider .sliderBtns .next{
  transform: rotate(-180deg);
}
@media (min-width: 576px){
  .productInfo .top,.productInfo .middle{
    max-width: 540px;
  }
}
@media (min-width: 768px){
  .productInfo .top,.productInfo .middle{
    max-width: 720px;
  }
}
@media (min-width: 992px){
  .productInfo .top,.productInfo .middle{
    max-width: 960px;
  }
}

@media (max-width: 1200px){
  .productInfo{
    margin-top: 0;
    padding: 5.6rem 0;
  }
  .productInfo .top .backBtn{
    margin-bottom: 6.4rem;
  }
  .productInfo .top .backBtn span{
    width: 2.4rem;
    height: 2.4rem;
  }
  .productInfo .top .main{
    margin-bottom: 6.4rem;
  }
  .productInfo .top .main .productSlider{
    flex: 0 0 32rem;
    margin-right: 4.8rem;
  }
  .productInfo .proBgWhite{
    padding: 8.8rem 0;
  }
  .productInfo .middle .title{
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
  .productInfo .bottom{
    padding-top: 8.8rem;
  }
  .productInfo .bottom .title{
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .productInfo .bottom .slider .productBottomSlider{
    width:64rem;
  }
  .productInfo .top .main .desc .name{
    font-size: 3rem;
  }
}
@media (max-width: 991px){
  .productInfo{
    padding: 4.8rem 0;
  }
  .productInfo .top .backBtn{
    margin-bottom: 4.8rem;
  }
  .productInfo .top .main{
    margin-bottom: 4.8rem;
  }
  .productInfo .top .main .productSlider{
    flex: 0 0 28.8rem;
    margin-right: 3.2rem;
  }
  .productInfo .top .main .desc .name{
    font-size: 2rem;
  }
  .productInfo .top .main .desc .iso{
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .productInfo .top .main .desc .txt{
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .productInfo .proBgWhite{
    padding: 6.4rem 0;
  }
  .productInfo .bottom{
    padding-top: 6.4rem;
  }
  .productInfo .bottom .slider .productBottomSlider{
    width: 48rem;
  }
  .productInfo .bottom .slider .sliderBtns .pre,.productInfo .bottom .slider .sliderBtns .next{
    width: 4rem;
  }
  .productInfo .bottom .slider .productBottomSlider .item .img{
    margin-bottom: 1.6rem;
  }
  .productInfo .bottom .slider .productBottomSlider .item .name{
    font-size: 1.2rem;
  }
  .productInfo .bottom .slider .productBottomSlider .item .name span{
    flex: 0 0 2.4rem;
    height: 2.4rem;
  }
}
@media (max-width: 767px){
  .productInfo{
    padding: 3.2rem 0;
  }
  .productInfo .top .backBtn{
    margin-bottom: 3.2rem;
  }
  .productInfo .top .main{
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
  }
  .productInfo .top .main .productSlider{
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
  .productInfo .top .main .desc .name{
    font-size: 2.4rem;
  }
  .productInfo .proBgWhite{
    padding: 4.8rem 0;
  }
  .productInfo .bottom{
    padding-top: 4.8rem;
  }
  .productInfo .bottom .slider .productBottomSlider{
    width: 32rem;
  }
  .productInfo .bottom .slider .sliderBtns .pre,.productInfo .bottom .slider .sliderBtns .next{
    width: 3.2rem;
  }
}

.imgDialog{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: none;
}
.imgDialog.active{
  display: block;
}
.imgDialog::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .4;
}
.imgDialog .container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
}
.imgDialog .content{
  position: relative;
  width: 100%;
  background-color: #fff;
  width: 80rem;
  max-width: 100%;
  padding: 2rem;
}
.imgDialog .content .closeBtn{
  position: absolute;
  width: 3.2rem;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size:2.4rem;
}
.imgDialog .content .closeBtn:hover{
  opacity: .8;
}
.imgDialog .content .main img{
  width: 100%;
}