/* 主容器样式 - 宽度80% */
.container {
  border: 1px solid #d7d7d7;
  margin: 0 auto;
  padding: 20px;
  background: #dfe8fd;
  border-radius: 10px;
}
.tiaotiao{
  width: 1465px;
  height: 12px;
  margin: 0 auto;
  background-color: #d9d9d9;
}
.nekb{
  width: 25%;
  float: left;
  height: 12px;
  background-color: #5386fb;
}

.pw {
  position: relative;
  width: 1465px;
  margin: 0 auto 31px;
  padding: 22px;
  border-radius: 0 0 12px 12px;

  background-color: #ffffff;
  background-image: url(../images/finance/bj2.jpg);
  background-repeat: no-repeat;
  background-position: top center;
}

/* 搜索区域样式 */
.search-section {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-section input {
  flex: 1;
}
.search-section .o {
  width: 40%;
  display: flex;
  align-items: center;
}
.search-section .o input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search-section .o .search-btn {
  border-radius: 0 9px 9px 0;
}
.search-label {
  font-size: 18px;
  color: #282828;
  white-space: nowrap;
}
.search-input2 {
    padding: 20px 12px;
    border: 1px solid #d9d9d9;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s;
    width: 250px;
}
.search-input2:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.search-input3 {
    padding: 20px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s;
    width: 250px;
}
.search-input3:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}


.search-btn2 {
  background-color: #1890ff;
  color: white;
  border: none;
    padding: 20px 40px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 20px;
  transition: all 0.3s;
  margin-left: auto;
}
.search-btn2:hover {
  background-color: #40a9ff;
}
/* 日历样式 */
.calendar-section {
  background-color: white;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.calendar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s;
}
.calendar-nav-btn:hover {
  background-color: #f0f0f0;
  color: #1890ff;
}
.calendar-month {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.back-to-today {
  background: none;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  color: #323030;
  transition: all 0.3s;
}
.back-to-today:hover {
  border-color: #1890ff;
  color: #1890ff;
}
.calendar-grid {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.calendar-weekday {
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 10px 0;
  font-weight: 500;
}
.calendar-day {
  flex: 1;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.calendar-day:hover {
  color: #fff;
  background-color: #1890ff;
}
.calendar-day.active {
  background-color: #1890ff;
  color: white;
  font-weight: 500;
}
.calendar-day.has-events {
  border-color: #1890ff;
  position: relative;
}
.calendar-day.has-events::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #1890ff;
  border-radius: 50%;
}
/* 政策列表样式 */
.policy-list-section {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
}
.policy-item {
  padding: 30px 20px;
  border-bottom: 2px solid #e6edfd;
  transition: background-color 0.3s;
  width: 96%;
  margin: 0 auto;
}
.policy-item:hover {
  background-color: #fafafa;
}
.policy-item:last-child {
  border-bottom: none;
}
.policy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.policy-title {
  font-size: 18px;
  font-weight: bold;
  color: #021939;
  flex: 1;
  margin-right: 20px;
}
.apply-btn {
    background: linear-gradient(90deg, #f5644d, #f98a7c);
    color: white;
    border: none;
    padding: 6px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
}
.apply-btn:hover {
  background-color: #ff7875;
}
.policy-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.policy-date {
  font-size: 14px;
  color: #9799a8;
  font-weight: normal;
}
.policy-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.policy-tag {
    padding: 4px 15px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #1890ff;
    color: #1890ff;
}
.policy-tag.free {
  color: #56c59e;
  border: 1px solid #56c59e;
}
/* 分页控件样式 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 20px 0;
}
.pagination a {
  padding: 6px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.pagination a:hover:not(.active):not(.disabled) {
  color: #1890ff;
  border-color: #1890ff;
}
.pagination a.active {
  background-color: #1890ff;
  color: white;
  border-color: #1890ff;
}
.pagination a.disabled {
  color: #bfbfbf;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.pagination a.ellipsis {
  border: none;
  cursor: default;
}
.pagination a.ellipsis:hover {
  color: #666;
}
