﻿.container-grid{
    display: grid;
    grid-template-columns: 1fr 1200px 1fr;
    grid-template-rows: 89px 50px 274px 619px 68px;
    -ms-grid-columns: 1fr 1200px 1fr;
    -ms-grid-rows: 89px 50px 260px 613px 68px;
}

.banner-grid{
    grid-area: 1/1/4/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    background: url(../images/banner.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.header-grid{
    grid-area: 1/2/2/3;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
}

.header-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.logo{
    margin-left: 10px;
    margin-top: 13px;
}

.header-title{
    margin-top: 33px;
    font-size: 25px;
	font-weight: bold;
	letter-spacing: 3px;
	color: #ffffff;
}

.nav-grid{
    grid-area: 2/1/3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
    background-color: #112eae;
}

.bg-grid{
    grid-area: 4/1/6/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    background: #f7f9ff;
}

.main-grid{
    grid-area: 4/2/5/3;
    -ms-grid-column: 2;
    -ms-grid-row: 4;
}

.quick-wrap{
    margin-top: -46px;
    height: 127px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	        box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	border-radius: 10px;
}

.quick-list{
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.quick-list li{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.quick-list li:nth-child(1){
    width: 215px;
    border-right: 1px solid #eaeef7;
}

.quick-list li:nth-child(2){
    width: 245px;
    border-right: 1px solid #eaeef7;
}

.quick-list li:nth-child(3){
    width: 276px;
    border-right: 1px solid #eaeef7;
}

.quick-list li:nth-child(4){
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.quick-list li a{
    height: 103px;
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.quick-list li:last-child a{
    height: auto;
    width: auto;
}

.quick-list li:nth-child(1) a img{
    margin-left: 18px;
    margin-right: 16px;
}

.quick-list li:nth-child(2) a img{
    margin-left: 18px;
    margin-right: 16px;
}

.quick-list li:nth-child(3) a img{
    margin-left: 18px;
    margin-right: 16px;
}

.quick-list li:nth-child(4) .box{
    width: 403px;
    height: 87px;
    overflow: hidden;
    border-radius: 10px;
}

.quick-list li:nth-child(4) .box img{
    width: 403px;
    height: 87px;
    border-radius: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.quick-list li:nth-child(4) .box img:hover{
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
}

.quick-list li a span{
    font-size: 19px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #2345dc;
}

.quick-list li:hover a{
    background-color: rgba(35, 69, 220, 0.1);
    border-radius: 6px;
}

.course-info-wrap{
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.info-right{
    width: 462px;
	height: 508px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	        box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	border-radius: 10px;
}

.title-temp-wrap{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.title-info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.title-icon{
    width: 8px;
	height: 24px;
	background-color: #f9c708;
	border-radius: 0px 4px 4px 0px;
    margin-right: 9px;
}

.title-name{
    font-size: 19px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #2345dc;
}

.more-btn{
    display: block;
    margin-right: 16px;
}

.more-btn:hover img{
    content: url(../images/more-h.png);
}

.info-right .title-temp-wrap{
    margin-top: 17px;
}

.teacher-img,.teacher-img img{
    margin: 0 auto;
    width: 430px;
	height: 166px;
	border-radius: 10px;
}

.teacher-img{
    margin-top: 14px;
}

.teacher-resume{
    margin-top: 13px;
    padding: 0 16px;
    font-size: 14px;
    text-align: justify;
    line-height: 30px;
	color: #333333;
}

.info-left-top{
    width: 708px;
	height: 229px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	        box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	border-radius: 10px;
}

.info-left-top .title-temp-wrap{
    margin-top: 17px;
}

.info-left-top>p{
    margin-left: 16px;
    margin-right: 29px;
    text-align: justify;
    font-size: 14px;
	line-height: 30px;
	color: #333333;
}

.info-left-top>p:nth-of-type(1){
    margin-top: 8px;
}

.info-left-bottom{
    margin-top: 30px;
    width: 708px;
	height: 249px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	        box-shadow: 0px 4px 4px 0px 
		rgba(186, 194, 216, 0.3);
	border-radius: 10px;
}

.info-left-bottom .title-temp-wrap{
    margin-top: 15px;
}

.ablum-wrap{
    margin: 0 16px;
    margin-top: 20px;
}

.bd{
    overflow: hidden;
}

.bd ul li{
    float: left;
    margin-right: 20px;
}

.bd ul li a{
    display: block;
	width: 202px;
}

.bd ul li a .img-box{
    width: 202px;
	height: 141px;
	border-radius: 4px;
    overflow: hidden;
}

.bd ul li a .img-box img{
    width: 202px;
	height: 141px;
	border-radius: 4px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.bd ul li a .img-box img:hover{
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
}

.bd ul li a span{
	display: block;
	margin-top: 8px;
	text-align: center;
	line-height: 23px;
}

.footer{
    grid-area: 5/2/6/3;
    -ms-grid-column: 2;
    -ms-grid-row: 5;
}

.footer p{
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
	letter-spacing: 2px;
	color: #333333;
}