/* 

    header\footer\menu…等模块的样式及其媒体查询
    2023.10.23
*/


body.grey {
  background-color: var(--themaDeepGrey);
}

/* header-start */

.headNullBox {
  height: 70px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .4s;
  background-color: white;
}

header.fixHead {
  box-shadow: 0 12px 5px -10px rgba(0,0,0,0.1), 0 0 4px 0 rgba(0,0,0,0.1);
}

header .leftLogo {
  padding: 19px 0 16px;
}

header .putLogo img {
  max-width: 100px;
}

header .flexBetween {
  align-items: center;
}

header .menu {
  display: inline-block;
  
}

header .menu > ul {
  line-height: 70px;
}

header .menu > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 65px;
}

header .menu > ul > li > a {
  display: block;
  font-size: 16px;
  transition: all .2s;
}

header .menu > ul > li:first-child > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 15px;
  vertical-align: middle;
  border: 5px solid transparent;
  border-top-color: var(--themaRed);
}

header .subMenu {
  display: none;
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 12px 5px -10px rgba(0,0,0,0.1), 0 0 4px 0 rgba(0,0,0,0.1);;
}

header .subMenu li a {
  display: block;
  padding: 0 20px;
  line-height: 40px;
  height: 40px;
}

header .subMenu li a:hover {
  color: white;
  background-color: var(--themaRed);
}

header .menu li:hover .subMenu {
  display: block;
}

header .lan {
  display: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--themaRed);
  vertical-align: middle;
}

header .lan.on {
  display: inline-block;
}

/* header-end */

/* footer */
footer {
  height: 810px;
  background-image: url(../img/foot.jpg);
}

