/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --thm-font: " 微软雅黑", sans-serif;
    --heading-font: "Rubik", serif;
    --thm-color: #798490;
    --thm-color-rgb: 121, 132, 144;
    --thm-base: #ae0b2a;

    --thm-base-rgb: 0, 143, 213;
    --thm-primary: #ae0b2a;
    --thm-primary-rgb: 0, 74, 161;
    --thm-secondary: #ed4b4b;
    --thm-secondary-rgb: 237, 75, 75;
    --thm-special: #5366c2;
    --thm-special-rgb: 83, 102, 194;
    --thm-black: #000000;
    --thm-black1: #0c2139;
    --thm-black-rgb: 12, 33, 57;

    --thm-black2: #1d1c1c;
    --thm-black2-rgb: 29, 28, 28;
    --thm-text-dark: #8e96a0;
    --thm-text-dark-rgb: 142, 150, 160;
}

.page-wrapper {
    width: 100%;
    /*保证footer是相对于container位置绝对定位*/
    position:relative;
    width:100%;
    min-height:100%;
    /*设置padding-bottom值大于等于footer的height值，以保证main的内容能够全部显示出来而不被footer遮盖；*/
    padding-bottom: 300px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
   .page-wrapper {
    width: 100%;
    /*保证footer是相对于container位置绝对定位*/
    position:relative;
    width:100%;
    min-height:100%;
    /*设置padding-bottom值大于等于footer的height值，以保证main的内容能够全部显示出来而不被footer遮盖；*/
    padding-bottom: 530px;
    box-sizing: border-box;
}
}



html,
body {
    height: 100%;
    width: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "微软雅黑", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    background-color: whitesmoke;
}
a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #000;
}
a:hover,
a:focus {
    color: #000;
    text-decoration: none
}
hr {
    max-width: 100px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, 0.1);
}
hr.light {
    border-color: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: 1px;
}
p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}




section {
    padding: 100px 0;
}
section h2 {
    font-size: 50px;
}


/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-menu .container {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 1300px!important;
}

.main-menu,
.stricky-header {
    /* after third level no menu */
    background-color: #fff;
    box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -o-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -ms-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list,
.stricky-header .main-menu__list {
    margin-left: auto;
    border-right: 1px solid #e6eaef;
    padding-right: 30px;
    margin-right: 30px;
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
    padding-top: 14px;
    padding-bottom: 14px;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 15px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-family: var(--thm-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--thm-color);
    transition: 500ms;
    position: relative;
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 4px;
    background-color: var(--thm-base);
    transform: scale(0, 1);
    transform-origin: left center;
    transition: transform 500ms ease;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
    color: var(--thm-black);
    text-shadow: 0px 0 0 currentColor;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
    transform-origin: right center;
    transform: scale(1, 1);
}

.main-menu .main-menu__list li.search-btn,
.stricky-header .main-menu__list li.search-btn {
    margin-left: 30px;
}

.main-menu .main-menu__list li.search-btn a::before,
.stricky-header .main-menu__list li.search-btn a::before {
    display: none;
}

.main-menu .main-menu__list li.search-btn i,
.stricky-header .main-menu__list li.search-btn i {
    font-size: 22px;
}

.main-menu .main-menu__list li.cart-btn a,
.stricky-header .main-menu__list li.cart-btn a {
    position: relative;
}

.main-menu .main-menu__list li.cart-btn span,
.stricky-header .main-menu__list li.cart-btn span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-family: var(--thm-font);
    background-color: var(--thm-primary);
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translateX(50%);
    transition: background-color 500ms, color 500ms;
}

.main-menu .main-menu__list li.cart-btn:hover span,
.stricky-header .main-menu__list li.cart-btn:hover span {
    background-color: #fff;
    color: var(--thm-black);
}

.main-menu .main-menu__list li.cart-btn i,
.stricky-header .main-menu__list li.cart-btn i {
    font-size: 23px;
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover > ul,
.stricky-header .main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li + li,
.stricky-header .main-menu__list li ul li + li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.main-menu .main-menu__list li ul li:last-child > a,
.stricky-header .main-menu__list li ul li:last-child > a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.main-menu .main-menu__list li ul li:hover > a,
.stricky-header .main-menu__list li ul li:hover > a {
    background-color: var(--thm-primary);
    color: #fff;
}

.main-menu .main-menu__list li ul li > ul,
.stricky-header .main-menu__list li ul li > ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li > ul ul,
.stricky-header .main-menu__list li ul li > ul ul {
    display: none;
}

.main-header__info {
    display: flex;
    align-items: flex-start;
}

.main-header__info-phone {
    margin-left: 30px;
}

.main-header__info-phone > i {
    font-size: 32px;
    color: var(--thm-base);
}

.main-header__info-phone > a {
    font-size: 18px;
    color: var(--thm-black);
}

.main-header__info-phone-content {
    margin-left: 20px;
}

.main-header__info-phone-content span {
    display: block;
    color: var(--thm-color);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 7px;
}

.main-header__info-phone-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    color: var(--thm-black);
}

