/* 整体样式 */
html,
body {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #000000;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  -webkit-tap-highlight-color: transparent; /*把高亮颜色设置为透明，也可以使用rgba的形式*/
}

@media (max-width: 1000px) {
  html,
  body {
    font-size: 13px;
  }
}

/* 样式重置 */
* {
  margin: 0;
  padding: 0;
}
ul,
ol,
span,
p,
a {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style-type: none;
}
a,
a:focus,
a:hover {
  color: #000000;
  text-decoration: none;
}
i,
s,
em {
  font-style: normal;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
img {
  vertical-align: middle;
}
input,
textarea,
select {
  border: 0;
  outline: 0;
  background-color: transparent;
  resize: none;
}

/* 屏幕划分尺寸 */
@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1000px) {
}

/* 内宽--1400px */
.inside {
  max-width: 1400px;
  width: 95%;
  height: auto;
  margin: 0 auto;
  clear: both;
}

.dis-top {
  margin-top: 120px;
}

.dis-bom {
  margin-bottom: 50px;
}

.dis-cons-top {
  margin-top: 60px;
}

.dis-cons-top-sm {
  margin-top: 30px;
}

.fill {
  padding: 60px 0 90px;
}

.bg-blove {
  background-color: #f7f7f7;
}

.bg-img {
  background: url(./../images/jour-bg.png) no-repeat center/cover;
}

.relative {
  position: relative;
}

.circle {
  width: 110px;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.circle2 {
  width: 200px;
  top: -120px;
}

.circle3 {
  width: 200px;
  top: -100px;
  left: 0;
}

.circle1 {
  top: -160px;
}

.circle img {
  width: 100%;
}

@media (max-width: 1400px) {
  .dis-top {
    margin-top: 90px;
  }
  .dis-bom {
    margin-bottom: 120px;
  }
  .dis-cons-top {
    margin-top: 40px;
  }
  .fill {
    padding: 40px 0 70px;
  }
  .circle1 {
    top: -110px;
  }
  .circle {
    width: 90px;
  }
  .circle2 {
    width: 160px;
    top: -90px;
  }
  .circle3 {
    width: 160px;
    top: -80px;
  }
}

@media (max-width: 1000px) {
  .dis-top {
    margin-top: 60px;
  }
  .dis-bom {
    margin-bottom: 40px;
  }
  .dis-cons-top {
    margin-top: 30px;
  }
  .fill {
    padding: 30px 0 50px;
  }
  .circle1 {
    top: -70px;
  }
  .circle {
    width: 70px;
  }
  .circle2 {
    width: 120px;
    top: -60px;
  }
  .circle3 {
    width: 120px;
    top: -60px;
  }
}

.img img,
.pic img,
.icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit:cover
}

/* 1.页头 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  box-sizing: border-box;
  /* overflow: hidden; */
  /* background-color: #161823; */
  /* border-bottom: 2px solid rgba(201, 207, 220, 1); */
}

