/* 常规思源黑体 */
@font-face {
  font-family: 'webfont';
  font-display: swap;
  src: url('./webfont/webfont.eot'); /* IE9 */
  src: url('./webfont/webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('./webfont/webfont.woff2') format('woff2'),
  url('./webfont/webfont.woff') format('woff'), /* chrome、firefox */
  url('./webfont/webfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('./webfont/webfont.svg#webfont') format('svg'); /* iOS 4.1- */
}
.web-font {
  font-family: "webfont"!important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "webfont"!important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
}
/* 思源黑体-粗 */
@font-face {
  font-family: 'webfontbolb';
  font-display: swap;
  src: url('./webfontbolb/webfont.eot'); /* IE9 */
  src: url('./webfontbolb/webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('./webfontbolb/webfont.woff2') format('woff2'),
  url('./webfontbolb/webfont.woff') format('woff'), /* chrome、firefox */
  url('./webfontbolb/webfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('./webfontbolb/webfont.svg#webfont') format('svg'); /* iOS 4.1- */
}
.webfontbolb {
  font-family: "webfontbolb"!important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body {
  width: 100%;
  height: 100%;
  font-family: "webfont"!important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body, html {
  font-size: 100%;
  padding: 0;
  margin: 0;
}
body::-webkit-scrollbar{
  display: none;
}
html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,fieldset,legend,img {
  margin: 0;
  padding: 0
}
fieldset,img {
  border: 0
}
img {
  display: block
}
a{
  color: #666;
  text-decoration: none
}
address,caption,cite,code,dfn,th,var {
  font-style: normal;
  font-weight: normal
}
ul,ol {
  list-style: none
}
input {
  padding-top: 0;
  padding-bottom: 0;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0
}
select,input {
  vertical-align: middle
}
select,input,textarea {
  font-size: 12px;
  margin: 0
}
input[type="text"],input[type="password"],textarea {
  outline-style: none;
  -webkit-appearance: none
}
textarea {
  resize: none
}
table {
  border-collapse: collapse
}

/* 通用变量 */
:root {
  --primary-color:#61baf1;
  --secondary-color:#e3e3e3;
  --text-color-lightest:#e7e9ec;
  --text-color-darker:#2e2e2e;
  --text-color-dark:#494949;
  --text-color-gray:#8b8b8b;
  --text-color-dark-gray:#727272;
  --text-color-light-gray:#c6c6c6;
  --backdrop-color: rgba(42, 42, 42, 0.69);
}

header {
  width: 100vw;
  height: 100px;
  display: grid;
  padding: 0 130px;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 200;
}

#header2,.mobileLogo1,.mobile-nav-toggle {
  display: none;
}

header .logo {
  display: block;
  width: 142px;
  height: 37px;
  background: url("./images/logo.png") no-repeat center/cover;
  cursor: pointer;
}

header nav {
  justify-self: end;
}

header .nav {
  position: absolute;
  left: 400px;
}

header .nav i {
  color: var(--text-color-lightest);
}

header .nav a {
  color: var(--text-color-lightest);
  text-decoration: none;
  margin: 0 24px;
  position: relative;
}
@keyframes highLine {
  0%{
    width: 0%;
  }
  100%{
    width: 100%;
  }
}
header .nav a.active,
header .nav a:hover,
header .nav a:active{
  color: #5197FF;
}

header .burger {
  display: none;
}

header.sticky{
  position: fixed;
  background-color: white;
  box-shadow: 0 0 18px rgba(0,0,0,0.2);
  animation: dropDown 0.5s ease-in-out forwards;  /* 动画执行完后保留在最后一帧 */
}

/* 向下划的效果 */
@keyframes dropDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

header.sticky .logo,
header.sticky nav a,
header.sticky nav i {
  color: var(--text-color-darker);
}

.glide {
  position: relative;
  top:-80px;  /* 抵消导航菜单的高度 */
  z-index: 50;
}

.glide__slide img,
.glide__slide video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  z-index: 70;
  color: var(--text-color-lightest);
  text-align: center;
  max-width: 60vw;
}

.glide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-caption h1 {
  font-size: 54px;
  font-weight: 600;
}

.slide-caption h3 {
  font-size: 24px;
  margin: 48px 0;
}

.slide-caption.left {
  max-width: 80vw;
  text-align: left;
}

.slide-caption > * {
  opacity: 0;
}

.backdrop {
  background: var(--backdrop-color);
  z-index: 60;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.explore-btn {
  padding: 14px 32px;
  background-color: var(--primary-color);
  border: 0;
  border-radius: 4px;
  color: var(--text-color-lightest);
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

/* 内容区域 */
/* 通用样式 */
.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* 每个列水平居中对齐 */
section {
  display: grid;
  justify-items: center;
  padding: 0 80px;
}
/* 轮播 */ 
.index-main {
	z-index:55;
	position:relative;
	width:1920px;
	margin:0 auto;
	height:842px;
}
.index-main-box {
	position:relative;
	margin-top: -22px;
	display:block;
	overflow:hidden;
	height:842px;
}
#index .index-main-box {
  margin-top: -42px;
}
#indexslider {
	position:relative;
	width:1920px;
	left:50%;
	margin-left:-960px;
	height:842px;
}
.index-img {
	display:block;
	width:1920px;
	height:842px;
	overflow:hidden;
}
.index-img .img {
	width:1920px;
	height:842px;
}
.mImg {
  display: none;
}
.index-pagination {
	position:absolute;
	z-index:66;
  bottom: 45px;
	left:50%;
	height:30px;
	width:300px;
	margin-left:-130px;
	text-align:center;
}
.index-pagination li {
	display:inline-block;
	width:50px;
	position:relative;
	height:23px;
	margin-right:4px;
	overflow:hidden;
}
.index-pagination li a {
	position:relative;
	z-index:666;
	display:block;
	padding:16px 0px 5px 0px;
	height:5px;
	color:#5f6a72;
	text-align:center;
}
.index-pagination li a div {
	position:relative;
	z-index:555;
	display:block;
	height:5px;
	background-color:#fff;
}
.index-pagination li a div span {
	position:absolute;
	top:0px;
	left:0px;
	height:5px;
	width:0px;
	background-color:#2f80f6;
}
.index-pagination li a div em {
	position:absolute;
	display:none;
	width:27px;
	height:10px;
	top:-5px;
	left:1px;
}
.index-pagination li.current a {
	color:#2f80f6;
	_color:#ced5df;
}
/* 轮播文字 */
.index-img h3 {
  width: 500px;
  font-size: 58px;
  font-weight: bold;
  color: #121928;
  position: absolute;
  top: 243px;
  left: 210px;
}
.swiperFive h3 {
  width: 250px;
  font-size: 26px;
  font-weight: bold;
  color: #2F80F7;
  line-height: 130px;
  text-transform: uppercase;
}
.index-img .swiperFive h5 {
  width: 800px;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  line-height: 90px;
}
.index-img .swiperFive p {
  width: 700px;
  font-size: 26px;
  color: #fff;
  opacity: 0.8;
  position: relative;
  text-indent: 300px;
}
.index-img .swiperFive .second::before {
  display: block;
  content: '';
  width: 46px;
  height: 1px;
  background-color: #FBFBFB;
  position: absolute;
  top: 13px;
  left: 20px;
}
.index-img h5 {
  width: 580px;
  font-size: 26px;
  font-weight: 400;
  color: #121928;
  position: absolute;
  top: 322px;
  left: 210px;
}
.index-img .sliderText {
  width: 613px;
  height: 178px;
  position: absolute;
  top: 246px;
  left: 210px;
}
.index-img .sliderText::after {
  display: block;
  content: '';
  width: 10px;
  height: 124px;
  background-color: #2F80F7;
  position: absolute;
  top: 150px;
  left: -26px;
}
.index-img .sliderTextt::after {
  height: 84px;
  top: 200px;
}
.index-img .sliderText::before {
  display: block;
  content: '';
  width: 613px;
  height: 124px;
  background-image: linear-gradient(to right, rgba(135,190,221,1), rgba(255,0,0,0));
  opacity: 0.6;
  position: absolute;
  top: 150px;
  left: -16px;
  z-index: 99;
}
.index-img .sliderTextt::before {
  height: 84px;
  top: 200px;
  width: 750px;
}
.index-img .sliderText p.first {
  margin-top: 160px;
}
.index-img .sliderTextt p.first {
  margin-top: 227px;
}
.index-img .swiperFive .second {
  font-size: 20px;
}
.index-img .sliderText p {
  text-indent: 20px;
  line-height: 26px;
  z-index: 101;
  position: relative;
}
.index-img li.sliderTextF .sliderText::after,.index-img li.sliderTextF .sliderText::before{
  height: 175px;
}
.index-img li.slideTextS .sliderText::after,.index-img li.slideTextS .sliderText::before{
  height: 98px;
}
/* 产品中心 */
.product-container {
  width: 100%;
}
#product {
  margin: -80px 0 90px 0;
}
#product .col-md-3 {
  padding: 0 8px;
}
.bigTitle h1 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 93px 0 70px;
  letter-spacing: 6px;
}
#product .bigTitle h1 {
  margin: 170px 0 70px;
}
.bigTitle h1::before {
  display: block;
  content: '';
  width: 188px;
  height: 26px;
  background: url("./images/products.png") no-repeat center/cover;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.bigTitle h1::after {
  display: block;
  content: '';
  width: 86px;
  height: 2px;
  background-color: #2F80F7;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.productBg {
  background-color: #F4F4F4;
  width: 100%;
  height: 550px;
  position: relative;
  cursor: pointer;
}
.productBg h3 {
  font-size: 20px;
  color: #121928;
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 40px;
  display: block;
  width: 100%;
}
.productBg img {
  display: block;
  position: absolute;
}
#product .class1 .productBg img {
  width: 90%;
  top: 170px;
  left: 6%;
}
#product .class2 .productBg img {
  width: 86%;
  top: 170px;
  left: 7%;
}
#product .class3 .productBg img {
  width: 100%;
  top: 115px;
  left: 0%;
}
#product .class4 .productBg img {
  width: 90%;
  top: 150px;
  left: 6%;
}
.proBgDark {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.proBgDark h2 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 245px;
  z-index: 2;
  display: block;
  width: 100%;
}
.proBgDark em {
  display: block;
  width: 80%;
  height: 4px;
  background: #2F80F7;
  position: absolute;
  top: 300px;
  left: 10%;
  opacity: 0.5;
}
.proBgDark h2::before {
  display: block;
  content: '';
  width: 4%;
  height: 4px;
  background: #2F80F7;
  position: absolute;
  top: 55px;
  left: 10%;
}
/* 添加新类 */
.proBgDark .change::before{
  width: 80%;
  transition: 1s all ease-in-out;
}
.proBgContent {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset -10px 10px 0px #868686, inset -10px -10px 0px #868686, inset 10px -10px 0px #868686, inset 10px 10px 0px #868686;
}
.proBgDark p {
  position: absolute;
  top: 372px;
  width: 100%;
  display: block;
}
.proBgDark p span {
  display: block;
  width: 100%;
  height: 178px;
  padding: 4% 11%;
  color: #fff;
  z-index: 4;
  position: absolute;
  line-height: 24px;
}
.proBgDark p::after {
  display: block;
  content: '';
  width: 100%;
  height: 178px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(0,0,0,0.3)
}
/* 案例展示 */
#case {
  background-color: #010716;
  position: relative;
}
#case .col-md-8,#case .col-md-4,#case .col-md-12,#case .col-md-6 {
  padding: 0;
}
.caseDetail {
  height: 850px;
}
.caseDetail div img {
  display: block;
  width: 100%;
  height: 375px;
  transition: all 0.6s;
}
.caseDetail div img:hover{
  transform: scale(1.1);
  transition: all 1s ease 0s;
  -webkit-transform: scale(1.1);
  -webkit-transform: all 1s ease 0s;
}
.caseDisplay {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.caseDetail .caseDisplay img {
  height: 750px;
}
.caseDisplayR1,.caseDisplayR2,.caseDisplayR3,.caseDisplayR4{
  overflow: hidden;
  cursor: pointer;
}
.caseDisplay >div,.caseDisplayR1 >div,.caseDisplayR2 >div,.caseDisplayR3 >div,.caseDisplayR4 >div {
  position: absolute;
  bottom: 27px;
  left: 36px;
}
.caseDisplay p,.caseDisplayR1 p,.caseDisplayR2 p,.caseDisplayR3 p,.caseDisplayR4 p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  color: #FFF;
  opacity: 0.2;
  letter-spacing: 2px;
}
.caseDisplay h3,.caseDisplayR1 h3,.caseDisplayR2 h3,.caseDisplayR3 h3,.caseDisplayR4 h3 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 4px;
}
.caseTitle h1 {
  color: #fff;
}
.caseTitle h1::before {
  width: 310px;
  height: 26px;
  background: url("./images/case.png") no-repeat center/cover;
}
.caseArrow {
  display: block;
  width: 30px;
  height: 30px;
  background: url("./images/caseArrow.png") no-repeat center/cover;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 20px;
  animation: caseArrow 1s infinite alternate;
}
@keyframes caseArrow {
  0% {
      right: 20px;
      opacity: 0.3;
    }

  100% {
      right: 10px;
      opacity: 1;
  }              
}
.photo1,.photo2 { 
  position:relative; 
  overflow:hidden; 
}
.photo1 .heading, .photo1 .caption { 
  position:absolute; 
  height:300px; 
  width:100%; 
  opacity:0.4; 
}
.photo2 .heading, .photo2 .caption { 
  position:absolute; 
  height:120px; 
  width:100%; 
  opacity:0.4; 
}
.photo1 .heading { 
  top:-375px; 
  z-index:2;
  background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(255,0,0,0));
}
.photo2 .heading { 
  top:-187px;  
  z-index:2;
  background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(255,0,0,0));
}
.photo1 .caption { 
  bottom:-375px;  
  left:0px; 
  background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(255,0,0,0));
}
.photo2 .caption { 
  bottom:-187px;    
  left:0px; 
  background-image: linear-gradient(to top, rgba(0,0,0,1), rgba(255,0,0,0));
}

