html,
body,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.3s;
  font-family: 'Microsoft YaHei' !important;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style-type: none;
}
input {
  background: none;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
  border: none;
}
.maxcontainer {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.container {
  max-width: 1385px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1560px) {
  .maxcontainer {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1385px) {
  .container {
    padding: 0 20px;
  }
}
@font-face {
  font-family: 'fontreg';
  src: url(../font/HostGrotesk-Regular.ttf);
}
@font-face {
  font-family: 'fontmed';
  src: url(../font/HostGrotesk-Medium.ttf);
}
.fontreg {
  font-family: fontreg !important;
}
.fontmed {
  font-family: fontmed !important;
}
.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;
}
.dn860 {
  display: flex !important;
}
.db860 {
  display: none !important;
}
@media screen and (max-width: 860px) {
  .dn860 {
    display: none !important;
  }
  .db860 {
    display: block !important;
  }
}
/* 移动端菜单按钮 */
.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;
}
@media screen and (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
}
.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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #cccccc;
}
.webtop .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.webtop .le {
  display: block;
}
.webtop .le img {
  height: 45px;
}
.webtop .le .img2 {
  display: none;
}
.webtop .ri {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.webtop .ri .list {
  display: flex;
  align-items: center;
}
.webtop .ri .list .ls {
  position: relative;
}
@media screen and (min-width: 860px) {
  .webtop .ri .list .ls:hover .dropdown {
    display: block;
  }
}
.webtop .ri .list .ls .a1 {
  height: 90px;
  color: #fff;
  display: block;
  display: flex;
  align-items: center;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 32px;
  font-weight: 600;
}
.webtop .ri .list .ls .dropdown {
  position: absolute;
  top: 100%;
  background: #fff;
  min-width: 150px;
  left: 0;
  box-shadow: 1px 1px 6px 1px #eee;
  transition: all 0.3s ease;
  display: none;
}
.webtop .ri .list .ls .dropdown a {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  display: block;
  padding: 12px 20px;
  white-space: nowrap !important;
}
.webtop .ri .list .ls .dropdown a:hover {
  background: #000;
  color: #fff;
}
.webtop .ri .list .ls .dropdown-active {
  display: block;
  position: static;
}
.webtop .ri .list .active {
  border-bottom: 2px solid #fff;
}
.webtop .ri .lang {
  padding-left: 36px;
  border-left: 1px solid #cccccc;
  position: relative;
  cursor: pointer;
}
.webtop .ri .lang:hover .t2 {
  display: block;
}
.webtop .ri .lang:hover .t2::before {
  display: block;
}
.webtop .ri .lang .t1 {
  display: flex;
  align-items: center;
}
.webtop .ri .lang .t1 .a1 {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-right: 16px;
}
.webtop .ri .lang .t2 {
  position: absolute;
  top: 55px;
  background: #fff;
  min-width: 150px;
  right: 0;
  box-shadow: 1px 1px 6px 1px #eee;
  transition: all 0.3s ease;
  display: none;
}
.webtop .ri .lang .t2::before {
  content: '';
  position: absolute;
  top: -55px;
  right: 0;
  width: 100%;
  height: 55px;
  display: none;
}
.webtop .ri .lang .t2 .a1 {
  font-size: 16px;
  color: #333;
  display: block;
  padding: 12px 20px;
  white-space: nowrap !important;
}
.webtop .ri .lang .t2 .a1:hover {
  background: #000;
  color: #fff;
}
.webtop-active {
  background: #fff;
}
.webtop-active .le .img1 {
  display: none;
}
.webtop-active .le .img2 {
  display: block;
}
.webtop-active .ri .list .ls .a1 {
  color: #000;
}
.webtop-active .ri .list .active {
  border-bottom: 2px solid #c6bda2;
}
.webtop-active .ri .lang .t1 .a1 {
  color: #000;
}
.webtop-active .ri .lang .t1 .a2 {
  filter: invert(100%);
  /* 反转颜色，将白色变成黑色 */
}
.webtop .menu-toggle span {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .webtop .ri .list .ls .a1 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 860px) {
  .webtop {
    padding: 15px 0;
  }
  .webtop .le img {
    height: 35px;
  }
  .webtop .ri {
    display: none;
  }
  .webtop-active .menu-toggle span {
    background: #000;
  }
}
.webdown .ri {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: block;
  background: #fff;
  height: calc(100vh - 66px);
  overflow-y: auto;
  /* 滚动条样式，适用于 Chrome、Safari 和 Opera */
  /* 滚动条样式，适用于 Firefox */
  scrollbar-color: #c6bda2 #f1f1f1;
}
.webdown .ri::-webkit-scrollbar {
  width: 8px;
}
.webdown .ri::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.webdown .ri::-webkit-scrollbar-thumb {
  background: #c6bda2;
}
.webdown .ri::-webkit-scrollbar-thumb:hover {
  background: #a89f82;
}
.webdown .ri .list {
  border-top: 1px solid #cccccc;
  display: block;
}
.webdown .ri .list .ls {
  display: block;
  width: 100%;
}
.webdown .ri .list .ls:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid #cccccc;
}
.webdown .ri .list .ls > div.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;
}
.webdown .ri .list .ls .a1 {
  color: #000;
  height: auto;
  display: block;
  padding: 15px 20px;
}
.webdown .ri .list .ls .a1-active::after {
  transform: translateY(-50%) rotate(-135deg) !important;
}
.webdown .ri .list .ls .active {
  border-bottom: none;
}
.webdown .ri .lang {
  display: none;
}
.webfoot {
  background: #1a1a19;
  border-top: 1px solid #5c5952;
  padding-top: 70px;
}
.webfoot .tt1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
}
.webfoot .tt1 .le {
  width: 720px;
}
.webfoot .tt1 .le .t1 {
  height: 75px;
  display: block;
}
.webfoot .tt1 .le .t2 {
  color: #fff;
  font-size: 28px;
  margin: 50px 0 40px;
}
.webfoot .tt1 .le .t2 .b2{
  margin-left: 100px;
  width: 50px;
  height: 50px;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.webfoot .tt1 .le .t5 .ls{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border:1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  position:relative;
}
.webfoot .tt1 .le .t5 .ls:hover{background: #c6bda2;border-color: #c6bda2;}
.webfoot .tt1 .le .t5 .ls:hover .img1{display: block;}
.webfoot .tt1 .le .t5 .ls .img{width: 20px;height: 20px;object-fit: contain;}
.webfoot .tt1 .le .t5 .ls .img1{display: none;width: 111px;height: 111px;object-fit: cover;border-radius: 8px;top:-115px;left:50%;margin-left: -50px;position: absolute;}
.webfoot .tt1 .le .t2 .b2 img{
  transform: rotate(180deg);
  width: 20px;
  cursor: pointer;
}
.webfoot .tt1 .le .t3 .a1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.webfoot .tt1 .le .t3 .a1 .ls {
  width: calc(33% - 12px);
  box-sizing: border-box;
  color: #fff;
  border: none;
  border-bottom: 1px solid #bbbbba;
  background: #1a1a19;
  padding: 10px 16px;
  /* 设置input的placeholder颜色为红色 */
  /* 兼容不同浏览器 */
}
.webfoot .tt1 .le .t3 .a1 .ls::placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a1 .ls::-webkit-input-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a1 .ls::-moz-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a1 .ls:-ms-input-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a2 {
  position: relative;
}
.webfoot .tt1 .le .t3 .a2 img {
  width: 18px;
  position: absolute;
  bottom: 10px;
  right: 0;
  cursor: pointer;
}
.webfoot .tt1 .le .t3 .a2 .ls {
  color: #fff;
  background: none;
  border: none;
  border-bottom: 1px solid #bbbbba;
  padding: 10px 16px;
  display: block;
  height: 60px;
  width: 100%;
  /* 设置textarea的placeholder颜色为红色 */
  /* 兼容不同浏览器 */
}
.webfoot .tt1 .le .t3 .a2 .ls::placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a2 .ls::-webkit-input-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a2 .ls::-moz-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .le .t3 .a2 .ls:-ms-input-placeholder {
  opacity: 0.4;
}
.webfoot .tt1 .ri {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  margin-left: 150px;
}
.webfoot .tt1 .ri .ls .a1 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 80px;
}
.webfoot .tt1 .ri .ls .a2 {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  display: block;
}
.webfoot .tt1 .ri .ls .a2:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}
.webfoot .tt1 .ri .ls .a3 {
  font-family: fontreg !important;
  max-width: 160px;
}
.webfoot .tt1 .ri .ls .a4 {
  max-width: 160px;
}
.webfoot .tt2 {
  padding: 30px 0;
  color: #ffffff;
  opacity: 0.3;
  font-family: fontreg !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.webfoot .tt2 a {
  color: #ffffff;
}
@media screen and (max-width: 1300px) {
  .webfoot .tt1 .le {
    width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .webfoot {
    padding-top: 50px;
  }
  .webfoot .tt1 {
    padding-bottom: 40px;
    display: block;
  }
  .webfoot .tt1 .le {
    width: 100%;
    margin-bottom: 40px;
  }
  .webfoot .tt1 .le .t1 {
    height: 50px;
  }
  .webfoot .tt1 .le .t2 {
    font-size: 24px;
    margin: 30px 0 20px;
  }
  .webfoot .tt1 .le .t2 .b2{
    width: 40px;
    height: 40px;
    margin-left: 30px;
  }
  .webfoot .tt1 .le .t5 .ls{width: 40px;height: 40px;}
  .webfoot .tt1 .le .t5 .ls .img{width: 15px;height: 15px;}
  .webfoot .tt1 .le .t2 .b2 img{width: 15px;}
  .webfoot .tt1 .le .t3 .a1 {
    margin-bottom: 20px;
  }
  .webfoot .tt1 .le .t3 .a1 .ls {
    padding: 8px 12px;
  }
  .webfoot .tt1 .le .t3 .a2 {
    position: relative;
  }
  .webfoot .tt1 .le .t3 .a2 img {
    width: 14px;
    bottom: 14px;
    right: 0;
  }
  .webfoot .tt1 .le .t3 .a2 .ls {
    padding: 8px 12px;
  }
  .webfoot .tt1 .ri {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .webfoot .tt1 .ri .ls {
    margin-bottom: 20px;
  }
  .webfoot .tt1 .ri .ls:not(:nth-last-of-type(1)) {
    margin-right: 20px;
  }
  .webfoot .tt1 .ri .ls .a1 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .webfoot .tt1 .ri .ls .a2 {
    font-size: 12px;
  }
  .webfoot .tt1 .ri .ls .a2:not(:nth-last-of-type(1)) {
    margin-bottom: 8px;
  }
  .webfoot .tt1 .ri .ls .a3 {
    max-width: unset;
  }
  .webfoot .tt1 .ri .ls .a4 {
    max-width: unset;
  }
  .webfoot .tt2 {
    padding: 15px 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .webfoot .tt1 {
    padding-bottom: 30px;
  }
  .webfoot .tt1 .le .t2 {
    font-size: 18px;
  }
  .webfoot .tt2 {
    display: block;
    text-align: center;
  }
  .webfoot .tt2 > div {
    margin-bottom: 10px;
  }
}
.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: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 0 3px 6px;
  border: 1px solid #c6bda2;
}
.pagination li a,
.pagination li span {
  color: #666;
  font-size: 16px;
}
.pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .active {
  background: #c6bda2;
  color: #fff;
}
.pagination .active a,
.pagination .active span {
  color: #fff;
}
