@charset "UTF-8";
/* CSS Document */
  h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .card {
      width: 800px;
      display: flex;
      align-items: flex-start;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 20px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	  margin: 0 auto;
	  margin-bottom: 30px; /* 向下间隔 30px */
    }

    .card img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .card-content {
      flex: 1;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .name {
      font-weight: bold;
      font-size: 16px;
    }

    .date {
      color: #aaa;
      font-size: 14px;
    }

    .stars {
      color: #f1c40f;
      margin-left: 10px;
    }

    .rating {
      color: #666;
      font-size: 14px;
      margin-left: 5px;
    }

    .card p {
      margin-top: 8px;
      font-size: 14px;
      line-height: 1.5;
    }