#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: 450px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#add-favorite.add-favorite .top {
  display: flex;
  height: 42px;
  color: #242424;
  font-size: 14px;
  font-weight: bold;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #EDEDED;
}
#add-favorite.add-favorite .top .btn-close img {
  width: 10px;
  cursor: pointer;
}
#add-favorite.add-favorite .footer {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eeebeb;
}
#add-favorite.add-favorite .footer .btn-creat {
  width: 130px;
  height: 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
  background-color: #06BCBA;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .favorite-list {
  overflow: auto;
}
#add-favorite.add-favorite .list {
  width: 100%;
  height: 343px;
  padding: 0 20px;
  padding-top: 30px;
}
#add-favorite.add-favorite .list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
#add-favorite.add-favorite .list li .left {
  display: flex;
}
#add-favorite.add-favorite .list li .left img {
  vertical-align: top;
}
#add-favorite.add-favorite .list li .left .icon {
  margin-top: 3px;
}
#add-favorite.add-favorite .list li .left .info {
  font-size: 14px;
  margin-left: 8px;
}
#add-favorite.add-favorite .list li .left .info .name {
  color: #242424;
  margin-bottom: 6px;
}
#add-favorite.add-favorite .list li .left .info .num {
  color: #7A7A7A;
}
#add-favorite.add-favorite .list li .right .btn {
  width: 80px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  text-align: center;
}
#add-favorite.add-favorite .list li .right .btn-add {
  background: #F8FAFB;
  color: #999;
  border: 1px solid #E6E9F2;
  opacity: 0.99;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .list li .right .btn-add:hover {
  color: #fff;
  background-color: #FF9333;
  border-color: #FF9333;
}
#add-favorite.add-favorite .list li .right .btn-cancel {
  color: #ffffff;
  background-color: #FF9333;
  border-radius: 4px;
  cursor: pointer;
}
#add-favorite.add-favorite .list li .right .btn-cancel:hover {
  background-color: #ffa256;
}
.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: 550px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.creat-favorite .top {
  display: flex;
  height: 42px;
  color: #242424;
  font-size: 14px;
  font-weight: bold;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #EDEDED;
}
.creat-favorite .top .btn-close img {
  width: 10px;
  cursor: pointer;
}
.creat-favorite .form {
  padding: 30px 20px 0;
}
.creat-favorite .form input {
  width: 510px;
  height: 38px;
  border: 1px solid #EBEAEA;
  border-radius: 4px;
  padding: 0 15px;
  outline: none;
}
.creat-favorite .form input:focus {
  border-color: #06BCBA;
}
.creat-favorite .form textarea {
  width: 510px;
  height: 120px;
  border: 1px solid #EBEAEA;
  border-radius: 4px;
  padding: 15px;
  outline: none;
  margin-top: 10px;
}
.creat-favorite .form textarea:focus {
  border-color: #06BCBA;
}
.creat-favorite .btns {
  margin-top: 20px;
  display: flex;
  justify-content: right;
}
.creat-favorite .btns > div {
  width: 80px;
  height: 30px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  cursor: pointer;
}
.creat-favorite .btns .btn-sure {
  background-color: #06BCBA;
  margin-right: 20px;
}
.creat-favorite .btns .btn-cancel {
  background-color: #F2F8F8;
  color: #5A5A5A;
  margin-right: 20px;
}
