/*
* Wandermmose - Start
*/
/* basic layout */
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }
.menu > li { position: relative; }

/* submenu */

.submenu {
  list-style: none;
  position: absolute; top: 100%; left: 0;
  margin: 0; padding: .5rem 0;
  min-width: 200px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: .5rem;
  display: none; z-index: 1000;
}
.submenu li a { display: block; padding: .5rem .75rem; text-decoration: none; }
.submenu li a:hover { background: #f3f4f6; }

.submenu li.active > a {
  color: #28c;
  font-weight: bold;
  background: #f5f5f5;   /* optional */
}

/* show on hover / focus */
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu { display: block; }

/* caret indicator */
.has-submenu > a::after { content: "▾"; margin-left: .25rem; font-size: .8em; }

/* mobile: open class shows submenu */
.has-submenu.open > .submenu { display: block; }

/*
* Wandermmose  - End
*/

.visual-guide-steps {
    padding: 0;
}

#content {
    padding: 0;
}

.helper.mb60 {
    margin-top: 60px;
}

.my-table-of-contents {
    background-color: #f6f7f8;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.my-table-of-contents > ul {
    padding: 0 0 0 25px;
    margin: 0;
    position: relative;
    list-style-type: none;
}

.my-table-of-contents > ul > li {
    position: relative;
    font-weight: 300;
    color: #333;
}

.my-table-of-contents > ul > li:after {
    position: absolute;
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #28c;
    background-color: #f6f7f8;
    top: 13px;
    left: -28px;
}

/* Slideshow */
.admin-system-slides,
.solution-slides {
    display: none;
}
img {
    vertical-align: middle;
}

.slideshow-admin-system-container,
.slideshow-solution-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.slideshow-admin-system-container {
    height: 460px;
}

.slideshow-solution-container {
    height: 1450px;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .slideshow-admin-system-container,
    .slideshow-solution-container {
        max-width: 767px;
        position: relative;
        margin: auto;
        overflow: hidden;
    }

    .slideshow-admin-system-container {
        height: 120px;
    }

    .slideshow-solution-container {
        height: 560px;
    }
}

/* End of Slideshow */

/* 小程序开发流程 */
.applet-process {
    display: flex;
    /*padding: 70px 18.75vw 0 18.75vw;*/
    flex-direction: column;
}

.applet-process > .warp {
    display: flex;
    justify-content: center;
}

.applet-process > .warp > .clearfix {
    display: flex;
    list-style-type: none;
    padding: 236px 0;
}

.clearfix > li {
    position: relative;
    float: left;
    width: 124px;
    height: 124px;
    margin-left: 61.7px;
    cursor: pointer;
    transition: margin-left 0.5s;
}

.clearfix > li:first-child {
    margin: 0;
}

.clearfix > li:before {
    position: absolute;
    top: 50%;
    left: -32px;
    width: 9px;
    height: 14px;
    content: "";
    margin-top: -7px;
    background: url(../img/app/arrow.png) no-repeat center;
    transition: left 0.5s;
}

.clearfix > li:first-child:before {
    display: none;
}

.clearfix > li > .gb {
    width: 100%;
    height: 100%;
}

.clearfix > li > .gb > i {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #c0deef;
    border-radius: 50%;
    background: no-repeat center;
    box-sizing: border-box;
}

li.a1 > .gb > i {
    background-image: url(../img/app/p1.jpg);
}

li.a2 > .gb > i {
    background-image: url(../img/app/p2.jpg);
}

li.a3 > .gb > i {
    background-image: url(../img/app/p3.jpg);
}

li.a4 > .gb > i {
    background-image: url(../img/app/p4.jpg);
}

li.a5 > .gb > i {
    background-image: url(../img/app/p5.jpg);
}

li.a6 > .gb > i {
    background-image: url(../img/app/p6.jpg);
}

.clearfix > li > em {
    position: absolute;
    left: 50%;
    width: 3px;
    height: 38px;
    margin-left: -1.5px;
    background: #c0deef;
}

.clearfix > li.odd > em {
    bottom: -58px;
}

.clearfix > li.even > em {
    top: -58px;
}

.clearfix > li > em:before {
    position: absolute;
    left: 50%;
    width: 11px;
    height: 11px;
    content: "";
    overflow: hidden;
    margin-left: -5.5px;
    border-radius: 50%;
    background: #c0deef;
}

.clearfix > li > em:after {
    position: absolute;
    left: 50%;
    width: 11px;
    height: 11px;
    content: "";
    overflow: hidden;
    margin-left: -5.5px;
    border: 2px solid #c0deef;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}

.clearfix > li.odd > em:before {
    top: -10px;
}

.clearfix > li.odd > em:after {
    bottom: -10px;
}

.clearfix > li.even > em:before {
    bottom: -10px;
}

.clearfix > li.even > em:after {
    top: -10px;
}

.clearfix > li > .gh {
    position: absolute;
    left: 50%;
    width: 248px;
    margin-left: -124px;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid #c0deef;
    box-sizing: border-box;
    transition: border 0.5s;
}

.clearfix > li.odd > .gh {
    top: 180px;
}

.clearfix > li.even > .gh {
    bottom: 180px;
}

.gh > h5 {
    font-size: 15px;
    line-height: 36px;
    margin: 0;
    text-align: center;
}

.gh > h5 > span {
    display: inline-block;
    width: 45px;
    margin-right: 5px;
    background: no-repeat left center;
    color: #999;
    font-weight: 100;
    text-align: right;
    vertical-align: top;
}

li.a1 > .gh > h5 > span {
    background-image: url(../images/app/s1.png);
}

li.a2 > .gh > h5 > span {
    background-image: url(../images/app/s2.png);
}

li.a3 > .gh > h5 > span {
    background-image: url(../images/app/s3.png);
}

li.a4 > .gh > h5 > span {
    background-image: url(../images/app/s4.png);
}

li.a5 > .gh > h5 > span {
    background-image: url(../images/app/s5.png);
}

li.a6 > .gh > h5 > span {
    background-image: url(../images/app/s6.png);
}

.applet-processm {
    display: none;
}

@media screen and (max-width: 767px) {
    .applet-process {
        display: none;
    }
    .applet-processm {
        padding: 20px 0;
        display: table-cell;
        vertical-align: middle;
        width: 100vw;
    }
    .applet-processm > img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        display: block;
    }
}
/* End of 小程序开发流程 */

/* Language Dropdown */
.languages-list li a {
    width: 110px;
}
