@charset "UTF-8";
/**
 * 电子商城
 * date: 2025-4-11
 * author: jyxuan
 */
.mall-entrance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mall-entrance-item {
  width: calc((100% - 30px) / 2);
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 16px 0 rgba(12, 50, 89, 0.1);
          box-shadow: 0 3px 16px 0 rgba(12, 50, 89, 0.1);
  overflow: hidden;
}
.mall-entrance-item:hover .mall-entrance-title {
  color: #1c65ee;
}
.mall-entrance-img {
  display: block;
  width: 100%;
  height: 310px;
}
.mall-entrance-title {
  margin: 16px 0;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}