html,
body {
  margin: 0;
  padding: 0;
}

#app {
  background-image: url("../img/bg.jpg");
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
}
.app {
  display: flex;
  padding: 20px;
  gap: 20px;
  height: calc(100vh - 150px);
  min-height: 500px;
}
.container {
  max-width: 1200px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
h1 {
  font-size: 0.3rem;
  margin-bottom: 5px;
}
.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.canvas-container {
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.canvas-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 0.3rem;
  color: #fff;
}

.canvas-area {
  width: 100%;
  height: 366px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid #3498db;
}

.canvas-all {
  display: block;
  background: #222;
  cursor: crosshair;
  width: 100%;
  height: 100%;
}

.preview-area {
  width: 100%;
  height: 366px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid #3498db;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.placeholder {
  color: #7f8c8d;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.upload-section {
  display: flex;
  justify-content: center;
}

.upload-btn {
  /* background: linear-gradient(to right, #3498db, #2ecc71); */
  background-color: #2980b9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4); */
}

.upload-btn:hover {
  /* transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.6); */
}

.file-input-wrapper {
  position: relative;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  left: 36%;
  top: 0;
  opacity: 0;
  width: 28%;
  height: 47%;
  cursor: pointer;
}

.action-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.action-btn {
  background-color: #2980b9;
  /* background: linear-gradient(to right, #8e44ad, #3498db); */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 120px;
  /* box-shadow: 0 4px 10px rgba(142, 68, 173, 0.4); */
}

.action-btn:hover {
  /* transform: translateY(-3px); */
  /* box-shadow: 0 6px 15px rgba(142, 68, 173, 0.6); */
}

.btn-primary {
  background-color: #2980b9;
  /* background: linear-gradient(to right, #3498db, #2ecc71);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4); */
}

.btn-success {
  background-color: #2980b9;
  /* background: linear-gradient(to right, #2ecc71, #3498db);
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4); */
}

.action-footer {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.download-btn, .reset-btn {
  /* background: linear-gradient(to right, #2ecc71, #3498db); */
  background-color: #2980b9;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  /* flex: 1; */
  /* max-width: 150px; */
  /* box-shadow: 0 4px 10px rgba(46, 204, 113, 0.4); */
}

.reset-btn {
  background-color: #2980b9;
  /* background: linear-gradient(to right, #e74c3c, #e67e22); */
  /* box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4); */
}

.download-btn:hover, .reset-btn:hover {
  /* transform: translateY(-3px); */
}

.status-message {
  text-align: center;
  color: #ff6b6b;
  font-size: 0.2rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .app {
    flex-direction: column;
    height: auto;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 250px;
  }
}

.selected-item {
    border: 2px solid #409EFF !important; /* 使用element-ui的主题色 */
}
.el-tabs__content{
    overflow: visible !important;
}
.el-icon-close:hover {
  color: #ff0000;
  background-color: #fef0f0;
  border-radius: 50%;
}
.el-tabs__item:hover{
    color: #000 !important;
}
.el-tabs__item{
    color: #6f6f6f !important;
    font-size: 0.17rem !important;
}
.el-tabs__item.is-active{
    color: #000 !important;
}
.el-tabs__active-bar{
    background-color: #000 !important;
}
.el-tabs__nav-wrap::after{
    display: none !important;
}
.el-tabs__nav{
    /*margin-left: 2vw !important;*/
}
.el-tabs__header{
    position: sticky !important;
    top: 0;
    z-index: 8;
}

.jindu{
    position: absolute;
    top: 0.5rem;
    height: 0.04rem;
    background-color: #fff;
    transition: width 0.5s ease-in-out;
}
.btn-hys{
    width: 20px;
    margin-top: 20px;
    cursor: pointer;
}
.nav-herder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0.6rem;
  background-color: #000;
  z-index: 2;
  border-bottom: 1px solid #cccccc;
}

.nav-item {
  width: 13.5%;
  float: left;
  text-align: center;
  line-height: 0.6rem;
  font-size: 0.25rem;
  color: #929292;
  cursor: pointer;
}
.nav-item-active {
  color: #fff;
  font-weight: 600;
}

.content-v {
  position: absolute;
  z-index: 1;
  width: 100vw;
  /*padding: 0.2rem;*/
  /*padding-left: 0.4rem;*/
  box-sizing: border-box;
  top: 0.6rem;
  height: calc(100vh - 0.6rem);
  /*height: 100vh;*/
}
#content-hys-v{
    overflow-y: auto;
    padding: 0.2rem;
}

