/* 资源采购模块样式 */
.purchase-container {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.purchase-sidebar {
  width: 220px;
  background-image: url("../images/zycg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.purchase-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.purchase-info {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.purchase-btn {
  background-color: #fff;
  color: #1e88e5;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.purchase-table {
  flex: 1;
}
.purchase-table table thead tr {
  background:#F5DFCC !important;
  color: #333;

  
}

.purchase-table table {
  width: 100%;
  border-collapse: collapse;
}

.purchase-table table th {
  background-color: #E1EDFF;
  color: #000000;
  height: 70px;
  text-align: center;
  border-bottom: none;
  padding: 0 12px;
}

.purchase-table table tr {
  height: 70px;
}

.purchase-table table td {
  text-align: center;
  border-bottom: none;
  padding: 0 12px;
  font-size: 14px;
}

.purchase-table table tr.even-row {
  background-color: #f9f9f9;
}

/* 3. 移动端适配（可选） */
/* 当屏幕小于 600px 时，可以微调字体或内边距 */
@media (max-width: 768px) {
  .sales-table {
    font-size: 12px; /* 手机屏幕较小，适当缩小字号 */
  }
  .sales-table th, 
  .sales-table td {
    padding: 8px 10px; /* 缩小内边距 */
  }
}