body {
  background-color: #fbf8f2;
  min-width: 1200px;
  position: relative;
}

body .page {
  background-repeat: no-repeat;
  background-size: 100% auto;
}

header {
  padding: 10px 0;
  background-color: var(--color-Primary);
}

header .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
}

header .box .left {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
  color: white;
}

header .box .left .nav a {
  color: white;
}

header .box .left .nav a:hover {
  color: var(--color-Primary3);
}

header .box .left .nav span {
  margin: 0 10px;
}

header .box .right .searchBox1 {
  width: 300px;
  height: 40px;
  position: relative;
  background-color: #d51e35;
}

header .box .right .searchBox1 .inputBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

header .box .right .searchBox1 .inputBox input {
  width: 100%;
  background-color: #d51e35;
  color: white !important;
  font-size: 16px;
}

header .box .right .searchBox1 .inputBox input::placeholder {
  color: white;
}

header .box .right .searchBox1 .inputBox button .icon {
  font-size: 24px;
  color: white;
}

header .box .right .searchBox1 .inputBox button:hover .icon {
  color: var(--color-Primary);
}

header .box .right .searchBox1 .downSelect {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 2;
  background-color: var(--color-Primary);
  width: 100%;
  padding: 10px;
  max-height: 300px;
  display: none;
  overflow: auto;
}

header .box .right .searchBox1 .downSelect li a {
  display: block;
  padding: 8px 0;
  color: white;
}

.module1 .box {
  padding: 80px 0;
  text-align: center;
}

.module2 {
  padding: 20px 0;
}

.module2 .box {
  background-color: var(--color-Primary2);
}

.module2 .box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
}

.module2 .box ul li {
  padding: 20px 0;
  width: 100%;
}

.module2 .box ul li a {
  display: block;
  text-align: center;
  width: 100%;
  color: white;
  border-right: 1px solid white;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
}

.module2 .box ul li a:hover {
  color: var(--color-Primary3);
}

.module2 .box ul li:last-child a {
  border-right: none;
}

.module2 .box ul .select a {
  color: var(--color-Primary3);
}

.module3 {
  padding-bottom: 20px;
}

.module3 .box {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
  min-height: 400px;
}

.module3 .leftBox {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.module3 .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.module3 .swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
}

.module3 .swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.module3 .swiper .swiper-slide .title {
  display: none;
}

.module3 .swiper .swiper-button-next,
.module3 .swiper .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.418);
  padding: 10px;
}

.module3 .swiper .swiper-button-next::after,
.module3 .swiper .swiper-button-prev::after {
  color: white;
  font-size: 22px;
}

.module3 .swiper .swiper-button-next:hover,
.module3 .swiper .swiper-button-prev:hover {
  background-color: rgba(255, 0, 0, 0.418);
}

.module3 .maskBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  padding: 0 10px;
}

.module3 .maskBox .title {
  color: white;
  font-size: 16px;
  padding: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module3 .maskBox .pagina {
  display: flex;
  align-items: center;
}

.module3 .maskBox .pagina li {
  background-color: white;
  width: 10px;
  height: 10px;
  text-align: center;
  border-radius: 50px;
  margin-left: 10px;
  color: white;
  cursor: pointer;
}

.module3 .maskBox .pagina .select {
  background-color: var(--color-Primary);
}

.module3 .rightBox {
  background-color: white;
  padding: 30px;
  box-sizing: border-box;
}

.module3 .rightBox .titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 2px solid #838383;
  padding-bottom: -2px;
}

.module3 .rightBox .titleBox .left {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 22px;
  color: var(--color-Primary2);
  position: relative;
}

.module3 .rightBox .titleBox .left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-Primary);
  left: 0;
  bottom: -2px;
  z-index: 2;
}

.module3 .rightBox .titleBox .left img {
  width: 26px;
  margin-right: 10px;
}

.module3 .rightBox .titleBox .more {
  font-size: 14px;
}

.module3 .rightBox .newTop {
  padding: 15px 0;
  border-bottom: 1px solid #c2c2c2;
}

.module3 .rightBox .newTop .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.module3 .rightBox ul {
  padding: 10px 0;
}

.module3 .rightBox ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 6px 0;
}

.module3 .rightBox ul li a .icon {
  font-size: 10px;
  color: #dddddd;
  margin-right: 5px;
}

.module3 .rightBox ul li .time {
  white-space: nowrap;
}

.module4 .cardList {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}

.module4 .cardList .cardBox {
  background-color: #fff;
}

.module4 .cardList .cardBox .first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  padding-right: 20px;
}

.module4 .cardList .cardBox .first .title {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 10px;
  background-color: var(--color-Primary);
  font-size: 22px;
  font-weight: bold;
  color: white;
  padding: 10px;
}

.module4 .cardList .cardBox .first .title img {
  width: 20px;
}