.content-v2 {
  position: absolute;
  z-index: 1;
  width: 100vw;
  padding: 0 0.2rem 0.2rem 0.2rem;
  background-color: #dcdcdc;
  box-sizing: border-box;
  top: 0.6rem;
  height: 100vh;
  overflow-y: auto;
}

.men-title {
  width: 100%;
  float: left;
  height: 0.5rem;
}

.men-title-t {
  width: auto;
  height: 0.5rem;
  line-height: 0.5rem;
  float: left;
  font-size: 0.3rem;
  margin-left: 0.2rem;
  font-weight: 600;
}

.lunbotu {
  width: 100%;
  height: 100vh;
  background-size: cover;
}

.men-item {

  
}

.men-item2222 {
  position: relative;
  width: 5.9rem;
  height: 4.8rem;

  float: left;

  margin-right: 0.2rem;
 
  margin: 0.9rem 0.3rem;
  
}

.men-name666{
    text-align: center;
    font-size: 18px;
    color: #3f3f3f;
}

.men-item33 {
  width: 2.9rem;
  height: 4.8rem;
  float: left;
  overflow: hidden;
  margin-right: 0.2rem;
  margin-top: 0.1rem;
  position: relative;
}

.men-item332 {
  width: 2.9rem;
  height: 4.8rem;
  border: 1px solid #cccccc;
  background-color: #fff;
  float: left;
  overflow: hidden;
  margin-right: 0.2rem;
  margin-top: 0.1rem;
  position: relative;
}

.men-item2 {
  width: 2.9rem;
  height: 0.9rem;
  border: 1px solid #cccccc;
  background-color: #fff;
  /*border-radius: 0.3rem;*/
  /*padding: 10px;*/
  float: left;
  overflow: hidden;
  margin-right: 0.2rem;
  /*box-sizing: border-box;*/
  margin-top: 0.4rem;
}

.men-img {
 
}

/*.men-img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  float: left;*/
/*  position: relative;*/
/*}*/

.men-name {
  text-align: center;
  position: absolute;
  width: 150px;
  padding-left: 0.2rem;
  box-sizing: border-box;
  height: 0.4rem;
  font-size: 0.2rem;
  top: 3.65rem;
  right: -0.1rem;
  font-weight: 600;
  line-height: 0.3rem;
  float: left;
  /*background-color: #e8e8e8;*/
}

.men-name2 {
  width: 100%;
  padding-left: 0.2rem;
  box-sizing: border-box;
  height: 0.4rem;
  line-height: 0.4rem;
  color: #999999;
  font-size: 0.15rem;
  float: left;
  background-color: #e8e8e8;
  overflow: hidden;
  /* 确保超出容器的内容被裁剪 */
  white-space: nowrap;
  /* 确保文本在一行内显示 */
  text-overflow: ellipsis;
}

.men-name3 {
  width: 100%;
  padding-left: 0.2rem;
  box-sizing: border-box;
  height: 0.35rem;
  color: #000;
  font-size: 0.2rem;
  padding-top: 0.05rem;
  font-weight: 600;
  float: left;
  background-color: #e8e8e8;
}

.dialog_v {
  width: 10rem;
  height: 7rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 99999;
  border-radius: 0.15rem;
}

