@charset "utf-8";
/*--------------------------------------------------------------
# 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;
}


* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: "微软雅黑" !important;
    font-size: 14px;
    height: 100%;
    baclground-color:whitesmoke;
}

a,
a:hover {
    text-decoration: none !important;
    outline: none;
    font-family: "微软雅黑";
}

.how1 {
    position: relative;
}
.how1-child1 {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: rgba(0,0,0,0.7);
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    background: -o-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    background: -moz-linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    background: linear-gradient(bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}
.how1:hover .how1-child1 {
    opacity: 0.3;
}

.how1-child2 {
    z-index: 3;
}



/*--------------------------------------------------------------
# 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: 20px;
}

.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{
    position:fixed;
    top:0px;
    width:100%;
    z-index:100;
}

.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__container .main-header__info {
    display: none;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.b {
    border: solid 1px #cccccc;
}

.b-t {
    border-top: solid 1px #cccccc;
}

.b-b {
    border-bottom: solid 1px #cccccc;
}

.b-l {
    border-left: solid 1px #cccccc;
}

.b-r {
    border-right: solid 1px #cccccc;
}

.r-5 {
    border-radius: 5px;
}

.r-10 {
    border-radius: 10px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-l-10{
    margin-left: 10px;
}

.p-r-5 {
    padding-right: 5px !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.common_width {
    width: 1300px;
    margin: 0 auto;
}

.common_width_1 {
    width: 1200px;
    margin: 0 auto;
}


.bg-white {
    background-color: white;
}


body ul,
body p {
    margin: 0;
}

ul > li {
    list-style-type: none;
}

img {
    border: none;
    outline: none;
}

input {
    outline: none;
    border: 0;
    font-family: "微软雅黑";
    background: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

/*清除苹果按钮样式*/
.btn:focus {
    outline: none !important;
}

@font-face {
    font-family: "KabelCBook";
    src: url(KabelC-Book.otf);
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
}

/*------LESS------*/
.bd_weixin_popup {
    box-sizing: content-box;
}


.no-padder {
    padding: 0px !important;
}

.boxshadow {
    box-shadow: 5px 5px 5px rgba(204, 204, 204, 0.3);
}


.bg-whitesmoke {
    background-color: whitesmoke;
}

.wrapper-sm {
    padding: 10px;
}

.wrapper-xs {
    padding: 5px;
}

.wrapper-md {
    padding: 20px;
}

.main .wrapper-lg {
    padding: 30px;
}

.bottom25 {
    margin-bottom: 25px;
}

.p-r-30 {
    padding-right: 60px;
}



/****首页布局*****/
.main .item1 {
    padding-top: 48px;
    padding-bottom:48px;
    /*background-image: url("../images/cn_ruc_bg.png");*/
    background-size: cover;
}
.main .item1  .item_left{
    width: 810px;
    float: left;
}

.main .item1  .item_right{
    width: 470px;
    float: right;
    padding-left: 20px;
}

.search_warp{
    z-index:200;
    position: absolute ;
    top:70px;
    right:0px;
    width:300px
}


.main  .news-wrap .news_left{
    width: 45%!important;
    float: left;
    padding-right: 35px;
}

.main .news-wrap  .news_right{
    width: 55%!important;
    float: right;
}



/***图文效果*/
.media-item .media-title {

    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/

}

.media-item .media-title a {
    color: #000000;
    font-size: 18px;
    line-height: 28px;
}
.media-item .media-title a:hover {
    color:#2e3941;
}
.media-item .media-desc {
    color: #333333;
    font-size: 14px;
    margin-top: 10px;
    height: 50px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-item .media-link {
    margin-top: 20px;
}

.media-item .media-link a {
    color: #ae0b2a;
    font-weight: 600;
}

.media-item .img-bg {
    height: 180px;
    background-size: cover;
}


/*****header navigation*****/

.header {
    z-index: 100;
    width: 100%;
    text-align: center;
    position:fixed;
    top:0px;
    padding-top: 20px;
    padding-bottom:20px;
    margin-bottom: 0px !important;
}

.header a.logo {
    width: 400px !important;
    display: block;
    float: left;
    height: 60px;
    background: url(../images/cn_ruc_logo.png) no-repeat left top;
    background-size: 90%;
}

.header .search a {
    font-size:16px;
    margin-top:-3px
}

.header .nav_english a {
    font-size:16px;
    font-weight:bold;
    margin-left: 15px;
    margin-top:-3px;
    color:#ae0b2a!important;
}

/*
.header .nav {
    height: 100px;
    padding-top: 20px;
    padding-left: 60px;
    float: left;
}

.header .nav > li {
    height: 48px;
    text-align: center;
    float: left;
    line-height: 48px;
}

.header .nav > li a {
    display: block;
    height: 48px;
    padding: 5px 10px;
    transition: all 0.5s ease 0.2s;
}

.header .nav > li a span {
    display: none;
    line-height: 18px;
    font-size: 12px;
    color: #000;
    transition: all 0.3s ease 0.2s;
}

.header .nav > li a span.cn {
    line-height: 48px;
    font-size: 18px;
    height: 48px;
    display: block;
    font-weight: lighter;
}

.header .nav > li:hover > a,
.header .nav > li.active > a {
    background-color: transparent;
}

.header .nav > li:hover a span,
.header .nav > li.active a span {
    color: #000000;
}

.header .nav > li + li {
    margin-left: 12px;
}

.header .nav > li > ul {
    display: none;
    font-size: 16px;
    background-color: #ffffff;
    position: absolute;
    z-index: 222;
    border: solid 1px #cccccc;
    max-width: 120px;

}

.header .nav > li > ul > li {
    line-height: 40px;
    height: 40px;
    max-width: 130px;
}

.header .nav > li > ul > li > a {
    height: 30px;
    color: #000;
}

.header form {
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 55px;
    margin-top: 28px;
}

.header form input[type="submit"] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url(../images/search.png) no-repeat center;
    margin-top: 8px;
    margin-left: 10px;
}

.header form input[type="text"] {
    width: 0;
    height: 40px;
    transition: all 0.3s ease 0.2s;
    background-color: white;
    border-radius: 5px;
    border: solid 1px #cccccc;
}

.header form input {
    float: left;
}

.header form:hover input[type="text"] {
    width: 140px;
    padding: 0 12px;
}*/

/******幻灯片*****/
.slide {
   height:700px;
 
    width: 100%;
    margin-top:70px;
}

.slide .swiper-container {
    height: 100%;
}


.slide .swiper-container a {
    display: block;
    height: 100%;
    position: relative;
}

.slide .swiper-container .swiper-pagination_shell {
    position: absolute;
    height: 8px;
    bottom: 60px;
    right: 0;
    left:0;
    margin: 0 auto;
}

.slide .swiper-container .swiper-pagination_shell .swiper-pagination {
    right: 0;
    height: 8px;
    /*width: 100%;*/
    font-size: 0;
}

.slide .swiper-container .swiper-pagination_shell .swiper-pagination span.swiper-pagination-switch {
    width: 12px;
    height: 8px;
    background-color: #fff;
    opacity: .6;
    border-radius: 8px;
    margin: 0 5px;
    transition: all 0.2s ease 0.1s;
    display: inline-block;
}

.slide .swiper-container .swiper-pagination_shell .swiper-pagination span.swiper-pagination-switch.swiper-active-switch {
    opacity: 1;
}

.slide .swiper_btn {
    height: 60px;
    position: absolute;
    margin: 0 auto;
    top: 40%;
    left:0;
    right:0;
    display: flex;
    justify-content: flex-end;
}

.slide .swiper_btn .swiper-button-prev {
    width: 50px;
    height: 50px;
    color: #ae0b2a!important;
}


.slide .swiper_btn .swiper-button-next {
    width: 50px;
    height: 50px;
    color: #ae0b2a!important;
}



/*2020.4.16update*/
.slide .swiper-container a p {
    position: absolute;
    left:0; right:0; bottom:40px;
    color: #fff;
    line-height: 30px;
    padding: 10px 40px 10px 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 28px;
    margin:0 auto;
    font-weight: 600;

}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 19px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    margin-right: 5px;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #ae0b2a;
}

