.evaluateDetail {
  padding: 0 20px;

  .topInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 50px;

    .lPart {
      display: flex;
      align-items: center;
      flex: 1;

      .img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        margin-right: 10px;
      }

      .goodsInfo {
        flex: 1;

        .goodsName {
          font-size: 13px;
          margin-bottom: 6px;
        }

        .goodsSize {
          font-size: 13px;
          color: #999;
        }
      }
    }

    .rPart {
      .price {
        font-weight: bold;
      }
    }
  }

  .rate {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;

    .title {
      font-size: 15px;
      margin-right: 10px;
      font-weight: bold;
    }
  }

  .evaluate {
    padding-top: 20px;
    .content {
      width: 100%;
    }
  }

  .evaluate-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;

    .evaluate-img {
      width: 80px;
      height: 80px;
      object-fit: cover;
    }
  }

  .btn {
    width: 100%;
    height: 40px;
    line-height: 27px;
    background-color: #34c0bc;
    color: #fff;
    border-radius: 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
  }

  .upload-imgs {
    padding: 20px 0;

    .upload-title {
      font-size: 14px;
      color: #333;
      margin-bottom: 12px;
    }

    .img-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;

      .upload-btn {
        width: 80px;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        border: 1px dashed #d9d9d9;
        border-radius: 8px;

        .upload-text {
          font-size: 12px;
          color: #999;
          margin-top: 4px;
        }
      }

      .img-item {
        position: relative;
        width: 80px;
        height: 80px;

        .preview-img {
          width: 100%;
          height: 100%;
          border-radius: 8px;
        }

        .delete-btn {
          position: absolute;
          top: -8px;
          right: -8px;
          width: 20px;
          height: 20px;
          background-color: rgba(0, 0, 0, 0.6);
          color: #fff;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
        }
      }
    }
  }

  .upload-popup-content {
    padding: 20px;

    .upload-popup-btn {
      height: 50px;
      line-height: 50px;
      text-align: center;
      background-color: #fff;
      border-bottom: 1px solid #f0f0f0;
      font-size: 16px;
      color: #333;
    }

    .upload-popup-cancel {
      height: 50px;
      line-height: 50px;
      text-align: center;
      background-color: #f5f5f5;
      border-radius: 8px;
      margin-top: 10px;
      font-size: 16px;
      color: #666;
    }
  }
}
