* {
  padding: 0;
  margin: 0;
}

body {
  background-size: cover;
  margin: 0 auto;
  background: #FFF2E4;
  max-width: 1920px;
}

a {
  text-decoration: none;
  color: #000;
}

ul,
ol,
li {
  padding-left: 0;
  list-style-type: none;
  box-sizing: border-box;
}

.bgimg {
  width: 100%;
}

.bgimg img {
  width: 100%;
}

.source {
  width: 100%;
  height: 180px;
  line-height: 180px;
  text-align: center;
  color: #FFFFFF;
  background-color: #BF1C1F;
  font-size: 20px;
}

.table1,
.table2 {
  width: 100%;
  margin-bottom: 50px;
}

.main {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  height: auto;
}

.dy {
  border: 2px dashed #BF1C1F;
  padding: 30px;
  box-sizing: content-box;
  margin-top: 35px;
  display: flex;
}

.text {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 20px;
  color: #F60011;
  line-height: 38px;
  text-indent: 2em;
  margin-left: 34px;
}

.dy_img {
  width: 37px;
  height: 91px;
  margin-top: -28px;
}

/* tab.css */
.tab-container {
  max-width: 1200px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.tab-header {
  display: flex;
  justify-content: space-around;
}

.tab-button {
  /* padding: 12px 24px; */
  background-color: #FFF1F1;
  border: 1px dashed #E60012;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 269px;
  height: 71px;
  font-size: 26px;
  color: #E60012;
  border-radius: 5px 5px 5px 5px;
}

.tab-button:hover {
  background-color: #E60012;
  color: #fff;
}

.tab-button.active {
  background-color: #E60012;
  color: #fff;
  border: none;
}

.tab-content {
  min-height: 200px;
  margin-top: 100px;
}

.tab-pane {
  display: none;

}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.tab-pane ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tab-pane li {
  border: 2px solid #FCE09C;
}

.tab-pane li .tit {
  font-size: 22px;
  color: #F60011;
  text-align: left;
  background: linear-gradient(87deg, #FDEABC 0%, #FFFFFF 100%);
  line-height: 60px;
  padding-left: 15px;
}

.tab-pane li .cont {
  padding: 15px;
  font-size: 16px;
  color: #333333;
  line-height: 30px;
  background-color: #fff;
}

.tab-pane .check {
  float: right;
}


.table2 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFE9CF 100%);
}

.jzcx_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.jzcx_ul li {
  padding: 10px;
  background-color: #fff;
  margin-top: 50px;
}

.jzcx_ul li .fm {
  width: 100%;
  position: relative;
}

.fm_img {
  width: 100%;
}

.bf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sp_tit {
  font-size: 18px;
  color: #333333;
}