/*****首页******/
.main {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: whitesmoke;
    position:relative;
    margin-top: 0px;
    
}


/**headertitle***/
.main .headertitle {
    color:#ae0b2a;
    font-size: 20px;
    margin-bottom: 15px;
}

.main .headertitle span {
    width: 60px;
    height: 60px;
    padding-bottom: 9px;
    border-bottom: solid 4px #ae0b2a;
}

.main .headertitle em {
    font-size: 14px;
    color:#333333;
    line-height: 38px;
    height: 38px;
    display: inline-block;
    font-style: normal;
    float: right;
    margin-top: 0px;
}

.main .headertitle em a{
    font-size: 14px;
    color:#333333;
}

.main .headertitle em a:hover{
    font-size: 14px;
    color:#ae0b2a;
}




.annoursetitle {
    font-weight: 600 !important;
    border-bottom: solid 1px #cccccc;
    padding-bottom: 10px;
}
.newstitle {
    font-weight: 600 !important;
    border-bottom: solid 1px #cccccc;
    padding-bottom: 10px;
}

.newstitle_left {
    font-weight: 600 !important;
    padding-bottom: 10px;
}

/*item2*/
.main .item2 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #e6e6e6;

}

.main .item2 .research-right{
    width: 420px;
    float: right;
}

.main .item2 .research-center{
    margin-left: 10px!important;
    width: 420px;
    float: left;
}

.main .item2 .research-left{
    margin-right: 10px!important;
    width: 420px;
    float: left;
}

.main .item2 .top-search-left{
    width:100%;


}

.main .item2 .top-search-right{
    width:100%;

}

/*学术报告列表*/