footer .btm {
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

footer .btm,
footer .btm a {
  font-size: 15px;
  color: white;
}

footer .btm a:hover {
  text-decoration: underline;
}

footer .baseTxtStyle {
  font-size: 15px;
  color: white;
}

footer .top {
  padding-top: 115px;
  padding-bottom: 110px;
}

footer .top .t1 a {
  display: inline-block;
  margin-right: 30px;
  vertical-align: top;
}

footer .top .t2 {
  margin: 35px 0 60px;
  font-size: 17px;
  line-height: 30px;
}

footer .top .t2 a{ color:#fff;}

footer .top .t3 img {
  display: inline-block;
  margin-right: 7px;
}

footer .top .rightNav .item {
  display: inline-block;
  color: white;
  vertical-align: top;
}

footer .top .rightNav .item:nth-child(1) {
  margin-right: 110px;
}

footer .top .rightNav .item:nth-child(2) {
  margin-right: 75px;
}

footer .top .rightNav .item:last-child {
  padding-right: 50px;
}

footer .top .rightNav .item dt {
  margin-bottom: 30px;
  font-size: 19px;
}

footer .top .rightNav .item dd a {
  display: block;
  line-height: 30px;
  font-size: 15px;
  color: white;
  line-height: 30px;
}

footer .top .rightNav .item:last-child {
  padding-right: 50px;
}

footer .top .rightNav .item:not(:last-child) a:hover {
  text-decoration: underline;
}

/* menu-start */

.part_0 {
  position: fixed;
  width: 100%;
  left: 0;
  display:none;
  z-index:9999;
  line-height: initial;
  padding: 114px 0 69px;
  overflow: hidden;
  top:70px;
  background-color: var(--themaGrey);
}

.part_0 .cloes{ position:absolute; right:15px; top:-70px;}

.part_0 .rightNavPicList {
  flex: 1;
}

.part_0 .leftNavList {
  padding-right: 130px;
}

.part_0 .leftNavList dt {
  margin-bottom: 55px;
  font-size: 40px;
  font-weight: bold;
}

.part_0 .leftNavList dd {
  font-size: 0;
}

.part_0 .leftNavList dd a {
  display: inline-block;
  font-weight:bold;
  padding: 12px 0;
  font-size: 18px;
  transition: all .4s;
}

.part_0 .leftNavList dd a:after {
  content: "";
  display: block;
  height: 1.5px;
  width: 100%;
  margin-top: -2px;
  transition: all .4s;
  background-color: transparent;
}

.part_0 .leftNavList dd.on a,
.part_0 .leftNavList dd a:hover {
  color: var(--themaRed);
}

.part_0 .leftNavList dd.on a:after,
.part_0 .leftNavList dd a:hover:after {
  background-color: var(--themaRed);
}

.part_0 .leftNavList .tips {
  margin: 90px 0 15px;
  font-size: 16px;
}

.part_0 .leftNavList .contact {
  display: block;
  width: 123px;
  line-height: 50px;
  text-align: center;
  color: white;
  background-color: var(--themaRed);
}

.part_0 .rightNavPicList {
  padding-right: 30px;
  border-left: 3px solid #d3d3d3;
}

.part_0 .rightNavPicList .more {
  margin-left: auto;
  margin-right: 0;
}

.part_0 .rightNavPicList .list {
  padding-left: 80px;
  margin-bottom: 75px;
  font-size: 0;
}

.part_0 .rightNavPicList .list li {
  display: inline-block;
  width: calc((100% - (68px * 3)) / 4);
  max-width: 212px;
}

.part_0 .rightNavPicList .list li:not(:nth-child(4n)) {
  margin-right: 68px;
}

.part_0 .rightNavPicList .list li:nth-child(-n+4) {
  margin-bottom: 45px;
}

.part_0 .rightNavPicList .list .putImg {
  display: flex;
  width: 245px;
  height: 248px;
  background-color: white;
}

.part_0 .rightNavPicList .list .putImg img {
  margin: auto;
  max-width: 160px;
  transition: all .4s;
}

.part_0 .rightNavPicList .list p {
  margin-top: 13px;
  font-size: 15px;
  font-weight:bold;
}

.part_0 .rightNavPicList ul {
  display: none;
}

.part_0 .rightNavPicList ul.on {
  display: block;
}
/*
.hasDialog > a:hover + .part_0,
.part_0:hover {
  animation: showNav .3s ease forwards;
}

.part_0 * {
  opacity: 0;
}

.hasDialog > a:hover + .part_0 *,
.part_0:hover * {
  opacity: 1;
}


@keyframes showNav {
  0% {
    visibility: hidden;
  }
  2% {
    opacity: 0;
    visibility: inherit;
  }
  100% {
    opacity: 1;
    visibility: inherit;
  }
}*/

.canRound {
  border-radius: 0;
  transition: all .2s;
}

.canRound:hover {
  border-radius: 20px;
}

/* menu-end */

/* banner-start */

.banner {
  background-position: center;
  background-size: cover;
}

.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 img {
  display: inline-block;
  vertical-align: middle;
}

/* ================== ski ==================== */

.skiing .maxWidth {
  align-items: center;
  background-color: var(--themaGrey);
}

.skiing .rightTxt {
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.skiing .s {
  margin-bottom: 55px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
}

.skiing .b {
  font-size: 60px;
  font-weight: bold;
}

/* ================ list ==================== */

.listModule .moduleTitle {
  font-size: 30px;
  padding: 125px 0 85px;
  text-align: center;
}

.listModule ul {
  font-size: 0;
}

.listModule ul li {
  display: inline-block;
  background-color: white;
  vertical-align: top;
  box-shadow: 0 12px 5px -10px rgba(0,0,0,0.1), 0 0 4px 0 rgba(0,0,0,0.1);
}

.listModule ul li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 50px 39px 0 44px;
}

.listModule ul li img {
  margin-bottom: 40px;
}

.listModule ul li a .name {
  display: -webkit-box;
  max-width: 345px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.listModule ul li a .more {
  position: absolute;
  width: 152px;
  bottom: -28px;
  left: 50%;
  line-height: 55px;
  color: white;
  text-align: center;
  font-size: 15px;
  background-color: var(--themaRed);
  transform: translate(-50%);
}

/* =============== news =============== */

.newsItem {
  display: block;
  padding-bottom: 45px;
  border-bottom: 1px solid #d4d4d4;
}

.newsItem .name {
  margin: 30px 0 15px;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.newsItem .desc {
  display: -webkit-box;
  font-size: 14px;
  line-height: 20px;
  color: #7c7c7c;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 右侧浮动联系模块 */
.floatNav {
  position: fixed;
  top: 365px;
  right: 55px;
  z-index: 109;
}

.floatNav > * {
  background-color: var(--themaRed);
}

.floatNav .oneBtn {
  display: flex;
  width: 65px;
  height: 65px;
  margin-top: 10px;
  border-radius: 50%;
  transition: all .4s;
}

.floatNav .threeBtn .item img,
.floatNav .oneBtn img {
  display: block;
  margin: auto;
  transition: all .4s;
}

.floatNav .threeBtn {
  display: flex;
  padding: 30px 0;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 50px;
}

.floatNav .threeBtn .item {
  display: flex;
  /* width: 40px;
  height: 40px; */
  margin: 0 auto;
  transition: all .4s;
  border-radius: 50%;
}

.floatNav .threeBtn .item:nth-child(2) {
  margin: 27px auto 22px;
}

.floatNav .threeBtn .item:hover,
.floatNav .oneBtn:hover {
  cursor: pointer;
}

.floatNav .threeBtn .item:not(:last-child):hover img,
.floatNav .oneBtn:hover img {
  filter: blur(0) brightness(0);
}

/* 视频 */
.menuAbout {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.55s;
  background-color: rgba(255, 255, 255, 0);
}

.menuAbout.active {
  z-index: 1000;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.menuAbout .wrap,
.callback .wrap {
  position: absolute;
  top: 40%;
  left: 50%;
  max-width: 70%;
  max-height: 60%;
  transform: translate(-50%, -50%);
}

.menuAbout .closeBtn {
  display: block;
  margin: 30px 30px 190px auto;
  cursor: pointer;
  max-width: 35px;
}

.menuAbout .closeBtn {
  margin: 30px 0 10px auto;
}

.menuAbout video {
  display: block;
  margin: 0 auto;
  width: 100%;
}
/* 视频end */

.switchBtn {
  width: 52px;
  height: 52px;
  opacity: 1;
  z-index: 9;
  transition: all .4s;
  border-radius: 50%;
  background-color: var(--themaRed);
}

.switchBtn.swiper-button-next.swiper-button-disabled,
.switchBtn.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.borderBtn {
  display: block;
  width: 123px;
  line-height: 52px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border: 2px solid var(--themaBlack);
}

/* 头部下载 */

.headNullBox.candownload {
  height: 140px;
  line-height: 70px;
  padding-top: 70px;
  background-color: #f7f7f7;
}

.headNullBox.candownload .leftTitle {
  font-size: 20px;
}

.headNullBox.candownload .rightA {
  font-size: 20px;
}

.headNullBox.candownload .rightA img {
  display: inline-block;
  margin-right: 13px;
  vertical-align: middle;
  filter: brightness(0);
}

header .menus{ background:url(../img/menu.png) no-repeat center; width:44px; height:26px; background-size:contain; display:none;}


#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 .rightLink{ display:none;}
.floatNav{ right:15px;}
header .menus{ display:block}
.part_0{ top:0; height:100%; padding:10% 0;overflow-y: auto;-moz-user-select: -moz-none;-webkit-user-select: none;-ms-user-select: none;-o-user-select: none;user-select: none;-webkit-overflow-scrolling: touch}
.part_0 .maxWidth{ display:block}
.part_0 .rightNavPicList .list{ padding-left:0;}
.part_0 .rightNavPicList{ padding-right:0; border:0; margin-top:5%;}
.part_0 .rightNavPicList .list li{ width:calc((100% - 25px) / 2); max-width:inherit;}
.part_0 .rightNavPicList .list li:not(:nth-child(4n)){ margin-right:0}
.part_0 .rightNavPicList .list li:not(:nth-child(2n)){ margin-right:25px;}
.part_0 .rightNavPicList .list .putImg{ width:auto; height:auto; padding:25px 0;}
.part_0 .rightNavPicList .list .putImg img{ max-width: inherit; max-height:200px;}
.part_0 .cloes{ position:static; margin-bottom:50px; float:right;}
.part_0 .leftNavList{ padding-right:0;}
.part_0 .leftNavList dt{ font-size:34px;}
.part_0 .leftNavList{ clear:both; margin-bottom:50px;}
}

@media (max-width:768px){
footer .top{ display:block; padding-top:0}
footer{ height:auto; padding:15% 0;}
footer .top .rightNav{ margin-top:10%;}
footer .top .rightNav .item{ margin-bottom:5%;}
footer .btm{ display:block;}
footer .btm p{ margin-bottom:25px;}
footer .top .t1 a{ display:block}
.headNullBox.candownload .leftTitle,.headNullBox.candownload .rightA{ font-size:18px;}
}