<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.course-list{
    width: 100%;
    display: inline-block;
    height: 180px;
}
.course-list li a{
    display: inline-block;
    margin: 20px 0;
    border: solid 4px #a294c8 ;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 20px 15px;
    border-radius: 20px;
    position: relative;
    background-color: #FFF;
}
.course-list li a:hover .pic:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.course-list li a:hover .name {
    color: #a294c8;
}
.course-list li a:hover .description {
    color:  #000;
}
.pic{
    float: right;
    display: block;
    max-width: 270px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}
.pic:before{
    content: '';
    display: block;
    background: url(../images/course/wrap.png) no-repeat;
    width: 277px;
    height: 180px;
    position: absolute;
    left: -200px;
    top: 0;
    z-index: 1;
    
}
.description{
    float: left;
    width: calc(100% - 280px);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-left: 20px;
    font-size: 15px;
    color: #4d4d4d;
    font-weight: 100;
    max-height: 140px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.names {
	width: 100%;
    font-size: 23px;
    color: #444;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-bottom: 8px;
    padding-top: 10px;
    margin-bottom: 10px;
    max-height: 45px;
    overflow: hidden;
}

.form-wrap{
    margin-top: 150px;
    padding-bottom: 50px;
}
.btn-box.course-sent {
    padding-top: 0px;
}

.course-form-title{
    text-align: center;
    width: 100%;
    font-size: 30px;
    display: inline-block;
    position: relative;
    margin-top: 120px;
    padding-top: 20px;
}
.course-form-title:before{
    content: '';
    display: block;
    background: url(../images/course/form_title.png) no-repeat;
    width: 527px;
    height: 196px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -200px;
    position: absolute;
}


</pre></body></html>