/* 关于我们 */
.aboutUsBg {
  height: 752px;
  width: 100%;
  background: url("./images/aboutUsBg.png") no-repeat center/cover;
  position: relative;
}
#aboutUs .aboutUsTitle h2 {
  display: block;
  width: 195px;
  height: 64px;
  margin: 70px auto;
  background: url("./images/aboutus.png")no-repeat center/cover;
}
#aboutUs .aboutUsTitle h2::after{
  display: block;
  content: '';
  width: 86px;
  height: 2px;
  background-color: #2F80F7;
  position: absolute;
  top: 77px;
  left: 0;
  right: 0;
  margin: 0 auto; 
}
#aboutUs .aboutLeft {
  position: absolute;
  top: 200px;
  left: 8%;
}
#aboutUs .aboutLeft h1 {
  font-size: 56px;
  font-weight: bold;
  color: #fff;
}
#aboutUs .aboutLeft h3 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin: 20px 80px 13px 80px;
  position: relative;
}
#aboutUs .aboutLeft h3::before {
  position: absolute;
  display: block;
  content: '';
  width: 77px;
  height: 2px;
  background-color: #fff;
  top: 15px;
  left: -79px;
}
#aboutUs .aboutLeft .line {
  display: block;
  /* width: 274px;
  height: 4px;
  background: #2F80F7;
  opacity: 0.5; */
  position: relative; 
}
svg path {
  stroke: #2F80F7;
  opacity: 0.5;
  fill: none;
  stroke-width: 4;
}
.rect {
  position: absolute; 
  top: 0; 
  left: 0;
  width: 60px; 
  height: 4px; 
  background: #2F80F7;
}
.rect2{
  offset-path: path("M0 20, L280 20, Z");
  offset-distance: 0%;
  animation: svg-path-animation 14s ease-in-out 0s infinite normal;
}
@keyframes svg-path-animation {
  from {offset-distance: 10%;}
  to {offset-distance: 90%;}
}
#aboutUs .aboutLeft p {
  width: 26%;
  color: #fff;
  line-height: 40px;
  text-indent: 33px;
  margin-top: 65px;
}
.aboutUsArrow {
  display: block;
  width: 30px;
  height: 30px;
  background: url("./images/caseArrow.png") no-repeat center/cover;
  position: absolute;
  top: 600px;
  left: 154px;
  cursor: pointer;
  animation: aboutUsArrow 1.5s infinite alternate;
}
@keyframes aboutUsArrow {
  0% {
      left: 170px;
      opacity: 0;
    }
  100% {
      left: 150px;
      opacity: 1;
  }              
}
/* 田字格 */
#aboutUs .aboutRight {
  position: absolute;
  top: 130px;
  right: 8%;
}
#aboutUs .aboutRight ul {
  background: rgba(0, 11, 35, 0.3);
  width: 698px;
  height: 500px;
}
#aboutUs .aboutRight ul li {
  width: 350px;
  height: 250px;
  display: block;
  float: left;
  margin-right: -1px;
  cursor: pointer;
  position: relative;
}
#aboutUs .aboutRight ul li:nth-child(1) {
  border-top: 1px solid rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
