* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  background-color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Banner 样式 */
.banner {
  width: 100%;
  max-width: 1920px;
  height: 300px;
  background: url(/cms_files/filemanager/1400728300/picture/20258/86A9CB4B872FC7DABEFB7203792213F9.png) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  position: relative;
}

/* 专区样式 */
.section2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.card {
  width: 380px;
  height: 340px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}
.xmsp_bg {
  background: url(xmsp_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.qysq_bg {
  background: url(qysq_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.gxb_bg {
  background: url(gxb_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-txt {
  padding-top: 150px;
  text-align: center;
}
.card-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
}
.card-content {
  flex-grow: 1;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.card-button {
  display: block;
  width: 100%;
  height: 48px;
  background-color: transparent;
  border: 1px solid #94bbfd;
  color: #3b84ff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 46px;
}
.card-button:hover {
  background-color: #1e90ff;
  color: white;
}

/* 手风琴样式 */
:root {
  --theme: #00ce52;
  --border: #e5e5e5;
  --text: #333;
  --subText: #333;
  --radius: 8px;
  --transition: 0.5s;
}
.accordion {
  display: flex;
  height: 355px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  justify-content: space-between;
  border: 1px solid #f0f0f0;
}
.service-item {
  flex: 0 0 123px;
  display: flex;
  transition: flex var(--transition);
}
.service-item:last-child {
  border-right: none;
}
.tab {
  width: 115px;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.content {
  width: 600px;
  background: #fff;
  display: none; /* 关键：默认隐藏 */
}
.fir-content {
  padding-left: 0;
}
.service-item.active .content {
  display: block; /* 激活时显示 */
  animation: fadeIn var(--transition) forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 15px 0 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-0 {
  gap: 0px;
}
.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.app:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.flx-column img {
  width: 100px;
  height: 100px;
}
.app img {
  /*object-fit: cover;*/
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.app span {
  font-size: 18px;
  color: var(--subText);
  text-align: center;
  width: 75px;
}
.bottom {
  display: flex;
  gap: 10px;
}
.bottom p {
  font-size: 22px;
  color: var(--subText);
  display: block;
  padding: 0 0 0 53px;
  line-height: 84px;
  width: 71%;
}
.bottom p.jrfw-p {
  width: 100%;
}