@screen-sm-min: 1025px;
@baseColor: #fc2313;

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position {
  position: absolute;
  top: 0;
  left: 0;
}
ul{
    list-style: none;
}

.tuition{
    padding: 70px 0 100px 0;
    background: url('../images/course-bj.png') no-repeat center center;
    background-size: cover;
    table{
       margin-top: 50px; 
       text-align: left;
       border-radius: 8px;
       overflow: hidden;
    //    border-collapse: collapse;
    //    border: 1px solid #E2E3E3;
       thead{
            td{
                padding: 12px 40px 9px 40px;
                background: #224AF4;
                color: #FFF;
                font-weight: bold;
                font-size: 18px;
                &:first-child{
                    border-radius: 8px 0 0 0 ;
                }
                &:last-child{
                    border-radius: 0 8px 0 0 ;
                }
            }
       }
       tbody{
           tr{
               td{
                  padding: 13px 40px 12px 40px;
                  background: #F0F2FD; 
                  color: #333;
                   &:first-child{
                         border-left: 1px solid #E6E6E6;
                    }
                    &:last-child{
                         border-right: 1px solid #E6E6E6;
                    }
                }
                &:nth-child(odd){
                    td{
                        background: #fff;
                    }
                }
                &:last-child{
                    td{
                       border-bottom: 1px solid #E6E6E6;
                       &:first-child{
                           border-radius: 0 0 0 8px;
                       }
                       &:last-child{
                           border-radius: 0 0 8px 0;
                       }
                   }
               }

           }
       }
    }

}


.contact-us{
    padding: 32px 0;
    background: url('../images/sign-bj.png') no-repeat center center;
    background-size: cover;
    .contact{
        display: flex;
        justify-content: space-between;
    }
    .contact-box{
        text-align: left;
        .contact-text{
            font-size: 23px;
            line-height: 31px;
            font-family: Avenir-Heavy, Avenir;
            font-weight: bold;
            color: #111111;
        }
        .contact-text1{
            font-size: 18px;
            line-height: 25px;
            color: #666;
            margin-top: 18px;
        }
        .contact-btn{
            display: block;
            width: 100px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background: #DE3899;
            border-radius: 20px;
            margin-top: 37px;
            position: relative;
            img{
                position: absolute;
                left: -20px;
                top: -215px;
                display: none;
            }
            &:hover{
                img{
                    display: block;
                }
            }
        }
    }
}