.hover_shaow {
    transition: box-shadow 0.5s;
    -moz-transition: -moz-box-shadow 0.5s; /* Firefox 4 */
    -webkit-transition: -webkit-box-shadow 0.5s; /* Safari and Chrome */

    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hover_shaow:hover {
    -moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

#nav {
    height: 70px;
    width: 100%;
    background: #007B2B;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

#nav > * {
    width: 1200px;
    height: 100%;
    margin: auto;
}

#nav a {
    color: white;
    background: #007B2B;
    line-height: 70px;
}

#nav a:hover, #nav a.active {
    color: #007B2B;
    background: white;
}

body {
    padding-top: 70px;
    max-width: 1920px;
    margin: auto;
}

#banner {
    height: 550px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#banner_nav > * {
    width: 15px;
    height: 15px;
    margin: 0 10px;
}

#edus_content {
    width: 100%;
}

#edus {
    margin: auto;
    width: 1200px;
    overflow: hidden;
    padding: 10px 0;
}

#edus > * {
    width: 190px;
    height: 295px;
    float: left;
    margin: 5px;
    position: relative;
    transition: all 0.5s;
}

#edus > *:hover {
    transform: translateY(-5px);
}

#edus > *:hover:before {
    content: "\f01d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    font-size: 60px;
    top: 0;
    left: 0;
    color: white;
    line-height: 190px;
    text-align: center;
    width: 190px;
    height: 190px;
    background: rgba(50, 172, 55, 0.5);
    border-radius: 10px;
}

#edus > * > img {
    width: 190px;
    height: 190px;
}

#edus > * > p {
    margin: 5px 10px;
    margin-bottom: 10px;
    position: relative;
}

#edus > * > p:first-of-type {
    margin: 0 10px;
    line-height: 45px;
}

#edus > *:hover > p {
    color: #32AC37;
}

#edus > * > p:first-of-type:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    background: black;
    bottom: 0;
    left: 0;
}

#edus > *:hover > p:first-of-type:after {
    background: #32AC37;
}

.module_title_1, .module_title_2 {
    margin: auto;
    padding-top: 35px;
    padding-bottom: 20px;
    padding-left: 10px;
    height: 100px;
    position: relative;
    width: 1200px;
}

.module_title_1:before, .module_title_2:before {
    content: "";
    width: 3px;
    height: 45px;
    position: absolute;
    top: 35px;
    left: 0;
    background: #32AC37;
}

.module_title_1 > h3, .module_title_2 > h3 {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    color: #32AC37;
}

.module_title_1 > p, .module_title_2 > p {
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    color: #9F9F9F;
    letter-spacing: 1px;
}

.module_title_2:before {
    background: white;
}

.module_title_2 > h3, .module_title_2 > p {
    color: white;
}

#edus_logo {
    width: 100%;
    background-image: url("/resources/img/extensionPage/good_edu_cn_bg1.jpg");
    color: white;
}

#edus_logo_desc {
    width: 1200px;
    margin: auto;
}

#edus_logo_desc > p {
    font-size: 16px;
    line-height: 25px;
}


#logs {
    width: 1200px;
    margin: auto;
    padding: 100px 0;
    overflow: hidden;
}

#logs > * {
    float: left;
    width: 600px;
}

#logs .line_4 {
    width: 600px;
}

#logs .line_3 {
    width: 450px;
    margin: auto;
}

#logs .img_block {
    float: left;
    width: 150px;
    height: 75px;
    position: relative;
}

#logs .img_block > img {
    width: 100px;
    height: 100px;
    background: white;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.25s;
}

#logs .img_block > img:hover {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
}

#curriculum_select, #curriculum_content {
    width: 1200px;
    margin: auto;
}

#curriculum_select > * {
    border: 0;
    background: none;
    font-size: 19px;
    padding: 10px 30px;
    border-radius: 3px;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    color: #535353;
}

#curriculum_select > *.active {
    font-weight: bold;
    color: #32AC37;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#curriculum_content > * {
    display: none;
    padding: 20px 0;
    overflow: hidden;
}

#curriculum_content > *.active {
    display: block;
}

#curriculum_content > * > * {
    float: left;
    width: 190px;
    margin: 5px;
}

#curriculum_content > * > * > img {
    width: 190px;
    height: 114px;;
}

#curriculum_content > * > * > p {
    padding: 5px;
    margin: 0;
}

#curriculum_content > * > * > p:last-of-type {
    padding-top: 0;
    font-size: 13px;
}

#examination_skills_content {
    width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

#examination_skills_content > * {
    float: left;
    width: 190px;
    height: 286px;
    margin: 5px;
    transition: all 0.5s;
    text-align: center;
    position: relative;
}

#examination_skills_content > * * {
    transition: all 0.5s;
}

#examination_skills_content > * > P:first-of-type {
    margin: 0;
    padding: 5px;
}

#examination_skills_content > * > P:last-of-type {
    border: 1.5px solid #535353;
    display: inline-block;
    padding: 2px 10px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    font-size: 13px;
}

#examination_skills_content > *:hover > P {
    color: #32AC37;
    border-color: #32AC37;
}

#curriculum_videos {
    background-image: url("/resources/img/extensionPage/good_edu_cn_bg2.jpg");
    height: 600px;
}

#curriculum_videos_swiper {
    height: 500px;
    padding: 50px 0;
    width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

#curriculum_videos_swiper .swiper-slide {
    transform: scale(0.7);
    opacity: 0;
    z-index: 997;
    transition: 300ms;
    position: relative;
}

#curriculum_videos_swiper .swiper-slide > p {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 100%;
}

#curriculum_videos_swiper .prev_2, #curriculum_videos_swiper .next_2 {
    transform: scale(0.7);
    z-index: 998;
    opacity: 1;
}

#curriculum_videos_swiper .swiper-slide-active {
    transform: scale(1);
    z-index: 1000;
    opacity: 1;
}

#curriculum_videos_swiper .swiper-slide-prev, #curriculum_videos_swiper .swiper-slide-next {
    transform: scale(0.85);
    z-index: 999;
    opacity: 1;
}

#news_content {
    margin: auto;
    padding: 20px 0;
    overflow: hidden;
    height: 490px;
    width: 1200px;
}

#news_content > * {
    width: 570px;
    float: left;
    margin: 0 15px;
}

#news_content #news_content_ifream_block {
    width: 580px;
    height: 350px;
    display: block;
}

#news_content_ifream_block > * {
    width: 100%;
    height: 100%;
}

.news_model {
    margin-top: 5px;
    height: 45px;
    border-bottom: 1px solid #9F9F9F;
    transition: all 0.5s;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.news_model > p {
    padding-right: 12px;
}

.news_model > i {
    width: 65px;
    text-align: center;
    flex-basis: auto;
    flex-grow: 0;
}

#footer {
    color: white;
    background: #333333;
    height: 90px;
    text-align: center;
    padding: 5px 0;
}

#footer > p:first-of-type > a {
    padding: 0 20px;
    position: relative;
}

#footer > p {
    margin: 10px 0;
}


#footer > p:first-of-type > a:after {
    content: "";
    width: 2px;
    height: 18px;
    background: white;
    right: -1px;
    top: 2px;
    position: absolute;
}

#footer > p:first-of-type > a:last-of-type:after {
    width: 0;
}

#footer a {
    color: white;
}

#footer a:hover {
    color: #32AC37;
}