#aboutUs .aboutRight ul li:nth-child(2) {
  border-top: 1px solid rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.5);
}
#aboutUs .aboutRight ul li:nth-child(3) {
  border-left: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
#aboutUs .aboutRight ul li:nth-child(4) {
  border: 1px solid rgba(255,255,255,0.5);
  margin-top: -1px;
}
/* #aboutUs .aboutRight ul li:nth-child(1),#aboutUs .aboutRight ul li:nth-child(2) {
  margin-bottom: -8px;
} */
#aboutUs .aboutRight ul li:hover {
  transition: 0.5s all ease-in-out;
  background-color: #2F80F7;
}
#aboutUs .aboutRight ul li>div h2 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 60px;
  left: 60px;
}
#aboutUs .aboutRight ul li>div span {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 74px;
  left: 206px;
}
#aboutUs .aboutRight ul li:nth-child(1) span {
  font-size: 24px;
  top: 87px;
  left: 136px;
}
#aboutUs .aboutRight ul li p {
  font-size: 20px;
  color: #fff;
  line-height: 24px;
  opacity: 0.6;
  position: absolute;
  top: 143px;
  left: 63px;
  display: block;
}
/* 新闻动态 */
#new {
  margin: 100px 0;
}
#new .new-container .mr_frbox ul {
  /* height: 460px; */
  height: 500px;
}
#new .new-container .mr_frbox ul li {
  margin: 0 7px;
  background-color: #fff;
}
#new .new-container .mr_frbox ul li a:hover {
  text-decoration: none;
}
#new .new-container .mr_frbox ul li>div{
  padding: 15px;
  box-shadow: 0px 0px 27px 0px rgba(42, 59, 84, 0.19);
  margin-top: 30px;
}
#new .new-container .mr_frbox ul li img {
  display: block;
  width: 464px;
  height: 336px;
}
#new .new-container .mr_frbox ul li a p {
  padding: 20px 10px 10px;
  color: #333;
  font-weight: bold;
}
#new .new-container .mr_frbox ul li a i {
  padding: 0px 10px 20px;
  font-style: normal;
  color: #666;
}
.mr_frbox {
  position: relative;
}
.mr_frbox .mr_frBtnL,.mr_frbox .mr_frBtnR{
  position: absolute;
  top: 50%;
  margin-top: -23px;
  cursor: pointer;
}
.mr_frbox .mr_frBtnL {
  left: -130px;
  animation: arrowLeft 1s infinite alternate;
}
@keyframes arrowLeft {
  0% {
      left: -140px;
      opacity: 0.3;
    }

  100% {
      left: -150px;
      opacity: 1;
  }              
}
.mr_frbox .mr_frBtnR  {
  right: -130px;
  animation: arrowRight 1s infinite alternate;
}
@keyframes arrowRight {
  0% {
      right: -140px;
      opacity: 0.3;
    }

  100% {
      right: -150px;
      opacity: 1;
  }           
}
/* 鼠标划过停止动画效果 */
.mr_frbox .mr_frBtnL:hover{
    -webkit-animation-play-state:paused;
    animation-play-state:paused;
}
.mr_frbox .mr_frBtnR:hover{
  -webkit-animation-play-state:paused;
  animation-play-state:paused;
}
/* 底部信息 */
#footer {
  width: 100%;
  height: 388px;
  color: #fff;
  background: url("./images/footerBg.png") no-repeat center/cover;
  overflow: hidden;
  position: relative;
}
.leftLeft h2 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 13px;
}
.leftLeft .line {
  width: 100px;
  height: 4px;
  background: #2F80F7;
  position: relative;
}
.leftLeft .line::after {
  display: block;
  content: '';
  width: 210px;
  height: 1px;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 4px;
}
.leftLeft ul li {
  width: 33%;
  display: inline-block;
}
.leftLeft ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 48px;
  display: block;
  width: 160px;
}
.leftRight h2 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 13px;
}
.leftRight .line {
  width: 100px;
  height: 4px;
  background: none;
  position: relative;
}
.leftRight .line::after {
  display: block;
  content: '';
  width: 210px;
  height: 1px;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 4px;
}
.leftRight ul li {
  line-height: 48px;
}
.leftRight ul li a {
  color: #fff;
}
.footerLeft {
  margin-top: 35px;
  padding-left: 12%;
}
.footerRight {
  margin-top: 35px;
  padding-right: 60px;
  position: relative;
}
.footerRight div img {
  display: block;
  width: 110px;
}
.footerLeft ul {
  margin-top: 10px;
}
.rightLeft,.rightRight {
  width: 140px;
  text-align: center;
  position: absolute;
}
.rightLeft {
  top: 65px;
  left: 190px;
}
.rightRight {
  top: 65px;
  left: 375px;
}
.rightLeft>div p, .rightRight>div p{
  margin-top: 20px;
}
/* 页脚备案号 */
footer {
  position: absolute;
  bottom: 13px;
  left: 13.3%;
}