.module4 .cardList .cardBox .first .rightTab {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
}

.module4 .cardList .cardBox .first .rightTab .tab button {
  border: 1px solid black;
  padding: 2px 10px;
  font-size: 14px;
}

.module4 .cardList .cardBox .first .rightTab .tab .select {
  border: 1px solid var(--color-Primary);
  color: var(--color-Primary);
}

.module4 .cardList .cardBox .first .rightTab .tab .content {
  display: none;
}

.module4 .cardList .cardBox .first .moreBtn {
  font-size: 14px;
  color: #2b2b2b;
}

.module4 .cardList .cardBox .newList {
  padding: 30px;
  width: 100%;
  overflow: hidden;
}

.module4 .cardList .cardBox .newList .top {
  border-bottom: 1px solid #dadada;
}

.module4 .cardList .cardBox .newList .top .title {
  font-size: 24px;
  line-height: 30px;
  height: 60px;
  font-weight: bold;
  margin-bottom: 10px;
}

.module4 .cardList .cardBox .newList .top p {
  font-size: 16px;
  line-height: 20px;
  height: 40px;
}

.module4 .cardList .cardBox .newList .top img {
  width: 100%;
  padding-bottom: 20px;
}

.module4 .cardList .cardBox .newList ul {
  padding: 10px 0;
}

.module4 .cardList .cardBox .newList ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 6px 0;
}

.module4 .cardList .cardBox .newList ul li a .icon {
  font-size: 10px;
  color: #dddddd;
  margin-right: 5px;
}

.module4 .cardList .cardBox .newList ul li .time {
  white-space: nowrap;
}

.module5 {
  margin: 20px 0;
}

.module5 .box {
  text-align: center;
}

.module5 .box img {
  width: 100%;
}

.module6 {
  margin: 20px 0;
}

.module6 .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  background-color: #fff;
  padding-right: 20px;
}

.module6 .box .title {
  font-size: 20px;
  background-color: var(--color-Primary);
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

.module6 .box .title img {
  margin-right: 10px;
}

.module6 .box .more {
  font-size: 14px;
}

.module7 {
  margin: 20px 0;
}

.module7 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module7 ul li a {
  width: 100%;
  height: 220px;
  transition: all 0.3s;
}

.module7 ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module7 ul li a:hover {
  transform: translateY(-10px);
  box-shadow: 5px 5px 10px #747474;
}

.module8 {
  margin: 20px 0;
}

.module8 .box {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  gap: 20px;
}

.module8 .box .card {
  background-color: white;
  padding: 30px;
  box-sizing: border-box;
}

.module8 .box .card .titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 2px solid #838383;
  padding-bottom: -2px;
}

.module8 .box .card .titleBox .left {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 22px;
  color: var(--color-Primary2);
  position: relative;
}

.module8 .box .card .titleBox .left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-Primary);
  left: 0;
  bottom: -2px;
  z-index: 2;
}

.module8 .box .card .titleBox .left img {
  width: 26px;
  margin-right: 10px;
}

.module8 .box .card .titleBox .more {
  font-size: 14px;
}

.module8 .box .card ul {
  padding: 10px 0;
}

.module8 .box .card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 6px 0;
}

.module8 .box .card ul li a .icon {
  font-size: 10px;
  color: #dddddd;
  margin-right: 5px;
}

.module8 .box .card ul li .time {
  white-space: nowrap;
}

.module9 {
  margin: 20px 0;
}

.module9 .box {
  width: 100%;
  background-color: #fff;
}

.module9 .box .swiper {
  width: 100%;
}

.module9 .box .swiper .swiper-wrapper {
  height: auto;
}

.module9 .box .swiper .imgBox {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
}

.module9 .box .swiper .imgBox img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s;
}

.module9 .box .swiper .imgBox p {
  margin-top: 10px;
}

.module9 .box .swiper .btns {
  color: white;
  width: 30px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
}

.module9 .box .swiper .btns:hover {
  background-color: var(--color-Primary);
}

.module9 .box .swiper .btns::after {
  font-size: 20px;
}

footer {
  background-color: var(--color-Primary2);
  overflow: hidden;
  border-top: 10px solid #a6111e;
}

footer .bc {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  padding: 30px 0;
}

footer .box .selectList {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 20px;
  padding-bottom: 20px;
}

footer .box .selectList select {
  width: 100%;
  padding: 8px;
  background-color: #a6111e;
  border: none;
  color: white;
}

footer .box .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  padding: 50px 0;
}

footer .box .content .left {
  color: white;
}

.module10 {
  margin-bottom: 20px;
}

