* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
}

.center {
  text-align: center;
}

.nav {
  height: 4.4rem;
  display: flex;
  align-items: center;
}

.logo {
  width: 9.25rem;
  height: 1.9rem;
  margin: 0 3rem 0 12rem;
}

.menu {
  /* width: 29.25rem; */
  /* height: 1.8rem; */
}

.menu>ul {
  width: 100%;
  height: 100%;
}

.menu>ul>li {
  font-size: 0.9rem;
  color: #666666;
  font-weight: bold;
  cursor: pointer;
}

ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right-logo {
  width: 4.7rem;
  height: 1.3rem;
  margin-left: 10.8rem;
}

.right-menu {
  width: 12.75rem;
  height: 0.9rem;
}

.right-menu>ul {
  width: 100%;
  height: 100%;
  margin-left: 2.5rem;
}

.right-menu>ul>li {
  opacity: 0.5;
  cursor: pointer;
}

.active-lang {
  width: 3.6rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 0.9rem;
  color: #333333;
  opacity: 1 !important;
}

.item {
  flex: 1;
  width: 33%;
  background-color: red;

}

a.card {
  cursor: pointer;
}

.button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button,
.nav-item {
  cursor: pointer;
}

.nav-bar .nav-item {
  font-weight: normal;
  color: #666;
}

.nav-bar .nav-item>a {
  width: 100%;
  height: 100%;
  line-height: 4rem;
  text-align: center;
}

.nav-bar .active {
  background: #0075C2;
  border-radius: 0.4rem;
  color: #FFFFFF;
  font-weight: bold;
}

.banner {
  position: relative;
  width: 100vw;
}

.banner img {
  width: 100%;
}

.banner .desc-txt {
  font-size: 1.8rem;
  margin-top: 0.85rem;
  text-shadow: 0 0.25rem 0.3rem #333;
}

.banner .banner-content .banner-info-box .title {
  margin-bottom: 2.5rem;
}

div.banner-content .banner-info-box {
  top: 36.8%;
  opacity: 1;
  font-family: "opposans-m";
  text-shadow: 0.2rem 0.2rem 0.35rem #333;
  transition: none;
}

.card .right:not(.card-pad-left),
.card .left:not(.card-pad-right) {
  position: relative;
  bottom: 1.5rem;
  width: 32.35rem;
  height: 15rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
}

.card .right:not(.card-pad-left) {
  right: 1.5rem;
}

.card .left:not(.card-pad-right) {
  left: 1.5rem;
}

.card .left>img,
.card .right>img {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: initial;
  right: initial;
  /* transform: translateY(-50%); */
}

.card:hover .card-title {
  color: #0075C2;
}

.card:hover .button {
  color: #0075C2;
}

.card:hover .more-btn {
  display: none;
}

.card .more-btn-act {
  display: none;
}

.card:hover .more-btn-act {
  display: block;
}

.right>img.card-img-right {}

.imgScale-box {
  overflow: hidden;
}

.right>img.card-img-right,
.left>.card-img-left {
  transition: transform 1s cubic-bezier(.23, 1, .32, 1);
  transform: scale(1);
}

.right:hover>img.card-img-right,
.left:hover>.card-img-left {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}