.main-header__info-phone-content h3 a {
    color: inherit;
    transition: all 500ms ease;
}

.main-header__info-phone-content h3 a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
    transition: 500ms;
    display: block;
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-primary);
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    transform: translateY(-110%);
    transition: transform 500ms ease;
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none;
    }
}

.stricky-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
}

.topbar {
    background-color: #eff2f6;
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar__left > a {
    font-size: 12px;
    font-weight: 500;
    color: var(--thm-color);
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}

.topbar__left > a:hover {
    color: var(--thm-base);
}

.topbar__left > a:not(:last-of-type)::after {
    content: '/';
    margin-left: 10px;
    margin-right: 10px;
}

.topbar__social {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: 30px;
}

.topbar__social a {
    color: var(--thm-black);
    font-size: 12px;
    transition: all 500ms ease;
    display: flex;
    line-height: 38px;
}

.topbar__social a:hover {
    color: var(--thm-primary);
}

.topbar__social a + a {
    margin-left: 24px;
}

.topbar__right {
    display: flex;
    align-items: center;
}

.topbar__right > a {
    color: var(--thm-color);
    font-size: 12px;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.topbar__right > a + a {
    margin-left: 30px;
}

.topbar__right > a > i {
    font-size: 14px;
    color: var(--thm-base);
    transition: all 500ms ease;
    margin-right: 10px;
}

.topbar__right > a:hover {
    color: var(--thm-base);
}

.topbar__right > a:hover > i {
    color: var(--thm-black);
}

.main-menu__two {
    background-color: #0c2139;
}

.main-menu__two .main-menu__list {
    border-right-color: rgba(255, 255, 255, 0.1);
}

.main-menu__two .main-menu__list > li > a {
    color: var(--thm-text-dark);
}

.main-menu__two .main-menu__list > li.current > a, .main-menu__two .main-menu__list > li:hover > a {
    color: #fff;
}

.main-menu__two .main-header__info-phone-content span {
    color: var(--thm-text-dark);
}

.main-menu__two .main-header__info-phone-content h3 {
    color: #fff;
}

.main-menu__two .mobile-nav__toggler {
    color: var(--thm-text-dark);
}

.main-menu .logo-box {
    display: flex;
    align-items: center;

}

@media (max-width: 425px) {
    .main-menu .logo-box {
        width: 100%;
        justify-content: space-between;
    }

    .main-menu .container {
        width: 100%!important;
    }
}

@media (max-width: 1199px) {
    .main-menu .logo-box .mobile-nav__toggler {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .main-menu .main-header__info {
        margin-left: auto;
    }
}

@media (max-width: 425px) {
    .main-menu .main-header__info {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(0, 1);
    transform-origin: left center;
    transition: transform 500ms ease;
    z-index: 999;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    transform: scale(1, 1);
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.8;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--thm-black2);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 30px;
    right: 15px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list ul li a {
    padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #fff;
    font-size: 18px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: #ffffff;
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--thm-black);
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: var(--thm-black);
    color: #fff;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__language {
    display: flex;
    align-items: center;
}

.mobile-nav__language img {
    border-radius: 50%;
    margin-right: 10px;
}

.mobile-nav__language .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 70px;
}

.mobile-nav__language .bootstrap-select > .dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none;
    color: #fff;
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: #fff;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 10px;
}

.mobile-nav__social a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 60px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li + li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: inherit;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact li > i {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .logo-box {
    display: none;
}

.mobile-nav__

.main-header__info {
    display: none;
}

.container{
    width:1300px!important;
}



/* Footer */
@media (min-width: 576px) {
    .collapse.dont-collapse-sm {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }
}





footer {
    background-color:#003366;
    padding: 40px 0;
    color: rgba(255, 255, 255, 1);
    margin-top: 80px;
    height: 240px;
    background: url("../images/footer_bg.png") bottom center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    width:100%;
    position:absolute;
    bottom:0px;
    left:0px;

}

footer h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-size: 1.125rem;
}
@media (max-width: 575px) {
    footer h3 {
        font-size: 13px;
        font-size: 0.8125rem;
        cursor: pointer;
        border-bottom: 1px solid #ededed;
        padding: 12px 0;
        display: block;
    }
    footer h3:after {
        font-family: 'themify';
        content: "\e61a";
        width: 20px;
        display: block;
        float: right;
    }
    footer h3.opened:after {
        content: "\e622";
    }
	
	
    footer .info {
        padding: 15px;
    }

    footer .info .col-md-4 {
        padding: 0 15px;
    }


    footer {
      
    color: rgba(255, 255, 255, 1);
    height: 500px;
     background: #26205c;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 40px;
    width:100%;
    position:absolute;
    bottom:0px;
    left:0px;
    }

    footer .info .col-md-8 {
        padding: 0 15px 190px;
    }

    footer .info .col-md-8 .rwm {
        right: 50%;
        margin-right: -65px;
        bottom: 0;
        top: auto;
    }

    footer .info .col-md-5 {
        padding-left: 15px;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    footer .info .col-md-4 .copyright {
        line-height: 36px;
    }

}
@media (max-width: 575px) {
    footer h3 {
        font-size: 16px;
        font-size: 1rem;
        margin: 0;
    }
}
@media (max-width: 575px) {
    footer hr {
        display: none;
    }
}
@media (max-width: 575px) {
    footer ul {
        padding-top: 15px;
    }
}
footer ul li {
    margin-bottom: 5px;
}
footer ul li a {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    position: relative;
    color: #fff;
}
footer ul li a:hover {
    color: #004dda;
    opacity: 1;
}
footer ul li a i {
    margin-right: 10px;
    color: #fff;
}
footer ul.links li a:hover {
    -webkit-transform: translate(5px, 0);
    -moz-transform: translate(5px, 0);
    -ms-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    transform: translate(5px, 0);
}
footer ul.links li a:hover:after {
    opacity: 1;
    color: #004dda;
}
footer ul.links li a:after {
    font-family: 'ElegantIcons';
    content: "\24";
    position: absolute;
    margin-left: 5px;
    top: 1px;
    opacity: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
footer ul.contacts li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}
footer ul.contacts li:last-child {
    margin-bottom: 0;
}
footer ul.contacts li i {
    position: absolute;
    top: 0;
    left: 0;
    color: #004dda;
    line-height: 1;
    font-size: 18px;
    font-size: 1.125rem;
}
@media (max-width: 575px) {
    footer #newsletter {
        padding-top: 15px;
    }
}

/**底部**/

.footer {

}

footer .info {
    color: #fff;
}
footer .info h5 {
    line-height: 26px;
    margin: 10px 0 10px;
    font-size: 16px;
    font-weight: 600;
}

footer .info ul li {
    height: 25px;
    line-height: 30px;
}

footer .info ul li a {
    color: #fff;
    display: block;
}



footer .info .col-md-4 .copyright {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 138px;
    opacity: .8;
}


.bg-primary {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
}
.text-primary {
    color: #fdcc52;
}
.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}
.btn-outline {
    color: white;
    border-color: white;
    border: 1px solid;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
    color: white;
    background-color: #fdcc52;
    border-color: #fdcc52;
}
.btn {
    text-transform: uppercase;
    letter-spacing: 2px;

}
.btn-xl {
    margin-top:20px;
    padding: 10px 45px;
    font-size: 14px;
}