.module10 .box {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

.module10 .box .icon {
  color: var(--color-Primary2);
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

.module10 .box a {
  color: #2b2b2b;
}

.module10 .box a::after {
  content: ">";
  padding: 0 5px;
}

.module10 .box a:last-child::after {
  content: "";
}

.module10 .box a:hover {
  color: var(--color-Primary);
}

.module11 {
  margin-bottom: 50px;
}

.module11 .box {
  display: flex;
  background-color: #fff;
  padding: 20px;
  gap: 4%;
}

.module11 .box .left {
  width: 20%;
  flex-shrink: 1;
}

.module11 .box .left h3 {
  background-color: var(--color-Primary2);
  padding: 20px 15%;
  font-weight: bold;
  color: white;
  font-size: 26px;
  border-radius: 10px 10px 0 0;
}

.module11 .box .left a {
  display: block;
  background-color: #e7e7e7;
  color: #575757;
  font-weight: bold;
  font-size: 18px;
  padding: 15px 15%;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
}

.module11 .box .left a:hover {
  color: var(--color-Primary2);
}

.module11 .box .left a span {
  width: 15px;
  height: 3px;
  display: inline-block;
  background-color: #575757;
}

.module11 .box .left .select {
  color: var(--color-Primary2);
}

.module11 .box .left .select span {
  background-color: var(--color-Primary2);
}

.module11 .box .right {
  width: 100%;
}

.module11 .box .right .titleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 2px solid #d3d3d3;
  padding-bottom: -2px;
}

.module11 .box .right .titleBox .left {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 22px;
  color: var(--color-Primary2);
  position: relative;
  width: auto;
}

.module11 .box .right .titleBox .left span {
  display: block;
  width: 5px;
  height: 20px;
  margin-right: 10px;
  background-color: var(--color-Primary2);
}

.module11 .box .right .titleBox .left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--color-Primary);
  left: 0;
  bottom: -3px;
  z-index: 2;
}

.module11 .box .right .titleBox .left img {
  width: 26px;
  margin-right: 10px;
}

.module11 .box .right .titleBox .more {
  font-size: 14px;
}

.module11 .box .right ul {
  padding: 15px 0;
}

.module11 .box .right ul li {
  padding: 12px 0;
  font-size: 18px;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}

.module11 .box .right ul li a {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
}

.module11 .box .right ul li a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: #dadada;
  margin-right: 8px;
}

.module11 .box .right ul li .date {
  white-space: nowrap;
}

.module11 .box .right .videoList {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.module11 .box .right .videoList .imgBox {
  display: flex;
  align-items: center;
  justify-content: normal;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
}

.module11 .box .right .videoList .imgBox img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.module11 .box .right .videoList .imgBox p {
  margin-top: 5px;
}

.module11 .box .right .paging {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.module11 .box .right .paging a, .module11 .box .right .paging button {
  border: 1px solid #d4d4d4;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.module11 .box .right .paging button:hover {
  background-color: var(--color-Primary);
  color: white;
}

.module11 .box .right .paging input {
  width: 50px;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px 10px;
}

.module12 {
  margin-bottom: 50px;
}

.module12 .box {
  background-color: white;
  padding: 50px;
}

.module12 .box .title {
  text-align: center;
  font-weight: bold;
}

.module12 .box .time {
  text-align: center;
  margin: 20px 0;
}

.module12 .box .content {
  border-top: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
  padding: 30px 0;
  line-height: 26px;
  font-size: 16px;
}

.module12 .box .content video {
  width: 100%;
}

.module12 .box .navbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px 0;
}

.module13 {
  margin-bottom: 50px;
}

.module13 .box {
  padding: 30px;
  background-color: #fff;
}

.module13 .box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.module13 .box ul li {
  border: 1px solid #EBE1CD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  border-radius: 3px;
  padding: 50px 0;
  font-size: 22px;
  background: linear-gradient(#FFFFFF, #F6F2EA);
}

.module13 .box ul li .icon {
  margin-left: 20px;
}

.select_Input1 {
  width: 100%;
  position: relative;
  display: inline-block;
}

.select_Input1 .inputBox {
  width: 100%;
  height: 40px;
  background-color: #a6111e;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  box-sizing: border-box;
}

.select_Input1 .inputBox input {
  width: 100%;
  background-color: transparent;
  color: white;
  cursor: pointer;
}

.select_Input1 .inputBox .icon {
  font-size: 14px;
  color: white;
}

.select_Input1 .inputBox:hover {
  border: 1px solid white;
}

.select_Input1 .downOption {
  margin-top: 5px;
  position: absolute;
  top: 40px;
  left: 0px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  width: 100%;
  max-height: 200px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s;
}

.select_Input1 .downOption a {
  padding: 10px;
  border-bottom: 1px solid #d1d1d1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.select_Input1 .downOption a:hover {
  background-color: var(--color-Primary2);
  color: white;
}

.select_Input1 .downOption a:last-child {
  border-bottom: none;
}

.select_Input1 .downOption a img {
  width: 30px;
}
