#add-favorite.add-favorite {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
#add-favorite.add-favorite .main {
  width: 520px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#add-favorite.add-favorite .top {
  display: flex;
  height: 64px;
  color: #15213A;
  font-size: 18px;
  font-weight: bold;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #EDEEF2;
}
#add-favorite.add-favorite .top .btn-close img {
  display: block;
  width: 20px;
  cursor: pointer;
}
#add-favorite.add-favorite .footer {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #EDEEF2;
}
#add-favorite.add-favorite .footer .btn-creat {
  width: 144px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  background-color: #4282FF;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .footer .btn-creat:hover {
  background: #1259F0;
}
#add-favorite.add-favorite .favorite-list {
  overflow: auto;
}
#add-favorite.add-favorite .list {
  width: 100%;
  height: 343px;
  padding: 0 20px;
  padding-top: 16px;
}
#add-favorite.add-favorite .list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 0;
}
#add-favorite.add-favorite .list li .left {
  display: flex;
}
#add-favorite.add-favorite .list li .left img {
  width: 22px;
  vertical-align: top;
}
#add-favorite.add-favorite .list li .left .info {
  font-size: 16px;
  margin-left: 8px;
}
#add-favorite.add-favorite .list li .left .info .name {
  line-height: 21px;
  color: #39435A;
  margin-bottom: 8px;
}
#add-favorite.add-favorite .list li .left .info .num {
  line-height: 18px;
  font-size: 14px;
  color: #777E8E;
}
#add-favorite.add-favorite .list li .right {
  display: flex;
  align-items: center;
}
#add-favorite.add-favorite .list li .right .btn {
  width: 76px;
  height: 34px;
  line-height: 32px;
  font-size: 14px;
  text-align: center;
}
#add-favorite.add-favorite .list li .right .btn-add {
  background: #F7F8FA;
  color: #39435A;
  border: 1px solid #EDEEF2;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .list li .right .btn-add:hover {
  color: #fff;
  background-color: #4282FF;
  border-color: #4282FF;
}
#add-favorite.add-favorite .list li .right .btn-cancel {
  color: #ffffff;
  background-color: #4282FF;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .list li .right .btn-cancel:hover {
  background-color: #1259F0;
}
.creat-favorite {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.creat-favorite .main {
  width: 520px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.creat-favorite .top {
  display: flex;
  height: 64px;
  color: #15213A;
  font-size: 18px;
  font-weight: bold;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #EDEEF2;
}
.creat-favorite .top .btn-close img {
  display: block;
  width: 20px;
  cursor: pointer;
}
.creat-favorite .form {
  padding: 24px 24px 0;
}
.creat-favorite .form input {
  width: 100%;
  height: 42px;
  font-size: 14px;
  color: #39435A;
  border: 1px solid #DEDFE6;
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
}
.creat-favorite .form input::placeholder {
  color: #B4B8C1;
}
.creat-favorite .form input:focus {
  border-color: #4282FF;
}
.creat-favorite .form textarea {
  width: 100%;
  height: 120px;
  font-size: 14px;
  border: 1px solid #DEDFE6;
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  margin-top: 16px;
  resize: none;
}
.creat-favorite .form textarea::placeholder {
  font-family: none;
  color: #B4B8C1;
}
.creat-favorite .form textarea:focus {
  border-color: #4282FF;
}
.creat-favorite .btns {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: right;
}
.creat-favorite .btns > div {
  width: 96px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 38px;
  border: 1px solid;
  border-radius: 4px;
  cursor: pointer;
}
.creat-favorite .btns .btn-sure {
  background-color: #4282FF;
  border-color: #4282FF;
  margin-right: 20px;
}
.creat-favorite .btns .btn-sure:hover {
  background: #1259F0;
  border-color: #1259F0;
}
.creat-favorite .btns .btn-cancel {
  background: #F7F8FA;
  border-color: #EDEEF2;
  color: #39435A;
  margin-right: 16px;
}
.creat-favorite .btns .btn-cancel:hover {
  border-color: #1259F0;
  color: #1259F0;
}
