/* 弹窗容器 */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1001;
}

/* 蒙版样式 */
.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* display: none; */
  z-index: 1000;
}

/* 弹窗内容容器 */
.modal-content-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1009px;
  max-width: 90vw;
  z-index: 1002;
}
.modal-content-container {
  background: white;
  border-radius: 16px;
}

/* 弹窗标题 */
.modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 关闭按钮 */
.modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

/* 弹窗内容 */
.modal-content {
  padding-bottom: 50px;
}

.modal-content-name {
  font-family: PingFangSC-Medium;
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  background: #407aff;
  border-radius: 16px 0px 16px 0px;
  padding: 0 50px;
  height: 80px;
  line-height: 80px;
  width: max-content;
}
.modal-content-name span {
  padding-left: 20px;
}

.modal-content-price {
  margin: 44px 0 0 50px;
  display: flex;
  align-items: center;
}
.modal-content-market {
  width: max-content;
  height: 60px;
  padding: 0 20px;
  margin-right: 51px;
  position: relative;
  opacity: 0.7;
  background-image: linear-gradient(107deg, #ff7b00 0%, #fe4d00 100%);
  font-family: PingFangSC-Medium;
  font-size: 24px;
  color: #ffffff;
  line-height: 60px;
  font-weight: 500;
}
.modal-content-market::after {
  content: '';
  width: 156px;
  height: 4px;
  position: absolute;
  left: 4px;
  top: calc(50% - 2px);
  z-index: 10;
  transform: rotate(30deg);
  background: #fe4e00;
  opacity: 1;
}

.modal-content-promotion {
  width: 264px;
  padding: 0 40px;
  height: 80px;
  line-height: 80px;
  background: url(../images/modal/bg.png) no-repeat;
  background-size: cover;
  font-family: PingFangSC-Medium;
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.modal-content-product {
  display: flex;
  margin-left: 50px;
}

.modal-content-parameters {
  margin-top: 42px;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #293040;
  line-height: 32px;
  font-weight: 400;
}

.modal-content-device {
  width: 213px;
  height: 343px;
  margin: 13px 0 0 74px;
}

.modal-content-function {
  margin-top: 14px;
  padding: 0 33px;
}
.modal-content-function-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: max-content;
}
.modal-content-function-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
}
