/* 适配苹果手机 */
body, html {
	min-width: 1300px;
}
/* 适配苹果手机 */


/* 新闻资讯部分 */

.headline {
  padding: 30px 100px;
  margin-bottom: 20px;
  height: 140px;
  background: #FFFFFF;
  box-shadow: 0 0 22px -2px #1678dd30;
}

.headline-tag {
  display: inline-block;
  margin-right: 10px;
  height: 32px;
  width: 74px;
  background: url(./toutiao_bg.png) no-repeat;
}

.headline h2 {
  display: inline;
}

.headline h2 a {
  font-size: 32px;
  color: #0D5AAA;
  font-weight: 600;
}

.headline p {
  margin-top: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.news-main {
  display: flex;
  gap: 30px;
}

.news-slider {
  width: 700px;
  height: 393px;
  position: relative;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-link.active {
  opacity: 1;
  z-index: 1;
}

.slider-link:hover {
  cursor: pointer;
}

.slider-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 30px 20px 20px;
  z-index: 10;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 11;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

.news-tabs {
  flex: 1;
}

.tab-header {
  display: flex;
  margin-bottom: 0;
  line-height: 0;
}

.tab-btn {
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.tab-btn a {
  font-size: 22px;
  color: #999;
  font-weight: 400;
}

.tab-btn.active a {
  color: #1a4a8a;
  font-weight: bold;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
}

.news-list2 {
  display: none;
  padding: 15px 0;
}

.news-list2.active {
  display: block;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.news-item {
  display: flex;
  cursor: pointer;
  line-height: 36px;
  justify-content: space-between;
}

.news-item:hover {
  color: #1a4a8a;
}

.news-item::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #333;
  margin-right: 10px;
  margin-top: 16px;
  flex-shrink: 0;
}

.news-date {
  color: #999;
  font-size: 16px;
  width: 22%;
  text-align: right;
}

/* 专题通栏 - 图片形式，宽度1200px */
.banner-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  height: 120px;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* 我要看/办/问部分 - 鼠标划过切换 */
.service-section {
  padding: 50px 0;
  position: relative;
  background: url(./part3-bg.png) center 85px no-repeat;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 40px;
}

.service-tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 220px;
  height: 60px;
}

.btn01 {
  background: url(./Home_ico_11.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}
.btn02 {
  background: url(./Home_ico_12.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}
.btn03 {
  background: url(./Home_ico_13.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}

.btn01.active {
  background: url(./zwgk_on.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}

.btn02.active {
  background: url(./zwfw_on.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}

.btn03.active {
  background: url(./hdjl_on.png) no-repeat left center;
  width: 220px;
  height: 68px;
  display: block;
  padding-left: 70px;
  line-height: 60px;
}

.service-tab span {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-left: 12px;
  padding: 0 10px;
  background-image: linear-gradient(180deg, #F5FAFE 0%, #FFFFFF 50%);
}

.service-tab.active span {
  color: #0D59A7;
  font-weight: 600;
}

.service-content {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px 0 #1678dd3d;
  min-height: 430px;
  position: relative;
}

.service-panel.active::before {
  content: '';
  position: absolute;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.service-panel#woyaokan.active::before {
  left: 310px;
}

.service-panel#woyaoban.active::before {
  left: 600px;
}

.service-panel#woyaowen.active::before {
  left: 885px;
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
  animation: fadeIn 0.3s;
}

/* 我要看左右布局 */
.woyaokan-layout {
  display: flex;
  gap: 40px;
}

/* 我要看布局 - 左右各占50% */
.woyaokan-layout {
  display: flex;
  gap: 30px;
}

.woyaokan-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.woyaokan-right {
  width: 50%;
  border-left: 1px solid #D8D8D8;
  padding-left: 30px;
}

/* 我要看标签样式 */
.woyaokan-tabs {
  display: flex;
  margin-bottom: 15px;
}

.woyaokan-tab {
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.woyaokan-tab a {
  color: #999;
  font-size: 22px;
}

.woyaokan-tab.active a {
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  font-size: 22px;
  color: #0D59A7;
  letter-spacing: 0;
}

/* 我要看新闻列表 */
.woyaokan-news {
  flex: 1;
  margin-bottom: 20px;
  min-height: 180px;
}

.woyaokan-news .news-item {
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0;
  line-height: 36px;
}

/* 信息卡片网格 */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-card {
  width: 260px;
  height: 90px;
  background: #F6F9FF;
  padding: 15px;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.info-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 8px;
  width: 67px;
}

.info-card h4 {
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0;
  line-height: 25px;
  width: 45%;
}

.section-subtitle {
  font-size: 16px;
  color: #1a4a8a;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a4a8a;
}

/* 快捷入口 - 左右各2个 */
.quick-links {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.quick-link-item {
  width: 120px;
  height: 104px;
  display: flex;
  align-items: center;
  padding: 12px 0;
  background: #F6F9FF;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  flex-direction: column;
  justify-content: space-evenly;
}

.quick-link-item:hover {
  color: #333;
  transform: translateY(5px);
}

.quick-link-item span {
  font-family: SourceHanSansCN-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  letter-spacing: 0;
  text-align: center;
}

.quick-link-icon {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.quick-link-item:hover .quick-link-icon {
  color: #1a4a8a;
}

.info-card-large {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-card-large:hover {
  background: #1a4a8a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card-large:hover .info-icon-large {
  background: #fff;
  color: #1a4a8a;
}

.info-icon-large {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.info-card-content p {
  font-size: 13px;
  color: #999;
}

.info-card-large:hover .info-card-content p {
  color: rgba(255,255,255,0.8);
}

/* 走进白银 - 鼠标划过切换 */
.about-section {
  background-image: linear-gradient(180deg, #F5FAFE 0%, #FFFFFF 50%);
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
  background: url(./zjbybg03.png) no-repeat;
  height: 420px;
  justify-content: space-around;
  background-size: cover;
}

.about-left {
  width: 400px;
}

.about-title {
  width: 100%;
  height: 328px;
}

.about-right {
  width: 590px;
}

.about-tabs {
  display: flex;
  height: 50px;
  line-height: 50px;
  gap: 20px;
  margin-bottom: 30px;
}

.about-tab {
  cursor: pointer;
  background: #c9def3;
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 22px;
  color: #0D59A7;
  letter-spacing: 0;
  text-align: center;
  width: 175px;
}

.about-tab:hover,
.about-tab.active,
.about-tab a:hover,
.about-tab a.active{
  background: #0D59A7;
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF !important;
  letter-spacing: 0;
}

.about-content {
  line-height: 2;
  color: #333;
  min-height: 300px;
}

.about-panel {
  display: none;
}

.about-panel p {
  color: #333333;
  font-size: 16px;
  font-family: PingFangSC;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  paragraph-spacing: 0;
  text-align: left;
}

.about-panel a {
  color: #1961ab;
  font-size: 16px;
  font-family: PingFangSC;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0;
  paragraph-spacing: 0;
  text-align: left;
}  

.about-panel.active {
  display: block;
  animation: fadeIn 0.3s;
}

/* 专题专栏 */
.special-section {
  padding: 40px 0;
  background: #fff;
}

.section-title {
  margin-bottom: 30px;
  font-family: PingFangSC-Semibold;
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  letter-spacing: 0;
}

.special-grid {
  display: flex;
  gap: 20px;
}

.special-card {
  width: 285px;
  height: 150px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.special-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.special-btn {
  display: inline-block;
  padding: 5px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.3);
}


/* 我要办内容区域样式开始 */
.wyb-header-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.wyb-nav-item {
  font-size: 22px;
  color: #999;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 400;
  padding: 5px 0;
}

.wyb-nav-item:hover,
.wyb-nav-item.active {
  color: #0D59A7;
  font-size: 22px;
  font-weight: 600;
}

.main-content {
  display: flex;
  gap: 40px;
  height: 400px;
}

.wyb-service-section {
  flex: 1;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.tab {
  width: auto;
  padding: 25px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #4799ed;
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  font-weight: 500;
  border-radius: 50px;
}

.tab:hover,
.tab.active {
  background: #4799ed;
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
  transform: none;
  cursor: pointer;
  border-radius: 50px;
}

.service-grid {
  position: relative;
  min-height: 400px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-cards.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-card {
  background: url(./service-card-bg.png) no-repeat;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  width: 150px;
  height: 50px;
  line-height: 50px;
}

.service-card:hover {
  background: url(./service-card-bg.png) no-repeat;
  border-color: #dee6ed;
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.15);
  transform: translateY(-3px);
}

.service-card span {
  font-size: 16px;
  color: #333;
  font-weight: 400;
}

.sidebar {
  width: 280px;
  border-left: 1px solid #d8d8d8;
  padding-left: 40px;
}

.sidebar-title {
  font-size: 22px;
  color: #0d59a7;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  background: #f6f9ff;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-item:hover {
  border-color: #e4e9f3;
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.12);
  transform: translateX(5px);
}

.quick-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.quick-item:hover .quick-icon {
  transform: scale(1.1);
}

.quick-item:hover .quick-icon svg {
  fill: #fff;
  stroke: #fff;
}

.quick-text {
  font-size: 16px;
  color: #333;
  font-weight: 400;
}

.quick-items {
  display: none;
}

.quick-items.active {
  display: block;
}

.quick-items-fixed {
  display: block;
}
/* 我要办内容区域样式结束 */

/* 我要问内容区域样式开始 */
.top-section {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  position: relative;
}

.top-section::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 230px;
  background: linear-gradient(180deg, transparent 0%, #d0d8e0 20%, #d0d8e0 80%, transparent 100%);
  transform: translateX(-50%);
}

.panel {
  width: 540px;
  height: 230px;
  background: #fff;
}

.panel:first-child {
  margin-right: 30px;
}

.panel-header a {
  font-size: 22px;
  font-weight: 700;
  color: #0d5ba9;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.message-list {
  list-style: none;
}

.message-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 35px;
}

.message-item:last-child {
  border-bottom: none;
}

.message-dot {
  width: 3px;
  height: 3px;
  background: #333;
  margin-right: 10px;
}

.message-text {
  flex: 1;
}

.message-text a {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.message-text a:hover {
  color: #2c5aa0;
}

.message-date {
  font-size: 16px;
  color: #999;
  margin: 0 12px;
}

.message-status {
  font-size: 16px;
  color: #15c350;
  font-weight: 400;
}

.minyizhengji {
  margin-left: 30px;
}

.collection-list {
  list-style: none;
}

.collection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 35px;
}

.collection-item:last-child {
  border-bottom: none;
}

.collection-dot {
  width: 3px;
  height: 3px;
  background: #333;
  margin-right: 10px;
}

.collection-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collection-title {
	flex: 1;
	overflow: hidden;
}

.collection-title a {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.collection-title a:hover {
  color: #2c5aa0;
  margin-left: 15px;
  white-space: nowrap;
}

.collection-date {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-indent: 2rem;
}

.bottom-section {
  display: flex;
  gap: 20px;
}

.bottom-section a {
  text-decoration: none;
}

.action-card {
  width: 270px;
  height: 100px;
  background: url(./wyw-bg.png) no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(44, 90, 160, 0.1);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2c5aa0 0%, #4a90d9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.action-card:hover::before {
  transform: scaleX(1);
}

.action-title {
  color: #0d59a7;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 6px;
}

.action-subtitle {
  color: #2f4255;
  font-size: 16px;
  font-weight: 500;
}

.hotline-card {
  background: url(./wyw-bg.png) no-repeat;
  color: white;
}

.hotline-card .action-title {
  color: #0d59a7;
  font-size: 30px;
  letter-spacing: 4px;
  font-weight: 400;
}

.hotline-card .action-subtitle {
  color: #2f4255;
  font-size: 16px;
  font-weight: 500;
}

.hotline-card:hover {
  background: url(./wyw-bg.png) no-repeat;
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}
/* 我要问内容区域样式结束 */

/* 移动端样式 */
@media screen and (max-width: 768px) {
  .overview-content{
  	flex-direction: column;
  }
  .video-js {
  	width: 90%;
    left: 50%;
  }
  .video-container {
  	width: 100%;
  }
}