/* 

    header\footer\menu…等模块的样式及其媒体查询
    2023.10.23
*/


body.grey {
  background-color: var(--themaDeepGrey);
}

/* header-start */

header {
  position: relative;
  padding: 40px 0;
}

header .putLogo img {
  /*max-width: 100px;*/
}

header .flexBetween {
  align-items: center;
}

header .menu li {
  display: inline-block;
  margin-left: 32px;
}

header .menu li a {
  display: block;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  transition: all .2s;
}

header .menus{ background:url(../img/menuss.png) no-repeat center; width:44px; height:26px; background-size:contain; display:none;}

header.fixHead .menus {background:url(../img/menuss.png) no-repeat center;background-size:contain;}

header.notIndexPage {
  background-color: white;
}

header.notIndexPage .menu li a {
  color: black;
}

header.fixHead {
  position: fixed;
  width: 100%;
  /* max-width: 1920px; */
  top: 0;
  left: 0;
  z-index: 15;
  transition: all .5s;
  box-shadow:0 0 8px rgba(0,0,0,.6);
}

header.black {
  background-color: var(--themaBlack);
}

header.black li a:hover {
  color: var(--themaBlack);
  background-color: white;
}

header.fixHead.themaBlack li a {
  color: var(--themaBlack);
}

header.fixHead.themaBlack li a:hover {
  color: white;
  background-color: var(--themaBlack);
}

header.fixHead.themaBlack.black li a {
  color: white;
}

header.fixHead.themaBlack.black li a:hover {
  color: var(--themaBlack);
  background-color: white;
}

/* header-end */

/* footer */

footer {
  padding: 80px 0 100px;
  background-color: var(--themaBlue);
}