/*****院系分类*******/
.main_title_2 {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.main_title_2 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
  margin: auto;
}
.main_title_2 span em {
  width: 60px;
  height: 2px;
  background-color: #004dda;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .main_title_2 {
    margin-bottom: 10px;
  }
}
.main_title_2 h2 {
  margin: 25px 0 0 0;
    font-size: 30px;
}
@media (max-width: 767px) {
  .main_title_2 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.main_title_2 p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .main_title_2 p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}


a.box_cat_home {
    background-color: #fff;
    display: block;
    padding: 25px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    color: #999;
}
a.box_cat_home i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    font-size: 1.125rem;
    color: #000000;
    opacity: 0;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
a.box_cat_home h3 {
    font-size: 18px;
    margin-top: 10px;
    height: 50px;
    color:#000;
}
a.box_cat_home:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
a.box_cat_home:hover i {
    opacity: 1;
}
a.box_cat_home ul {
    margin: 20px -15px -25px -15px;
    padding: 10px;
    border-top: 1px solid #ededed;
    text-align: center;
}
a.box_cat_home ul li {
    display: inline-block;
}
a.box_cat_home ul li strong {
    margin-right: 5px;
    font-weight: 600;
    color: #777;
}

/****教师CSS****/
.tutor{
    background: #fff;
    border-radius: 5px;
	width:100% !important;

}
.tutor:hover{
    box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -o-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
    -ms-box-shadow: 0 8px 12px 0px rgba(0,0,0,0.06);
}
.tutor h2 a{
    font-size:25px;
    font-weight: 600;
}
.tutor .author-img {
    width: 150px;
    height: 200px;
    float: left;
    background-size: cover;
}

.tutor p{
    font-size:14px;
}

.tutor a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #000;
}
.tutor a:hover,
.tutor a:focus {
    color: #000;
    text-underline: none;
}

@media (max-width: 767px) {
.container{
    width:100%!important;
}
 .tutor .author-img {
    width: 90px;
    height: 120px;
    float: left;
    background-size: cover;
}
.tutor h2{
	margin-top:0px !important; 
}
.tutor h2 small{
display:inline-block !important;
width:100%;
margin-left:0px !important;
}
}