
/* 手机导航 */
.mobile-menu-hamburger { display:block;}
.mobile-menu-hamburger a { color: #333; font-size: 28px;}
#header.header-scrolled .mobile-menu-hamburger a { color: #333; font-size: 28px;}
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
  -o-transition-duration: 700ms;
  transition-duration: 700ms;
  z-index: 9999;
}

.mobile-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-wrapper.open .mobile-menu-inner {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mobile-menu-inner {
  width: 100%;
  height: 100%;
  width: 350px;
  background-color: #fff;
  -webkit-box-shadow: -1px 0px 20px -5px #aaa;
  box-shadow: -1px 0px 20px -5px #aaa;
  position: relative;
  -webkit-transform: translateX(calc(100% - 50px));
  -ms-transform: translateX(calc(100% - 50px));
  transform: translateX(calc(100% - 50px));
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
  -o-transition-duration: 700ms;
  transition-duration: 700ms;
  margin-left: auto;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto;
}



.mobile-menu-inner .mobile-menu-inner-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding:0 20px;
  
}

.mobile-menu-inner .offcanvas-btn-close {
  font-size: 40px;
  color: #000000;
  opacity: 1;
}

.mobile-menu-inner .offcanvas-btn-close i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 20px;
  font-weight: normal;
}

.mobile-menu-inner .offcanvas-btn-close i:hover {
  color: #A40A09;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-menu-inner .widget-social {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu {
  text-align: start;
  padding: 10px 0px 30px;
}

.mobile-menu>.has-children>a i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 50px;
  padding: 3px 0;

  text-align: right;
}
.mobile-menu>.has-children>a i.expanded {
  transform: rotate(90deg);

  color: #A40A09;
}
.mobile-menu>.has-children .dropdown {

  padding-left: 10px;
}

.mobile-menu>.has-children .dropdown li a {
  font-size: 14px;
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 0 ;

  text-align: right;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s;
}
.mobile-menu>.has-children .dropdown li a i {  width: 50px;
  padding: 3px 0;}
.mobile-menu>.has-children .dropdown li a:hover {
  color: #A40A09;
 
}

.mobile-menu>.has-children.active>a {
  color: #A40A09;
}

.mobile-menu>.has-children.active>a i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-menu>li {
  border-bottom: 1px solid #ebebeb;
  padding: 15px 20px;
}

.mobile-menu>li>a {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

.mobile-menu>li>a:hover {
  color: #A40A09;
}

.mobile-menu>li:first-child {
  border-top: 1px solid #ebebeb;
}