.dialog_hys {
  width: 4rem;
  height: 5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 10;
  border-radius: 0.15rem;
  box-shadow:5px 10px 15px 3px rgba(0, 0, 0, 0.4);
}

.dialog_v222 {
  width: 4rem;
  height: 7rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 999999;
  border-radius: 0.15rem;
}

.dialog_v2 {
  width: 4rem;
  height: 5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 99999;
  border-radius: 0.15rem;
}

.dialog_v3 {
  width: 5.7rem;
  height: 5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 99999;
  border-radius: 0.15rem;
}

.upimg_1 {
  width: 3.5rem;
  height: 2.7rem;
  margin-left: 0.3rem;
  float: left;
}

.upimg_1item {
  width: 1.7rem;
  height: 1.2rem;
  float: left;
  margin-top: 0.1rem;
}

.upimg_1item_title {
  text-align: center;
  margin-top: 0.01rem;
}

.upimg_1item img {
  width: 100%;
}

.img-left {
  width: 5.5rem;
  height: 100%;
  float: left;
}

.xiliimg {
  width: 4.5rem;
  margin-top: 0.5rem;
  margin-left: 0.6rem;
  float: left;
  height: 5.5rem;
  object-fit: cover;
}

.xiliimg2 {
  width: 4.5rem;
  margin-top: 0.1rem;
  margin-left: 0.6rem;
  float: left;
  height: 3.5rem;
  object-fit: cover;
}

.content-right {
  width: 4.5rem;
  height: 100%;
  float: left;
  padding-top: 0.4rem;
  box-sizing: border-box;
}

.dialog-btn {
  width: 3rem;
  height: 0.5rem;
  position: absolute;
  bottom: 0.2rem;
  right: 0.7rem;
}

.content-right-title {
  width: 3.5rem;
  background-color: #126994;
  color: #fff;
  padding-left: 0.2rem;
  box-sizing: border-box;
  height: 0.3rem;
  line-height: 0.3rem;
  border-radius: 0.2rem;
  float: left;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
}

.content-right-input {
  width: 3.5rem;
  height: 0.4rem;
  float: left;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  border: 0;
  border-radius: 0.1rem;
  padding-left: 0.2rem;
  box-sizing: border-box;
  background-color: rgb(249, 249, 249);
}

.dialog_bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
}