footer > .df {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

footer .btm {
	margin-top:120px;
  font-size: 16px;
  justify-content: space-between;
  line-height: 20px;
  text-transform: uppercase;
  color: white;
}


footer .btm p a{
  color: white;
}

footer .btm p a:hover {
  text-decoration: underline;
}

footer .top {
  align-items: flex-start;
  justify-content: space-between;
}

footer .leftLogo {
  margin-top: -6px;
}

footer .top .logo {
  display: block;
  font-size: 30px;
  line-height: 35px;
  font-weight: bold;
  color: var(--themaBlue);
}

footer .top .logo > * {
  display: inline-block;
  margin-right: 20px;
  vertical-align: text-top;
}


footer .top .logo img {
  margin-top: 6px;
}

footer .ftNav {
  font-size: 0;
}

footer .ftNav li {
  display: inline-block;
  vertical-align: top;
  margin-left: 100px;
}

footer .ftNav li:nth-child(2) {
  margin-left: 50px;
}

footer .ftNav dt {
  margin-bottom: 10px;
  line-height: 20px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

footer .ftNav dd a {
  font-size: 15px;
  line-height: 30px;
  color: var(--themaDeepBlue);
}

footer .ftNav dd a:hover {
  text-decoration: underline;
}

footer .leftModule .ftLogo {

}

footer .leftModule .adr {
  margin: 50px 0 20px;
  font-size: 15px;
  line-height: 20px;
  color: var(--themaDeepBlue);
}

footer .leftModule .contactWay a {
  display: inline-block;
  margin-right: 15px;
  color: white;
  font-size: 15px;
  line-height: 30px;
  vertical-align: middle;
}

/* footer-end */

/* menu-start */

/* 菜单 */

.header__nav {
  display: flex;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 168px);
  height: 100vh;
  padding: 12rem 0 10rem 4rem;
  background-color: #ededed;
  color: #333;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease 0.8s;
  overflow: hidden;
  transform: translateZ(1px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header__nav__wrapper {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__nav__wrapper a {
  display: inline-block;
  padding: 0.8rem 0;
  font-size: 13.33333333vh;
  line-height: 0.93;
  letter-spacing: 0.01em;
  font-weight: 500;
  overflow: hidden;
  color: #333;
  transform: translateX(-3rem);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0ms;
  transition-property: opacity, transform;
}

.header__nav__wrapper img {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateX(2rem);
  height: auto;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.header__nav__wrapper img.portrait {
  width: 41.7rem;
  height: 56.7rem;
}

.header__nav__wrapper img[data-img-id="0"] {
  top: 0;
  right: 14.8rem;
}

.header__links {
  width: calc(100% - 8rem);
  display: flex;
  position: absolute;
  left: 4rem;
  bottom: 3rem;
  z-index: 9;
}

.header__links__item {
  font-size: 1.3rem;
  color: #a5a5a5;
}

.header__links a {
  color: #333;
  transition: color 0.2s linear;
}

.header__lang {
  margin-left: auto;
  display: flex;
  list-style: none;
}

.header__lang .lang-item {
  margin-left: 1rem;
  text-transform: uppercase;
}

.header__lang .lang-item a {
  color: #a5a5a5;
  font-size: 1.4rem;
}

.header__lang .lang-item.current-lang a,
.no-touchevents .header__lang .lang-item a:hover {
  color: #333;
}

.menu-open .header__nav {
  opacity: 1;
  pointer-events: all;
  transition-duration: 0.8s;
  transition-delay: 0.2s;
  z-index: 10;
}

.menu-open .header__nav__wrapper a {
  opacity: 1;
  transform: none;
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.header__nav__wrapper a:first-of-type {
  transition-delay: 0.2s;
}

.header__nav img {
  opacity: 0;
  transform: translate(0px, 0px);
}

/* menu-end */

/* banner-start */

.banner {
  height: 400px;
}

.banner .ctMain {
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* banner-end */

/* menu */

.dialog_menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -5;
  opacity: 0;
  transition: all 0.55s;
  background-color: rgba(0, 0, 0, 0);
}

.dialog_menu.active {
  z-index: 10;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialog_menu .dialog_wrapper {
  position: relative;
  top: 180px;
  left: 50%;
  max-width: 525px;
  width: 100%;
  padding: 95px 0 105px;
  transform: translateX(-50%);
  background-color: white;
}

.dialog_menu .close {
  margin-bottom: 75px;
  font-size: 20px;
  text-align: center;
  color: #b1b1b1;
  cursor: pointer;
  text-transform: uppercase;
}

.dialog_menu a {
  display: block;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
}

.dialog_menu a:hover {
  text-decoration: underline;
}

.dialog_menu a.logo {
  display: inline-block;
  margin-top: 50px;
}

.dialog_menu a.logo img {
  margin: 0 auto;
}


/* menu-end */

/* partner */

.part_head {
  margin-bottom: 80px;
}

.part_head .left .ch {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
}

.part_head .left .en {
  font-size: 20px;
  line-height: 50px;
  color: #cacaca;
}

.partnerList {
  font-size: 0;
}

.partnerList li {
  display: inline-block;
  width: calc((100% - (30px * 4)) / 5);
  vertical-align: middle;
  margin-right: 30px;
  border: 2px solid #e9e9e9;
}

.partnerList li:nth-child(5n) {
  margin-right: 0;
}

.partnerList li:nth-child(-n+5) {
  margin-bottom: 30px;
}

/* 顶部 */

aside {
  font-size: 0;
  line-height: 42px;
  background-color: var(--themaBlue);
}

aside a {
  display: inline-block;
  margin-right: 36px;
  color: white;
  font-size: 14px;
  vertical-align: middle;
}

aside  .rightLanguage a {
  margin-left: 15px;
  margin-right: 0;
}
aside  .rightLanguage{ }

aside  .rightLanguage img {
  display: inline-block;
  vertical-align: middle;
}


aside .navs{ width:100%; text-align:right; z-index:11;background:#fff; position:absolute; left:0; top:42px; display:none}

aside .navs a{ color:#000; margin:0 0 0 25px; padding:20px 0;}


#sidr {
  text-align: left;
  position: fixed;
  font-size: 16px;
  left: -100%;
  top: 0;
  max-width: 480px;
  text-transform: lowercase;
  height: 100%;
  width: 60%;
  background: #fff;
  z-index: 999;
  overflow-y: scroll;
}
#sidr .menu {
  position: absolute;
  right: 5%;
  top: 2.5%;
}
#sidr ul {
  width: 100%;
  margin-top: 25%;
}
#sidr ul li {
	text-transform:uppercase;
  line-height: 50px;
  border-bottom: solid 1px #efefef;
  display: block;
  text-indent: 10%;
  font-weight: bold;
}
#sidr ul li.click {
  background: url(../img/dd.png) no-repeat 90% 20px;
}
#sidr ul li .down {
  display: none;
  background: var(--themaBlue);
  margin: 0;
  text-transform: capitalize;
}
#sidr ul li .down li {
  border-top: solid 1px #6b6b6b;
  font-size: 14px;
  margin: 0;
  border-bottom: none;
  font-weight: normal;
}
#sidr ul li .down li a {
  color: #fff;
}
.sidr-open .sidr-bg {
  background: #000;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



@media (max-width: 1024px) {
header .menu{ display:none}
header .menus{ display:block;}

}

@media (max-width: 768px) {
footer .top{ display:block}
footer .ftNav{ margin-top:50px}
footer .ftNav li{ margin:0 50px 50px 0 !important;}
footer .btm{ display: block; margin-top:15%;}
footer .btm p{ margin-bottom:25px;}
}


@media (max-width: 480px) {
aside a{ font-size:12px;}

}


