/* -====================== google fonts ======================-*/

/*@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:400,500,600,700|Raleway:300,400,500,600,700|Sofia');*/

/*
* Decades Responsive App Landing Page;
* version : 1.0;
* Â© edevsbd;
* ====== table of contents ======
    01.General styles
    02.Preloader
    03.Shortcode
    04.Header
        04.01.Header Stuck
    05.Intro
    06.Features
    07.Showcase slider
    08.Testimonial
    09.Video
    10.Team
    11.Download
    12.Pricing
    14.Accordion
    15.News
    16.Contact icon
    17.Contact form
    18.Footer
    19.Media queries
*/


/* -====================== General styles ======================-*/

html * {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    /*font-family: 'Raleway', sans-serif;*/ /**************yyy**************/
    font-family: PingFangSC-Regular, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
    line-height: 24px;
    letter-spacing: 1px;
    color: #333;
    font-size: 13px;
    overflow-x: hidden;
    background: #FFF;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
hr{
    margin-top:20px;
    margin-left: 5px;
    margin-right:5px;
    border-top: 5px solid #eee;
}
a:hover {
    color: #428bca;
    text-decoration: none;
}

a:focus {
    color: #48afcb;
    outline: 0;
    outline-offset: 0;
    text-decoration: none;
}

a.i-left,
a.i-right {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

a.i-right i {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
}

a.i-left i {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
}

p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 10px;
}

h1 {
    font-size: 35px;
    line-height: 30px;
}

h2 {
    font-size: 27px;
    line-height: 37px;
}

h3 {
    font-size: 21px;
    line-height: 32px;
}

h4 {
    font-size: 17px;
    line-height: 28px;
}

h5 {
    font-size: 15px;
    line-height: 23px;
}

h6 {
    font-size: 13px;
    line-height: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #323232;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 10px;
}

blockquote {
    position: relative;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    border: none;
}

blockquote p {
    position: relative;
    font-weight: 300;
    padding-left: 60px;
    padding-right: 60px;
    font-size: 16px;
}

ul,
ol {
    margin-bottom: 0
}

blockquote p:before {
    content: "";
    position: absolute;
    width: 35px;
    height: 26px;
    background-image: url(../img/assets/blockquote-left.png);
    background-repeat: no-repeat;
    top: 20%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

blockquote p:after {
    content: "";
    position: absolute;
    width: 35px;
    height: 26px;
    background-image: url(../img/assets/blockquote-right.png);
    background-repeat: no-repeat;
    top: 20%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

blockquote footer {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    background-color: transparent;
}

blockquote footer:before {
    content: "";
    position: absolute;
    width: 219px;
    height: 14px;
    background-image: url(../img/assets/blockquote-footer.png);
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

blockquote cite {
    font-style: normal;
    text-transform: capitalize;
    display: block;
    margin-bottom: 5px;
}
html{
    width: 100%;
    overflow-x: hidden;
}




.btn,
button {
    display: inline-block;
    padding: 12px 22px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.42857143;
    text-align: center;
    color: #333;
    border: 1px solid transparent;
    border-radius: 3px;
}

.btn-ellipse {
    position: relative;
    background-color: #f2f2f2;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.btn-ellipse:before,
.btn-ellipse:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background: #48afcb;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn-ellipse:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-ellipse:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.btn-ellipse:hover {
    border-color: #48afcb;
    background: #48afcb;
    color: #fff;
    -webkit-transition-delay: 0.45s;
    -moz-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.btn-ellipse:hover:before {
    -webkit-animation: criss-cross-left 0.8s;
    -moz-animation: criss-cross-left 0.8s;
    -o-animation: criss-cross-left 0.8s;
    animation: criss-cross-left 0.8s;
}

.btn-ellipse:hover:after {
    -webkit-animation: criss-cross-right 0.8s;
    -moz-animation: criss-cross-right 0.8s;
    -o-animation: criss-cross-right 0.8s;
    animation: criss-cross-right 0.8s;
}

button:focus,
button:active:focus,
button.active:focus,
button.focus,
button:active.focus,
button.active.focus,
button:active,
.btn.active {
    box-shadow: none;
    outline: 0;
    outline-offset: 0;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus,
.btn:active,
.btn.active {
    border-color: #48afcb;
    background: #48afcb;
    color: #fff;
    box-shadow: none;
    outline: 0;
    outline-offset: 0;
}

.dl-btn-wrapper {
    position: relative;
    display: inline-block;
}

.dl-btn {
    padding: 9px 22px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
    border: 2px solid #fff;
    text-align: center;
    position: relative;
    color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.dl-btn.btn-1 {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    right: 1px;
}

.dl-btn.btn-2 {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    left: -6px;
    border-left: none;
}

.dl-btn i {
    font-size: 19px;
    vertical-align: -1px;
    margin-right: 6px;
}

.dl-btn:focus,
.dl-btn:active,
.dl-btn:hover {
    color: #48afcb;
    text-decoration: none;
    background-color: #fff;
    border-color: transparent;
}

.wow {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/* -====================== Preloader ======================-*/

/*.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #fff;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s .5s ease;
    -moz-transition: all .5s .5s ease;
    transition: all .5s .2s ease;
}

.preloader .loader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 90px;
    height: 90px;
    display: block;
    margin: auto;
    margin-top: -45px;  
}*/


/* -====================== Shortcode ======================-*/

.font-alt {
    font-family: 'Sofia', cursive;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 22px;
    text-transform: lowercase;
    color: #afafaf;
    font-weight: 400;
}

.text-white {
    color: #fff;
}

.bg-light {
    background-color: #f8f8fd;
}

.play-btn {
    padding: 2px;
    border-radius: 100%;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.play-btn:hover {
    box-shadow: 0 0 0 3px #fff;
}

.mb-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mb-10 {
    margin-top: 0;
    margin-bottom: 10px;
}

.mb-15 {
    margin-top: 0;
    margin-bottom: 15px;
}

.mb-25 {
    margin-top: 0;
    margin-bottom: 25px;
}

.mb-30 {
    margin-top: 0;
    margin-bottom: 30px;
}

.mb-35 {
    margin-top: 0;
    margin-bottom: 35px;
}

.mb-65 {
    margin-top: 0;
    margin-bottom: 65px;
}

.mb-80 {
    margin-top: 0;
    margin-bottom: 80px;
}

.mt-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mt-10 {
    margin-top: 10px;
    margin-bottom: 0;
}

.mt-15 {
    margin-top: 15px;
    margin-bottom: 0;
}

.mt-25 {
    margin-top: 25px;
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
    margin-bottom: 0;
}

.mt-35 {
    margin-top: 35px;
    margin-bottom: 0;
}

.mt-65 {
    margin-top: 65px;
    margin-bottom: 0;
}

.mt-80 {
    margin-top: 80px;
    margin-bottom: 0;
}

.mtb-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mtb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mtb-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}

.mtb-65 {
    margin-top: 65px;
    margin-bottom: 65px
}

.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.center-col {
    float: none;
    margin: 0 auto
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    text-transform: uppercase;
}

.text-bold {
    font-weight: 500;
}

.section-padding {
    /*padding-top: 110px;
    padding-bottom: 110px;*/
    padding-top: 60px;
    padding-bottom: 60px;
}

.img-center {
    text-align: center;
    margin: 0 auto;
}

.icon-box {
    display: block;
    position: relative;
}

.icon-box.top {
    text-align: center;
}

.icon-box.left {
    text-align: left;
}

.icon-box.right {
    text-align: right;
}

.icon-box a {
    color: #333;
}

.icon-box a:hover {
    color: #48afcb;
}

.icon-top,
.icon-left,
.icon-right {
    cursor: pointer;
    background-color: #f5f5f5;
    font-size: 23px;
    text-align: center;
    width: 70px;
    height: 70px;
    line-height: 75px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.icon-top {
    line-height: 70px;
    margin-bottom: 20px;
}

.icon-top-alt {
    font-size: 40px;
    margin-bottom: 10px;
}

.icon-left {
    position: absolute;
    left: 0;
}

.icon-right {
    position: absolute;
    right: 0;
}

.icon-box-content {
    position: relative;
}

.icon-box.left {
    padding-left: 90px;
    text-align: left;
}

.icon-box.right {
    padding-right: 90px;
    text-align: right;
}

.icon-top:before,
.icon-left:before,
.icon-right:before,
.icon-top:after,
.icon-left:after,
.icon-right:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #48afcb;
    border-radius: 50%;
    top: 50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.icon-top:before,
.icon-left:before,
.icon-right:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.icon-top:after,
.icon-left:after,
.icon-right:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.icon-box:hover .icon-top,
.icon-box:hover .icon-left,
.icon-box:hover .icon-right {
    background-color: #48afcb;
    color: #fff;
    -webkit-transition-delay: 0.45s;
    -moz-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.icon-box:hover .icon-top:before,
.icon-box:hover .icon-left:before,
.icon-box:hover .icon-right:before {
    -webkit-animation: criss-cross-left 0.8s;
    -moz-animation: criss-cross-left 0.8s;
    -o-animation: criss-cross-left 0.8s;
    animation: criss-cross-left 0.8s;
}

.icon-box:hover .icon-top:after,
.icon-box:hover .icon-left:after,
.icon-box:hover .icon-right:after {
    -webkit-animation: criss-cross-right 0.8s;
    -moz-animation: criss-cross-right 0.8s;
    -o-animation: criss-cross-right 0.8s;
    animation: criss-cross-right 0.8s;
}

/* -====================== Header ======================-*/

.page-header {
    padding: 0;
    margin: 0;
    border: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    text-align: center;
    z-index: 10;
    background-color: transparent;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
}

.logo {
    float: left; 
    text-align: left;
    /* display: inline-block; */
}

.logo a {
    color: #fff;
    font-size: 23px;
    line-height: 91px;
    max-width: 130px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
}

.logo a img {
    width: 100%;
    display: block;
    height: auto;
}

.mobile-menu {
    display: none;
    float: right;
    line-height: 60px;
}

.mobile-menu a {
    position: relative;
    display: block;
    /*font-size: 23px;*/
    font-size: 30px;
    color: #333;
    width: 30px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.mobile-menu a img{
    height:23px;
}


ul.main-nav-inner {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav-inner li {
    display: inline-block;
    text-align: left;
}

.main-nav-inner li a {
    color: #fff;
    display: block;
    font-size: 24px;
    line-height: 80px;
    letter-spacing: 2px;
    padding: 0 10px;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
}

.main-nav-inner li .mouseout {
    font-size: 16px;
    /*color: rgb(62, 62, 62);*/
    color: #fff;
    height: 35px;
    line-height: 35px;
    padding: 7px 25px;
    display: none;
    /*background-color: rgb(255, 243, 218);*/
    background-color: #F98E2B;
    border-radius: 25px;
}
.main-nav-inner li .mouseover {
    background-color: #fff;
}

/* -====================== Header Stuck ======================-*/

.header.stuck {

    background: #FF7B00 ;
    position: fixed;
    background-size: 100% 100%;
    height: 80px;
}

.header.stuck .logo a {
    color: #333;
    line-height: 72px;
}



.header.stuck .main-nav-inner li a:hover,
.header.stuck .main-nav-inner li a.current {
    /*color: #333;*/
    /*color: #F98E2B;*/
    /*color: #FF7B00;*/
}

.header.stuck .mobile-menu {
    line-height: 55px;
}

/* -====================== Intro ======================-*/

.intro {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    /*padding: 200px 0;*/
    /*padding: 130px 0 60px 0;*/
    margin-top: 80px;
}

.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/**************yyy****************/
/* .intro-content {
    padding-top: 175px;
    padding-bottom: 175px;
} */


.intro-mockup {
    position: relative;
}

.intro-mockup img {
    display: block;
    max-width: 100%;
    height: auto;
}

.intro-mockup .img-one {
    position: relative;
    z-index: 3;
}

.intro-mockup .img-two {
    position: absolute;
    top: 0;
    z-index: 2;
}

.intro-mockup .img-three {
    position: absolute;
    top: 0;
    z-index: 1;
}

/* -====================== Features ======================-*/

.mockup-text {
    padding-top: 140px;
    padding-bottom: 140px
}

.mockup {
    position: relative
}

.mockup img {
    display: block;
    max-width: 100%;
    height: auto;
}

.mockup .mockup-front {
    position: relative;
    z-index: 2
}

.mockup .mockup-back {
    position: absolute;
    top: 0;
}

/* -====================== Showcase slider ======================-*/

.showcase-slider {
    position: relative;
}

.showcase-slider .owl-stage-outer {
    padding-bottom: 20px;
}

.showcase-slider .slider-item {
    position: relative;
}

.showcase-slider .slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.showcase-slider .slider-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.showcase-slider .slider-item .overlay .popup-btn {
    display: block;
    height: 80px;
    width: 80px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: -40px;
    text-align: center;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.showcase-slider .slider-item .overlay .popup-btn:before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #616161;
    left: 50%;
}

.showcase-slider .slider-item .overlay .popup-btn:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #616161;
    top: 50%;
}

.showcase-slider .owl-item .slider-item img {
    opacity: 0.5;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.showcase-slider .owl-item.active .slider-item img {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.showcase-slider .slider-item img {
    max-width: 100%;
    display: block;
    height: auto;
}

.showcase-slider .owl-controls .owl-dots {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
}

.showcase-slider .owl-controls .owl-dots .owl-dot {
    background-color: #444;
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 10px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.showcase-slider .owl-dots .owl-dot.active {
    background-color: transparent;
    border-color: #444;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 1;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #333;
    font-weight: 100;
}

.mfp-bg {
    background-color: rgba(255, 255, 255, 0.95);
}

.mfp-figure:after,
.mfp-iframe-scaler iframe {
    box-shadow: none;
}

button.mfp-close:focus,
button.mfp-close:focus,
button.mfp-close:active:focus {
    background-color: transparent;
    color: #333;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
}

/* -====================== Testimonial ======================-*/

.author-img {
    display: block;
    margin-bottom: 35px;
}

.author-img img {
    max-width: 100px;
    display: block;
    height: auto;
    border-radius: 100%;
    margin: 0 auto;
}

.testimonial-slider .owl-item .slider-item {
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
}

.testimonial-slider .owl-item.active .slider-item {
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -webkit-animation-name: zoomInScale;
    -moz-animation-name: zoomInScale;
    -o-animation-name: zoomInScale;
    animation-name: zoomInScale;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.testimonial-slider .owl-controls .owl-dots {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
}

.testimonial-slider .owl-controls .owl-dots .owl-dot {
    background-color: #444;
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 10px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.testimonial-slider .owl-dots .owl-dot.active {
    background-color: transparent;
    border-color: #444;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

/* -====================== Video ======================-*/

.video {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

/* -====================== Team ======================-*/

.team-member {
    position: relative;
}

.team-img {
    position: relative;
}
/*************************yyy**************************/
.team-img {
    padding: 30px;
    width: 80%;
    margin-left: 10%;
    border-radius: 80%;
    background-color: white;
    overflow: hidden;
}
/*************************yyy**************************/
.team-img img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.team-member:hover .team-img img {
    opacity: 0.8
}

.team-member-info {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    /*background-color: #fafafa;*/
    margin-top: 10px;
}

.team-member-info h5 {
    margin-bottom: 0;
}

.team-member-info p {
    margin-bottom: 0;
}

.team-social {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    opacity: 1;
    visibility: visible;
}

.team-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    top: 50%;
}

.team-social ul li {
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-member:hover .team-social ul li {
    -webkit-animation: flipX 0.85s ease forwards;
    -moz-animation: flipX 0.85s ease forwards;
    -o-animation: flipX 0.85s ease forwards;
    animation: flipX 0.85s ease forwards;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.team-social ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    background-color: #48afcb;
    margin-right: 5px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

/* -====================== download ======================-*/

.download {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.newsletter {
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: center;
}

.newsletter-input {
    position: relative;
}

#newsletter-email {
    padding: 12px 2px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    display: block;
    width: 100%;
    font-weight: 600;
}

.newsletter-input span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    transition: all .4s ease;
    background-color: #fff;
}

#newsletter-email:focus+span {
    width: 100%;
}

.subscribe-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 4px;
    padding-right: 2px;
    padding-left: 10px;
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 600;
    outline: none;
    letter-spacing: 2px;
}

.subscribe-btn:focus,
.subscribe-btn:active,
.subscribe-btn:active:focus {
    background-color: transparent;
}

.info {
    color: rgba(255,255,255,.8);
    margin-top: 15px;
    font-size: 14px;
}

/* -====================== pricing ======================-*/

.pricing {
    padding: 32px 40px;
    text-align: left;
    background-color: #fafafa;
    border-top: 3px solid #EEF0F3;
}

.pricing.active {
    padding: 40px 40px;
    margin-top: -8px;
}

.pricing-title {
    font-size: 16px;
    margin: 0 0 16px;
}

.pricing-price {
    padding: 16px 0 16px;
    font-size: 32px;
    border-top: 3px solid #EEF0F3;
}

.pricing-price span {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.pricing-price span.currency {
    font-size: 16px;
    font-weight: normal;
    vertical-align: super;
    margin-right: -6px;
}

.pricing-price span.period {
    font-size: 14px;
    margin-left: -4px;
    position: relative;
    font-weight: 500;
}

.pricing-price span.period:before {
    content: "/";
    margin-right: 3px;
}

.pricing-features {
    text-align: right;
    list-style: none;
    padding: 16px 0 16px;
    border-top: 3px solid #EEF0F3
}

.pricing-features li {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    text-transform: capitalize;
}

.price-btn {
    padding-top: 16px;
    display: block;
    text-align: center;
}

/* -====================== accordion ======================-*/

.accordion {
    margin-bottom: 20px;
}

.accordion-title {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.accordion-title a {
    position: relative;
    color: #333;
    border: 1px solid #f1f1f1;
    background-color: #fff;
    display: block;
    padding: 14px 20px;
    -webkit-transition: all .27s cubic-bezier(0, 0, .58, 1) 0s;
    -moz-transition: all .27s cubic-bezier(0, 0, .58, 1) 0s;
    -o-transition: all .27s cubic-bezier(0, 0, .58, 1) 0s;
    transition: all .27s cubic-bezier(0, 0, .58, 1) 0s;
}

.accordion-title a.active {
    background-color: #EEF0F3;
    border-color: #EEF0F3;
    color: #333;
    cursor: default;
}

.accordion-title a:after {
    content: "\f2c7";
    font-family: "Ionicons";
    font-size: 10px;
    position: absolute;
    right: 20px;
    color: #333;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.accordion-title a.active:after {
    content: "\f2f4";
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.accordion-content {
    font-size: 13px;
    line-height: 1.8;
    padding: 20px 35px;
    background-color: #fafafa;
    border: 1px solid #EEF0F3;
    border-top-color: #EEF0F3;
}

/* -====================== News ======================-*/

.news-thumb img {
    display: block;
    /*width: 100%;*/
    width: 45%;
    margin-left: 25%;
    height: auto;
}

.news-preview {
    padding: 24px;
    /*background-color: #fafafa;*/
    overflow: hidden;
}

.news-preview h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
}

.news-preview h3 a {
    color: #333;
}

.news-preview p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 13px;
}

.news-meta {
    overflow: hidden;
    border-top: 1px solid #EEF0F3;
    margin-top: 15px;
    padding-top: 15px;
}

.news-meta .date {
    color: #afafaf;
    display: inline-block;
    /* float: left; */
    font-weight: 600;
    text-transform: uppercase;
}

.news-meta .read-more {
    display: inline-block;
    /* float: right; */
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.read-more a {
    color: #afafaf;
    position: relative;
    right: -10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.read-more a:after {
    content: "\f3d3";
    font-family: "Ionicons";
    margin-left: 5px;
    opacity: 0;
    visibility: hidden;
    color: #48afcb;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.read-more a:hover {
    color: #48afcb;
    right: 0
}

.read-more a:hover:after {
    opacity: 1;
    visibility: visible;
}

/* -====================== Contact icon ======================-*/

#google-map {
    height: 450px;
}

.contact-box {
    position: relative;
}

.contact-box.top {
    text-align: center;
}

.contact-box.left {
    text-align: left;
    padding-left: 45px;
}

.contact-box.right {
    text-align: right;
    padding-right: 45px;
}

.contact-icon-top,
.contact-icon-left,
.contact-icon-right {
    font-size: 30px;
}

.contact-icon-top {
    padding-bottom: 20px;
}

.contact-icon-left {
    position: absolute;
    left: 0;
}

.contact-icon-right {
    position: absolute;
    right: 0
}

/* -====================== Contact form ======================-*/

.form-group {
    margin-bottom: 15px;
}

.form-control {
    padding: 12px;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    box-shadow: none;
}

.form-control:focus {
    border-color: #afafaf;
    box-shadow: none;
}

#message {
    padding: 0 15px 15px;
    display: none
}

.errorMessage {
    padding: 0 15px 20px;
    font-weight: 600;
}

ul.errorMessages {
    list-style: none;
    padding-left: 0;
    padding-top: 5px;
}

ul.errorMessages li {
    color: red;
    font-weight: 500;
    position: relative;
}

ul.errorMessages li:before {
    content: "\f149";
    font-family: "Ionicons";
    margin-right: 5px;
}

/* -====================== Footer ======================-*/

footer {
    background-color: #323232;
    padding: 15px 0;
}

.copyright {
    font-weight: 500;
    text-align: center;
    color: #fff;
}

/* -====================== Media queries ======================-*/
@media (min-width: 1367px) {
    .introContBox{width: 50%}
    .introImg{width: 50%}
    .zhiCustomBtnNot {right: 50px;width: 413px;}
    .zhiCustomBtnNot span {font-size: 24px;width: 66%; line-height: 40px;}
    .zhiCustomBtnNot span span {font-size: 32px}
}
@media (max-width: 1367px) {
    .introContBox{width: 50%}
    .introImg{width: 40%}
    .zhiCustomBtnNot {right: 35px;width: 289.1px;}
    .zhiCustomBtnNot span {font-size: 16.8px;width: 66%; line-height: 28px;}
    .zhiCustomBtnNot span span {font-size: 22.4px}
}
@media (min-width: 1200px) {
    .pc {
        display: block;
    }
    .mobile {
        display: none;
    }
    .logo img{
        margin-top:10px;
        height:60px;
    }
    .kindsCourse.pc .kindsCourseRow .courseBox .name{
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .kindsCourse.pc .kindsCourseRow .courseBox .name{
        font-size: 18px;
    }
    /*****************yyy****************/
    /* .intro-content {
        padding-top: 120px;
        padding-bottom: 120px;
    } */

    /*********************** max-width: 991px æŒªè¿‡æ¥çš„ **************************/
    
    .mobile-menu {
        display: block;
    }
    .main-nav{
        display: none;
    }
    .mobile-menu a {
        /*line-height: 60px;*/
        line-height: 100px;
        transition: all 0.3s
    }
    .header.stuck .main2-nav {
        top: 100px;
    }
    
    .mobile-menu a i {
        opacity: 1;
        -webkti-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        -webkit-transition: transform .3s, opacity 0.15s;
        -moz-transition: transform .3s, opacity 0.15s;
        -o-transition: transform .3s, opacity 0.15s;
        transition: transform .3s, opacity 0.15s;
    }
    
    .mobile-menu a.active i {
        opacity: 0;
        -webkit-transform: translateY(-20px) scale(0.7);
        -moz-transform: translateY(-20px) scale(0.7);
        -o-transform: translateY(-20px) scale(0.7);
        transform: translateY(-20px) scale(0.7);
        -webkit-transition: transform 1s, opacity 0.15s;
        -moz-transition: transform 1s, opacity 0.15s;
        -o-transition: transform 1s, opacity 0.15s;
        transition: transform 1s, opacity 0.15s;
    }
    
    .mobile-menu a:after {
        content: "\f129";
        font-family: "Ionicons";
        font-size: 19px;
        display: block;
        position: absolute;
        top: 0px;
        left: 7px;
        opacity: 0;
        -webkit-transform: translateY(10px) scale(0.7);
        -moz-transform: translateY(10px) scale(0.7);
        -o-transform: translateY(10px) scale(0.7);
        transform: translateY(10px) scale(0.7);
        -webkit-transition: transform .3s, opacity 0.15s;
        -moz-transition: transform .3s, opacity 0.15s;
        -o-transition: transform .3s, opacity 0.15s;
        transition: transform .3s, opacity 0.15s;
    }
    
    .mobile-menu a.active:after {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
    
    .main-nav {
        z-index: -1;
        position: fixed;
        float: none;
        width: 100%;
        top: 60px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.9);
        display: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    .main-nav.open {
        display: block;
    }
    
    .main-nav-inner {
        padding-top: 50px!important;
        padding-bottom: 50px!important;
    }
    
    .main-nav-inner.animation {
        -webkit-animation-name: slideDown;
        -moz-animation-name: slideDown;
        -o-animation-name: slideDown;
        animation-name: slideDown;
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        -o-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-timing-function: ease;
        -moz-animation-timing-function: ease;
        -o-animation-timing-function: ease;
        animation-timing-function: ease;
    }
    
    .main-nav-inner li {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .main-nav-inner li a {
        line-height: normal;
        padding: 20px 12px;
        color: #606060
    }
    
    .header.stuck {
        height: 80px;
        background: #FF7B00 ;
        background-size: 100% 100%;
    }
    
    .header.stuck .logo a {
        line-height: 60px;
    }
    
    .header.stuck .main-nav {
        top: 60px;
        background-color: #fff;
    }
    
    .header.stuck .main-nav-inner li a {
        color: #afafaf;
        line-height: normal;
    }
    
    .header.stuck .mobile-menu a {
        color: #606060;
    }
    /*********************** max-width: 991px æŒªè¿‡æ¥çš„ **************************/

    .pc {
        display: block;
    }
    .mobile {
        display: none;
    }
    
}
@media (min-width: 992px) and (max-width: 1024px) {
    /******************yyy*******************/
    /* .intro-content {
        padding-top: 120px;
        padding-bottom: 120px;
    } */
    .logo img{
        margin-top:10px;
        height:60px;
    }
    .pc {
        display: block;
    }
    .mobile {
        display: none;
    }
    
    /******************** yyy **********************/
    
}

@media (min-width: 768px) and (max-width: 991px) {
    /******************yyy*******************/
    .col-md-6 {
        margin-top: 30px;
    }
    .pc {
        display: block;
    }
    .logo img{
        margin-top:10px;
        height:60px;
    }
    .mobile {
        display: none;
    }
    /******************yyy*******************/
    .mb-sm-0 {
        margin-bottom: 0;
    }
    
    .mb-sm-10 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .mb-sm-15 {
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .mb-sm-25 {
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    .mb-sm-30 {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .mb-sm-35 {
        margin-top: 0;
        margin-bottom: 35px;
    }
    
    .mb-sm-65 {
        margin-top: 0;
        margin-bottom: 65px;
    }
    
    .mb-sm-80 {
        margin-top: 0;
        margin-bottom: 80px;
    }
    
    .mt-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .mt-sm-10 {
        margin-top: 10px;
        margin-bottom: 0;
    }
    
    .mt-sm-15 {
        margin-top: 15px;
        margin-bottom: 0;
    }
    
    .mt-sm-25 {
        margin-top: 25px;
        margin-bottom: 0;
    }
    
    .mt-sm-30 {
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .mt-sm-35 {
        margin-top: 35px;
        margin-bottom: 0;
    }
    
    .mt-sm-65 {
        margin-top: 65px;
        margin-bottom: 0;
    }
    
    .mt-sm-80 {
        margin-top: 80px;
        margin-bottom: 0;
    }
    
    .mtb-sm-0 {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .mtb-sm-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .mtb-sm-15 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .mtb-sm-25 {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .mtb-sm-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .mtb-sm-35 {
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .mtb-sm-65 {
        margin-top: 65px;
        margin-bottom: 65px
    }
    
    .mtb-sm-80 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    
}

@media (max-width: 991px) {
    /******************** yyy **********************/
    .pc {
        display: none;
    }
    .logo img{
        height:60px;
    }
    .header.stuck{
        background: #FF7B00 url(../images/headerTopMob.png) no-repeat;
    }
    .mobile {
        display: block;
    }

    .logo a {
        color: #606060;
        line-height: 100px;
    }
    .mobile-menu a {
        line-height: 80px;
    }
    .header.stuck .main2-nav {
        top: 100px;
    }
    
    .intro {
        text-align: center;
        margin-top: 59px;
    }
    /**************yyy*******************/
    /* .intro-content {
        padding-top: 70px;
        padding-bottom: 70px;
    } */
    
    .intro-mockup .img-one {
        max-width: 80%;
        margin: 0 10% 0 1%;
    }
    
    .intro-mockup .img-two {
        max-width: 80%;
        margin: 0 10% 0 1%;
    }
    
    .intro-mockup .img-three {
        max-width: 80%;
        margin: 0 10% 0 1%;
    }
    
    .mockup-front {
        max-width: 70%!important;
        margin: 0 10%;
    }
    
    .mockup-back {
        max-width: 70%!important;
        margin: 0 10%;
    }
    
    .mockup-text {
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }
    
}

/*.swiper-container1 {
    display: flex;
}*/
@media (max-width: 767px) {
    /******************yyy*******************/
    .col-md-6 {
        margin-top: 30px;
    }
    .pc {
        display: none;
    }
    .main-nav{
        display: none;
    }
    .mobile {
        display: block;
    }    
    /******************yyy*******************/
    .mb-xs-10 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .mb-xs-15 {
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .mb-xs-25 {
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    .mb-xs-30 {
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .mb-xs-35 {
        margin-top: 0;
        margin-bottom: 35px;
    }
    
    .mb-xs-65 {
        margin-top: 0;
        /*margin-bottom: 65px;*/
    }
    
    .mb-xs-80 {
        margin-top: 0;
        margin-bottom: 80px;
    }
    
    .mt-xs-10 {
        margin-top: 10px;
        margin-bottom: 0;
    }
    
    .mt-xs-15 {
        margin-top: 15px;
        margin-bottom: 0;
    }
    
    .mt-xs-25 {
        margin-top: 25px;
        margin-bottom: 0;
    }
    
    .mt-xs-30 {
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .mt-xs-35 {
        margin-top: 35px;
        margin-bottom: 0;
    }
    
    .mt-xs-65 {
        margin-top: 65px;
        margin-bottom: 0;
    }
    
    .mt-xs-80 {
        margin-top: 80px;
        margin-bottom: 0;
    }
    
    .mtb-xs-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .mtb-xs-15 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .mtb-xs-25 {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .mtb-xs-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .mtb-xs-35 {
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .mtb-xs-65 {
        margin-top: 65px;
        margin-bottom: 65px
    }
    
    .mtb-xs-80 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    
    .section-title {
        padding-left: 15px;
        padding-right: 15px;
    }
    /********************** yyy ****************************/
    .logo {
        height: 60px;
        line-height: 60px;
        float: left;
    }
    .logo>img {
        max-height: 44px;
    }
    #two .two-middle {
        width: 100%;
    }
    .header.stuck {
        height: 60px;
        line-height: 60px;
    }
    .header.stuck .mobile-menu a {
        /*color: #F98E2B;*/
        color: #fff;
        line-height: 60px;
    }
    .header.stuck .main2-nav {
        top: 60px;
    }
    .zhiCustomBtnNot {width: 50% !important;right: 20px;}
    .zhiCustomBtnNot span {font-size: 20px;width: 70%;line-height: 24px}
    .zhiCustomBtnNot span span {font-size: 22px}
}

/************************** yyy ****************************/
.leftBtnone {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.oneWai {
    height: 200px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
}
.contentone {
    margin-top: 15px;
    font-size: 18px;
    padding-left: 10%;
    padding-right: 20%;
}
.leftBtnonego {
    background-image: url(../images/One/oneBtnImg.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.leftBtntwo {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.twoWai {
    height: 200px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
}
.contenttwo {
    margin-top: 15px;
    font-size: 18px;
    padding-left: 10%;
    padding-right: 20%;
}
.leftBtntwogoI {
    background-image: url(../images/One/twoBtnImg.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.leftBtnthree {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.threeWai {
    height: 200px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
}
.contentthree {
    margin-top: 15px;
    font-size: 18px;
    padding-left: 10%;
    padding-right: 20%;
}
.leftBtnthreego {
    background-image: url(../images/One/threeBtnImg.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.leftBtnfour {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.fourWai {
    height: 200px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
}
.contentfour {
    margin-top: 15px;
    font-size: 18px;
    padding-left: 10%;
    padding-right: 20%;
}
.leftBtnfourgo {
    background-image: url(../images/One/fourBtnImg.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
}
.go-class-bgview {
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100000;
    display: none;
}
.go-class-bgview .goclass {
    width: 350px;
    margin-left: calc(50% - 175px);
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.go-class-bgview .goclass .tip {
    height: 50px;
    /*background-color: black;*/
    width: calc(36%);
    text-align: center;
    font-size: 14px;
}
.go-class-bgview .goclass .goBtn {
    width: calc(50%);
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    background-color: rgb(252, 177, 33);
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
}
.downloadCode {
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
/****************** 产品和服务 *******************/
.header.stuck .main1-nav {
    top: 70px;
    background-color: #fff;
}
.main1-nav.open {
    display: block;
}
.main1-nav {
    z-index: -1;
    position: fixed;
    float: none;
    /*width: 100%;*/
    top: 60px;
    left: 0;
    padding: 0 15px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 全部课程 */
.allclass-nav.open {display: block;}
.allclass-nav {position: fixed;float: none;width: 100%;top: 60px;left: 0;display:none;bottom: 0;}
.allclass-nav .allclass-nav-inner {max-height: 100%;overflow: auto; background-color: white;/*border: solid 1px #d2d2d2;*/width: 100%;padding: 0;margin: auto;padding-left: 20px;padding-right: 20px;padding-bottom: 15px;display: flex;flex-direction: row;flex-wrap: wrap;}
.allclass-nav .allclass-nav-inner .allclass-nav-category{min-width: 150px;width:calc(100% / 7);/*min-width: 200px; width: 20%;*/padding-top: 15px;text-align: left;}
.allclass-nav .allclass-nav-inner .allclass-nav-title{color: #F98E2B;font-size: 16px;font-weight: bold;padding-bottom: 15px;border-bottom: solid 1px #d2d2d2;}
.allclass-nav .allclass-nav-inner .allclass-nav-courses{padding: 0;padding-top: 15px;}
.allclass-nav .allclass-nav-inner .allclass-nav-course{font-size: 16px;color: #a1a1a1;line-height: 25px;cursor: pointer;}

ul.main1-nav-inner {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main1-nav-inner.animation {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
}
.main1-nav-inner {
    /*padding-top: 50px!important;
    padding-bottom: 50px!important;*/
}
.main1-nav-inner li {
    display: inline-block;
    text-align: left;
}
.main1-nav-inner li {
    display: block;
    text-align: center;
    width: 100%;
}
.header.stuck .main1-nav-inner li a {
    /*color: #afafaf;*/
    color: #666666;
    line-height: 49px;
}
.main1-nav-inner li a {
    color: #fff;
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    padding: 0px 21px;
    color: #666;
}


/*********************** yyy *********************/
.header.stuck .main2-nav {
    /*top: 60px;*/
    /*top: 100px;*/
    background-color: #fff;
}
.main2-nav.open {
    display: block;
}
.main2-nav {
    z-index: -1;
    position: fixed;
    float: none;
    width: 100%;
    top: 60px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
ul.main2-nav-inner {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main2-nav-inner.animation {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
}
.main2-nav-inner {
    /*padding-top: 50px!important;
    padding-bottom: 50px!important;*/
    /*padding-top: 20px!important;*/
    padding-bottom: 20px!important;
}
.main2-nav-inner li {
    display: inline-block;
    text-align: left;
}
.main2-nav-inner li {
    display: block;
    text-align: center;
    width: 100%;
}
.header.stuck .main2-nav-inner li a {
    /*color: #afafaf;*/
    line-height: 70px;
}
.header.stuck .main2-nav-inner li a {
    color: #333;
    line-height: normal;
}
.main2-nav-inner li a {
    color: #fff;
    display: block;
    /*font-size: 12px;*/
    font-size: 24px;
    font-weight: 600;
    line-height: 90px;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
    padding: 0 10px;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, .58, 1);
    transition: all 0.3s cubic-bezier(0, 0, .58, 1);
}
.main2-nav-inner li a {
    line-height: normal;
    /*padding: 20px 12px;*/
    padding: 12px 12px;
    color: #606060;
}
.swiper-slide .student-content {
    padding: 15px;height: 95px;overflow: hidden;cursor: pointer;color: #6c6c6c;
}   
.swiper-slide .active {
    overflow-x: hidden;
    overflow-y: auto;
}
.header.stuck .main1-nav-inner li a:hover {
    color: rgb(252, 177, 33);
}
.header.stuck .main2-nav-inner li a:hover {
    color: rgb(252, 177, 33);
}
.queryCertificateBox{
    position: absolute;
    left:32%;
    top:18px;
    width: 36%;
    display: none;
}
.queryCertificateBox img{
    cursor: pointer;
}
.queryCertificateBox div{
    display:inline-block;
    border-bottom: 1px solid #3E3E3E;
    height: 30px;
    width: 80%;
    margin: 0 10px;
}
.queryCertificateBox input{
    background: transparent;
    border: none;
    width: 100%;
    font-size: 16px;
}
.queryCertificateBox input:focus{
    outline:none;
}
.certificateMask{
    position: fixed;
    left:0px;
    top:60px;
    width: 100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    display: none;
}
.certificateMask .box{
    width: 360px;
    height: 225px;
    border-radius: 10px;
    background: white;
    margin: 0 auto;
    margin-top:10%;
    position: relative;
}
.certificateMask .flower{
    position: relative;
    top:-15%;
}
.certificateMask .flower span{
    font-size: 30px;
    position: absolute;
    right: 5px;
    top: 30px;
    cursor: pointer;
}
.certificateMask .text{
    margin-top: -15px;
}
.certificateMask .text p:first-child{
    margin-bottom: 20px;
}
.certificateMask .name{
    padding: 0 5px;
}
#intro span.freeStudy:hover{
    background: #f6c25b !important;
}
@media only screen and (max-width: 600px) {
    .main-nav{
        display: none;
    }
    .zhiCustomBtnNot {width: 50% !important;right: 20px;}
    .zhiCustomBtnNot span {font-size: 12px;width: 70%;line-height: 18px}
    .zhiCustomBtnNot span span {font-size: 14px}

}
/* 节日„canvas */
canvas{
    position: fixed;
    top:0;
    left:0;
}
/*两个video*/
.videoViewPC .videoViewLeft {display: flex;justify-content: space-between;align-items: center;background-color: #FDEFE1;border-radius: 5px;}
.videoViewPC .videoViewRight {display: flex;justify-content: space-between;align-items: center;background-color: #EEE8FF;border-radius: 5px;}
.videoViewPC .videoViewLeft .understandMore {cursor: pointer;display: table;padding: 10px;color: #F98E2B;font-weight: bold;}
.videoViewPC .videoViewRight .understandMore {cursor: pointer;display: table;padding: 10px;color: #7C50F1;font-weight: bold;}
.videoViewMobile .videoViewLeft {display: flex;justify-content: space-around;align-items: center;background-color: #FDEFE1;border-radius: 5px;padding: 10px 2px;}
.videoViewMobile .videoViewLeft .understandMore{cursor: pointer;display: table;padding: 10px;color: #F98E2B;font-size: 11px;}
.videoViewMobile .videoViewRight {display: flex;justify-content: space-around;align-items: center;background-color: #EEE8FF;border-radius: 5px;padding: 10px 2px;}
.videoViewMobile .videoViewRight .understandMore {cursor: pointer;display: table;padding: 10px;color: #7C50F1;font-size: 11px;}
/*限时折扣*/
.timeLimitViewPC {padding: 40px 20px 0 20px;min-height: 200px;}
.timeLimitViewPC .titleView {display: flex;justify-content: center;align-items: center;}
.timeLimitViewPC .swiper-container3 {position: relative;padding: 40px; overflow: hidden;display: none;}
.timeLimitViewPC .swiper-container3 .activityItem {background-color: #fff;position: relative;border-radius: 10px;display: flex;flex-direction: column;justify-content: center;align-items: center;border: solid 1px #999999;padding-bottom: 20px;}
.timeLimitViewPC .swiper-container3 .activityItem .topView {width: 100%;min-height: 100px;display: flex;flex-direction: column;justify-content: center;align-items: center;}
.timeLimitViewPC .swiper-container3 .activityItem .topView img {width: 100%;border-radius: 8px 8px 0px 0px;}
.timeLimitViewPC .swiper-container3 .activityItem .topView h4 {color: #fff;position: absolute;top: 35px;text-align: center;}
.timeLimitViewPC .swiper-container3 .activityItem .topView p {color: #fff;position: absolute;margin-top: 35px;}
.timeLimitViewPC .swiper-container3 .activityItem .detail {color: #606060;width: 100%;padding: 5px 10px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 53px;}
.timeLimitViewPC .swiper-container3 .activityItem .durationAnddifficulty {width: 100%;padding: 5px 10px;display: flex;flex-direction: row;justify-content: space-between;align-items: center;}
.timeLimitViewPC .swiper-container3 .activityItem .bottomView {display: flex;width: calc(100% - 20px);justify-content: space-between;border-top: solid 1px #f3f3f3;padding-top: 20px;}
.timeLimitViewPC .swiper-container3 .activityItem .bottomView .activityCode {background-color: #F98E2B;color: #fff;border-radius: 15px;text-align: center;padding: 2px 0;cursor: pointer;}
.timeLimitViewPC .swiper-container3 .activityItem .bottomView p {color: #909090;text-decoration: line-through;text-align: center;margin-bottom: 0;}
.timeLimitViewPC .swiper-container3 .activityItem .bottomView .lessonPackPrice  {background-color: #773DBE;color: #fff;border-radius: 15px;text-align: center;padding: 2px 0;cursor: pointer;}
.timeLimitViewPC .swiper-container3 .activityItem .codeView {width: 100%;position: absolute;top: 0;left: 0;background-color: #FDEFE1; flex-direction: column;justify-content: space-around;align-items: center;padding: 5px;border-radius: 8px 8px 0 0;display: none;}
.timeLimitViewMobile {padding: 30px 20px 0 20px;min-height: 200px;}
.timeLimitViewMobile .titleView {display: flex;justify-content: center;align-items: center;}
.timeLimitViewMobile .activityList {white-space: nowrap;overflow-x: scroll;padding: 20px 0;}
.timeLimitViewMobile .activityList .activityItem {background-color: #fff;position: relative;border-radius: 10px;display: flex;flex-direction: column;justify-content: center;align-items: center;border: solid 1px #999999;padding-bottom: 20px;}
.timeLimitViewMobile .activityList .activityItem .topView {width: 100%;min-height: 100px;display: flex;flex-direction: column;justify-content: center;align-items: center;position: relative;}
.timeLimitViewMobile .activityList .activityItem .topView img {width: 100%;border-radius: 8px 8px 0px 0px;}
.timeLimitViewMobile .activityList .activityItem .topView h4 {width: 100%; color: #fff;position: absolute;top: 20px;text-align: center;white-space: normal;}
.timeLimitViewMobile .activityList .activityItem .topView p {color: #fff;position: absolute;bottom: 0;width: 100%;text-align: center;}
.timeLimitViewMobile .activityList .activityItem .detail {color: #606060;width: 100%;padding: 5px 10px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 53px;white-space: normal;}
.timeLimitViewMobile .activityList .activityItem .durationAnddifficulty {width: 100%;padding: 5px 10px;display: flex;flex-direction: row;justify-content: space-between;align-items: center;}
.timeLimitViewMobile .activityList .activityItem .bottomView {display: flex;width: calc(100% - 20px);justify-content: space-between;border-top: solid 1px #f3f3f3;padding-top: 20px;}
.timeLimitViewMobile .activityList .activityItem .bottomView .activityCode {background-color: #F98E2B;color: #fff;border-radius: 10px;text-align: center;padding: 2px 0;cursor: pointer;}
.timeLimitViewMobile .activityList .activityItem .bottomView p {color: #909090;text-decoration: line-through;text-align: center;margin-bottom: 0;}
.timeLimitViewMobile .activityList .activityItem .bottomView .lessonPackPrice {background-color: #773DBE;color: #fff;border-radius: 10px;text-align: center;padding: 2px 0;cursor: pointer;}
.timeLimitViewMobile .activityList .activityItem .codeView {width: 100%;position: absolute;top: 0;left: 0;background-color: #FDEFE1; flex-direction: column;justify-content: space-around;align-items: center;padding: 5px;border-radius: 8px 8px 0 0;display: none;}
/*全部课程 page 里面的*/
/*.allclass-nav.open {display: block;}*/
/*.allclass-nav-page {position: fixed;float: none;width: 100%;top: 60px;left: 0;display:none;bottom: 0;}*/
.allclass-nav-page .allclass-nav-inner-page {max-height: 100%;overflow: auto; background-color: white;/*border: solid 1px #d2d2d2;*/width: 100%;padding: 0;margin: auto;padding-left: 20px;padding-right: 20px;padding-bottom: 15px;display: flex;flex-direction: row;flex-wrap: wrap;}
.allclass-nav-page .allclass-nav-inner-page .allclass-nav-category{min-width: 150px;width:calc(100% / 5);/*min-width: 200px; width: 20%;*/padding-top: 80px;text-align: left;}
.allclass-nav-page .allclass-nav-inner-page .allclass-nav-title{color: #FF6600;font-size: 16px;font-weight: bold;padding-bottom: 15px;/*border-bottom: solid 1px #d2d2d2;*/}
.allclass-nav-page .allclass-nav-inner-page .allclass-nav-courses{padding: 0;/*padding-top: 15px;*/}
.allclass-nav-page .allclass-nav-inner-page .allclass-nav-course{font-size: 16px;color: #666666;line-height: 25px;cursor: pointer;}

/*全部课程 page 里面移动端*/
.mobile .allclass-nav-page .allclass-nav-inner-page .allclass-nav-category{min-width: 50%;width:calc(100% / 5);/*min-width: 200px; width: 20%;*/padding-top: 80px;text-align: center;}
.mobile .allclass-nav-page .allclass-nav-inner-page {max-height: 100%;overflow: auto; background-color: white;/*border: solid 1px #d2d2d2;*/width: 100%;padding: 0;margin: auto;padding-bottom: 15px;display: flex;flex-direction: row;flex-wrap: wrap;}
.mobile .allclass-nav-page .allclass-nav-inner-page .allclass-nav-category{width: 50%;width:calc(100% / 5);/*min-width: 200px; width: 20%;*/padding-top: 50px;text-align: center;}

h1,h2,h3,p,div,span {
    font-family: PingFangSC-Regular, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
}

.moreCourse .process {display: none;flex-direction: column;justify-content: center;align-items: center;padding: 12px;color: #999999;font-size: 22px;margin-top: 20px;}
.moreCourse .continueLearn {background-color: #FF6400;padding: 10px 60px;border-radius: 34px;color: #fff;margin-top: 20px; cursor: pointer;font-size: 24px;}
.moreCourse.mobile .process {display: none;flex-direction: column;justify-content: center;align-items: center;padding: 12px;color: #999999;font-size: 18px;margin-top: 20px;z-index: 10001;}
.moreCourse.mobile .continueLearn {background-color: #FF6400;padding: 10px 60px;border-radius: 34px;color: #fff;margin-top: 20px; cursor: pointer;font-size: 20px;}

/* 新继续学学习PC版 2018.11.27 trenki*/
.learnProcessPC {width: 100%;background: #fff;display: none;}
.learnProcessPC .process{max-width:1170px;width:100%;height: 100px;text-align: center;margin: 0 auto;margin-top: 40px;border-radius: 8px;font-size:20px;background: #FDEFE1 url(../images/learnProcessBg.png) no-repeat 100% 100%;}
.learnProcessPC .lastProcess{display: inline-block;height: 100px;line-height: 100px;color: #333333;font-size:20px;}
.learnProcessPC .continueLearn{cursor: pointer;display: inline-block;width:161px;height:36px;line-height: 36px;color: white;background:rgba(255,123,0,1);border-radius:18px;margin-left: 26px;vertical-align: middle;}
/* 介绍课程种类mobile版 2018.11.28 trenki */
.introduceCourseBox{width: calc(100% - 40px);margin-left: 20px;background:#FFF; margin-top: 40px;padding: 0;border-radius: 8px;overflow: hidden;padding-bottom: 5px;}
.introduceCourse{border:1px solid rgb(255,123,0);margin: 0;border-radius:5px;margin-bottom: 20px;width: calc(100% - 2px);}
.introduceCourse .box{display: flex;justify-content: flex-start;align-items: center;}
.introduceCourse .box p{line-height: 30px;font-size: 15px;color: #666666;margin: 0;}
.introduceCourse .box  div img{width: 100%;margin-top: 10px;}
.introduceCourse .CourseTitle{font-size: 20px;line-height: 20px;color: #FF5D00;padding-left: 15px;border-left: solid 5px #FF5D00;}
.introduceCourse .CourseContent{align-items: center;margin-top: 15px;margin-bottom: 15px;font-size: 16px;}
.introduceCourse .CourseContent span{line-height: 30px;font-size: 16px;color: #333333;font-weight: bold;}

/* 看得见的种类2019.1.4版 PC*/
.kindsCourse.pc{background: #F3F8FB;}
.kindsCourse.pc .kindsCourseRow{width: 100%;display: flex;justify-content: space-between;flex-wrap:wrap;margin-top: 40px;}
.kindsCourse.pc .kindsCourseRow .courseBox{width:30%;height: 500px;background: #FFF;border-radius: 8px;overflow: hidden; margin-top: 30px;}
.kindsCourse.pc .kindsCourseRow .courseBox .img{width: 100%;}
.kindsCourse.pc .kindsCourseRow .courseBox .name{color: #333;height:70px;margin-top: 10px;padding: 0 20px;display: flex;align-items: center;line-height: 30px}
.kindsCourse.pc .kindsCourseRow .courseBox .courseIntro{font-size: 18px;line-height: 30px;color: #666666;padding: 0 20px;}
.kindsCourse.pc .kindsCourseRow .courseBox .courseIntro span{color: #333;font-weight: bold;}

/* 顶部第一部分PC */
.intro.pc{
    background: #FF7B00;
    position: relative;
}
.intro.pc .intro-content{
    width: calc(100% - 30px);
    max-width: 1200px; 
    margin: 0 auto;
    z-index:3;
    position: relative;

}
.intro.pc .intro-content img{
    width: calc(50% - 4px);
    display: inline-block;
}
.intro.pc .indexLeft{
    height: 434px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index:1;

}
.intro.pc .indexRight{
    height: 434px;
    position: absolute;
    z-index:1;
    right: 0;
    bottom: 0;
}
/* 顶部第一部分Mob */
.intro.mobile .intro-content >div >div{display: flex;align-items: center;margin-bottom: 10px;}
.intro.mobile .intro-content >div >div p{font-size: 14px; margin: 0 0 0 10px;text-align: left;}
.intro.mobile .intro-content >div >div img{width: 5px;height:7px;}
.intro.mobile .intro-content div.different >p{height: 22px;line-height: 22px;color:#FF7B00;background: #fff;border-radius: 18px;padding:0  6px;margin-left: 8px;}
.intro.mobile .intro-content h1 {text-transform: none;font-size: 29px;line-height: 35px;color: #fff;font-weight: bold;text-align: left;margin-left:14px;font-size: 29px;}
/* 申请试听课的二维码图片 */
.wxQRcode{position: relative;top:80px;display: none;}
.wxQRcode img{width: 187px;height: 262px;} 
/* 领取试听课的弹窗 */
.receiveLiveLesson{display: none;position: fixed;height: 100%;z-index: 10002;width: 100%;background: rgba(0, 0, 0, 0.65);top:0px;left:0px; }
.receiveLiveLessonBox{position: absolute;width: 46%;top: 50%;left:50%;transform: translate(-50%,-50%);max-width: 900px}
.popUpWXcode{width: 100%;display: block;} 
.WxCodeClose{position: absolute;right: -44px;top:30px;height: 45.5px;width: 45px;}

/* 我们的学院PC */
.memberView.pc .allContentChild{box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);border-radius: 10px;padding: 20px 0;}

/* 为什么选择橙旭园 PC*/
.whyCxy.pc {margin-bottom: 10px;padding: 0;position: relative;}
.whyCxy.pc .theReason{margin-top: 40px;display: flex;justify-content: space-between;flex-wrap: wrap}
.whyCxy.pc .theReason div{width: calc((100% - 42px)/3);margin-bottom: 30px;}
.whyCxy.pc .theReason div img{width: 100%;}
/* 为什么选择橙旭园 mob*/
.whyCxy.mobile{margin-bottom: 30px;}
.whyCxy.mobile .theReason{margin-top: 15px;display: flex;justify-content: space-between;flex-wrap: wrap}
.whyCxy.mobile .theReason div{width: 50%;}
.whyCxy.mobile .theReason div img{width: 100%;}
/* 体验儿童编程是什么 */
.childProgram.pc .img{
    width: 100%;
    display: block;
}
/* 加入我们按钮PC */
.joinButton{
    margin-top:20px;
}
.joinButton button{
    font-size: 16px;
    height: 28px;
    line-height: 28px;
    padding: 0;
    width: 100px;
    border-radius: 14px;
    background: #FFF;

}
/* 底部固定栏 qr PC*/
.bottomFixed.pc{
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    height: 60px;
    width: 100%;
    z-index: 9999;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.bottomFixed.pc .center-content{
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    justify-content: center;
}
.bottomFixed.pc img.bottomQr{
    height: 95px;
    width: 95px;
    margin-bottom: 50px;

}
.bottomFixed.pc .free-receive{
    font-size: 30px;
    margin-left:20px;
    line-height: 30px;
}
.bottomFixed.pc .input-number{
    position: relative;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    font-weight: 400;
}
.bottomFixed.pc .input-number input{
    padding-left: 20px;
    border: none;
    font-size: 18px;
    color: #999999;
    height: 40px;
}
.bottomFixed.pc .input-number button{
    background: #FF7200;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 0;
    line-height: 40px;
    padding: 0 15px;
    height: 40px;
}
.bottomFixed.pc div.backTop{
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 70px;
    height: 100%;
    background: #3A3939;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.bottomFixed.pc div.backTop img{
    width: 31px;
    height: 33px;
}
.main2-nav-inner .otherPro img{
    width: 18px;
    margin-left: 5px;
}
.header.stuck .main2-nav-inner li a.otherProSub{
    color: #777;
    display: none;
}
.logo{display: inline-block;}
.main-nav{
    float: right;
}
.container{
    text-align: left;
}
.fourToSixLink:hover,.sixToEightLink:hover,.eightToTenLink:hover,.zhiCustomBtnNot:hover{
    transform: scale(1.05)
}
.zhiCustomBtnNot{
    display: none;
}
/* 冯诺依曼活动 */
.neumann {
    margin-top: 10px;
    padding: 0;
}
.neumann img{
    width: 100%;
    cursor: pointer;
}
/* 课程更全 */
.pc .learnPhase{
    width: calc((100% - 30px)/3);
    height: 590px;
    border: 1px solid #FFECC0;
    box-shadow:0px 2px 6px 0px rgba(255,123,0,0.2);
    border-radius:10px;
    margin-top: 70px;
    margin-bottom: 100px;
}
.mobile .learnPhase{
    height: 590px;
    border: 1px solid #FFECC0;
    box-shadow:0px 2px 6px 0px rgba(255,123,0,0.2);
    border-radius:10px;
    margin-top: 30px;
}
.courseDes.mobile{
    margin-bottom: 20px;
}
.pc .allPhase{
    display: flex;
    justify-content: space-between;
}
.learnPhase .pahse{
    font-size: 22px;
    height: 110px;
    line-height: 110px;
}
.learnPhase .pahse img{
    height: 40px;
    width: 40px;
    margin-left: 110px;
    margin-right: 10px;
}
.learnPhase .courseDetail{
    display: flex;
    height: 80px;
    align-items: center;
    font-size: 14px;
    line-height: 30px;
    
}
.primary .courseDetail:nth-of-type(even){
    background: #FF9100;
    color: #fff;
}
.middle .courseDetail:nth-of-type(even){
    background: #FF7B00;
    color: #fff;
}
.senior .courseDetail:nth-of-type(even){
    background: #FF6600;
    color: #fff;
}
.courseDetail .name{
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 110px;
    font-size: 16px;
}