.men-btn {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    /*float: left;*/
    /* margin-top: 0.2rem; */
    /*padding-top: 0.2rem;*/
    /*background-color: #e8e8e8;*/
}
.men-btn:hover .btn-cao{
    opacity: 1; 
}
.btn-cao{
    opacity: 0;
    font-size: 17px;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cao:hover{
    color: #7e96d8;
}

.men-img img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.men-v {
  width: 100%;
  height: 4rem;
  margin: 0 auto;
  /*max-width: 13rem;*/
}

.flex-container {}

.flex-item {}

.nav-logo {
  width: 1.2rem;
  display: block;
  margin: 0 auto;
}

#login_v {
  width: 4rem;
  height: 6.5rem;
  position: absolute;
  top: 45%;
  text-align: center;
  color: black;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-switch {
  width: 3rem;
  height: 0.5rem;
  background-color: #fff;
  margin-left: 0.5rem;
  border-radius: 1rem;
}

.login-switch2 {
  width: 1.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  color: #8d8d8d;
  font-size: 0.23rem;
  text-align: center;
  float: left;
  border-radius: 1rem;
}

.login-switch1 {
  color: #fff;
  background-color: #136793;
}

.login-form {
  width: 4rem;
  height: 5.9rem;
  float: left;
  margin-top: 0.3rem;
  background-color: #fff;
  border-radius: 0.12rem;
  box-shadow: 4px 4px 4px 3px rgba(0, 0, 0, 0.1);
}

.edit-title {
  width: auto;
  position: absolute;
  font-size: 0.3rem;
  top: 0.3rem;
  left: 1rem;
}

.edit-menu {
  width: 6.9rem;
  height: 0.4rem;
  top: 0.7rem;
  right: 0.25rem;
  position: absolute;
}

.edit-content {
  background-color: #fff;
  width: 6.5rem;
  height: 5.5rem;
  top: 1.2rem;
  border: 1px solid #e3e3e3;
  right: 0.4rem;
  padding: 0.15rem;
  position: absolute;
  box-sizing: border-box;
  /*overflow-y: scroll;*/
  overflow: auto;
  border-radius: 0.1rem;
}

.edit-content-xiadan {
  display: flex;
  background-color: #fff;
  width: 8.0rem;
  height: 6.5rem;
  top: 1.2rem;
  right: 6.4rem;
  border: 1px solid #e3e3e3;
  padding: 0.15rem;
  position: absolute;
  box-sizing: border-box;
  overflow-y: scroll;
  border-radius: 0.1rem;
}

.xiadantu {
  width: 95%;
  margin-left: 2.5%;
  float: left;
  margin-bottom: 0.5rem;
}

.edit_bj {
  width: 9.9rem;
  height: 0.3rem;
  bottom: 0.28rem;
  left: -6rem;
  position: absolute;
}

.edit_init {
  width: 0.5rem;
  height: 0.5rem;
  bottom: 0.2rem;
  left: 0.5rem;
  position: absolute;
}

.edit_BackView {
  width: 0.6rem;
  height: 0.5rem;
  bottom: 0.2rem;
  left: 1.5rem;
  position: absolute;
}

.huanjing_item {
  width: 0.8rem;
  position: relative;
  height: 1.3rem;
  float: left;
  margin-top: 0.1rem;
  margin-right: 0.1rem;
  border: 2px solid #fff;
  /*background-color: #56bdf5;*/
}

.huanjing_item2 {
  width: 1.6rem;
  height: 1.7rem;
  float: left;
  margin-top: 0.1rem;
  margin-right: 0.1rem;
  /*background-color: #56bdf5;*/
}

.showimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}

.showimg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}

#showimgclose {
  width: 1rem;
  right: 0.5rem;
  top: 0.5rem;
  position: absolute;
  z-index: 10;
}

#showimgclose2 {
  width: 1rem;
  right: 0.5rem;
  top: 0.5rem;
  position: absolute;
  z-index: 10;
}

.showimgsrc {
  height: 100vh;
  margin: 0 auto;
  display: block;
}

#showimgsrc2 {
  height: 100vh;
  margin: 0 auto;
  display: block;
}

#nextimg {
  width: 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#nextimg2 {
  width: 1rem;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translate(-50%, -50%) rotateY(180deg);
  z-index: 1;
}

.color_item_v {
  width: 100%;
  float: left;
  height: auto;
}

.delet_color {
  width: 0.2rem;
  position: absolute;
  top: 0.05rem;
  right: 0.05rem;
  z-index: 1;
}

.color_item {
  width: 1.15rem;
  height: 1.2rem;
  float: left;
  position: relative;
  margin-top: 0.1rem;
  margin-right: 0.12rem;
  border-radius: 10px;
}

.menu_color {
  width: 520px;
  height: 410px;
  border-radius: 10px;
  background-color: #fff;
}

