.main {
    padding-top: 60px;
}

/* 头部导航 */
.navbar-header {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    border-top: 2px solid #fecb16;
}

.navbar-in {
    background: #606161;
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    box-sizing: border-box
}

.logo-head img {
    width: 110px;
}

.logo-btn a, .logo-btn span {
    display: inline-block;
    padding: 5px 4px 0;
}

.logo-btn a img, .logo-btn span img {
    max-width: 38px;
}

.navbar-collapse {
    position: absolute;
    width: 120px;
    right: 0;
    margin-top: 1px;
    display: none
}

.navbar-collapse a {
    display: block;
    text-align: center;
    line-height: 42px;
    background: #606161;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 16px;
}

.navbar-collapse a.active {
    color: #fecb16
}

/* 首页全屏大图样式 */
.ceshi-index {
    display: block;
    height: 100vh;
    background: url(../images/ceshi-index.jpg) no-repeat;
    background-size: 100% 100%;
}

.fixtop {
    position: absolute;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: space-around;
    color: #fff;
    text-align: center
}

.fixtop a {
    font-size: 16px;
    color: #fff;
    width: 33%;
}

.ceshi-index .btn {
    position: absolute;
    bottom: 30px;
    right: 10px;
    /*animation: twinkling 1s infinite linear;
    -ms-animation: twinkling 1s infinite linear;
    -moz-animation: twinkling 1s infinite linear;
    -webkit-animation: twinkling 1s infinite linear;
    -o-animation: twinkling 1s infinite linear;*/
}

@-webkit-keyframes twinkling {
    0% {
        transform: scale(.9);
        -ms-transform: scale(.9); /* IE 9 */
        -moz-transform: scale(.9); /* Firefox */
        -webkit-transform: scale(.9); /* Safari 和 Chrome */
        -o-transform: scale(.9); /* Opera */
        opacity: .5;
    }
    50% {
        transform: scale(1);
        -ms-transform: scale(1); /* IE 9 */
        -moz-transform: scale(1); /* Firefox */
        -webkit-transform: scale(1); /* Safari 和 Chrome */
        -o-transform: scale(1); /* Opera */
        opacity: 1;
    }
    100% {
        transform: scale(.9);
        -ms-transform: scale(.9); /* IE 9 */
        -moz-transform: scale(.9); /* Firefox */
        -webkit-transform: scale(.9); /* Safari 和 Chrome */
        -o-transform: scale(.9); /* Opera */
        opacity: .5;
    }
}

/* 聊天信息样式  */

.wra_top {
    background: #fff;
    padding-top: 5px;
}

.wra_box_txt {
    color: #327b2c;
    position: relative;
    padding: 5px 20px;
    margin: 15px 20px;
    min-height: 50px;
    font-size: 15px;
    line-height: 26px;
}

.wra_box_txt:before {
    content: "";
    width: 40px;
    height: 40px;
    border-top: 1px solid #327b2c;
    border-left: 2px solid #327b2c;
    position: absolute;
    left: 0;
    top: 0;
}

.wra_box_txt:after {
    content: "";
    width: 40px;
    height: 40px;
    border-right: 1px solid #327b2c;
    border-bottom: 2px solid #327b2c;
    position: absolute;
    right: 0;
    bottom: 0;
}

.wdbox {
    padding: 0 10px;
}

.wra_box_img {
    text-align: center;
    margin-top: 20px;
}

.wdbox .wdcon {
    margin-top: -10px;
    padding-bottom: 6px
}

.wdbox .wdcon .box {
    padding-top: 20px;
}

.wdbox .wdcon .box .left {
    float: left
}

.wdbox .wdcon .box .left img {
    max-width: 55px;
    margin: 0 auto;
    display: block
}

.wdbox .wdcon .box .right {
    width: 80%;
    float: left;
    padding: 0 0 0 7px;
    box-sizing: border-box;
}

.wdbox .wdcon .box .right .con {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    padding: 4px 14px;
    position: relative;
    float: left;
    margin: 5px 0 0 10px;
    font-size: 15px;
    line-height: 26px;
}

.wdbox .wdcon .box .right .con .sjx {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 9px solid transparent;
    border-top: 14px solid #fff;
    left: -12px;
    top: 12px;
    transform: rotate(-272deg);
}

.wdbox .wdcon .hzbox {
    padding-top: 20px
}

