html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.3s;
  font-family: 'Microsoft YaHei' !important;
}

* {
  box-sizing: border-box;
  transition: all 0.3s;
  font-family: 'Microsoft YaHei' !important;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style-type: none;
}

.maxcontainer {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1560px) {
  .maxcontainer {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

.df {
  display: flex;
  align-items: center;
}

.aflex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsb {
  display: flex;
  justify-content: space-between;
}

.fsb-a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fsb-as {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fsb-ae {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.ell {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ell2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imgcover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  background-color: #000;
}

/* 设置三条线的初始位置 */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

/* 修改动画样式 */
.menu-toggle.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.webtop {
  height: 90px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.webtop .maxcontainer {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.webtop .les {
  height: 22px;
}

.webtop .les img {
  display: block;
  height: 80%;
}

.webtop .ris {
  height: 100%;
  display: flex;
  align-items: center;
}

.webtop .ris .ul {
  height: 100%;
  margin-right: 56px;
}

.webtop .ris .ul .ls {
  height: 100%;
  position: relative;
}

@media screen and (min-width: 1130px) {
  .webtop .ris .ul .ls:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
  }
}

.webtop .ris .ul .ls .a1 {
  color: #333333;
  font-size: 18px;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 35px;
}

.webtop .ris .ul .ls .a1:hover {
  background: #c11920;
  color: #fff;
}

.webtop .ris .ul .ls .dropdown {
  box-shadow: 1px 1px 6px 1px #eee;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: none;
}

.webtop .ris .ul .ls .dropdown ul {
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
  height: auto;
}

.webtop .ris .ul .ls .dropdown ul li {
  height: auto;
  width: 100%;
  display: block;
}

.webtop .ris .ul .ls .dropdown ul li a {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  display: block;
  padding: 12px 20px;
}

.webtop .ris .ul .ls .dropdown ul li a:hover {
  background: #c11920;
  color: #fff;
}

.webtop .ris .ul .active .a1 {
  background: #c11920;
  color: #fff;
}

.webtop .ris .lang {
  display: flex;
  align-items: center;
}

.webtop .ris .lang .a1 {
  margin-right: 10px;
}

.webtop .ris .lang .a2 {
  cursor: pointer;
  color: #333333;
  font-size: 18px;
}

.webtop .ris .lang .a3 {
  margin: 0 6px;
}

.webtop .ris .lang .active {
  color: #c11920;
}

@media screen and (max-width: 1360px) {
  .webtop .ris .ul {
    margin-right: 0;
  }

  .webtop .ris .ul .ls .a1 {
    padding: 0 30px;
  }

  .webtop .ris .lang {
    display: none;
  }
}

@media screen and (max-width: 1130px) {
  .webtop {
    height: 60px;
  }

  .webtop .ris {
    height: auto;
  }

  .webtop .ris .flex-display {
    display: flex !important;
  }

  .webtop .ris .ul {
    height: auto;
    display: none;
    position: fixed;
    z-index: 100;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #fff;
    padding: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    flex-direction: column;
  }

  .webtop .ris .ul .ls {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
    height: auto;
  }

  .webtop .ris .ul .ls .a1 {
    padding: 15px 20px;
    font-size: 16px;
    position: relative;
    display: block;
    height: auto;
  }

  .webtop .ris .ul .ls .a1:hover {
    background: unset;
    color: #333333;
  }

  .webtop .ris .ul .ls .a1::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 25px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }

  .webtop .ris .ul .ls:hover .dropdown {
    opacity: 0;
    visibility: hidden;
    transform: unset;
    position: static;
    height: 0;
    overflow: hidden;
    display: block;
  }

  .webtop .ris .ul .ls:nth-of-type(1) .a1::after {
    display: none;
  }

  .webtop .ris .ul>.active .a1 {
    background: unset;
    color: #333333;
  }

  .webtop .ris .ul .jactive>a::after {
    transform: translateY(-50%) rotate(-135deg) !important;
  }

  .webtop .ris .ul .down {
    height: auto;
  }

  .webtop .ris .ul .down .dropdown {
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
    position: static !important;
    box-shadow: unset;
    transform: unset;
    transition: all 0s;
  }

  .webtop .ris .menu-toggle {
    display: flex;
  }
}

.com1 .a1 {
  color: #252525;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}

.com1 .a2 {
  height: 4px;
  width: 70px;
  background: #c11920;
  margin: 30px auto 0;
}

.com1-1 .a1 {
  color: #fff;
}

.com1-1 .a2 {
  background: #fff;
}

@media screen and (max-width: 1200px) {
  .com1 .a1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 800px) {
  .com1 .a1 {
    font-size: 24px;
  }

  .com1 .a2 {
    margin-top: 15px;
    width: 35px;
  }
}

.webfoot .top {
  background: #252525;
  padding: 80px 0 135px;
}

.webfoot .top .maxcontainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.webfoot .top .le .a1 {
  width: 250px;
  display: block;
  margin-bottom: 70px;
}

.webfoot .top .le .a2 {
  color: #ffffff;
  font-size: 16px;
}

.webfoot .top .le .a2:not(:nth-last-of-type(1)) {
  margin-bottom: 20px;
}

.webfoot .top .ri {
  display: flex;
  align-items: flex-start;
}

.webfoot .top .ri .ls:not(:nth-last-of-type(1)) {
  margin-right: 150px;
}

.webfoot .top .ri .ls .a1 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  margin-bottom: 45px;
  display: block;
}

.webfoot .top .ri .ls .a2 {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.75;
  display: block;
}

.webfoot .top .ri .ls .a2:hover {
  opacity: 1;
}

.webfoot .top .ri .ls .a2:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}

.webfoot .foot {
  background: #212121;
  box-sizing: border-box;
  padding: 20px 0;
}

.webfoot .foot .maxcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.webfoot .foot .a1 {
  font-size: 12px;
  color: #fff;
  opacity: 0.3;
  margin-right: 50px;
}

.webfoot .foot .a2 {
  font-size: 14px;
  color: #fff;
  opacity: 0.3;
}

@media screen and (max-width: 1200px) {
  .webfoot .top {
    padding: 60px 0 60px;
  }

  .webfoot .top .le .a1 {
    margin-bottom: 30px;
  }

  .webfoot .top .ri .ls:not(:nth-last-of-type(1)) {
    margin-right: 30px;
  }

  .webfoot .top .ri .ls .a1 {
    font-size: 18px;
  }

  .webfoot .top .ri .ls .a2 {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .webfoot .top {
    padding: 60px 0 30px;
  }

  .webfoot .top .maxcontainer {
    display: block;
  }

  .webfoot .top .le {
    width: 100%;
    margin-bottom: 35px;
  }

  .webfoot .top .le .a1 {
    display: block;
    max-width: 100%;
    width: 50%;
  }

  .webfoot .top .le .a2 {
    font-size: 14px;
  }

  .webfoot .top .le .a2:not(:nth-last-of-type(1)) {
    margin-bottom: 10px;
  }

  .webfoot .top .ri {
    flex-wrap: wrap;
  }

  .webfoot .top .ri .ls:not(:nth-last-of-type(1)) {
    margin-bottom: 45px;
  }

  .webfoot .top .ri .ls:not(:nth-last-of-type(1)) {
    margin-right: 35px;
  }

  .webfoot .top .ri .ls .a1 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .webfoot .foot {
    padding: 15px 0;
  }

  .webfoot .foot .maxcontainer {
    display: block;
    text-align: center;
  }

  .webfoot .foot .a1 {
    margin-right: 0;
  }

  .webfoot .foot .a2 {
    font-size: 12px;
  }
}

.cbanner {
  position: relative;
}

.cbanner .t1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.cbanner .t1 .maxcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cbanner .a1 {
  display: block;
  width: 100%;
}

.cbanner .a2 {
  color: #fff;
}

.cbanner .a2 .b1 {
  font-size: 45px;
  margin-top: -60px;
}

.cbanner .a2 .b2 {
  font-size: 90px;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: none;
}

.cbanner .a3 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #c11920;
}

.cbanner .a3 .maxcontainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cbanner .a3 .ls {
  color: #fff;
  font-size: 18px;
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

.cbanner .a3 .ls:not(:nth-last-of-type(1)) {
  margin-right: 50px;
}

.cbanner .a3 .ls:not(:nth-last-of-type(1))::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  top: 28px;
  right: -50px;
}

.cbanner .a3 .ls:not(:nth-of-type(1)) {
  margin-left: 30px;
}

@media screen and (max-width: 1300px) {
  .cbanner .t1 .maxcontainer {
    justify-content: center;
    align-items: center;
  }

  .cbanner .a2 .b1 {
    font-size: 25px;
    margin-top: 0;
  }

  .cbanner .a2 .b2 {
    font-size: 35px;
  }

  .cbanner .a3 {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .cbanner .a1 {
    height: 200px;
    object-fit: cover;
  }

  .cbanner .a2 .b1 {
    font-size: 20px;
  }

  .cbanner .a2 .b2 {
    font-size: 28px;
  }
}

/* 大于800像素时显示的样式 */
@media screen and (min-width: 801px) {
  .apc {
    display: block;
  }

  .aphone {
    display: none;
  }
}

/* 小于800像素时显示的样式 */
@media screen and (max-width: 800px) {
  .apc {
    display: none;
  }

  .aphone {
    display: block;
  }
}

.pagination {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pagination,
.pagination li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination li {
  width: 40px;
  height: 40px;
  background: #e9e9e9;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 0 3px 6px;
}

.pagination li a,
.pagination li span {
  color: #666;
  font-size: 16px;
}

.pagination .active {
  background: #c11920;
  color: #fff;
}

.pagination .active a,
.pagination .active span {
  color: #fff;
}

.webfix {
  position: fixed;
  top: 30%;
  right: 35px;
  z-index: 99;
}

.webfix .ls {
  width: 58px;
  height: 58px;
  background: #dedede;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.webfix .ls:not(:nth-last-of-type(1)) {
  margin-bottom: 5px;
}

.webfix .ls:nth-of-type(1):hover .lst2 {
  position: absolute;
  left: -180px;
  top: calc(50% - 10px);
  font-size: 18px;
  color: #333;
  margin-top: -10px;
  background: #fff;
  padding: 10px 20px;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.webfix .ls:nth-of-type(2):hover .lst3 {
  display: block;
  position: absolute;
  left: -135px;
  top: 0%;
  margin-top: -18px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.webfix .ls:nth-last-of-type(1) {
  background: #fff;
  border: 1px solid #c11920;
}

.webfix .ls:nth-last-of-type(1) .lst1 .a2 {
  color: #c11920;
}

.webfix .ls .lst1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.webfix .ls .lst1 .a1 {
  height: 20px;
}

.webfix .ls .lst1 .a2 {
  color: #333333;
  font-size: 12px;
  margin-top: 8px;
  line-height: 12px;
  display: block;
}

.webfix .ls .lst2 {
  display: none;
}

.webfix .ls .lst3 {
  display: none;
}

@media screen and (max-width: 800px) {
  .webfix {
    right: 20px;
    top: unset;
    bottom: 20%;
  }

  .webfix .ls {
    width: 50px;
    height: 50px;
  }

  .webfix .ls .lst1 .a1 {
    height: 15px;
  }

  .webfix .ls .lst1 .a2 {
    margin-top: 5px;
  }
}


.addhoverimg:hover img {
  filter: brightness(0) invert(1);
}