.card-item {
  margin-top: 110px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-item-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.el-card__body {
  height: 100% !important;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.el-card__body::-webkit-scrollbar {
  width: 6px; /* 竖向宽度 */
  height: 6px; /* 横向高度 */
}
.devices-info {
  position: absolute;
  top: 10%;
  left: 10%;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 10px;
  transition: top 0.5s;
  opacity: 0;
}
.devices-info .icon {
  font-size: 20px;
  position: absolute;

  width: 10px;
  height: 10px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
}
.devices-info .right-icon {
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
}
.devices-info .bottom-icon {
  right: 14px;
  bottom: -2px;
}
.devices-info .left-icon {
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
}
.devices-info .top-icon {
  left: 2px;
  top: -12px;
}
.devices-info .title {
  font-size: 20px;
  text-align: center;
}
.devices-info .devices-img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: block;
}
.card-item-box {
  margin: 0 auto;
  width: auto;
  height: 100%;
  position: relative;
}
.menu-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
}
.el-submenu__title {
  font-size: 15px;
  font-weight: bold;
}
.el-submenu .el-menu-item .menu-item {
  font-size: 13px;
}
.el-submenu .el-menu-item {
  font-size: 13px;
}
.card-item-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}
.el-menu {
  border-right: none !important;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 100px;
  height: 100%;
}
.product-item:hover{
  transition: all 0.3s ease;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.product-item {
  width: calc(25% - 15px);
  height: 200px;
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 100px;
  justify-content: center;
  height: 100%;
}
.carousel-item {
  width: 22%;
  height: 200px;
  border-radius: 5px;
}
.carousel-item:hover{
  transition: all 0.3s ease;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.case-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.el-carousel__container {
  height: 100% !important;
}
.el-carousel__item {
  height: 100%;
}
.case-title {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  color: #838384;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-title {
  font-size: 16px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.el-carousel__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.el-carousel__arrow--left {
  left: -60px;
}
.el-carousel__arrow--right {
  right: -60px;
}