.wdbox .wdcon .hzbox .left {
    float: right
}

.wdbox .wdcon .hzbox .left img {
    max-width: 60px;
    margin: 0 auto;
    display: block
}

.wdbox .wdcon .hzbox .right {
    width: 80%;
    float: right;
    padding: 0 10px;
    box-sizing: border-box;
}

.wdbox .wdcon .hzbox .right .con {
    border-radius: 10px;
    padding: 8px 14px;
    position: relative;
    background: #a0e75a;
    float: right;
    text-align: center;
    margin: 12px 10px 0 0;
    font-size: 15px;
    line-height: 26px;
}

.wdbox .wdcon .hzbox .right .con .sjx {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #a0e75a;
    right: -12px;
    top: 8px;
    transform: rotate(272deg);
}

.wdfixbom {
    z-index: 1000;
    position: fixed;
    bottom: 0;
    width: 640px;
    background: #f4f4f6;
    border-top: 1px solid #dcdcdc;
    height: 60px;
    box-sizing: border-box;
}

.wdfixbom .btnbox {
    float: left;
    padding: 0 10px;
    box-sizing: border-box
}

.wdfixbom .btnbox button {
    display: block;
    height: 40px;
    border: 1px solid #83d45a;
    margin: 10px auto;
    background: #A0E75A;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 18px
}

.wdfixbom .w100 {
    width: 100%
}

.wdfixbom .w50 {
    width: 50%
}

.wdfixbom .w33 {
    width: 50%
}

.wdfixbom .input-group {
    width: 90%;
    margin: 10px auto;
    background: red
}

.wdfixbom .input-group input {
    float: left;
    width: 70%;
    height: 40px;
    border: 1px solid #d3d3d3;
    background: #f4f4f6;
    border-radius: 10px 0 0 10px;
    padding-left: 10px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box
}

.wdfixbom .input-group .tel {
    float: left;
    width: 30%;
    background: #3F740B;
    color: #fff;
    font-size: 18px;
    border: none;
    height: 40px;
    border-radius: 0 10px 10px 0;
    cursor: pointer
}

.wdfixbom .lsbtn li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #298DD9;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 10px
}

.wdfixbom .lsbtn li {
    display: block;
    width: 90%;
    height: 100%;
    background: #298DD9;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    margin: 10px auto;
    line-height: 40px;
}

/* 关于我们样式 */
.header {
    background: #3b3b3c;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
}

.header .logo {
}

.header .tel {
    color: #fee008;
    font-weight: bold;
    background: url(../images/telico.gif) no-repeat;
    background-size: 24px;
    padding-left: 30px;
    margin-top: 12px;
    font-size: 20px;
}

.about h1 {
    font-size: 20px;
    text-align: center;
    padding: 30px 0;
}

.abTxt {
    padding: 20px 10px;
}

.txtindex {
    text-indent: 2em;
}

.about .xlxm {
    background: url(../images/about3.jpg) no-repeat;
    background-size: cover;
    margin-top: 20px;
    overflow: hidden;
    text-align: center
}

.about .xlxm p {
    padding: 60px 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: bold
}

.about .xlxm ul li {
    float: left;
    width: 33.33%;
    text-align: center;
    padding: 10px 0;
}

.about .xlxm ul li a {
    padding: 6px 0;
    margin: 0 7px;
    color: #fff;
    border: 1px solid #fff;
    display: block
}

.about h2 {
    color: #fba10b;
    font-weight: bold;
    font-size: 18px;
    padding: 0 10px;
}

.footer {
    overflow: hidden;
    padding: 30px 0 60px;
    margin-top: 10px;
    background: #363e49;
    text-align: center;
    font-size: 16px;
}

.footer .h2title {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
}

.footer .h2title span {
    display: block;
}

.footer .h2title .t1 {
    color: #f39a00;
    font-size: 18px;
    padding-bottom: 10px;
}

.footer .h2title .t2 {
    color: #fff;
    font-size: 18px;
}

.footer .list {
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
}

.footer .list a {
    float: left;
    width: 23%;
    height: 30px;
    line-height: 30px;
    border: 1px solid #b4b4b3;
    border-radius: 20px;
    color: #b4b4b3;
    box-sizing: border-box;
    margin: 5px 0 5px 6px;
    overflow: hidden;
    font-size: 14px;
}

