body{
  --body-span: 10px;
  --body-span-bottom: 20px;
  --body-left-scroll: 280px;
  --body-right-box-width: calc((1410px - var(--body-left-scroll) - var(--body-span) * 4) / 4);
  overflow-x: hidden;
  --product-navigation-bottom: 20px;
  --product-input-tile-height: 40px;
}

*{
  margin: 0;
  padding: 0;
  
}

.indexPage {
  width: 100vw;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexPage .indexCon{
  width: 1440px;
  height: 100%;
  /* background-color: beige; */
}
/*
<!-- 上方登录的页面 -->
*/
.topBox{
  width: 100vw;
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  display: flex ;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px 8px rgba(0, 0, 0, .3);
}
.indexTop{
  width: 1440px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.indexTop .logo{
  width: 100px;
  height: 30px;
  background-color: blueviolet;
}
.topTile{
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.topTile .titleBox{
  margin-left: 10px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  color: #333;
}
/*
<!-- 下方轮播图 -->
*/
#ImgBox{
  width: 1440px;
  
}
.shopImgBox{
  background-color: #a2f4aa;
  height: 300px;
  position: relative;
}
.carouselBoxFont{
  position: absolute;
  left: 0;
  top: 40%;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}


/*

<!-- 中间主要内容 -->

*/
  
.productMainCon{
  display: flex;
  flex-direction: row;
  position: relative;
}
/* <!-- 左边搜索与目录部分 --> */
.navigationBox{
  /* display: flex;
  flex-direction: column; */
  width: var(--body-left-scroll);
  position: sticky;
  top: 85px;
}

.searchBtn{
  width: 100%;
  height: var(--product-input-tile-height);
  position: relative;
  box-shadow: 0 4px 12px var(--t-color-a-1);
}

.searchInput{
  height: var(--product-input-tile-height);
  border-radius: 6px;
}

.searchImg{
  position: absolute;
  right: 10px;
  top: 0px;
  height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.productSearch{
  width: calc(var(--body-left-scroll) * 1);
  display: flex;
  flex-direction: row;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 500ms ease-in-out;
  box-shadow: 0 4px 12px var(--t-color-a-1);
}
/*.productSearch:hover{*/
/*  box-shadow: 2px 2px 10px var(--t-color-a-3);*/
/*}*/

.productTitle{
  padding: var(--body-span);
}
.productTile{
  font-size: 22px;
  color: #555353;
  line-height: 26px;
  padding-bottom: 10px;
  padding-left: var(--body-span);
  margin-top: var(--body-span);
  width: calc(var(--body-left-scroll) - var(--body-span) * 2);
  border-bottom: 1px solid #dbdada;
}

.productList{
  width: calc(var(--body-left-scroll) * 1);
  height: 1080px;
  min-height: 600px !important;
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}

.productList .listBox{
  max-width: calc(var(--body-left-scroll) - var(--body-span) * 1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: var(--body-span) calc(var(--body-span) * 2);
  min-height: 40px;
  color: #333;
}
.listBox:hover{
  color: var(--t-color);
  font-weight: 600;
}

.listBox span{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  -webkit-line-clamp: 1;
  width: calc(var(--body-left-scroll) * 0.9);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
}


/* <!-- 右边产品主要页面 --> */
.productContentPage{
  display: flex;
  flex-direction: column;
  width: calc(1410px - var(--body-left-scroll));
  /*box-shadow: 0 4px 12px var(--t-color-a-1);*/
}
.productContentPage .my-shadow {
    box-shadow: 0 4px 12px var(--t-color-a-1);
}
.productTileFont{
  margin-left: var(--body-span);
  height: var(--product-input-tile-height);
  font-size: 20px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #333;
  /*border-bottom: 1px solid rgba(0,0,0,0.3);*/
}

.productShowImg{
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  
}

.productShowImg2{
  width: 100%;
}
.productShowImg .showImgBox{
  width: var(--body-right-box-width);
  background-color: #fff;
  margin-left: var(--body-span);
  margin-bottom: var(--body-span-bottom);
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 500ms ease-in-out;
  box-shadow: 0 4px 12px var(--t-color-a-1);
}
/*.showImgBox:hover{*/
/*  box-shadow: 2px 2px 10px var(--t-color-a-3);*/
/*}*/
.showImageCase{
  width: var(--body-right-box-width);
  height: calc(var(--body-right-box-width) * 0.66);
  cursor: pointer;
  overflow: hidden;
}
.showImage {
  width: var(--body-right-box-width);
  height: calc(var(--body-right-box-width) * 0.66);
  background-color: #dddddd;
  transition: all 0.5s ease-in-out;
}

.searchList .showImgBox{
  width: calc((1400px - var(--body-span) * 3) / 4) !important;
}
.searchList .showImageCase{
  width: calc((1410px - var(--body-span) * 3) / 4) !important;
  height: calc(((1410px - var(--body-span) * 3) / 4) * 0.66) !important;
}
.searchList .showImage{
  width: calc((1410px - var(--body-span) * 3) / 4) !important;
  height: calc(((1410px - var(--body-span) * 3) / 4) * 0.66) !important;
}



.showImage:hover{
  transform: scale(1.2);
}

.showImgBox .showImgTile{
  flex: 1;
  display: flex;
  /*flex-direction: column;*/
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.productHead{
  max-width: calc(var(--body-right-box-width) - 20px );
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  height: 24px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
}

.shopCartBtn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.iconBox{
  display: flex;
  align-items: center;
  flex-direction: row;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
}
.iconBox svg{
  margin-right: 4px;
  width: 14px;
  height: 14px;
}

.iconFont{
  font-size: 12px;
  line-height: 18px;
}


.showImgBox .showImgTile .shopSearch{
  width: 22px;
  height: 22px;
  margin-left: 8px;
}
.cart{
  width: 22px;
  height: 22px;
  margin-left: 20px;
  margin-right: 8px;
}
.addFont{
  
  color: #3e9712;
  font-size: 22px;
}

























/* 
<!-- 中间产品栏 -->
 */
.productBox{
  display: flex;
  flex-direction: row;
  /* width: 1440px; */
  width: 100%;
}






.navigationPage{
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/*
<!-- 最下面的盒子 -->
*/
.endBox{
  width: 100vw;
  height: 200px;
  background-color: #535250;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sponsorBox{
  width: 1440px;
  /* height: 200px; */
  
  display: flex;
  padding: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sponsorLogo{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logoTop{
  width: 40px;
  height: 20px;
  background-color: #a2f4aa;
}
.logoEnd{
  width: 40px;
  height: 20px;
  margin-top: 12px;
  background-color: #a2f4aa;
}
.sponsorInto .sponsorTile{
  list-style: none;
}
.sponsorShow{
  display: flex;
  flex-direction: column;
}
.sponsorImgTile{

}
.codeImg{
  margin-top: 14px;
  width: 50px;
  height: 50px;
  background-color: #a2f4aa;
}


/* 
<!-- 定位图标 -->
 */
.goShopCart{
  position: fixed;
  bottom: 20vh;
  right: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid  rgba(0,0,0,0.08);
  background-color: rgba(0,0,0,0.04);
}
.shopCartImg{
  width: 30px;
  height: 30px;

}

.handAction{
  cursor: pointer;
}






.productBigImg{
  width: calc(1410px - var(--body-left-scroll) - var(--body-span));
  height: calc((1410px - var(--body-left-scroll) - var(--body-span)) * 0.66);
  background-color: #dddddd;
}







body{
  --body-loginWidth: 460px;
  /* --body-loginHeight: calc( 500px * 0.66); */
}
.loginPage{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginContent{
  width: var(--body-loginWidth);
  /* height: var(--body-loginHeight); */
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.loginTile{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.tileFont{
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

/*
<!-- 登录说明文字 -->
*/
.caption{
  color: #999999;
  padding: 10px 0px 10px 0px;
  font-size: 18px;
  line-height: 26px;
}


/*
<!-- 输入的表单组件 -->
*/

.formBox{
  display: flex;
  flex-direction: row;
  height: 50px;
  align-items: center;
  margin-bottom: 10px;
}
.formList{
  width: 110px;
  color: rgba(0,0,0,0.8);
  font-size: 20px;
  line-height: 20px;
}
.formInput{
  width: calc(var(--body-loginWidth) - 110px);
  height: 30px;
  border-radius: 8px;
}

.submitBtn .btn{
  width: 100%;
  height: 50px;
 
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  border-radius: 8px;
}

/* 
<!-- 最下面一行 -->
 */

.endBox{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  list-style: none;
  font-size: 18px;
  line-height: 18px;
}
.endBox a{
  text-decoration: none;
  cursor: pointer;
}
.register{
  color: #f44df3;
  font-weight: 500;
}



.loginDialogBox .el-dialog__header{
  height: 0;
  width: 0;
  display: none;
}
.loginDialogBox .el-dialog__body{
  padding: 0 !important;
}
.loginDialogBox .el-dialog{
  border-radius: 20px !important;
}


body{
  --body-loginWidth: 100%;
  /* --body-loginHeight: calc( 500px * 0.66); */
}
.loginPage{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginContent{
  width: var(--body-loginWidth);
  /* height: var(--body-loginHeight); */
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.loginTile{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.tileFont{
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

/*
<!-- 登录说明文字 -->
*/
.caption{
  color: #999999;
  padding: 10px 0px 10px 0px;
  font-size: 18px;
  line-height: 26px;
}


/*
<!-- 输入的表单组件 -->
*/

.formBox{
  display: flex;
  flex-direction: row;
  height: 50px;
  align-items: center;
  margin-bottom: 10px;
}
.formList{
  width: 110px;
  color: rgba(0,0,0,0.8);
  font-size: 20px;
  line-height: 20px;
}
.formInput{
  width: calc(var(--body-loginWidth) - 110px);
  height: 30px;
  border-radius: 8px;
}

.submitBtn .btn{
  width: 100%;
  height: 50px;

  color: #fff;
  font-size: 20px;
  line-height: 20px;
  border-radius: 8px;
}

/* 
<!-- 最下面一行 -->
 */

.endBox2{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  list-style: none;
  font-size: 18px;
  line-height: 18px;
}
.endBox2 a{
  text-decoration: none;
  cursor: pointer;
}
.register{
  color: #f44df3;
  font-weight: 500;
}


.ele-input .el-input{
  /* height: 46px; */
}

.ele-input-left{
  width: 85px;
  color: #606266;
  font-size: 16px;
  word-break: break-all;
  display: flex;
}