/* 从第一个到最后一个 */
.icp-info,
.rights {
  grid-column: 1/-1;
  justify-self: center;
  color: white;
}

/* 返回顶部导航位置 */
.side-bar a,.chat-tips i {
	background-repeat: no-repeat;
}
/*右侧悬浮icon*/
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 13%;
  z-index: 999;
  cursor: pointer;
}

.side-bar .icon-chat:hover .chat-tips {
  visibility:visible;
  transform:translate(-40px);
}
.chat-tips {
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: -45px;
  right: 56px;
  box-shadow: 0px 6px 8px 0px rgba(42, 59, 84, 0.19); 
}
.chat-tips i {
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid #fff;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: 55px;
  right: -15px;
}
.chat-tips img {
	width: 138px;
	height: 138px;
}
.side-bar {
  display: block;
  width: 60px;
  height: 240px;
  box-shadow: 0px 6px 8px 0px rgba(42, 59, 84, 0.19);
}
.side-bar a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #fff!important;
  cursor: pointer;
  background-size: 36px 36px!important;
  transition: all 0.6s ease-in-out;
  border-bottom: 1px solid #F4F4F4;
  position: relative;
}
.side-bar a:last-child {
   border-bottom: 0;
}
.side-bar a:hover {
  background-color: #2F80F7!important;
  background-size: 36px 36px;
}
.side-bar a.weixin {
  background: url("./images/weixinDark.png") no-repeat center/cover;
  position: relative;
}
.side-bar a.weixin:hover {
  background: url("./images/weixinLight.png") no-repeat center/cover;
}
/* .side-bar a:hover>div {
  opacity: 1;
  transform:translate(-80px);
} */
.side-bar a p {
  visibility: hidden;
  width: 210px;
  height: 60px;
  line-height: 60px;
  color: #2F80F7;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 53px;
  box-shadow: 0px 6px 8px 0px rgba(42, 59, 84, 0.19);
  transition: all 0.6s ease-in-out;
}
.side-bar a p::before {
  display: block;
  content: '';
  width: 36px;
  height: 36px;
  margin: 12px 0 0 12px;
  position: absolute;
  left: -3px;
}
.side-bar a p em {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
/* 阿里 */
.side-bar a.ali {
  background: url("./images/alibabaDark.png") no-repeat center/cover;
}
.side-bar a.ali:hover {
  background: url("./images/alibabaLight.png") no-repeat center/cover;
}
.side-bar a.ali p::before {
  background: url("./images/alibabaDark.png") no-repeat center/cover;
}
.side-bar a.ali:hover p {
  visibility:visible;
  transform:translate(-211px);
}
/* 电话 */
.side-bar a.tel {
  background: url("./images/telDark.png") no-repeat center/cover;
}
.side-bar a.tel p::before {
  background: url("./images/telDark.png") no-repeat center/cover;
}
.side-bar a.tel:hover p {
  visibility:visible;
  transform:translate(-211px);
}
.side-bar a.tel:hover {
  background: url("./images/telLight.png") no-repeat center/cover;
}
/* 邮箱 */
.side-bar a.email {
  background: url("./images/emailDark.png") no-repeat center/cover;
}
.side-bar a.email:hover {
  background: url("./images/emailLight.png") no-repeat center/cover;
}
.side-bar a.email p::before {
  background: url("./images/emailDark.png") no-repeat center/cover;
}
.side-bar a.email:hover p {
  visibility:visible;
  transform:translate(-211px);
}
/* 向上 */
.side-bar a.top {
  background: url("./images/topDark.png") no-repeat center/cover;
}
.side-bar a.top:hover {
  background: url("./images/topLight.png") no-repeat center/cover;
}
/* 媒体查询 */
/* 笔记本电脑 1366 */
@media (max-width: 1366px){
  /* 页脚 */
  .leftRight ul li:nth-child(2) {
    width: 270px;
  }
  .caseDisplay h3, .caseDisplayR1 h3, .caseDisplayR2 h3, .caseDisplayR3 h3, .caseDisplayR4 h3 {
    font-size: 24px;
  }
  /* 首页轮播 */
  #indexslider {
    width: 1366px;
    margin-left: -683px;
    height: 600px;
  }
  .index-main-box {
    height: 600px;
  }
  .index-main {
    width: 1366px;
    height: 600px;
  }
  .index-img {
    width: 1366px;
    height: 600px;
  }
  .index-img .img {
    width: 1366px;
    height: 600px;
  }
  .index-img h3 {
    font-size: 53px;
    top: 186px;
    left: 150px;
  }
  .index-img h5 {
    top: 255px;
    left: 150px;
  }
  .index-img .sliderText{
    top: 155px;
    left: 150px;
    width: 436px;
  }
  .index-img .sliderText::before {
    width: 436px;
  }
  .index-img .sliderText p {
    line-height: 20px;
  }
  .swiperFive h3 {
    width: 600px;
    font-size: 30px;
  }
  .index-img .swiperFive h5 {
    font-size: 44px;
  }
  .index-img .swiperFive p {
    font-size: 20px;
  }
  /* 电能质量事业部 关于我们 */
  #aboutUs .aboutLeft h1 {
    font-size: 40px;
  }
  #aboutUs .aboutLeft h3 {
    font-size: 26px;
    margin: 17px 80px 8px 80px;
  }
  #aboutUs .aboutLeft .line {
    width: 260px;
  }
  #aboutUs .aboutRight ul {
    width: 700px;
  }
  /* 新闻动态 */
  #new .new-container .mr_frbox ul li img {
    width: 368px;
    height: 266px;
  }
  .mr_frbox .mr_frBtnL,.mr_frbox .mr_frBtnR {
    margin-top: -80px;
  }
  .mr_frbox .mr_frBtnR {
    right: -50px;
  }
  .mr_frbox .mr_frBtnL {
    left: -45px;
  }
  .mr_frbox .mr_frBtnR,.mr_frbox .mr_frBtnL {
    animation: none;
  }
  #new {
    margin: 80px 0 0;
  }
  .proBgDark p span {
    padding: 4% 7%;;
  }
}
/* 手机 768 */
/* 媒体查询 */
@media (max-width: 1100px){
  header nav {
    display: none;
  }
  header {
    grid-template-columns: repeat(2, 1fr);
  }

  header .burger {
    display: block;
    width: 20px;
    height: 6px;
    position: relative;
    justify-self: end;
    cursor: pointer;
  }

  .burger-line1,
  .burger-line2,
  .burger-line3{
    width: 20px;
    height: 2px;
    background-color: #fff;
  }

  .burger-line1 {
    position: absolute;
    top: -6px;
  }
  .burger-line3 {
    position: absolute;
    top: 6px;
  }

  header.open nav {
    display: grid;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #040918;
    grid-auto-rows: max-content;
    justify-items: end;
    padding: 0 40px;
    opacity: 0;
    animation: slideDown 0.6s ease-out forwards;
  }

  header.open nav > * {
    color: #fff;
    animation: showMenu 0.5s linear forwards 0.4s;
    font-size: 18px;
    margin: 4px 0;
    opacity: 0;
  }

  header.open nav > i.fas {
    margin-top: 10px;
  }

  header.open .burger-line1,
  header.open .burger-line2,
  header.open .burger-line3,
  header.sticky .burger-line1,
  header.sticky .burger-line2,
  header.sticky .burger-line3 {
    background-color: #fff;
    transition: 0.4s ease;
  }

  header.open .burger-line1 {
    transform: rotate(45deg) translate(3px,5px);
  }

  header.open .burger-line2 {
    transform: translateX(5px);
    opacity: 0;
  }

  header.open .burger-line3 {
    transform: rotate(-45deg) translate(3px,-5px);
  }
  
  header.open .logo {
    z-index: 40;
    color: var(--text-color-darker);
  }

  @keyframes slideDown {
    from {
      height: 0;
      opacity: 0;
    }

    to {
      height: 100vh;
      padding-top: 80px;
      opacity: 1;
    }
  }

  @keyframes showMenu {
    from {
      opacity: 0;
      transform: translateY(-1vh);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .service-item .service-title {
    font-size: 20px;
  }

  .service-item .service-content {
    font-size: 14px;
    line-height: 24px;
  }

  .team-members {
    grid-template-columns: repeat(2,1fr);
    row-gap: 36px;
    column-gap: 6vw;
  }

  .activities {
    grid-template-columns: repeat(2,1fr);
    row-gap: 36px;
  }
  section {
    padding: 0 10px;
  }
  /* 产品中心 */
  .bigTitle h1 {
    font-size: 26px;
    margin: 45px 0 30px;
    letter-spacing: 2px;
  }
  .bigTitle h1::before {
    width: 144px;
    height: 20px;
    top: -13px;
  }
  .productBg {
    height: 300px;
  }
  .productBg h3 {
    display: none;
  }
  .proBgDark {
    opacity: 1;
  }
  .proBgDark h2 {
    color: #333;
    font-size: 16px;
    top: 170px;
  }
  .proBgDark p span {
    font-size: 12px;
    color: #333;
    line-height: 17px;
  }
  .proBgContent {
    box-shadow: none;
    background: none;
  }
  .proBgDark h2::before {
    display: none;
  }
  .proBgDark p {
    top: 199px;
    line-height: 19px;
  }
  .proBgDark p::after {
    background: none;
  }
  #product .class2 .productBg img {
    top: 70px;
  }
  /* 案例展示 */
  /* 关于我们 */
}

@media(max-width: 992px) {
  .slide-caption h1 {
    font-size: 48px;
  }

  .slide-caption h3 {
    font-size: 18px;
  }

  .features, .services {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: unset;    /* 取消固定行模式布局 */
  }

  .data-section {
    grid-template-columns: repeat(2,minmax(200px,auto));
    padding: 24px 0;
    height: auto;
    row-gap: 24px;
    background-size: 200%;
  }

  .showcases .case-item {
    width: calc(100vw / 3);
  }
}

@media(max-width: 768px) {
  .scrollToTop {
    right: 0;
  }
  .side-bar a {
    /* width: 50px;
    height: 44px; */
  }
  /* ********* */
  section {
    padding: 0 10px;
    overflow: hidden;
  }
  #header1 {
    display: none;
  }
  #header2,.mobileLogo1,.mobile-nav-toggle {
    display: block;
  }
  /* 首页 */
  header {
    height: 0.96rem;
    position: fixed;
  }
  .mobileLogo, .mobileLogo1 {
    top: 9px!important;
  }
  header .logo {
    position: absolute;
    left: 20px;
  }
  .topTel {
    display: none;
  }
  header .burger {
    position: absolute;
    right: 30px;
  }
  #cssmenu ul ul.arrow::before {
    display: none!important;
  }
  #cssmenu ul ul li ul li a {
    background: none!important;
  }
  #menu-button {
    display: none!important;
  }
  #cssmenu ul ul li.has-sub > a::after {
    display: none!important;
  }
  /* 首页轮播 */
  .index-pagination {
    margin-left: -150px;
  }
  .index-img .img {
    display: none;
  }
  .mImg {
    display: block;
    width: 7.2rem;
  }
  #index .index-main-box {
    margin-top: -27px;
  }
  .index-main-box {
    height: auto;
  }
  .index-main,#indexslider {
    width: 7.2rem;
    height: auto;
  }
  .index-img {
    width: 7.2rem;
    height: auto;
  }
  #indexslider {
    margin-left: 0;
    left: 0;
  }
  .index-img .sliderText {
    top: 0px;
    left: 34px;
    width: 88%;
  }
  .index-img h3 {
    font-size: 0.6rem;
    top: 60px;
    left: 17px;
  }
  .index-img h5 {
    font-size: 0.32rem;
    top: 113px;
    left: 17px;
  }
  .index-img .sliderText::before,.index-img .sliderText::after {
    height: 120px;
  }
  .index-img .slideTextT .sliderText::before, .index-img .slideTextT .sliderText::after {
    height: 140px;
  }
  .index-img li.slideTextS .sliderText::after, .index-img li.slideTextS .sliderText::before {
    height: 120px;
  }
  .index-img li.sliderTextF .sliderText::after, .index-img li.sliderTextF .sliderText::before {
    height: 200px;
  }
  .swiperFive h3 {
    font-size: 18px;
    top: 20px;
  }
  .index-img .swiperFive h5 {
    font-size: 25px;
    top: 70px;
  }
  .index-img .sliderTextt {
    top: -50px;
  }
  .index-img .sliderTextt::before, .index-img .sliderTextt::after {
    height: 117px;
  }
  .index-img .swiperFive p {
    font-size: 14px!important;
    width: 90%;
    text-indent: 0px;
  }
  .index-img .sliderTextt p.first {
    margin-top: 212px;
  }
  .index-img .swiperFive .second {
    font-size: 20px;
    text-indent: 45px!important;
  }
  .index-img .swiperFive .second::before {
    top: 10px;
    left: 5px;
    width: 33px;
  }
  .index-img .sliderText p {
    font-size: 12px;
  }
  /* 案例展示 */
  .caseDetail .caseDisplay img {
    height: 560px;
  }
  .bigTitle h1::before {
    width: 240px;
  }
  #product .bigTitle h1::before {
    width: 144px;
  }
  #case {
    padding: 0 10px;
  }
  #product .bigTitle h1 {
    margin: 70px 0 33px;
  }
  .bigTitle h1::after {
    top: 40px;
  }
  #product {
    margin: -20px 0 30px 0;
  }
  #product .class1 .productBg img {
    top: 45px;
  }
  #product .col-md-3 {
    padding: 0 8px 0 0px;
    margin-bottom: 20px;
  }
  .productBg {
    height: 330px;
  }
  .proBgDark em {
    display: none;
  }
  .proBgDark p span {
    padding: 4% 5%;
    height: 130px;
  }
  #product .class1, #product .class3 {
    padding-left: 8px!important;
  }
  #product .class3 .productBg img {
    top: 45px;
  }
  #product .class4 .productBg img {
    top: 45px;
  }
  #product .class2 .productBg img {
    top: 45px;
  }
  /* 关于我们 */
  #aboutUs .row {
    margin: 0;
  }
  #aboutUs .aboutUsTitle h2 {
    width: 135px;
    height: 43px;
    margin: 36px auto;
  }
  #aboutUs .aboutUsTitle h2::after {
    top: 58px;
  }
  #aboutUs .aboutLeft,#aboutUs .aboutRight {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
  #aboutUs .aboutLeft h1 {
    font-size: 30px;
    margin-top: 50px;
  }
  .data-section {
    padding: 0;
  }
  #aboutUs .aboutLeft h3 {
    font-size: 20px;
    margin: 11px 0px 8px 60px;
  }
  #aboutUs .aboutLeft h3::before {
    width: 50px;
    top: 10px;
    left: -57px;
  }
  #aboutUs .aboutRight ul {
    width: 100%;
  }
  #aboutUs .aboutLeft p {
    width: 100%;
    margin: 26px 0;
  }
  #aboutUs .aboutRight ul li>div h2 {
    font-size: 44px;
    top: 27px;
    left: 21px;
  }
  #aboutUs .aboutRight ul li:nth-child(1) span {
    font-size: 22px;
    top: 42px;
    left: 81px;
  }
  #aboutUs .aboutRight ul li>div span {
    font-size: 30px;
    top: 38px;
    left: 130px;
  }
  #aboutUs .aboutRight ul li p {
    font-size: 16px;
    top: 85px;
    left: 26px;
  }
  .aboutUsArrow {
    top: 339px;
  }
  #footer {
    height: 600px;
  }
  .footerLeft {
    padding-left: 3%;
  }
  footer {
    bottom: 28px;
    left: 5%;
  }
  @keyframes aboutUsArrow {
  0% {
        left: 370px;
        opacity: 0;
      }
    100% {
        left: 350px;
        opacity: 1;
    }              
  }
  #aboutUs .aboutRight ul li {
    width: 50%;
    height: 140px;
  }
  /* 新闻 */
  #new {
    margin: 0px 0 0;
  }
  #new .new-container .mr_frbox ul {
    height: 388px;
  }
  /* ********* */

  .activities {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .data-section {
    grid-template-columns: 1fr;
    background-size: 400%;
  }

  .team-members {
    grid-template-columns: minmax(200px,400px);
  }

  .features, .services {
    grid-template-columns: 1fr;
  }

  .showcases .case-item {
    width: calc(100vw/2);
    height: 30vw;
  }
}

