:root {
  --primary-color: #0b318f;
  --secondary-color: #0054a7;
  --text-color: #333;
  --spacing-unit: 8px;
}
/* 重置常用元素的边距和字体 */
*{
  box-sizing: border-box;
  letter-spacing: 1px;
  line-height: 32px;
  /* font-family: "Segoe UI", Roboto, -apple-system, "Helvetica Neue", sans-serif; */
  font-family: 'Microsoft YaHei';
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr {
  margin: 0;
  padding: 0;
}
html,
body{
  overflow-x: hidden;
  /* font-family: "Microsoft YaHei"; */
}
/* 重置列表样式 */
ul, ol {
  list-style: none;
}
/* 重置链接样式 */
a {
  text-decoration: none;
  color: inherit;
}
/* 重置表单元素 */
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}
/* 移除按钮默认样式 */
button, input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}
/* 重置表格 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 重置图片和嵌入内容 */
img, embed, iframe, object, video {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}
.container{
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1200px;
  width: 100%;
  /* background-color: #f5f5f596; */
}
.kele-flex{
  display: flex;
}
.kele-ellipsis-1{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical
}
.kele-ellipsis-2{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical
}
.kele-ellipsis-3{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical
}
.title{
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
}
.kele-right{
  display: flex;
  justify-content: end;
}
.kele-center{
  display: flex;
  justify-content: center;
}
/* header start */
header.header{
  padding: 20px 0;
}
.header .container{
  justify-content: space-between;
  align-items: flex-end;
}
.logo{
  margin-right: 20px;
  max-width: 300px;
  width: 100%;
  object-fit: contain;
}
.logo-title{
  padding: 5px 0 5px;
  padding-left: 20px;
  border-left: 2px solid #444;
}
.logo-title h1{
  margin-bottom: 5px;
  color: #444;
  font-size: 30px;
  letter-spacing: 2px;
}
.logo-title span{
  color: #444;
  font-size: 20px;
}
.logo-title span strong{
  font-family: SimHei;
}
.header .right{
  /* font-weight: bold; */
  text-align: end;
  font-size: 14px;
}
.right dd{
  /* margin-bottom: 5px; */
}
.right dt span{
  color: var(--primary-color);
  font-weight: bold;
  font-size: 30px;
  font-family: Arial;
}



/* header end */
/* nav start */
nav.nav{
  color: #fff;
  background-color: var(--primary-color);
}
.menu-li{
  position: relative;
  display: inline-block;
  z-index: 9999;
}
.menu-li > a{
  display: inline-block;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: bold;
}
.menu-li:hover > a{
  background-color: var(--secondary-color);
}
.menu-b{
  display: none;
  position: absolute;
  left: 0;
  padding: 5px 0;
  min-width: 100%;
  color: #333;
  background-color: #fff;
}
.menu-b .menu-b-item{
  padding: 4px 10px;
  /* border-top: 1px solid #ccc; */
}
.menu-b .menu-b-item:first-child{
  /* border-top: none; */
}
.menu-b .menu-b-item a{
  display: block;
  padding-left: 20px;
  /* font-size: 14px; */
  white-space: nowrap;
}
.menu-b .menu-b-item:hover{
  color: #262626;
  /* background-color: var(--secondary-color); */
  background-color: #f5f5f5;
}
.menu-li:hover .menu-b{
  display: block;
}
/* app */
.kele-header-m{
  display: none;
  /* display: flex; */
  justify-content: space-between;
  padding: 10px 15px 10px;
  height: 52px;
  box-sizing: border-box;
  background-color: var(--primary-color);
  background-size: 100%;
}
.logo img{
  height: 32px;
  object-fit: contain;
}
#navToggle{
  position: relative;
  height: 19px;
  width: 25px;
  margin-top: 6px;
  display: inline-block;
}
#navToggle span,
#navToggle:before,
#navToggle:after{
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}
#navToggle:before,
#navToggle:after{
  content: '';
}
#navToggle span{
  top: 9px;
}
#navToggle:before{
  top: 0;
}
#navToggle:after{
  bottom: 0;
}
.kele-nav-m{
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: #fff;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  transform: translateX(100%);
  overflow: hidden;
  z-index: 999999999;
}
.kele-nav-m .top{
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}
.closed{
  width: 24px;
  height: 24px;
  vertical-align: middle;
  float: right;
}
.kele-nav-m .logo{
  margin: auto;
  width: 60%;
  max-width: 60%;
  padding: 10px 0 30px;
  text-align: center;
}
.kele-nav-m .logo img{
  height: 60px;
  vertical-align: middle;
}
.kele-nav-container{
  height: calc(100% - 160px);
  overflow-x: hidden;
}
.kele-nav-m .kele-nav-list{
  padding: 0;
}
.kele-nav-m .dropdown_menu a{
  border-top: 1px solid #f5f5f5;
  padding-left: 30px;
}
.kele-nav-m li{
  border-bottom: 1px solid #f5f5f5;
}
.kele-nav-m a{
  display: block;
  padding: 0 20px;
  line-height: 50px;
  color: #333;
  font-size: var(--font-size-nav);
}
.dropdown_menu{
  display: none;
}
.dropdown_avtive{
  background-color: #0069af2f;
}
 .kele-nav-m .dropdown_menu1 a{
  padding-left: 40px;
}
/* nav end */

