dl,li,ol,ul {
  list-style: none;
  padding: none;
  margin: none;
}
.header {
  background-color: #fff;
  position: relative;
}
.header .list {
  height: 100%;
}
.red{ background-color: #bd0003; }
.header .list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right:2rem;
  margin-left: 2rem;
}
.header .list .link:last-child {
  margin-right: 1rem;
}
.header .list .link a {
  height: 100%;
  font-weight: 500;
  color: #eccaa1;
  transition: all 0.3s;
}
.header .list .link:hover a {
  color: #eccaa1;
}
.header .list .link[data-id] {
  position: relative;
}
.header .list .link[data-id]:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.375rem;
  background-color: #eccaa1;
  bottom: 0;
  transition: all 0.3s;
}
.header .list .active a {
  color: #ffffff;
  transition: all 0.3s;
}
.header .list .board {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 18.75rem;
  box-sizing: border-box;
  left: 0;
  top: 100%;
  z-index: 99;
  display: none;
  transition: all 0.3s;
}
.header .list .board ul li div a:hover {
  color: #C01319;
}
.header .list .board:hover + li {
  position: relative;
}
.header .list .board:hover + li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.375rem;
  background-color: #C01319;
  bottom: 0;
}
.header .search {
  width: 8rem;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 3rem;
}
.header .search .textInput {
  background: url("/tpl/www/image/ico/search.jpg") no-repeat;
  background-position: 0.3rem center;
  background-size: 1.5rem 1.5rem;
  width: 0rem;
  height: 2rem;
  border-radius: 2rem;
  padding: 0 2rem;
  outline: none;
  transition: all 0.3s;
}
.header .search .textInput:hover, .header .search .textInput:focus {
  width: 8rem;
  background-color: #fff;
  background-image: url("/res/202407/09/62fb5ed2f3165eb9.png");
}
.header.white {
  box-shadow: none;
  background-color: transparent;
  position: fixed;
  width: 100%;
}
.header.white .list .link a {
  color: #ccc;
}
.header.white .list .link:hover a {
  color: #fff;
}
.header.white .list .link[data-id]:hover::after {
  content: "";
  background-color: #fff;
}
.header.white .list .active a {
  color: #fff;
}
.header.white .list .board {
  background-color: rgba(255, 255, 255, 0.2);
}
.header.white .list .board ul li div a {
  color: #fff;
}
.header.white .list .board ul li div a:hover {
  color: #fff;
}
.header.white .list .board:hover + li {
  position: relative;
}
.header.white .list .board:hover + li::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.375rem;
  background-color: #fff;
  bottom: 0;
}
.header.white .search {
  width: 8rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.header.white .search .textInput {
  background: url("/res/202408/10/9e1a077c8b2bfe33.png") no-repeat;
  background-position: center;
  background-size: 1.5rem 1.5rem;
  width: 0rem;
  height: 2rem;
  border-radius: 2rem;
  padding: 0 1.1rem;
  outline: none;
  transition: all 0.3s;
  background-color: #C01319;
}
.header.white .search .textInput:hover, .header.white .search .textInput:focus {
  background: url("/res/202407/09/62fb5ed2f3165eb9.png") no-repeat;
  background-position: 0.3rem center;
  background-size: 1.5rem 1.5rem;
  padding: 0 2rem;
  width: 8rem;
  background-color: #fff;
}

.footer {
	background-color: #bd0003;
	color: #fff;
	font-size: 14px;
	padding: 20px 0;
  }
  
  .footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .footer-logo img {
	margin-bottom: 10px;
  }

  .footer-menu {
	display: flex;
	align-items: center;
	gap: 40px; /* 控制菜单和图标之间的间距 */
	margin-top: 10px;
  }
  
  .footer-nav ul,
  .footer-icons ul {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
  }

  .footer-icons ul{margin-left: 15px;}
  
  .footer-nav li a,
  .footer-icons li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
  }
  
  .footer-icons img {
	height: 24px;
	width: 24px;
  }
  
  .footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 15px 40px 0;
	font-size: 13px;
  }
  
  .footer-contact span {
	display: flex;
	align-items: center;
	justify-content: left;
	margin-bottom: 6px;
	font-size: 14px;
	color: #fffffb;
  }
  
  .footer-contact .icon {
	width: 16px;
	height: 16px;
	margin-right: 6px;
  }
  
  .footer-rights {
	margin-top: 10px;
  }
  
  /* 移动端适配 */
  @media (max-width: 768px) {
	.footer-top {
	  flex-direction: column;
	  align-items: flex-start;
	  padding: 0 20px;
	}
  
	.footer-nav ul,
	.footer-icons ul {
	  flex-wrap: wrap;
	  gap: 12px;
	  margin-top: 10px;
	}
  
	.footer-bottom {
	  flex-direction: column;
	  align-items: flex-start;
	  padding: 15px 20px 0;
	}
  
	.footer-contact span {
	  margin-bottom: 8px;
	}
  
	.footer-rights {
	  margin-top: 10px;
	}
  }

body::-webkit-scrollbar {
  width: 8px;
  height: 2px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ccc;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.mheader {
  display: none;
}

.mfooter {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header {
    display: none !important;
  }
  .mheader {
    display: flex;
    position: fixed;
  }
  footer {
    /* display: none; */
  }
  .mfooter {
    display: block;
    padding: 5.1282051282vw;
    padding-bottom: 35.8974358974vw;
    background-color: #A8000C;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    position: relative;
  }
  .mfooter .mfooter_list > li {
    color: #fff;
  }
  .mfooter .mfooter_list > li > p {
    font-size: 5.1282051282vw;
    position: relative;
    text-align: center;
  }
  .mfooter .mfooter_list > li > p::after {
    content: "";
    display: block;
    width: 25.641025641vw;
    height: 0.2564102564vw;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .mfooter .mfooter_list > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .mfooter .mfooter_list > li > ul li {
    font-size: 3.0769230769vw;
    margin: 2.5641025641vw;
  }
  .mfooter .mfooter_list > li:nth-last-of-type(2) ul {
    justify-content: center;
  }
  .mfooter .mfooter_list > li:nth-last-of-type(2) ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mfooter .mfooter_list > li:nth-last-of-type(2) ul li img {
    width: 23.0769230769vw;
    height: 23.0769230769vw;
  }
  .mfooter .mfooter_list > li:nth-last-of-type(2) ul li p {
    margin-top: 1.2820512821vw;
  }
  .mfooter .mfooter_list > li:last-of-type {
    width: 100%;
    height: 25.641025641vw;
    background-color: rgb(238, 204, 206);
    position: absolute;
    bottom: 5.1282051282vw;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mfooter .mfooter_list > li:last-of-type img {
    width: auto;
    height: 12.8205128205vw;
  }
  .mfooter .mfooter_list > li:last-of-type .desc {
    font-size: 3.0769230769vw;
    color: #C01319;
  }
}/*# sourceMappingURL=common.css.map */