.huanjing_item_img {
  width: 100%;
  height: 1rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.color_item_img {
  width: 100%;
  height: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.huanjing_item_img2 {
  /* width: 100%; */
  height: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.huanjing_item_img3 {
  width: 100%;
}

.huanjing_item_img4 {
  width: 0.45rem;
  display: block;
  margin: 0 auto;
  margin-top: 0.1rem;
}

.huanjing_item_title2 {
  width: 100%;
  text-align: left;
  margin-top: 0.05rem;
}

.huanjing_item_title {
  width: 100%;
  text-align: center;
  margin-top: -0.3rem;
  font-size: 10px;
}

.layui-form-item2 {
  float: left;
  width: 2.5rem;
  clear: none;
}

.menu-input {
  background-color: rgb(249, 249, 249);
}

.fenye {
  float: right;
}

.chicu_v {
  width: 5rem;
  height: auto;
  float: left;
  background-color: #fff;
  border-radius: 10px;
}

.edit-menu-item {
  cursor: pointer;
  /*width: 0.85rem;*/
  height: 0.3rem;
  float: right;
  text-align: center;
  line-height: 0.3rem;
  margin: 0 0.28rem;
  border-radius: 0px;
  font-weight: 600;
  /* background-color: #fff;
  border: 1px solid #e3e3e3; */
  color: #afafaf;
}

.edit-menu-item-select {
  /*border-bottom: 2px solid #000;*/
  /*padding-bottom: 2px;*/
  /*color: #000;*/
}

.sel_wrap {
  height: 40px;
  color: #a1a1a1;
  font-size: 16px;
  border: 1px solid #E4E4E4;
  cursor: pointer;
  position: relative;
  float: left;
  _filter: alpha(opacity=0);
}

.sel_wrap label {
  padding-left: 10px;
  font-size: 16px;
  z-index: 2;
  color: #a1a1a1;
  line-height: 40px;
  height: 40px;
  display: block;
}

.sel_wrap .select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  /*margin-top: 12px;*/
  filter: alpha(opacity=0);
  cursor: pointer;
  font-size: 16px;
}

/* The switch - the box surrounding the slider-2d */
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 30px;
  margin-top: 5px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider-2d */
.slider-2d {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 24px;
}

.slider-2d:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
}

input:checked+.slider-2d {
  background-color: #2196F3;
}

input:checked+.slider-2d:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded slider-2ds */
.slider-2d.round {
  border-radius: 34px;
}

.slider-2d.round:before {
  border-radius: 50%;
}

#canvasZone {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

#cell_5 {
  width: 480px;
  height: 330px;
  margin: 10px;
  position: absolute;
  /* top: 200px; */
  /* right: 10px; */
  /* border: 1px solid #01abf1; */
  padding: 15px;
  box-sizing: border-box;
  background: white;
}

.guangao-close {
  position: absolute;
  top: 5vh;
  right: 5vw;
  border: none;
  color: #fff;
  line-height: 0.3rem;
}

.edit-content-title {
  position: absolute;
  z-index: 1;
  top: 0.1rem;
  left: 0.1rem;
  font-size: 0.2rem;
}

.edit-content-part {
  position: absolute;
  background-color: #fff;
  width: 5.4rem;
  height: 3.5rem;
  top: 0.5rem;
  left: 0.1rem;
  border: 1px solid #eee;
  overflow-y: scroll;
  border-radius: 0.1rem;
}

.part_item {
  display: flex;
  flex-direction: column;
  border: 1px solid #000000;
}

.part {
  display: flex;
}

.edit-peijian {
  background-color: #fff;
  width: 6rem;
  height: 3.7rem;
  top: 3.2rem;
  border: 1px solid #e3e3e3;
  right: 7.4rem;
  padding: 0.15rem;
  position: absolute;
  box-sizing: border-box;
  /*overflow-y: scroll;*/
  border-radius: 0.1rem;
  display: grid;
  justify-items: stretch;
}

:root {
            --gap: 20px;
            --column-count: 3;
            --column-width: calc((100% - (var(--column-count) - 1) * var(--gap)) / var(--column-count));
        }
@media (max-width: 768px) {
       :root {
                --column-count: 1;
            }
}
        
.waterfall {
            display: grid;
            grid-template-columns: repeat(var(--column-count), var(--column-width));
            gap: var(--gap);
            justify-content: center;
        }
        
.pubuItem {
            overflow: hidden;
}
        
    
        
.pubuItem img {
    width: auto;
    height: 100%;
    display: block;
    object-fit: cover;
}