.footer .orange-btn {
    display: inline-block;
    width: 86%;
    background: #f39a00;
    line-height: 30px;
    border-radius: 15px;
    text-align: center;
    color: #39424a;
    margin-top: 20px;
}

.footer .bq {
    color: #fff;
    padding-top: 20px;
    font-size: 14px;
}

/* 免费体验课样式 */
.form {
    background: url(../images/bd-bg.png);
    background-size: contain;
    min-height: 130vh;
}

.form h1 {
    padding: 30px 0 20px;
    text-align: center;
    font-size: 26px;
    color: #fff;
}

.form .yy-course {
    padding-top: 20px;
}

/* 全国校区样式 */
.school {
    margin: 0 10px 80px;
}

.school h1 {
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #fba10b;
    padding: 20px 0;
    margin-bottom: 10px;
}

.school {
    background: url(../images/mapbg.jpg) no-repeat center;
    background-size: contain;
}

.school ul li {
    padding: 10px 0;
    overflow: hidden;
}

.school ul li a {
}

.school ul li em {
    float: left;
    padding: 2px 0;
    margin: 2px 6px;
}

.school ul li em:first-child {
    background: #fba10b;
    color: #fff;
    width: 60px;
    text-align: center
}

.school ul li em:last-child {
    float: right;
}

.school ul li em:last-child span {
    color: #fba10b;
    padding-left: 5px;
}

.school .ad {
    margin: 30px auto;
    display: block
}

/* 底部固定咨询窗样式 */
.pubfixbot {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.pubfixbot a {
    width: 50%;
    box-sizing: border-box;
    float: left;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
}

.pubfixbot img {
    width: 30px;
    padding-right: 10px;
}

.pubfixbot span {
    margin: 0 10px;
    display: block;
    width: 100%;
    padding: 5px 0;
    border-radius: 6px;
    line-height: 30px;
}

.pubfixbot .bot-chat span {
    background: #5fc969;
}

.pubfixbot .bot-tel span {
    background: #f24343;
}

.pubfixbot .telico {
    display: inline-block;
    animation: Twinklingico 1.3s infinite linear;
    -ms-animation: Twinklingico 1.3s infinite linear;
    -moz-animation: Twinklingico 1.3s infinite linear;
    -webkit-animation: Twinklingico 1.3s infinite linear;
    -o-animation: Twinklingico 1.3s infinite linear;
}

@-webkit-keyframes Twinklingico {
    0% {
        transform: scale(0.7);
        -ms-transform: scale(0.7); /* IE 9 */
        -moz-transform: scale(0.7); /* Firefox */
        -webkit-transform: scale(0.7); /* Safari 和 Chrome */
        -o-transform: scale(0.7); /* Opera */
    }
    50% {
        transform: scale(1);
        -ms-transform: scale(1); /* IE 9 */
        -moz-transform: scale(1); /* Firefox */
        -webkit-transform: scale(1); /* Safari 和 Chrome */
        -o-transform: scale(1); /* Opera */
    }
    100% {
        transform: scale(0.7);
        -ms-transform: scale(0.7); /* IE 9 */
        -moz-transform: scale(0.7); /* Firefox */
        -webkit-transform: scale(0.7); /* Safari 和 Chrome */
        -o-transform: scale(0.7); /* Opera */
    }
}

/*手机超小屏幕下的单独样式*/
@media (max-width: 375px) {
    .ceshi-index .btn {
        width: 120px;
    }

    .header {
        padding: 10px 5px;
    }

    .header .tel {
        font-size: 18px;
    }
}

@media (max-width: 345px) {
    /* .ceshi-index .btn{bottom: 50px;} */
    .wra_box_txt {
        margin: 8px 20px;
    }

    .wra_box_txt {
        font-size: 14px;
        line-height: 22px;
    }

    .wdbox .wdcon .box .right .con, .wdbox .wdcon .hzbox .right .con {
        font-size: 13px;
        line-height: 22px;
    }

    .wdbox .wdcon .box, .wdbox .wdcon .hzbox {
        padding-top: 10px
    }

    .wdfixbom .btnbox button {
        font-size: 16px;
    }
}

@media (min-width: 375px) and (max-width: 561px) {
    .ceshi-index .btn {
        width: 160px;
    }
}

@media (min-width: 562px) {

}