@media (max-width: 576px) {
  .slide-caption h1 {
    font-size: 28px;
  }

  .slide-caption h3 {
    font-size: 14px;
  }

  .explore-btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  .showcases .case-item {
    width: 100vw;
    height: 60vw;
  }

}




/* 导航 */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  width: auto;
  line-height: 1;
}
#menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #5197FF;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  display: none;
}
.topTel {
  font-size: 14px;
  position: absolute;
  top: 40px;
  right: 160px;
  color: #fff;
}
.topTel:hover {
  color: #5197FF;
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  padding: 10px 28px;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #5197FF!important;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #5197FF;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu ul ul.arrow::before {
  display: block;
  content: '';
  margin: 0px auto;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color:#fff;
  transform: rotate(270deg);
}
#cssmenu li:hover > ul.arrow {
  left: -40px;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
/* 1 */
#cssmenu ul ul li:nth-child(2) ul {
  top: -32px;
}
/* 2 */
#cssmenu ul ul li:nth-child(3) ul {
  top: -64px;
}
/* 3 */
#cssmenu ul ul li:nth-child(4) ul {
  top: -96px;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
#cssmenu ul li:hover > ul > li {
  height: 32px;
}
#cssmenu ul ul li a {
  padding: 10px 20px;
  width: 190px;
  font-size: 14px;
  background-color: #fff;
  text-decoration: none;
  color: #999;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #333;
  font-weight: bold;
  background-color: #f4f4f4;
}
/* 三级菜单背景颜色 */
#cssmenu ul ul li ul li a {
  background-color: #f4f4f4;
}
#cssmenu ul ul li ul li:hover > a {
  color: #5197FF;
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #cssmenu {
    width: 100%;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu.align-center > ul,
  #cssmenu.align-right ul ul {
    text-align: left;
  }
  #cssmenu ul li,
  #cssmenu ul ul li,
  #cssmenu ul li:hover > ul > li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(120, 120, 120, 0.15);
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
  }
  #cssmenu > ul > li,
  #cssmenu.align-center > ul > li,
  #cssmenu.align-right > ul > li {
    float: none;
    display: block;
  }
  #cssmenu ul ul li a {
    padding: 20px 20px 20px 30px;
    font-size: 14px;
    color: #fff;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li a:hover {
    color: #fff;
  }
  #cssmenu ul ul ul li a {
    padding-left: 40px;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
  }
  #menu-line {
    display: none;
  }
  #cssmenu #menu-button {
    display: block;
    padding: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
  }
  #cssmenu #menu-button::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: #fff;
  }
  #cssmenu #menu-button::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    width: 15px;
    height: 3px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.15);
    height: 52px;
    width: 52px;
    cursor: pointer;
  }
  #cssmenu .submenu-button::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #fff;
    z-index: 99;
  }
  #cssmenu .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 26px;
    display: block;
    width: 11px;
    height: 1px;
    background: #fff;
    z-index: 99;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    display: none;
  }
}