/* footer start */
footer{
  margin-top: 60px;
  background-color: var(--secondary-color);
}
.friendship{
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fff;
  /* border-bottom: 1px solid #ccc; */
}
.friendship a:hover{
  color: var(--primary-color);
}
.footer-main{
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.footer-l{
  /* background-color: pink; */
}
.footer-l dt{
  margin-bottom: 10px;
  padding: 20px 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}
.footer-l dd{
  font-size: 14px;
  padding: 5px 0;
  color: #a4d5f6;
}
.footer-code{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer-code img,
.footer-code span{
  max-width: 130px;
}
.footer-code span{
  padding-top: 10px;
  display: block;
  text-align: center;
}
.footer-copyright{
  padding: 10px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: var(--primary-color);
}
.footer-copyright a:hover{
  color: var(--secondary-color);
}

/* footer end */

/* 侧边导航 start */
.sidebar--holder{
  position: fixed;
  top: 50%;
  right: 0;
  height: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 100;
}
.sidebar--holder .buttons{
  height: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.sidebar--holder .kontakt--button, .sidebar--holder .share--button, .sidebar--holder .newsletter--button{
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  background: #005098;
  cursor: pointer;
  width: 80px;
  height: 80px;
  right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 101;
}
.sidebar--holder .kontakt--button .inner, .sidebar--holder .share--button .inner, .sidebar--holder .newsletter--button .inner{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
}
.sidebar--holder .inner img{
  width: 24px;
}
.sidebar--holder .kontakt--button span, .sidebar--holder .share--button span, .sidebar--holder .newsletter--button span{
  display: block;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}
.sidebar--holder .sidebar--infos{
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: block;
  width: 100vw;
  max-width: 380px;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px;
  background: #eee;
  z-index: 102;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  box-sizing: border-box;
}

.sidebar--holder.active .kontakt--close{
  display: block;
  position: absolute;
  top: 16px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 100%;
  z-index: 99;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.sidebar--holder.active .kontakt--close:hover img{
  background-color: #005098;
}
.sidebar--holder.active .kontakt--close img{
  width: 24px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
}
.ce_text{
  padding: 0 15px;
}
.sidebar--holder .sidebar--infos h2{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1%;
  text-transform: none;
  line-height: 1.5em;
  color: #005098;
  text-transform: uppercase;
}
.sidebar--holder .sidebar--infos hr{
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.info{
  padding: 0 10px;
}
.ce_rowStart .info{
  display: flex;
  align-self: center;
}
.info-img{
  padding: 15px;
  width: 24px;
  height: 24px;
}
.info-img-bg{
  padding: 7px;
  margin: 4px 20px 2px 8px;
  border-radius: 50%;
  background-color: #005098;
}
.info-text{
  padding-left: 15px;
}
.info-text > a{
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
.info-text > a img{
  margin-right: 8px;
}
.info-text span{
  font-size: 16px;
  line-height: 30px;
}
.sidebar--holder .sidebar--infos .info span{
  display: block;
}
.bar-title{
  margin: 10px 0;
  font-size: 16px;
  color: red;
}
/* 侧边导航 end */

@media (min-width: 320px) and (max-width: 768px) {
  .title{
    /* margin-bottom: 15px; */
    font-size: 24px;
  }
  header.header,
  nav.nav{
    display: none;
  }
  .kele-header-m{
    display: flex;
  }
  footer{
    margin-top: 30px;
  }
  .friendship,
  .footer-main{
    display: none;
  }
  .footer-copyright{
    line-height: 24px;
  }
  .footer-copyright span{
    display: block;
    line-height: 24px;
  }
}