.main .lecture  ul li {
    display:block;
    height: 85px!important;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main .lecture ul li p{
    flex: initial;
    white-space: normal;
    overflow: auto;
    text-overflow:unset;
    display: inline-block;
    width: 100%;
    margin-right: 0px;
}

.main .lecture ul li .date {
    color: #ae0b2a;
    float: left;
    margin-top: 0px;
    font-weight: 500;
    width: 50px;
    display: inline-block;
}

.main .lecture ul li a {
    color: #0c0c0c;
    font-size: 16px;
    line-height: 27px;
}

.main .lecture ul li a:hover {
    color: #ae0b2a;
    font-weight: 500;
}


/*新闻列表*/
.main .newslist {
    position: relative;
    width: 100%;
    overflow-y: hidden;
}

.main .newslist ul li {
    height: 35px;
    display: flex;
    width: 100%;
    border-bottom: 1px solid whitesmoke;
}

.main .newslist ul li .span_title{
    flex: 1;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .newslist ul li .span_title a {
    color: #0c0c0c;
    font-size: 16px;
    line-height: 27px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.main .newslist ul li a:hover {
    color: #ae0b2a;
    font-weight: 500;
}

.main .newslist ul li .date {
    color: #ae0b2a;
    float: right;
    margin-top: 5px;
    font-weight: 500;
    width: 50px;
}

/*anoursement*/

.main .announcement {
    width: 100%;
    overflow-y: hidden;
}

.main .announcement ul li {
    height: 35px;
    display: flex;
    width: 100%;
}

.main .announcement ul li .span_title a {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .announcement a:hover {
    color: #ae0b2a;
    font-weight: 500;
}

.main .announcement ul li .span_title{
    flex: 1;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .announcement ul li .date {
    color: #ae0b2a;
    float: right;
    font-weight: 500;
    margin-top: 5px;
    width:50px;
}

/*媒体聚焦*/

.main .item3 {
    padding-top: 40px;
    padding-bottom:50px;
    /*
    background: url("../images/bg.png") center center ;
    background-size: cover;*/
}


.main .item3 .media-left{
    width: 860px;
    float: left;
}

.main .item3 .video_right{
    padding-left: 5px!important;
    width: 420px;
    float: right;
}



.main .mediatitle {
    font-weight: 600 !important;
    width: 100%;
    position: absolute;
    z-index: 20;
    top: 0px;
    left: 0px;
    right: 0px;
}

.main .medianav a{
    color:#ffffff;
}

.main .mediatitle .title {
    padding: 15px;
    background-color: #ae0b2a;
    font-size: 18px;
    color: white;
    position: absolute;
    font-weight: bold;
}

.main .medianav .nav_btn_left {
    height: 40px;
    width: 60px;
    color: white;
    margin-right: 10px;
    font-weight: 500;
}

.main .medianav .nav_btn_right {
    height: 40px;
    width: 60px;
    color: white;
    margin-right: 10px;
    font-weight: 500;
}

.main .mediatitle .morebtn {
    height: 30px;
    width: 40px;
    margin-left: 10px;
}

.main .medianav a {
    color: white;
    font-weight: 500;
    margin-left: 5px;
}

.main .medianav {
    padding-top: 10px;
    position: relative;
    float: right;
    text-align: right;
    padding-right: 10px;
}

.main .medialist {
    height: 400px;
    width: 100%;
}

.main .medialist .swiper-media {
    clear: both;
}

.main .medialist .swiper-media-wrap {
    margin-top: 10px;
}


.main .medialist .media-item {
    height: 220px;
    padding: 0px 0px 0px 0px ;
    background-color: white;
    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 .video-wrap .nav_school_left {
    height: 30px;
    width: 30px;
    background: url(../images/nav_left.png) center center no-repeat;
    background-size: 24px 24px;
}

.main .video-wrap .nav_school_right {
    height: 30px;
    width: 30px;

    background: url(../images/nav_right.png) center center no-repeat;
    background-size: 24px 24px;
}


.main .medialist .media-item .media-content {
    padding: 10px;
}

.main .medialist .media-item .media-date{
    margin-top: 10px;
}


.main .medialist .media-item .media-title {
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.main .medialist .media-item .media-title a {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
}

.main .medialist .media-item .media-title a:hover {
    color: #ae0b2a;
    font-weight: 500;
    font-size: 16px;
}

.main .medialist .media-item .media-desc {
    color: dimgrey;
    font-size: 10px;
    padding-top: 10px;
    height: 50px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.main .medialist .media-item .media-link {
    margin-top: 20px;
}

.main .medialist .media-item .media-link a {
    color: #ae0b2a;
    font-weight: 600;
}

.main .medialist .media-item .img-bg {
    height: 150px;
    width:100%;
    background-size: cover;
}

.main .item3 h4 {
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 46px;
    margin: 0 0 24px;
    font-weight: bold;
}

/**专报**/
.paper {
    text-align: center;
    height: 180px;
    background-repeat: no-repeat;
    background: url("../images/cn_mag_bg.png") center center;
    background-size: cover;
    margin-top: 30px;
}

.paper .info {
    padding-top: 80px;
}

.paper .page-corner {
    width: 100px;
    text-align: center;
    background-color: #ae0b2a;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    margin: 0 auto;
    font-size:18px;
}

.paper .info h2 {
    color: white;
    font-weight: 500;
    font-size: 24px;
}




/**科研**/

.research {
    height: 300px;
    overflow-y: hidden;
    background-color: #5a6a7a;
    background: url("../images/cn_news_bg.png");
    background-size: 90% 80%;
    background-repeat: no-repeat;

}

.topresearch .pic {
    height: 220px;
    overflow-y: hidden;
}

.topresearch .caption {
    position: absolute;
    bottom: 40px;
    width: 100%;
    color: white;
    padding: 10px 25px 10px 25px;
    font-size: 16px;

}


.main .researchtitle {
    font-weight: 600 !important;
    width: 100%;
    position: absolute;
    width: 100%;
    z-index: 10;
}



.main .researchtitle .more {
    float: right;
    background-color: #ae0b2a;
    padding: 10px;
}

.main .researchtitle .more a {
    font-size: 16px;
    color: white;
}

.main .researchtitle .title {
    padding: 15px;
    background-color: #ae0b2a;
    font-size: 20px;
    color: white;
    position: absolute;
    font-weight: 600;
}


/* ----- Vedio ----- */
.vediolist_wrap {
    height: 250px;
}

.vediolist_wrap .video-box {
    height: 100%;
    height: 200px;
    position: relative;
    background-size: cover;

}


.vediolist_wrap .video_title {
    height: 50px;
    text-align: left;
    line-height: 20px;
    font-size: 16px;
    background-color: white;
    padding:10px 10px 10px 10px;
}

.vediolist_wrap .icon_box {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    height: 100%;
    width: 100%;
    background: url(../images/cn_zs_cover_play.png) center center;
    background-size: cover;
}


.vediolist ul {
    padding: 0px;
    margin-top: 5px;
}

.vediolist ul li {
    padding: 8px;
    border: solid 1px #cccccc;
    background-color: white;
    margin-bottom: 5px;
}


.bottom-brand {
    height: 400px;
    background: url(../images/cn_bootom_bg.png) bottom center;
    background-repeat: no-repeat
}


/**底部**/

.footer {
    height: 240px;
    background: url("../images/footer_bg.png") bottom center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
}

.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 ul li.email {
    background: url(../images/email.png) no-repeat left 15px center;
}

.footer .info ul li.tel {
    background: url(../images/tel.png) no-repeat left 16px center;
}

.footer .info ul li.address {
    background: url(../images/address.png) no-repeat left 16px center;
}

.footer .info .col-md-3 {
    padding-right: 38px;
    border-right: 2px solid #2c3565;
}

.footer .info .col-md-5 {
    padding-left: 38px;
    border-right: 2px solid #2c3565;
}

.footer .info .col-md-5 ul {
    width: 332px;
}

.footer .info .col-md-5 ul li {
    padding-left: 48px;
}

.footer .info .col-md-4 .rwm {
    width: 130px;
    position: absolute;
    top: 0;
    right: 168px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.footer .info .col-md-4 .copyright {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 138px;
    opacity: .8;
}

/****内容页面*******/
.page{
    margin-top: 70px;
}

.page .page_tit {
    background: url(../images/page_titbg.jpg) no-repeat center / cover;
    height: 260px;
}

.page .page_tit .common_width {
    height: 100%;
    position: relative;
}

.page .page_content .fr .crumbs {
    color: #000;
    font-size: 14px;
    line-height: 50px;
}

.page .page_content .fr .crumbs a {
    color: #000;
}

.page .page_content .fr .crumbs a:last-child span {
    display: none;
}

.page .page_content .fr .crumbs span {
    padding: 0 10px;
}

.page .page_content {
    padding: 20px 0 50px;
}

.page .page_content .fl {
    width: 200px;
    text-align: center;
    margin-top: -80px;
}

.page .page_content .fl h2 {
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    background-color: #ae0b2a;
    color: #fff;
    margin: 0;
}

.page .page_content .fl ul {
    border: 1px solid #e6e6e6;
    border-top: 0;
    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);

}

.page .page_content .fl ul li {
    height: 60px;
    border-top: 1px solid #e6e6e6;
    line-height: 59px;
}

.page .page_content .fl ul li a {
    font-size: 20px;
    color: #333;
    display: block;
    transition: all 0.2s ease 0.1s;
}

.page .page_content .fl ul li.active a {
    border-left: 2px solid #ae0b2a;
    color: #ae0b2a;
}

.page .page_content .fr {
    width: 940px;
}

.page .page_content .fr ul.pic_list {
    margin-left: -15px;
    margin-right: -15px;
}

.page .page_content .fr ul.pic_list li {
    height: 112px;
    padding: 0 15px;
    margin-bottom: 30px;
    width: 50%;
    float: left;
}

.page .page_content .fr ul.pic_list li a {
    display: block;
    height: 100%;
}

.page .page_content .fr ul.pic_list li a .pic {
    width: 160px;
    height: 100%;
    border: 1px solid #f0f0f0;
    float: left;
}

.page .page_content .fr ul.pic_list li a .txt {
    padding-top: 2px;
    padding-left: 187px;
}

.page .page_content .fr ul.pic_list li a .txt .h6_shell {
    height: 84px;
}

.page .page_content .fr ul.pic_list li a .txt h6 {
    line-height: 28px;
    max-height: 56px;
    font-size: 18px;
    color: #333;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
}

.page .page_content .fr ul.pic_list li a .txt h6.en {
    max-height: 28px;
}

.page .page_content .fr ul.pic_list li a .txt span {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #ae0b2a;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 2px 0;
}

.page .page_content .fr ul.pic_list li a .txt p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
}

.page .page_content .fr h2 {
    line-height: 36px;
    color: #333;
    font-size: 40px;
    margin-bottom: 35px;
}


.page .page_content .fr p > span {
    font-size: 14px !important;
    font-family: '微软雅黑';
    line-height: 28px !important;
    color: #4c4c4c !important;
    margin: 5px 0 !important;
}

.page .page_content .fr p video {
    display: block;
    margin: 0 auto;

}

.page .page_content .fr ul.news_list li {
    height: 172px;
    border-bottom: 1px solid #e6e6e6;
}

.page .page_content .fr ul.news_list li + li {
    margin-top: 20px;
}

.page .page_content .fr ul.news_list li a {
    display: block;
    height: 100%;
    padding-bottom: 19px;
}

.page .page_content .fr ul.news_list li a .pic {
    width: 220px;
    height: 100%;
    border: 1px solid #f0f0f0;
    float: left;
}

.page .page_content .fr ul.news_list li a .txt {
    padding-top: 5px;
    padding-left: 240px;
}

.page .page_content .fr ul.news_list li a .txt h6 {
    line-height: 30px;
    height: 30px;
    font-size: 18px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
}

.page .page_content .fr ul.news_list li a .txt span {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #ae0b2a;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 2px 0;
}

.page .page_content .fr ul.news_list li a .txt p {
    font-size: 14px;
    color: #666;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
}

.page .page_content .fr .page_nav {
    height: 30px;
    margin-top: 30px;
    text-align: center;
    /*font-size: 0;*/
    color: #666;
}

.page .page_content .fr .page_nav span {
    display: inline-block;
    margin-right: 15px;
    border: 1px solid #e6e6e6;
    line-height: 28px;
    font-size: 14px;
    color: #999;
    padding: 0 15px;
    vertical-align: middle;
}

.page .page_content .fr .page_nav span a {
    color: #999;
}

.page .page_content .fr .page_nav a {
    color: #666;
    padding: 0 8px;
    display: inline-block;
}

.page .page_content .fr .page_nav form {
    display: inline-block;
    border: 1px solid #e6e6e6;
    height: 30px;
    width: 66px;
    vertical-align: middle;
}

.page .page_content .fr .page_nav form input {
    height: 28px;
    line-height: 28px;
    width: 32px;
    float: left;
}

.page .page_content .fr .page_nav form input[type='text'] {
    padding: 0 5px;
    color: #999;
    font-size: 14px;
}

.page .page_content .fr .page_nav form input[type='submit'] {
    background-color: #ae0b2a;
    color: #fff;
    font-size: 12px;
    font-family: 'Arial';
}

.page .page_content .fr ul.notice_list li {
    height: 80px;
    border-bottom: 1px solid #e6e6e6;
}

.page .page_content .fr ul.notice_list li + li {
    margin-top: 20px;
}

.page .page_content .fr ul.notice_list li a .date {
    width: 60px;
    height: 60px;
    border: 2px solid #999;
    text-align: center;
    float: left;
}

.page .page_content .fr ul.notice_list li a .date span {
    display: inline-block;
    width: 100%;
}

.page .page_content .fr ul.notice_list li a .date span.day {
    height: 31px;
    line-height: 28px;
    background-color: #999;
    color: #fff;
    font-size: 18px;
}

.page .page_content .fr ul.notice_list li a .date span.year {
    line-height: 25px;
    color: #999;
}

.page .page_content .fr ul.notice_list li a .txt {
    padding-left: 75px;
}

.page .page_content .fr ul.notice_list li a .txt h6 {
    line-height: 28px;
    font-size: 18px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
    font-weight: bold;
}

.page .page_content .fr ul.notice_list li a .txt p {
    padding: 5px 0 0;
    margin: 0 !important;
    line-height: 26px;
    height: 31px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.page .page_content .fr ul.teacher_list li {
    height: 220px;
    background-color: #f5f5f5;
    padding: 10px 20px;
    overflow: hidden;
}

.page .page_content .fr ul.teacher_list li + li {
    margin-top: 10px;
}

.page .page_content .fr ul.teacher_list li a {
    display: block;
    height: 100%;
}

.page .page_content .fr ul.teacher_list li a .pic {
    width: 150px;
    height: 100%;
    float: left;
}

.page .page_content .fr ul.teacher_list li a .info {
    padding-left: 177px;
}

.page .page_content .fr ul.teacher_list li a .info h5 {
    margin: 0;
    line-height: 48px;
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.page .page_content .fr ul.teacher_list li a .info h5 span {
    font-size: 18px;
    padding-left: 12px;
    font-weight: normal;
}

.page .page_content .fr ul.teacher_list li a .info h5 + p {
    height: 130px;
    overflow: hidden;
}

.page .page_content .fr ul.teacher_list li a .info h5 + p + span {
    float: right;
}

.page .page_content .fr ul.teacher_list li a .info strong {
    font-size: 14px;
    font-weight: bold;
    color: #ae0b2a;
    margin: 5px 0 0;
    line-height: 28px;
    display: inline-block;
}

.page .page_content .fr ul.teacher_list li a .info p {
    line-height: 26px !important;
    color: #666 !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.page .page_content .fr ul.teacher_list li a .info > div {
    max-height: 150px;
    overflow: hidden;
}

.page .page_content .fr > .tit {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.page .page_content .fr > .tit h6 {
    line-height: 45px;
    font-size: 30px;
    color: #000;
    margin: 10px 0 20px;

}

.page .page_content .fr > .tit span {
    font-size: 14px;
    color: #808080;
    line-height: 28px;
    margin-right: 20px;
}

.page .page_content .fr  p {
    font-size: 18px!important;
    color: #000000;
    line-height: 36px!important;
}

.page .page_content .fr img {
    width: 80% !important;
    height: auto !important;
    margin: 12px auto !important;
    box-shadow: 0 0 12px 1px #ddd;
}

.page .page_content .fr .teacher_content .info {
    background-color: #f5f5f5;
    padding: 10px 40px 10px 20px;
}

.page .page_content .fr .teacher_content .info .pic {
    /*height: 198px;*/
    width: 150px;
    float: left;
}

.page .page_content .fr .teacher_content .info .txt {
    padding-left: 176px;
}

.page .page_content .fr .teacher_content .info .txt h6 {
    margin: 6px 0;
    height: 32px;
    line-height: 32px;
    font-size: 22px;
    color: #ae0b2a;
}

.page .page_content .fr .teacher_content .info .txt h6 span {
    font-size: 18px;
    color: #333;
}

.page .page_content .fr .teacher_content .info .txt > div {
    line-height: 28px;
    margin-bottom: 10px;
    overflow: hidden;
}

.page .page_content .fr .teacher_content .info .txt > div span {
    line-height: 28px;
    display: inline-block;
    height: 28px;
    float: right;
    color: #ae0b2a;
    padding-right: 12px;
}

.page .page_content .fr .teacher_content .info .txt p {
    line-height: 28px;
    color: #666;
    margin: 0;
}

.page .page_content .fr .teacher_content .content h3 {
    margin: 19px 0 0;
    border-bottom: 1px solid #ccc;
}

.page .page_content .fr .teacher_content .content h3 span {
    display: inline-block;
    line-height: 42px;
    padding: 0 1px;
    border-bottom: 2px solid #ccc;
}

.page .page_content .fr .teacher_content .content strong {
    font-size: 14px;
    color: #ae0b2a;
    font-weight: bold;
    line-height: 28px;
    margin: 12px 0 0;
    display: block;
}

.teacherInfo {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 15px;
}

.page .page_content .fr .teacherInfo > p {
    text-indent: 2em;
    font-size: 18px !important;
    line-height: 36px !important;
}

.teacherInfo h6 {
    height: 62px;
    line-height: 58px;
    font-size: 22px;
    font-weight: bold;
    color: #ae0b2a;
    border-bottom: 1px solid #d2d2d2;
    margin: 0 0 20px;
}



.phone_nav {
    display: none;
}

.point_out {
    width: 600px;
    height: 300px;
    background-color: #fff;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -300px;
    text-align: center;
    color: #888;
    z-index: 1002;
    display: none;
}

.point_out a span {
    background-color: #0086f9;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    padding: 0 15px;
    border-radius: 3px;
    margin: 20px auto 0;
    text-decoration: none;
}

.point_out a {
    width: 185px;
    display: inline-block;
}

.point_out p {
    padding: 0 60px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: 16px;
    font-size: 16px;
}

.point_out .close_btn {
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: url(../images/close.png) no-repeat center;
    cursor: pointer;
}

.masking {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: transparent;
    transition: all 0.5s ease 0.2s;
    z-index: -1;
}

.masking.active {
    background: url(../images/bgbg.png) repeat center;
    z-index: 1001;
}

#bdshare_weixin_qrcode_dialog {
    opacity: 0;
    transition: all 0.5s ease 0.2s;
    height: 251px !important;
}

#bdshare_weixin_qrcode_dialog.active {
    opacity: 1;
}

.bd_weixin_popup_foot {
    display: none;
}

/* 2019-09-27新增媒体聚焦 */
.main .item3 h3 {
    text-align: left;
}

.newsAdd {
    display: inline-block;
    padding-left: 0px !important;
}

.newsMore {
    display: block;
    float: right;
    margin: 16px 0 20px;
}

.newsMore > a {
    font-size: 14px;
    color: #626262;
}

.newsMore > a:hover {
    color: #626262;
}

.videoCon > a {
    display: block;
    width: 100%;
    height: 247px;
}

.swiper-button-prev-sec, .swiper-button-next-sec {
    background-size: 20px 44px !important;
}

.swiper-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
}

.swiper-img > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 6;
    top: 0px;
}

.player-btn {
    display: block;
    width: 60px;
    height: 60px;
    background: url(../images/video-player.png) no-repeat;
    position: absolute;
    z-index: 10;
    top: 39%;
    left: 43%;
}

.swiper-text {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    bottom: 0px;
    background: url(../images/swiper-opacity.png) no-repeat;
    background-size: cover;
}

.swiper-text > p {
    font-size: 14px;
    color: #fff;
    padding: 0px 25px;
    margin-top: 210px;
    height: 20px;
    overflow: hidden;
}





.icon_box p {
    line-height: 1.3em;
    color: #fff;

}

.icon_box h4 {
    color: #ed9c28;
}


.icon_box i {
    display: inline-block;
    font-size: 44px;
    color: #4587d9;
    position: relative;
}

.icon_box:hover i, .about-post:hover a > img {
    -moz-animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;

    -moz-animation-iteration-count: 1;
    -ms-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    -moz-animation-timing-function: ease;
    -ms-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    animation-delay: 0s;
    -moz-animation-duration: .7s;
    -ms-animation-duration: .7s;
    -o-animation-duration: .7s;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
}

.icon_box:hover i, .icon_box:nth-child(2n+1):hover i, .icon_box:hover p {
    color: #ed9c28;
}

.icon_box:nth-child(2n+1) i {
    color: #4587d9;
}

.icon_box:hover {
    color: #d81016;
    cursor: pointer;

    background-size: cover;
}

.icon_box i,
#about .priorty .about-post,
.contact_address .address,
#about .priorty .about-post a,
.contact_address .address .icon,
#about .priorty .about-post a > img {
    display: inline-block;
}

#about .priorty p�� {
    font-size: 12px;
    line-height: 30px;
}

.icon_box h4 {
    font-size: 1.250em;
}

#about .priorty .about-post,
.contact_address .address {
    margin-top: 15px;
    overflow: hidden;
}

#about .priorty .about-post a,
.contact_address .address .icon {
    background: #ffb600;
    float: left;
    height: 60px;
    width: 64px;
    text-align: center;
    font-size: 35px;
    line-height: 50px;
}

#about .priorty .about-post h4, .contact_address .address h4 {
    margin: 10px 0 0 80px;
}

#about .priorty .about-post p, .contact_address .address p {
    display: block;
    margin: 0 0 0 80px;
}


/*通用*/

.b-t {
    border-top: 1px solid #cccccc
}

.b-l {
    border-left: 1px solid #cccccc
}

.b-r {
    border-right: 1px solid #cccccc
}

.b-b {
    border-bottom: 1px solid #cccccc
}


.b-l-white-4x {
    border-left: 4px solid #fff
}




/*媒体查询*/
@media screen and (max-width: 767px) {

    .extension-nav{
        display: none;
    }

    .container-fluid{
        padding-left:0px!important;
        padding-right:0px!important;
    }

    .main{
        position:relative;
        margin-top: 0px;
        z-index:0;
    }

    .header {
        height: 70px;
        padding-top: 10px;
    }

    .common_width {
        width: 100%!important;
        margin: 0 auto;
    }

    .common_width_1 {
        width: 100%!important;
        margin: 0 auto;
    }

    .bottom-brand {
        height: 200px !important;
        background: url(../images/cn_bootom_mobile_bg.png) bottom center;
        background-repeat: no-repeat;
        background-size: 100%;
    }


    .header a.logo {
        width: 220px !important;
        background: url(../images/cn_logo.png) no-repeat left center;
        background-size: 90%;
        height: 50px !important;
    }

    .main .headertitle {
        color: #333333;
        font-weight: 500;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .annoursetitle {
        font-weight: 500 !important;
        border-bottom: solid 1px #e6e6e6;
        padding-bottom: 10px;
    }

    .newstitle {
        font-weight: 500 !important;
        border-bottom: solid 1px #e6e6e6;
        padding-bottom: 10px;
    }

    .newstitle_left {
        font-weight: 500 !important;
        border-bottom: solid 1px #e6e6e6;
        padding-bottom: 10px;
    }

    .main .item1 {
        padding-top: 10px!important;
        width: 100%;
        padding-bottom:0px!important;
        background-image: url("../images/cn_ruc_bg.png");
        background-size: cover;
    }

    .main .item1  .item_left{
        width: 100%!important;
        background-color:white;
        padding: 10px!important;
    }

    .main .item1  .item_right{
        width: 100%!important;
        padding: 10px!important;
        background-color:white;
        margin-top:10px;
    }

    .main  .news-wrap .news_left{
        width: 100%!important;
        padding: 0px!important;

    }

    .main .news-wrap  .news_right{
        width: 100%!important;
        padding: 0px!important;
        margin-top:10px;
    }

    .main .lecture  ul li {
        display:block;
        height: 90px!important;
        width: 100%;
        border-bottom: 1px solid whitesmoke;
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .main .lecture ul  li:last-child {
        border-bottom: none;
    }


    /*新闻列表*/

    .main .newslist ul li {
        display:block;
        height: 90px!important;
        width: 100%;
        border-top: 1px solid whitesmoke;
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .main .newslist ul  li:last-child {
        border-bottom: none;
    }

    .main .newslist ul li i{
        display: none;
    }

    .main .newslist ul li .span_title{
        flex: initial;
        white-space: normal;
        overflow: auto;
        text-overflow:unset;
        display: inline-block;
        width: 100%;
        margin-right: 0px;
    }

    .main .newslist ul li .span_title a {
        color: #0c0c0c;
        font-size: 16px;
        line-height: 20px;
        white-space: normal;
        overflow: auto;
        text-overflow:unset;
    }

    .main .newslist ul li .date {
        color: #ae0b2a;
        float: left;
        margin-top: 0px;
        font-weight: 500;
        width: 80px;
        display: inline-block;
    }


    /*anoursement*/

    .main .announcement ul li {
        display:block;
        height: 90px!important;
        width: 100%;
        border-bottom: 1px solid #e6e6e6;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main .announcement ul  li:last-child {
        border-bottom: none;
    }

    .main .announcement ul li .span_title a {
        color: #0c0c0c;
        font-size: 16px;
        line-height: 20px;
        white-space: normal;
        overflow: auto;
        text-overflow:unset;
    }

    .main .announcement a:hover {
        color: #ae0b2a;
        font-weight: 500;
    }

    .main .announcement ul li .span_title{
        flex: initial;
        white-space: normal;
        overflow: auto;
        text-overflow:unset;
        display: inline-block;
        width: 100%;
        margin-right: 0px;
    }

    .main .announcement ul li .date {
        color: #ae0b2a;
        float: left;
        margin-top: 0px;
        font-weight: 500;
        width: 80px;
        display: inline-block;
    }





    .main .item2 {
        margin-top: 10px!important;
        padding-top: 0px;
        padding-bottom: 10px;
    }

    .main .item3 {
        margin-top: 0px!important;
        padding-top: 0px;
        padding-bottom:10px;
        margin-bottom: 10px;
    }

    .main .item1 .new-right{
        margin-top:15px;
    }



    .main .researchtitle {
        font-weight: 700 !important;
        width: 100%;
        position:relative;
        height: 45px;
        border-bottom: solid 1px #cccccc;
        margin-bottom: 10px;
    }


    .main .researchtitle .title {
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px;
        background: url();
        font-size: 18px;
        color: #2e3941;
        font-weight: 600;

        height: 48px;
        border-bottom: solid 4px #ae0b2a;
    }

    .main .researchtitle .more {
        float: right;
        background: url();
        margin-top: 10px;
        padding-right: 0px;
    }

    .main .researchtitle .more a {
        font-size: 14px;
        color: #000000;
    }

    .main .item2 .research-left{
        padding-right: 10px!important;
        padding-left: 10px!important;
        width: 100%!important;
        background-color:white;
        margin-bottom: 10px;
    }

    .main .item2 .research-right{
        padding-right: 10px!important;
        padding-left: 10px!important;
        width: 100%!important;
        background-color:white;
    }

    .main .item2 .top-search-left{
        padding: 10px!important;
        width:100%!important;
        margin-bottom: 10px;
        background-color: white;
    }

    .main .item2 .top-search-right{
        padding: 10px!important;
        width:100%!important;
        background-color: white;
    }


    .topresearch .pic {
        height: 180px!important;
        overflow-y: hidden;
    }


    .main .mediatitle {
        font-weight: 600 !important;
        width: 100%;
        position: relative;
        padding: 10px!important;
        height: 30px;
    }


    .main .mediatitle .title {
        padding: 0px !important;
        background-image: none;
        background-size: cover;
        font-size: 18px;
        color: #2e3941;
        font-weight: 600;
    }

    .main .medianav{
        text-align: right;
        margin-top: -5px!important;
        padding-right: 0px!important;
    }

    .main .medianav a{
        color:#000;
        font-weight: 600;
    }

    .main .medianav .nav_btn_left {
        height: 40px;
        width: 60px;
        color: #2e3941;
        margin-right: 10px;
        font-weight: 600;
    }

    .main .medianav .nav_btn_right {
        height: 40px;
        width: 60px;
        color: #2e3941;
        margin-right: 10px;
        font-weight: 600;
    }

    .main .mediatitle .morebtn {
        height: 30px;
        width: 40px;
        margin-left: 10px;
    }




    .paper {
        text-align: center;
        height: 185px;
        background-repeat: no-repeat;
        background: url("../images/cn_mag_bg.png");
        background-size: 100%;
    }



    .main .wrapper-lg {
        padding: 0px !important;
    }

    .wrapper-md {
        padding: 10px;
    }

    .main .medialist {
        height: auto !important;
        background: url();
        padding-top: 10px;
    }

    .main .video-wrap {
        padding-top: 10px;
    }



    .main .medialist .media-item {
        height: auto !important;
    }

    .main .medialist .media-item .img-bg {
        height: 180px;
        background-size: 100% auto;
        background-position: top center;
    }


    .main .medialist .swiper-media{
        padding:0px!important;
    }

    .main .medialist .swiper-media-wrap{
        margin-top: 20px!important;
    }

    .main .item3 .media-left{
        background-color:white;
        padding-right: 10px!important;
        padding-left: 10px!important;
        width: 100%;
    }

    .main .item3 .video_right{
        margin-top: 10px;
        background-color:white;
        width: 100%;
        padding-right: 10px!important;
        padding-left: 10px!important;
    }


    .videotitle {
        margin-top: 10px;
    }

    .slide {
        position: relative;
        padding: 0;
        height: 200px!important;
        width: 100%;
    }

    .slide .swiper_btn {
        display: none;
    }

    .slide .swiper-container a p {
        position: absolute;
        left: 0;
        bottom: 0;
        color: #fff;
        line-height: 30px;
        width: 100%;
        padding: 10px 10px 10px 15px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 16px;
        text-align: center;
    }

    .slide .swiper-container .swiper-pagination_shell {
        display: none;
    }

    .slide .swiper-box {
        border-radius: 0px;
        box-shadow: none;
    }

    .page .page_content .fr h6 {
        font-size:22px!important;
        line-height: 32px!important;
    }

    .page .page_content .fr .crumbs {
        color: #000;
        font-size: 12px;
        line-height: 30px;
    }

    .page .page_content .fr img {
        width: 100% !important;
        height: auto !important;
        margin: 12px auto !important;
    }

    .page .page_content .fr  p {
        font-size: 14px!important;
        color: #000000;
        line-height: 28px!important;
    }

    .phone_nav {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-left: -100%;
        transition: all 0.6s ease 0.2s;
        z-index: 1002;
    }

    .phone_nav.active {
        margin-left: 0;
        display: block !important;
    }

    .phone_nav > .fl {
        /*background-color: rgba(255, 255, 255, 0.98);*/
        background: url(../images/ruc_blue_bg.png);
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 46px;
        padding-top: 0px;
        transition: all 0.3s ease 0.2s;
    }


    /*视频*/
    .main .videotitle {
        z-index: 100;
        position: absolute;
        width: 100%
    }


    .main .videotitle .title {
        padding: 15px;
        background: url(../images/cn_red_bg.png);
        background-size: cover;
        font-size: 18px;
        color: white;
        font-weight: 600;
    }

    .main .videotitle em {
        display: inline-block;
        float: right;
        background-color: #2e3941;
    }

    .main .vediolist_wrap {
        height: auto !important;
        background: url(../images/ruc_blue_bg.png);
        background-size: 100%;
        height: 200px;
        margin-top: 10px;
        padding: 0px;
    }

    .vediolist_wrap .video-box {
        height: 100%;
        height: 200px;
        position: relative;
    }


    .main .vediolist_wrap .icon_box {

        height: 100% !important;

    }


    .phone_nav > .fl > .fl-title {
        color: #fff;
        padding: 30px;
        margin-bottom: 30px;
    }

    .phone_nav > .fl > ul > li > a {
        color: #fff;
        font-size: 0;
        line-height: 46px;
        display: block;
    }

    .phone_nav > .fl > ul > li > a > em {
        font-size: 16px;
        display: inline-block;
        vertical-align: middle;
        font-style: normal;
    }

    .phone_nav > .fl > ul > li > a > span {
        height: 46px;
        width: 16px;
        padding-left: 8px;
        box-sizing: content-box;
        display: inline-block;
        background: url(../images/phone_more.png) no-repeat right center;
        vertical-align: middle;
    }

    .phone_nav > .fl > ul > li > ul {
        display: none;
        line-height: 30px;
        padding-bottom: 10px;
    }

    .phone_nav > .fl > ul > li > ul a {
        color: #ae0c2a;
    }


    .news {
        padding-right: 15px !important;
    }


    .footer .info {
        padding: 15px;
    }

    .footer .info .col-md-4 {
        padding: 0 15px;
    }


    .footer {
        background: #26205c;
        height: auto;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .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;
    }

    .page .page_tit {
        height: 120px;
    }

    .page .page_tit .common_width .crumbs {
        padding-right: 20px;
    }

    .page .page_content {
        padding: 20px 15px 20px;
    }

    .page .page_content .fl{
        display: none;
    }

    .page .page_content .fl,
    .page .page_content .fr {
        width: 100%;
    }

    .page .page_content .fr {
        margin-top: 0px;
    }

    .page .page_content .fl h2 {
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .page .page_content .fl ul li {
        height: 40px;
        line-height: 39px;
    }

    .page .page_content .fl ul li a {
        font-size: 16px;
    }

    .page .page_content .fr .page_nav {
        margin-top: 20px;
    }

    .page .page_tit .common_width .crumbs a {
        text-shadow: 0 0 5px #333;
    }

    .page .page_content .fr .teacher_content .info {
        padding: 10px;
    }

    .page .page_content .fr .teacher_content .info .pic {
        float: none;
        margin: 0 auto;
    }

    .page .page_content .fr .teacher_content .info .txt {
        padding: 0 10px;
    }

    .page .page_content .fr .teacher_content .info .txt > div {
        height: auto;
    }

    .page .page_content .fr .teacher_content .info .txt > div span {
        display: none;
    }

    .page .page_content .fr ul.teacher_list li a .info {
        height: 100%;
        overflow: hidden;
        position: relative;
        top: 0;
        padding-left: 17px;
    }

    .page .page_content .fr ul.teacher_list li a .info p + span {
        line-height: 27px;
    }

    .page .page_content .fr ul.teacher_list li a .info p {
        margin: 5px 0 3px;
    }

    .page .page_content .fr ul.news_list li,
    .page .page_content .fr ul.pic_list li {
        height: auto;
    }

    .page .page_content .fr ul.news_list li a .pic,
    .page .page_content .fr ul.pic_list li a .pic {
        width: 100%;
        height: 230px;
    }

    .page .page_content .fr ul.news_list li a .txt,
    .page .page_content .fr ul.pic_list li a .txt {
        padding-left: 0;
        height: auto;
        padding-top: 242px;
    }

    .main .item1 .news ul li a .tit .date {
        display: none;
    }




    .page .page_content .fr ul.pic_list li {
        width: 100%;
    }

    .soogee_p {
        display: block !important;
    }

    .soogee_img {
        display: none !important;
    }

    .page .page_content .fr > .tit {
        padding-bottom: 35px;
    }

    .page .page_content .fr.bdsharebuttonbox {
        margin-top: 0;
        display: none;
    }

    .enn_link {
        display: none;
    }

    .main .item3 .col-md-6 {
        padding: 0;
    }

    .page .page_content .fr p video {
        max-width: 100%;
    }

    .page .page_content .fr .teacher_content .info .txt h6 {
        height: auto;
    }

    .page .page_content .fr ul.teacher_list li a .info h5 span {
        font-size: 14px;
    }

    .page .page_content .fr ul.teacher_list li a .info h5 {
        line-height: 28px;
    }

    #sxaibox li a span {
        display: none;
    }

    #sxaibox li {
        line-height: 38px;
        height: auto;
    }
}


/* Search icon by IcoMoon, made with http://icomoon.io/app/ */
@font-face {
    font-family: 'icomoon';
    src:url('../fonts/icomoon/icomoon.eot');
    src:url('../fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
    url('../fonts/icomoon/icomoon.woff') format('woff'),
    url('../fonts/icomoon/icomoon.ttf') format('truetype'),
    url('../fonts/icomoon/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

.sb-search {
    position: relative;
    margin-top: 10px;
    width: 0%;
    min-width: 60px;
    height: 60px;
    float: right;
    overflow: hidden;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
    -webkit-backface-visibility: hidden;
}

.sb-search-input {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    outline: none;
    background: #fff;
    width: 100%;
    height: 60px;
    margin: 0;
    z-index: 10;
    padding: 20px 65px 20px 20px;
    font-family: inherit;
    font-size: 20px;
    color: #2c3e50;
}

.sb-search-input::-webkit-input-placeholder {
    color: #efb480;
}

.sb-search-input:-moz-placeholder {
    color: #efb480;
}

.sb-search-input::-moz-placeholder {
    color: #efb480;
}

.sb-search-input:-ms-input-placeholder {
    color: #efb480;
}

.sb-icon-search,
.sb-search-submit  {
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
}

.sb-search-submit {
    background: #fff; /* IE needs this */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
    color: transparent;
    border: none;
    outline: none;
    z-index: -1;
}

.sb-icon-search {
    color: #fff;
    background: #e67e22;
    z-index: 90;
    font-size: 22px;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.sb-icon-search:before {
    content: "\e000";
}

/* Open state */
.sb-search{
    position: absolute;
    right:0px;
    top:0px;
}

.sb-search.sb-search-open,
.no-js {
    width: 200px;

}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
    background: #da6d0d;
    color: #fff;
    z-index: 400;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
    z-index: 400;
}