.header-shadow {
  background-color: #161823;
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

header .logo {
  float: left;
  display: block;
  width: auto;
  height: 49px;
  line-height: 100px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .gation {
  float: right;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 98px;
  text-align: right;
}

header .gation li {
    position:relative;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}
header .gation li .li-dfd{
    position:absolute;
    width:150px;
    left:50%;
    margin-left:-75px;
    background:#000;
    padding:10px;
    display:none;
}
header .gation li:hover .li-dfd{
    display:block;
}
header .gation li .li-dfd a{
    display:block;
    font-size:16px;
    line-height:20px;
    text-align:center;
    height:auto;
    padding:10px 0
}
header .gation li .li-dfd a:hover{
    color:#ff5e14
}

header .gation li:not(:last-child) {
  margin-right: 47px;
}

header .gation li a {
  display: inline-block;
  color: #ffffff;
  height: 98px;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}




header .gation li.active::before,
header .gation li:hover::before {
  opacity: 1;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li.active>a,
header .gation li:hover>a {
  color: #ff5e14;
}

header .gatopen {
  display: none;
  float: right;
  width: 27px;
  height: 27px;
  cursor: pointer;
  line-height: 47px;
  cursor: pointer;
}

header .gatopen img {
  width: 100%;
  height: 100%;
}

header .lang {
  float: right;
  height: 34px;
  line-height: 34px;
  /* background-color: rgba(255, 255, 255, 0.6); */
  text-align: center;
  position: relative;
  color: #ffffff;
  margin-left: 30px;
  margin-top: 31px;
}

header .lang img {
  width: 12px;
  height: auto;
  margin-left: 10px;
  transition: transform 0.5s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

header .lang img.rowRota {
  transform-origin: center center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: transform 0.5s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

header .lang .lan-pull {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

header .lang .lan-drop {
  display: none;
  position: absolute;
  top: 33px;
  left: 0;
  width: 120px;
  height: auto;
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

header .lang .lan-drop a {
  display: block;
  color: #666666;
  z-index: 100;
  line-height: 32px;
}

header .lang .lan-drop a:hover {
  font-weight: bold;
}

@media (max-width: 1400px) {
  header {
    height: 75px;
  }
  header .logo {
    height: 39px;
    line-height: 75px;
  }
  header .gation {
    line-height: 73px;
    font-size: 16px;
  }
  header .gation li a {
    height: 73px;
  }
  header .gation li::before {
    height: 3px;
  }
  header .gation li:not(:last-child) {
    margin-right: 20px;
  }
  header .lang {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  header {
    height: auto;
    background-color: #161823;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .top {
    float: none;
    width: 100%;
    height: 47px;
    box-sizing: border-box;
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 27px;
    line-height: 47px;
  }
  header .gation {
    display: none;
    float: none;
    width: 105%;
    margin-left: -3%;
    height: auto;
    box-sizing: border-box;
    padding: 13px 3% 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 1);
    line-height: 43px;
    text-align: center;
  }
  header .gation li {
    display: block;
  }
  header .gation li:before {
    display: none;
  }
  header .gation li:not(:last-child) {
    margin-right: 0;
  }
  header .gation li a {
    width: 100%;
    height: 43px;
    font-size: 14px;
    line-height: 43px;
    text-align: center;
  }
  header .lang {
    margin-top: 7px;
    margin-left: 0;
    margin-right: 20px;
    font-size: 13px;
  }
  header .lang img {
    width: 9px;
    margin-bottom: 2px;
    margin-left: 5px;
  }
    header .gation li:hover .li-dfd {
        display: none;
    }
}

/* 2.轮播图 */
.index-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.index-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.index-swiper .img {
  width: 100%;
  height: 100%;
/*  max-height:600px*/
}
.index-swiper .img img{
    width:100%;
    height:100%;
    object-fit:cover
}

.index-swiper .cons {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.3); */
  text-align: left;
  color: #ffffff;
}

.index-swiper .inside {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.index-swiper .cons .pic {
  width: 34%;
}

.index-swiper .cons .txt {
  width: 100%;
  text-align:center;
}

.index-swiper .cons .row {
  width: 72px;
  height: auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.index-swiper .cons .row img {
  width: 100%;
}

.index-swiper .cons h2 {
  font-size: 50px;
}

.index-swiper .cons p {
  font-size: 16px;
  max-width:70%;
  margin:40px auto

}

.index-swiper .cons .more {
    display:inline-block;
  margin-top: 65px;
  min-width: 123px;
  padding:0 10px;
  height: 49px;
  line-height: 47px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 14px;
  background-color:rgba(254,93,19,1);
  margin:40px auto 0
}

@media (max-width: 1600px) {
  .index-swiper .cons .pic {
    width: 30%;
  }
  .index-swiper .cons h2 {
    font-size: 40px;
  }
  .index-swiper .cons p {
    margin-top: 20px;
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  .index-swiper .cons .pic {
    width: 25%;
  }
  .index-swiper .cons h2 {
    font-size: 32px;
  }
  .index-swiper .cons p {
    margin-top: 20px;
    font-size: 17px;
  }
  .index-swiper .cons .more {
    margin-top: 30px;
    min-width: 90px;
    height: 38px;
    line-height: 36px;
    font-size: 12px;
  }
  .index-swiper .cons .row {
    width: 52px;
  }
}

@media (max-width: 1000px) {
  .index-swiper {
    margin-top: 47px;
  }
  .index-swiper .cons .row {
    width: 32px;
  }
  .index-swiper .cons .txt {
    width: 100%;
  }
  .index-swiper .cons h2 {
    font-size: 24px;
  }
  .index-swiper .cons p {
    margin-top: 15px;
    font-size: 14px;
  }
  .index-swiper .cons .more {
    margin-top: 20px;
    height: 32px;
    line-height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .index-swiper .cons h2 {
    font-size: 20px;
  }
  .index-swiper .cons p {
    margin-top: 10px;
    font-size: 13px;
  }
  .index-swiper .cons .more {
    margin-top: 0px;
  }
 
}

@media (max-width: 580px) {
  .index-swiper {
    height: auto;
  }
}

/* 3.顶部图 */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.banner .img {
  width: 100%;
  height: auto;
}

.banner .sub {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.1); */
  color: #ffffff;
  font-size: 48px;
  padding-top: 90px;
}

.banner .sub .inside {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .pic {
  width: 410px;
  position: absolute;
  right: 30px;
  bottom: 70px;
}

@media (max-width: 1400px) {
  .banner .pic {
    width: 320px;
    bottom: 10px;
  }
  .banner .sub {
    padding-top: 65px;
    font-size: 36px;
  }
}

@media (max-width: 1000px) {
  .banner {
    margin-top: 47px;
  }
  .banner .pic {
    display: block;
    width:100px;
  }
  .banner .sub {
    font-size: 26px;
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .banner .img {
    height: auto;
  }
}

/* 4.位置 */
.crumbs {
  line-height: 40px;
  font-size: 16px;
  padding: 20px 0;
  background-color:#eee
}

.crumbs img {
  width: auto;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
  margin-bottom: 5px;
    color: #7f7f7f;
}

.crumbs a,
.crumbs i {
  color: #7f7f7f;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.crumbs i {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.crumbs span {
  color: #7f7f7f;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .crumbs {
    line-height: 30px;
    font-size: 16px;
    margin: 0px 0;
  }
  .crumbs img {
    height: 15px;
  }
  .crumbs i {
    margin-bottom: 2px;
  }
}

@media (max-width: 1000px) {
  .crumbs {
    font-size: 14px;
    line-height: 23px;
    margin: 0px 0;
  }
  .crumbs img {
    height: 14px;
    margin-right: 3px;
  }
  .crumbs i {
    margin-left: 3px;
    margin-right: 3px;
  }
}

/* 5.页脚 */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background:rgb(51, 51, 51)
}

footer .top .inside {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 61px 0 53px;
}

footer .left {
  width: 27%;
}

footer .right {
  width: 70%;
  box-sizing: border-box;
}

footer .logo {
  width: auto;
  height: 60px;
  cursor: pointer;
}

footer .logo img {
  width: auto;
  height: 100%;
}

footer .info {
  margin-top: 30px;
}

footer .info li {
  display: flex;
}

footer .info li:not(:first-child) {
  margin-top: 13px;
}

footer .info li p {
  display: block;
  color: #d1d2d4;
  font-size: 14px;
  font-weight: bold;
  max-width:265px
}

footer .info li p img {
  margin-right: 13px;
  width: 26px;
  height: 26px;
}

footer .link {
  display: flex;
  justify-content: space-between;
}

footer .link a {
  display: block;
  color: #707070;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
}

footer .link a:first-child {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

footer .link a:hover {
  transform: scale(1.08);
}

footer .code {
  margin-top: 90px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .code h3 {
  font-size: 14px;
  color: #707070;
}

footer .code ul {
  display: flex;
  margin-left: 30px;
}

footer .code ul li:not(:last-child) {
  margin-right: 32px;
}

footer .code ul li {
  position: relative;
}

footer .code ul li .qr {
  width: 86px;
  height: 96px;
  display: none;
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

footer .code ul li .icon {
  width: 37px;
  height: 37px;
  cursor: pointer;
}

footer .code ul li:first-child .icon {
  width: 26px;
  height: 26px;
}

footer .code ul li:hover .qr,
footer .code ul .active .qr {
  display: block;
}

footer .copy {
  width: 100%;
  padding: 7px 0;
  text-align: center;
  background-color: #101318;
}

footer .copy a {
  color: #88898c;
  font-size: 14px;
  line-height: 30px;
}

footer .copy a:not(:last-child) {
  margin-right: 55px;
}

@media (max-width: 1400px) {
  footer .top .inside {
    padding: 47px 0 37px;
  }
  footer .left {
    width: 30%;
  }
  footer .logo {
    height: 60px;
  }
  footer .info li p img {
    margin-right: 7px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1000px) {
  footer .top .inside {
    padding: 27px 0 29px;
    flex-direction: column;
  }
  footer .left {
    width: 100%;
  }
  footer .right {
    width: 100%;
  }
  footer .logo {
    height: 45px;
    text-align: center;
  }
  footer .info {
    margin-top: 30px;
  }
  footer .info li {
    justify-content: center;
  }
  footer .info li p {
    font-size: 13px;
  }
  footer .info li p img {
    margin-right: 5px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-bottom: 3px;
  }
  footer .link {
    display: none;
  }
  footer .code {
    margin-top: 95px;
    justify-content: center;
  }
  footer .code p {
    width: 90px;
  }
  footer .code h3 {
    font-size: 14px;
  }
  footer .code ul li:not(:last-child) {
    margin-right: 23px;
  }
  footer .code ul li:first-child .icon {
    width: 17px;
    height: 17px;
  }
  footer .code ul li .icon {
    width: 28px;
    height: 28px;
  }
  footer .code ul li .qr {
    width: 60px;
    height: 63px;
    top: -67px;
  }
  footer .copy {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
  footer .copy a {
    display: block;
    font-size: 10px;
    line-height: 24px;
  }
  footer .copy a:not(:last-child) {
    margin-right: 0;
  }
}

/* 6.圆点 */
.spot p {
  line-height: 32px;
  position: relative;
  padding-left: 20px;
}

.spot p::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6ba634;
  position: absolute;
  top: 12px;
  left: 0;
}

@media (max-width: 1000px) {
  .spot p {
    line-height: 28px;
    padding-left: 15px;
  }
  .spot p::before {
    width: 6px;
    height: 6px;
  }
}

/* 7.grama */
.grama {
  width: 100%;
  height: auto;
  overflow: auto;
  padding-bottom: 100px;
}

.grama .grabar {
  float: left;
  width: 320px;
  height: auto;
  overflow: auto;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.12);
}

.grama .gracons {
  float: right;
  width: calc(100% - 320px);
  padding-left: 30px;
}

.grama .gracons .gramain {
  width: 100%;
  height: auto;
}

.grama .grabar h3 {
  width: 100%;
  height: auto;
  padding: 43px 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: rgb(39, 50, 114);
  border-bottom: 1px solid #ffffff;
}

.grama .grabar .graclose {
  width: 100%;
  height: 32px;
  line-height: 32px;
  text-align: right;
  color: #e93a26;
  font-size: 14px;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 0 7px;
  display: none;
  cursor: pointer;
}

.grama .grabar .code {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 30px 8% 43px;
}

.grama .grabar .code .img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.grama .grabar .code span {
  color: #666666;
  display: block;
  margin-top: 10px;
}

.grama .gracons .grapou {
  display: none;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding-bottom: 9px;
  border-bottom: 1px solid #000000;
  margin-bottom: 9px;
  line-height: 23px;
}

.grama .gracons .grapou span {
  font-size: 18px;
  font-weight: bold;
}

.grama .gracons .grapou img {
  float: right;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.grama .grabar .gramenu {
  width: 100%;
  height: 100%;
}

.grama .grabar .gramenu li {
  width: 100%;
}

.grama .grabar .gramenu li a {
  display: block;
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #e2e2e2;
  padding: 20px 0;
  color: #000000;
}

.grama .grabar .gramenu li > .second a {
  color: #666666;
}

.grama .grabar .gramenu li a img:nth-child(2) {
  display: none;
}

.grama .grabar .gramenu li a img {
  width: 15px;
  height: 15px;
  margin-right: 13px;
  vertical-align: middle;
  transition: transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

.grama .grabar .gramenu li a img.rowRota {
  transform-origin: center center;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: transform 0.5s;
  -moz-transition: -moz-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -ms-transition: -ms-transform 0.3s;
}

.grama .grabar .gramenu li .second {
  display: none;
}

/*.grama .grabar .gramenu li.active .first {
  color: #ff5e14;
  border-bottom: 0;
  background-color: #ff5e14;
  width: 100%;
  padding: 20px 5%;
}

.grama .grabar .gramenu li.active .first img:first-child {
  display: none;
}

.grama .grabar .gramenu li.active .first img:nth-child(2) {
  display: inline-block;
}

.grama .grabar .gramenu li a:hover {
  color: #ff5e14;
}*/

/* 左侧填充>>层级增加递增填充 */
.grama .grabar .gramenu li .second a {
  padding-left: 33px;
}

@media (max-width: 1400px) {
  .grama .grabar {
    width: 240px;
  }
  .grama .gracons {
    width: calc(100% - 240px);
    padding-left: 20px;
  }
  .grama .grabar h3 {
    font-size: 27px;
    padding: 37px 20px;
  }
}

@media (max-width: 1000px) {
  .grama .grabar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 680px;
    display: none;
    z-index: 300;
    background-color: #f7f7f7;
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
  }
  .grama .grabar .graclose {
    display: block;
  }
  .grama .gracons .grapou {
    display: block;
  }
  .grama .gracons {
    width: 100%;
    padding-left: 0;
  }
  .grama .grabar h3 {
    font-size: 16px;
    font-weight: normal;
    padding: 20px 13px;
  }
  .grama .grabar .code {
    display: none;
  }
  .grama .grabar .gramenu {
    height: 45vh;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .grama .grabar .gramenu li a {
    width: 96%;
    padding: 15px 0;
  }
  .grama .grabar .gramenu li.active .first {
    padding: 15px 2%;
  }
  .grama .grabar .gramenu li a img {
    margin-right: 7px;
  }
}

