body {
  background: #c3d1fe url("sww-bgPc.png") no-repeat center -60px;
  background-size: contain;
  margin: 0;
  padding: 0;
}

html {
  /* background-color: #f0f2f5; */
  color: #333;
  font-family: "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  height: 40px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px 20px; */
  max-width: 1200px;
  padding: 5px 0px;
  line-height: 1em;
  margin: 0 auto;
}

.logo {
  width: 80px;
  height: 30px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.nav a {
  font-size: 12px;
  text-decoration: none;
  color: #333;
  margin: 0 5px;
}

.nav .separator {
  color: #ccc;
  margin: 0 10px;
}

.nav a:hover {
  color: #c00;
}

.main-content {
  padding-top: 34%;
}

.daily-logo {
  margin-top: 10px;
}

.page-container {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  grid-template-areas: "side-nav-left editor-note side-nav-right";
  gap: 20px;
  width: 1200px;
  height: 212px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  align-items: center;
}

.editor-note {
  grid-area: editor-note;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.note-title {
  font-size: 18px;
  font-weight: bold;
  color: #c00;
  border-left: 4px solid #c00;
  padding-left: 10px;
  margin-bottom: 15px;
}

.note-content p {
  line-height: 1.8;
  font-size: 14px;
}

.side-nav {
  color: white;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.side-nav-item {
  padding: 10px;
}

.suggestion-form {
  grid-area: suggestion-form;
  background: #f0f5ff;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}

.suggestion-form h2 {
  font-size: 24px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.suggestion-form label {
  display: block;
  margin-bottom: 10px;
  color: #c00;
}

.suggestion-form select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.editor-Bg {
  padding: 15px 20px 0px 40px;
  background: url("sww-bzBg.png") no-repeat;
}

.editor-Bg p {
  z-index: 2em;
  margin: 1px 0px 0px 46px;
  text-align: justify;
}

.editor-note-content {
  width: 1077px;
    margin: 0 auto;
    display: flex;
    min-height: 222px;
}

.editor-title {
  writing-mode: vertical-lr;
  font-size: 28px;
  color: #fff;
  background-color: #c00;
  padding: 20px 10px;
  border-radius: 5px;
  margin-right: 20px;
  text-align: center;
}

.editor-text p {
  color: #01377b;
  font-size: 22px;
  line-height: 2;
  text-indent: 2em;
  color: rgba(255, 255, 255, .8);
}

.suggestion-section {
  position: relative;
  top: 220px;
  z-index: 1;
}

.suggestion-container {
  width: 1200px;
  margin: 0 auto;
  background-color: rgba(230, 246, 255, 0.5);
  padding: 40px 45px;
  border-radius: 10px;
  position: relative;
  min-height: 400px;
}

.suggestion-title-picture {
  display: block;
}

.suggestion-title-img {
  width: 100%;
  height: 100%;
  content: url("sww-rmjy.png");
}

.suggestion-content {
  text-align: center;
}

.suggestion-subtitle {
  text-align: left;
  color: #01377b;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 0;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; /* 增加间距 */
  align-items: stretch; /* 改为stretch以保持一致高度 */
  margin-bottom: 20px;
}

.grid-item {
  background: url("sww-liBg.png") no-repeat;
  background-size: 100% 100%;
  color: #01377b;
  padding: 15px 20px; /* 增加内边距 */
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px; /* 稍微减小字体 */
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 60px; /* 设置最小高度 */
  line-height: 1.4;
  box-sizing: border-box; /* 确保padding不会增加总宽度 */
  margin: 0; /* 确保没有外边距 */
}

.grid-item:hover {
  background: linear-gradient(to bottom, #fbdaad, #edc48f);
  transform: translateY(-3px); /* 稍微增加悬停效果 */
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
  color: #01377b;
  z-index: 2; /* 确保悬停时在其他元素之上 */
}

.grid-item:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(255, 107, 53, 0.3);
}

.grid-item.selected {
  background: linear-gradient(to bottom, #fbdaad, #edc48f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  border-radius: 12px;
  color: #01377b;
  font-weight: bold;
  z-index: 1; /* 确保选中状态在正常元素之上 */
}

/* 建言表单样式 */
.suggestion-form-container {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group:first-child {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.form-label {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.form-group:first-child .form-label {
  background-color: #4a6fa5;
  color: white;
  padding: 12px 20px;
  margin: 0;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  font-size: 24px;
  font-weight: 500;
}

.form-group:not(:first-child) .form-label {
  color: #01377b;
}

.form-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e6ed;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group:first-child .form-input {
  border-radius: 0 6px 6px 0;
  border-left: none;
}

.form-input:focus {
  outline: none;
  border-color: #8eb3f5;
  box-shadow: 0 0 0 3px rgba(142, 179, 245, 0.1);
}

input#titleInput::placeholder {
  color: #999;
  font-size: 16px !important;
}

.form-tips {
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #e6f2ff 100%);
  border: 2px solid #b8d4f0;
  border-left: 6px solid #2e7bd6;
  padding: 24px 28px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(46, 123, 214, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: 1060px;
  height: 510px;
  box-sizing: border-box;
}

.form-tips::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      #2e7bd6 0%,
      #4a90e2 25%,
      #6bb6ff 50%,
      #4a90e2 75%,
      #2e7bd6 100%);
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
  border-radius: 16px 16px 0 0;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 300% 0;
  }

  50% {
    background-position: -300% 0;
  }
}

.form-tips:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 123, 214, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-tips p:hover {
  color: #0f3a6b;
  transition: color 0.2s ease;
}

.form-tips p {
  margin: 12px 0;
  font-size: 24px;
  color: #1a4480;
  line-height: 1.7;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
  letter-spacing: 0.3px;
}

.form-tips p::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #2e7bd6;
  font-size: 14px;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(46, 123, 214, 0.3);
}

.form-tips p:first-child::before {
  content: "📝";
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.form-tips p:nth-child(2)::before {
  content: "🎤";
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.form-tips p:last-child::before {
  content: "💡";
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.form-textarea {
  width: 100%;
  height: 300px;
  min-height: 60px;
  padding: 12px;
  border: 2px solid #e0e6ed;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  resize: vertical;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
  line-height: 1.6;
}

.form-textarea:focus {
  outline: none;
  border-color: #8eb3f5;
  box-shadow: 0 0 0 3px rgba(142, 179, 245, 0.1);
}

.form-textarea::placeholder {
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {

  body,
  html {
    background: #c3d1fe url("sww-bgH5.png") no-repeat center -60px;
    background-size: contain;
	min-height: 100vh;
  }

  .top-content-bg {
    background-size: cover;
    height: auto;
  }

  /* Header 移动端适配 */
  .header {
    height: auto;
    padding: 10px 0;
  }

  .container {
    flex-direction: column;
    padding: 10px 20px;
    gap: 10px;
  }

  .logo {
    width: 60px;
    height: 22px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .nav a {
    font-size: 10px;
    margin: 0 3px;
  }

  .nav .separator {
    margin: 0 5px;
  }

  /* Hero 区域移动端适配 */
  .main-content {
    padding-top: 80%;
  }

  /* 编辑器内容区域移动端适配 */
  .editor-note-content {
    width: calc(100% - 30px);
    margin: 20px 15px;
    box-sizing: border-box;
    display: block;
  }

  .editor-Bg {
    padding: 10px 12px 0px 60px;
        border-radius: 10px;
        background-size: cover;
        background-position-x: -12px;
  }

  .editor-Bg p {
    margin: 10px 0;
  }

  .editor-title {
    writing-mode: horizontal-tb;
    font-size: 18px;
    padding: 10px 15px;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .editor-text p {
    font-size: 14px;
    line-height: 1.6;
    text-indent: 1.5em;
    margin-bottom: 15px;
  }

  /* 建议征集区域移动端适配 */
  .suggestion-section {
    position: initial;
    margin-top: 12.6vh;
  }

  .page-container,
  .suggestion-container {
    width: auto;
    margin: 0 10px;
    padding: 20px;
    min-height: auto;
  }

  .suggestion-title-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    content: url("sww-rmjyH5.png");
  }

  .suggestion-content {
    margin-left: 0;
    text-align: center;
  }

  .suggestion-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .suggestion-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
  }

  .grid-item {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 6px;
    width: 100%;
    max-width: 120px;
    min-height: 50px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    line-height: 1.3;
  }

  /* 表单移动端适配 */
  .suggestion-container {
    width: auto;
    padding: 20px 15px;
  }
  
  .suggestion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .grid-item {
    font-size: 16px;
    padding: 8px 12px;
    line-height: 1.3;
  }
  
  .suggestion-subtitle {
    font-size: 20px;
  }
  
  .category-info-container {
    margin-top: 20px;
    padding: 18px 20px;
  }
  
  .category-info-title {
    font-size: 20px !important;
  }
  
  .category-info-description {
    font-size: 16px !important;
  }

  .suggestion-form-container {
    margin-top: 20px;
    padding: 20px 15px;
    border-radius: 8px;
  }

  .form-group:first-child {
    flex-direction: column;
    gap: 0;
  }

  .form-group:first-child .form-label {
    border-radius: 6px 6px 0 0;
    min-width: auto;
    padding: 10px 15px;
    font-size: 18px;
  }

  .form-group:first-child .form-input {
    border-radius: 0 0 6px 6px;
    border-left: 2px solid #e0e6ed;
    border-top: none;
  }

  .form-label {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 16px;
  }

  .form-tips {
    padding: 20px 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    border-width: 1.5px;
    border-left-width: 5px;
  }

  .form-tips::before {
    height: 3px;
    border-radius: 14px 14px 0 0;
  }

  .form-tips p {
    font-size: 24px;
    margin: 10px 0;
    padding-left: 24px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .form-tips p::before {
    font-size: 13px;
    top: 1px;
  }

  .form-tips p:first-child::before,
  .form-tips p:nth-child(2)::before,
  .form-tips p:last-child::before {
    font-size: 15px;
  }

  .form-textarea {
    height: 200px;
    min-height: 60px;
    padding: 12px;
    font-size: 16px;
  }

  .select-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    align-items: stretch;
    padding: 0 15px;
  }

  .select-group {
    width: 100%;
    max-width: none;
    height: 60px;
    margin: 0;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 90, 122, 0.2);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .select-label {
    background: #364b89;
    color: white;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    height: 100%;
    min-width: 70px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-select {
    flex: 1;
    padding: 10px 12px;
    border: none;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    outline: none;
    min-width: 0;
    box-sizing: border-box;
  }

  .form-select::placeholder {
    color: #999;
    font-size: 13px;
  }

  .side-nav {
    display: none;
  }

  .note-title {
    font-size: 16px;
  }

  .note-content p {
    font-size: 12px;
  }
  .privacy-notice p {
  font-size: 18px !important;
  }
  
  input#titleInput::placeholder {
    font-size: 16px; /* 自定义字体大小 */
  }
}

/* 针对更小屏幕的优化 */
@media (max-width: 480px) {
  .select-row {
    gap: 12px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .select-group {
    height: 55px;
    border-radius: 6px;
  }

  .select-label {
    padding: 10px 10px;
    font-size: 13px;
    min-width: 60px;
  }

  .form-select {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* 平板设备适配 (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .top-content-bg {
    height: auto;
    min-height: 800px;
  }

  .container {
    max-width: 90%;
    padding: 5px 20px;
  }

  .editor-note-content {
    width: 90%;
    margin: 20px auto;
  }

  .suggestion-container {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
  }

  .suggestion-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* 提交区域样式 */
.submit-section {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.privacy-notice {
  text-align: center;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 10px;
}

.privacy-notice p {
  color: #01377b;
  font-size: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  text-align: justify;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  line-height: 1.4;
}

.dropdown-icon {
  font-size: 18px;
  color: #4a90e2;
  font-weight: bold;
}

.select-row {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}

.select-group {
  max-width: 516px;
  height: 69px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(74, 90, 122, 0.2);
  transition: all 0.3s ease;
}

.select-group:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.select-label {
  background: #364b89;
  color: white;
  margin-bottom: 0;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  height: 100%;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 建言选登区域样式 */
.selected-suggestions-container {
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.selected-suggestions-header {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.jyxd-title-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pc-title-image {
  display: block;
}

.h5-title-image {
  display: none;
}

.selected-suggestions-content {
  height: 600px;
  overflow-y: auto;
  padding: 20px 30px;
  background: rgb(176, 215, 253);
  position: relative;
}

.selected-suggestions-content::-webkit-scrollbar {
  width: 8px;
}

.selected-suggestions-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.selected-suggestions-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.selected-suggestions-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.suggestion-item {
  background: white;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4a90e2;
  transition: all 0.3s ease;
  position: relative;
}

.suggestion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.suggestion-item:last-child {
  margin-bottom: 0;
}

.suggestion-item-title {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.suggestion-item-content {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  text-align: justify;
}

.suggestion-item-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.action-btn {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.action-btn:hover {
  background: #e9ecef;
  transform: scale(1.05);
}

.like-btn:hover {
  background: #e3f2fd;
  border-color: #2196f3;
  color: #2196f3;
}

.share-btn:hover {
  background: #f3e5f5;
  border-color: #9c27b0;
  color: #9c27b0;
}

@media (max-width: 768px) {
  .selected-suggestions-container {
    margin: 20px 10px;
    border-radius: 8px;
  }

  .selected-suggestions-header {
    padding: 0;
  }

  .pc-title-image {
    display: none;
  }

  .h5-title-image {
    display: block;
  }

  .selected-suggestions-content {
    height: 500px;
    padding: 16px 20px;
  }

  .suggestion-item {
    padding: 20px;
    margin-bottom: 16px;
  }

  .suggestion-item-title {
    font-size: 18px !important;
  }
  
  .card-title {
    font-size: 22px !important;
  }

  .suggestion-item-content {
    font-size: 15px;
  }

  .footer {
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .selected-suggestions-container {
    margin: 15px 5px;
  }

  .selected-suggestions-header {
    padding: 12px 16px;
  }

  .selected-suggestions-title {
    font-size: 20px;
  }

  .selected-suggestions-content {
    height: 400px;
    padding: 12px 16px;
  }

  .suggestion-item {
    padding: 16px;
    margin-bottom: 12px;
  }

  .suggestion-item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .suggestion-item-content {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .action-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .suggestion-grid {
    grid-template-columns: 1fr;
    gap: 8px;
	flex-wrap: wrap;
    display: flex;
  }
  
  .grid-item {
    font-size: 14px;
    padding: 10px;
	max-width: calc((100% - 8px) / 2);
  }
  
  .category-info-title {
    font-size: 18px !important;
  }
  
  .category-info-description {
    font-size: 14px !important;
  }
  

  /* 移动端适配 */
  .contact-info-section,
  .thanks-section {
   padding: 0px 10px !important;
  }
   .thanks-section {
   margin: 15px 0px;
   }
  .contact-info-card,
  .thanks-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-icon .icon {
    font-size: 20px;
  }

  .card-title {
    font-size: 18px !important;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .contact-item .label {
    min-width: 100%;
    text-align: left;
	margin-right: 0px !important;
  }
}

.form-select {
  padding: 14px 18px;
  border: none;
  background: white;
  color: #555;
  font-size: 15px;
  outline: none;
  cursor: default;
  min-width: 130px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
  padding-right: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-select:focus {
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
  background-color: #fafbfc;
}

.form-select:hover {
  background-color: #f8f9fa;
}

.submit-button-container {
  text-align: center;
  margin-top: 10px;
  position: relative;
  top: 30px;
  padding-bottom: 40px;
}

.submit-button-image {
  width: 100%;
  height: 100%;
}

.submit-button {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  border: none;
  padding: 16px 45px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.45);
  background: linear-gradient(135deg, #ff5722, #ff1744);
}

.submit-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.submit-icon {
  font-size: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* 建言献策联系方式板块样式 */
.contact-info-section {
  padding: 0px 5px;
  margin-top: 15px;
  background: transparent;
  /* 移除白色背景 */
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  /* 使用半透明白色 */
  border-radius: 15px;
  padding: 15px 13px;
  box-shadow: 0 8px 25px rgba(46, 123, 214, 0.1);
  border: 2px solid #e6f2ff;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2e7bd6, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(46, 123, 214, 0.3);
}

.card-icon .icon {
  font-size: 24px;
  color: white;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 22px;
  font-weight: bold;
  color: #01377b;
  margin: 0 0 20px 0;
  text-align:center;
}

.notice-text {
  font-size: 16px;
  color: #333;
  text-align: justify;
  text-indent: 2em;
  margin: 0 0 20px 0;
  border-radius: 5px;
}

.notice-text strong {
  color: #2e7bd6;
  font-weight: bold;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.contact-item .label {
  font-weight: 600;
  text-align: center;
  color: #495057;
  width: 100%;
  margin-right: 10px;
}



.contact-item .value {
  width: 100%;
  text-align: center;
  color: #2e7bd6;
  font-weight: 500;
}

/* 感谢语板块样式 */
.thanks-section {
  padding: 15px 0;
  /* 移除底部padding */
  color: white;
  background: transparent;
  /* 确保背景透明 */
}

.thanks-container {
  max-width: 1200px;
  margin: 0 auto;
}

.thanks-card {
  background: rgba(255, 255, 255, 0.9);
  /* 使用半透明白色 */
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: center;
}

.thanks-card .card-icon {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.thanks-card .card-title {
  color: #01377b;
  font-size: 22px;
  margin: 0 0 15px 0;
}

.thanks-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* 分类介绍信息展示区域样式 */
.category-info-container {
  margin-top: 25px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #e6f2ff 100%);
  border: 2px solid #b8d4f0;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(46, 123, 214, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-info-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7bd6 0%, #4a90e2 25%, #6bb6ff 50%, #4a90e2 75%, #2e7bd6 100%);
  background-size: 300% 100%;
  border-radius: 16px 16px 0 0;
}

.category-info-content {
  position: relative;
  z-index: 1;
}

.category-info-title {
  color: #01377b;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e6ed;
}

.category-info-description {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

.category-info-description p {
  margin: 0;
  text-align: justify;
  text-indent: 2em;
}

/* 表单校验样式 */
.required {
  color: #ff4444;
  font-weight: bold;
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border: 2px solid #ff4444;
  background-color: #fff5f5;
}

.form-input.success,
.form-textarea.success,
.form-select.success {
  border: 2px solid #4caf50;
}

/* PC端样式 */
@media (min-width: 769px) {
  .contact-item .label {
    min-width: 80px;
    text-align: right;
    width: auto;
  }

  .contact-item:nth-child(3) .label {
    min-width: 50px;
	text-align: left;
  }

  .contact-item .value {
    width: 100%;
    text-align: left;
    color: #2e7bd6;
    font-weight: 500;
  }

  .footer {
    margin-top: 50px;
  }

  .submit-button-image {
    width: auto;
    height: auto;
  }

}