/*  
*@Description: 公共CSS及首页CSS
*@Author:      Hanli 
*@Update:      Hanli(2022-12-01)  
*/ 

@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html{
  color:#333333;background:#fff;
  /* -webkit-filter: grayscale(100%);
    filter:progid:DXImageTransform.Microsoft.BasicImage(graysale=1);
    FILTER: gray;
    filter: grayscale(100%); 
    -webkit-filter: grayscale(100%); 
    -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
    -o-filter: grayscale(100%); 
    filter: url("data:image/svg+xml;utf8,#grayscale"); 
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 
    -webkit-filter: grayscale(1); */
}
/* 内外边距重置 */
*{
  margin:0;padding:0;
}
body,button,input,select,textarea{
  /*font-family:"Gotham Rounded",Tahoma, Arial, Helvetica, STHeiti, 'Hiragino Sans GB','Hiragino Sans GB W3','Microsoft Yahei', '微软雅黑';*/
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  word-wrap: break-word;
  color: #333333;
}
input,select,textarea{
  font-size:100%;
}
div:focus{
  outline:none;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table{
  border-collapse:collapse;border-spacing:0;
}
/* IE bug fixed: th 不继承 text-align*/
th{
  text-align:inherit;
}
ol,ul{
    padding-left: 18px;
    /*list-style: outside;*/
}
ul li{
    list-style-type: disc;
}
ol li{
    list-style-type: decimal;
}
[class*='layui-'] li{
    list-style: none;
}
.layui-elem-field ol li{
    list-style: decimal;
}
.layui-elem-field ul li{
    list-style: disc;
}

/* 去掉列表前的标识, li 会继承 */
ol.no-style,ul.no-style{
  list-style:none;
  margin-bottom: 0;
  padding-left: 0;
}
ol.no-style li,ul.no-style li{
  list-style:none;
  position: relative;
  line-height: 150%;
}
ol.outside.no-style,ul.outside.no-style{
    padding-left: 20px;
}


ol.inline-block li,ul.inline-block li{
    display: inline-block;
}

/* 让标题都自定义 */
h1,h2,h3,h4,h5,h6 {
  font-size:100%;
  margin: 0;
  margin-bottom: 10px;
}
h3,h4,h5,h6 {
  line-height: 150%;
}

q:before,q:after {
  content:'';
}
/* 让链接在 hover 状态下不显示下划线 */
a:focus{
    text-decoration: none;
    color: #9a0038;
}
a, a:hover{
  text-decoration:none;
  color: #333;
}
a:hover{
    color: #9a0038;
}
/* button的cursor属性 */
button,a{
  outline:none;
  cursor:pointer;
}

/*  页面布局  */ 
@media screen and (max-width: 767px) {
    .container{
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .no_padding_container .container{
        padding-left: 0px;
        padding-right: 0px;
        overflow: hidden;
    }
}
/*.grey.no_padding_container{
    background: #fff!important;
}*/
.clearB{
  clear:both;
}
.fll{
  float:left;
}
.flr{
  float: right;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}

h1{
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5{
  font-size: 14px;
}
h6{
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  h1{
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
}
p{
  line-height: 150%;
  margin-bottom: 10px;
}
.clearfix:after {
    display: block;
    content: "\20";
    clear: both;
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: visible;
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
input, button, select, textarea {
    outline: none
}
textarea {
    resize: none
}
button {
    background: none;
    border: none;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}
#button-to-top {
    background: rgba(0,0,0,.4);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    line-height: 40px;

    text-align: center;
    font-size: 20px;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
/*more-btn*/
.more-btn{
    display: inline-block;
    padding: 11px 20px;
    color: #fff!important;
    background: #9A0038;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    font-size: 12px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.more-btn.big{
    width: 100%;
    border-radius: 40px;
    padding: 13px 20px;
    font-size: 16px;
    text-align: center;
    max-width: 300px;
}
@media screen and (max-width: 480px) {
    .more-btn.big{
        max-width: 100%;
    }
}
.more-btn.white{
    background: #fff;
    color: #9A0038!important;
}
.more-btn.grey{
    background: #414143;
}
.more-btn:hover,.more-btn:focus{
    color: #fff!important;
    background: #7E0331;
    text-decoration: none!important;
}
.more-btn.white:hover{
    background: #414143;
}
.more-btn.disabled{
    pointer-events: none;
    cursor: default;
    background: #aaa;
}

.more-btn.has-icon{
    padding-right: 40px;
}
.more-btn.has-icon:after{
    content: ' →';
    position: absolute;
    right: 15px;
    font-size: 18px;
    top: 50%;
    margin-top: -11px;
}
.more-btn.big.has-icon:after{
    position: static;
}
@media screen and (max-width: 768px) {
    .more-btn.has-icon{
        padding-right: 32px;
    }
    .more-btn.has-icon:after{
        font-size: 12px;
        margin-top: -9px;
    }
    .more-btn.big.has-icon:after{
        font-size: inherit;
    }
}
.single-link{
    margin-top: 10px;
    display: block;
    color: #9a0038;
}
.single-link:hover{
    text-decoration: underline;
}


/*bg-color*/
.bg_1{
    background: #9E2038;
}
.bg_2{
    background: #596793;
}
.bg_3{
    background: #75478F;
}
.bg_4{
    background: #A49FCE;
}
.bg_5{
    background: #98D0B4;
}
.bg_6{
    background: #B55C48;
}
.bg_grey{
    background: #414143;
}
.bg_yellow{
    background: #EDA945;
}

.select-box>div{
    display: inline-block;
    margin-top: 10px;
}

.form-select,.select-box input {
    background-color: transparent;
    color: white;
    height: 39px;
    padding: 10px;
    border: none;
    outline: none;
}

.j-select {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.j-select > .form-select.removed-appearence {
    padding-right: 40px;
}

.j-select > select,.j-select > input {
    background-color: rgba(240,240,240,1);
    width: 100%;
    color: #333;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}
.j-select > select:focus,.j-select > input:focus{
    border-color: #9A0038;
}

.j-select > input{
    cursor: text;
}

.grey .j-select > select,.grey .j-select > input{
    background-color: rgba(255,255,255,1);
}
.select-box .button {
    cursor: pointer;
    text-align: center;
    background-color: #9a0038;
    height: 39px;
    display: block;
    width: 100%;
    line-height: 39px;
    color: #fff;
    border-radius: 2px;
    /*font-size: 16px;*/
}
@media screen and (max-width: 767px) {
    .select-box .button,.form-select,.select-box input{
        height: 45px;
    }
    .select-box .button{
        line-height: 45px;
    }
    
}



@media screen and (max-width: 767px) and (min-width: 568px) {
    .col-xsm-6{
        width: 50%;
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*header*/
.logo{
    padding:15px 0;
}
.logo img{
    height: 50px;
}
.logo .container{
    position: relative;
}
@media screen and (max-width: 991px) {
    .logo{
        background: #9a0038;
        border-top: 1px solid #A72C45;
        border-bottom: 1px solid #7E0331;
    }
}
@media screen and (max-width: 767px) {
    .logo{
        text-align: left;
    }
    .logo img{
        height: 30px;
    }
}

/*header-top*/
.header-top{
    background: #414143;
    border-bottom: 1px solid #2e2e2e;
    white-space: nowrap;
    position: relative;
    min-height: 32px;
}
.header-top .menu-top{
    float: right;
    height: 36px;
}
.header-top .menu-top a{
    color: #d9d9d9;
    font-size: 12px;
    display: inline-block;
    padding: 0 12px;
    height: 36px;
    line-height: 36px;
    float: right;
    position: relative;
    font-weight: 300;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.header-top .menu-top a:after{
    content: "";
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 11px;
    width: 1px;
    background: #aaa;
}
.header-top .menu-top li:last-child a:after{
    background: none;
}
.header-top .menu-top a:hover{
    color: #fff;
}
.header-top .menu-top .img-box{
    position: absolute;
    top: 100%;
    width: 160px;
    padding: 15px;
    background: #fff;
    border-radius: 2px;
    left: 50%;
    margin-left: -80px;
    box-shadow: 2px 2px 10px #999;
    display: none;
}
.header-top .menu-top .img-box:after{
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.header-top .menu-top .img-box img{
    width: 100%;
}

.header-top .sub-menu{
    position: absolute;
    top: 100%;
    width: 190px;
    padding: 15px;
    background: #fff;
    border-radius: 2px;
    left: 50%;
    margin-left: -90px;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(50,50,50,0.2);
    -moz-box-shadow: 0px 5px 5px 0px rgba(50,50,50,0.2);
    box-shadow: 0px 5px 5px 0px rgba(50,50,50,0.2);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin-top: -20px;
}
.header-top .sub-menu:after{
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}
.header-top .sub-menu li{
    display: block;
}
.header-top .sub-menu li a{
    padding: 0;
    color: #000;
    float: unset;
}
.header-top .sub-menu li a:hover{
    color: #9A0038;
    text-decoration: underline;
}
.header-top .sub-menu li a:after{
    content: none;
}
.header-top .sub-menu li a:hover{
    text-decoration: underline;
}
.header-top .toggle:hover .sub-menu{
    opacity: 1;
    z-index: 1;
    margin-top: 0;
}
.header-top .toggle .fa-angle-down {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.header-top .toggle:hover .fa-angle-down {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/*.search{
    position: absolute;
    right: 0;
    top: 50%;
    left: 500px;
    text-align: right;
    margin-top: -25px;
    text-align: center;
}*/


.search-box-handle {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    float: right;
}
.search-box-handle:hover{
    color: #fff;
}
.search-box-handle .fa-search,.search-box-handle .fa-remove{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.search-form {
    position: absolute;
    right: 15px;
    width: 200px;
    top: 0;
    height: 50px;
    padding: 10px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
}
.search-form .form-text {
    width: 100%;
    border: none;
    padding: 5px 15px;
    padding-right: 40px;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    background: rgba(255,255,255,.75);
    /*background: #e9e8e8;*/
    font-size: 12px;
    /*color: #fff;*/
}
.search-form .form-text:focus{
    border-color: #fff;
}

.search-form .form-submit{
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    outline: none;
    width: 40px;
    height: 30px;
    /*color: #9A0038;*/
    font-size: 16px;
}

.header-nav .dropdown-menu li{
    list-style: none;
}

/*header-nav*/
@media screen and (min-width: 992px) {
    header{
        position: absolute;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(0,0,0,.1);
    }
    .header-nav{
        background: none;
    }
    .header-nav .nav{
        display: table;
        width: 100%;
        position: relative;
    }
    .header-nav .nav>li{
        position: static;
        display: table-cell;
        float: none;
        text-align: center;
    }
    .header-nav .dropdown-menu{
        background: rgba(255, 255, 255,0.96);
        border-radius: 0;
        border: none;
        float: none;
        right: 0;
        padding: 30px 50px;
        border-top: 2px solid #7E0331;
        border-bottom: 5px solid #7E0331;
        margin-top: 0;
    }
    .header-nav .dropdown-menu>.row{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-align-items: stretch;
        align-items: stretch;
    }
    .header-nav .dropdown-menu>.row:before,
    .header-nav .dropdown-menu>.row:after{
        content: none;
    }
    .header-nav .nav>li>a {
        font-size: 16px;
        display: block;
        padding: 8px 0;
        border-radius: 0;
        color: #fff;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
    .header-nav .nav>li>a .fa{
        margin-left: 5px;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .header-nav .nav>li>a:focus, .header-nav .nav>li>a:hover {
        text-decoration: none;
        background-color: #7E0331;
        border: none;
        color: #fff;
    }
    .header-nav .nav .open>a, .header-nav .nav .open>a:focus, .header-nav .nav .open>a:hover {
        background-color: #7E0331;
        color: #fff;
    }
    .header-nav .nav .open>a .fa-angle-down{
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .header-nav .nav .open{
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    /*.header-nav .nav .open>a .fa-angle-down:before{content:"\f106";}*/
    .header-nav .nav .open>a .fa-angle-down{
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .nav-pills>li+li{
        margin-left: 0;
    }

    /*sub-menu*/

    .header-nav .dropdown-menu .sub-title{
        font-size: 18px;
        display: block;
        color: #9a0038;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .header-nav .dropdown-menu .sub-title+ul{
        margin-bottom: 15px;
    }
    .header-nav .dropdown-menu .sub-title+ul>li{
        border-bottom: 1px dashed #ccc;
        position: relative;
    }
    .header-nav .dropdown-menu .sub-title+ul>li:before{
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #9A0038;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        left: -18px;
        top: 17px;
    }
    .header-nav .dropdown-menu .sub-title+ul>li>a{
        display: block;
        padding: 9px 0;
    }
    .header-nav .dropdown-menu .sub-title+ul>li a:hover{
        color: #9a0038;
    }
    .mobile-nav-header{
        display: none!important;
    }
    /*header header-fixed*/
    .header.header-fixed .header-nav{
        background: #9A0038;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        border-bottom: 1px solid #7E0331;
    }
    .header.header-fixed .header-nav .nav>li>a{
        padding: 15px 0;
    }
}

/* mobile header-nav*/
@media screen and (max-width: 991px) {
    .header-nav{
        bottom: auto;
        top: 0;
        text-align: left;
    }
    .header-nav .nav{
        float: none;
    }
    .header-nav .nav>li{
        float: none;
        display: block;
    }
    .header-nav .nav>li>a{
        padding: 0;
        font-size: 16px;
    }
    .header-nav .nav>li>a span{
        padding: 10px 0;
        display: block;
    }
    .header-nav .nav-pills,.header-nav .dropdown-menu{
        position: fixed; 
        top: 0; 
        right: -280px; 
        bottom: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        z-index: 999;
        width: 280px;
        background: #fff;
        padding: 15px 15px 30px;
        left: auto;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .header-nav .dropdown-menu{
        border: none;
        padding: 15px 0;
        margin-top: 0;
    }
    .header-nav .dropdown-menu>.row{
        padding: 0;
        width: auto;
        margin: 0;
    }
    .header-mobile{
        float: right;
    }
    .site-mobile .header-nav .nav-pills,.site-mobile .dropdown-menu.show{
        right: 0;
    }
    .site-tree-mobile{
        display: block!important; 
        height: 82px; 
        line-height: 82px; 
        text-align: center; 
        font-size: 18px;
        cursor: pointer;
        padding: 0 15px;
        color: #fff;
        position: absolute; 
        z-index: 998; 
        right: 0px; 
        top: -16px; 
    }
    .site-tree-mobile .fa{
        font-size: 22px;
        margin-left: 5px;
    }
    .site-mobile .site-mobile-shade{
        content: ''; 
        position: fixed; 
        top: 0; 
        bottom: 0; 
        left: 0; 
        right: 0; 
        background-color: rgba(0,0,0,.75); 
        z-index: 999;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .header-nav .nav .fa-angle-down {
        float: right;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        right: 0;
        line-height: 40px;
        text-align: right;
        margin-top: 0px;
    }
    .header-nav .nav .fa-angle-down:before {
        content: "\f105";
        color: #9a0038;
        opacity: .75;
        margin-top: 0px;
    }
    .header-nav .nav>li>a:focus, .header-nav .nav>li>a:hover,.header-nav .nav .open>a, .header-nav .nav .open>a:focus, .header-nav .nav .open>a:hover {
        background: none;
        border: none;
        color: #333;
    }
    .header-nav .nav>li>a:focus .fa-angle-down:before, .header-nav .nav>li>a:hover .fa-angle-down:before{
        content: "\f105";
    }
    .mobile-nav-header{
        display: block!important;
        text-align: right;
        margin-top: -15px;
        height: 60px;
        line-height: 60px!important;
        padding: 0!important;
    }
    .header-nav .back,.header-nav .closeIcon{
        color: #fff;
        font-size: 20px;
        display: inline-block;
        cursor: pointer;
        padding: 0 15px;
    }
    .header-nav .back{
        float: left;
    }
    .header-nav .dropdown-menu>.row>li{
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-nav .dropdown-menu .sub-title{
        padding: 5px 0;
        display: block;
        font-size: 16px;
        color: #9a0038;
    }
    .header-nav .dropdown-menu .sub-title+ul{
        border-top: 1px dashed #9a0038;
        padding: 10px 0 10px 20px;
    }
    .header-nav .dropdown-menu .sub-title+ul>li:before{
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #9A0038;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        left: -18px;
        top: 15px;
        opacity: .85;
    }
    .header-nav .dropdown-menu .sub-title+ul>li>a{
        width: 100%;
        overflow: hidden;
        display: block;
        font-size: 14px;
        padding: 8px 0;
    }
    .logo{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        padding: 15px 0;
    }

    .dropdown-backdrop{
        display: none;
    }

    body{
        position: relative;
        left: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .site-mobile,.site-mobile .logo{
        left: -280px;
    }
   /* .dropdown-menu-box{
        background-image: none!important;
    }*/
}
@media screen and (max-width: 767px) {
    .site-tree-mobile{
        height: 62px;
        line-height: 68px;
    } 
}



/*footer*/
footer{
    background: #414143;
}
footer,footer a{
    color: #eee!important;
}
footer a:hover{
    color: #A32A45!important;
}
.footer-top{
    padding: 30px 0;
    border-bottom: 1px solid #2e2e2e;
}
.footer-top img{
    max-width: 100%;
}
.footer-top ul{
    padding-bottom: 10px;
}
.footer-top li{
    margin-bottom: 5px;
    line-height: 150%;
}
.footer-top li i{
    position: absolute;
    left: -18px;
    top: 4px;
}
.footer-top p{
    margin-bottom: 5px;
}
.footer-top .square{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #eee;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 4px;
}
footer .title{
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 767px) {
    footer .title{
        margin: 15px 0 10px;
    }
}

.footer-bottom{
    padding: 10px 0;
    border-top: 1px solid #4d4d4d;
    font-size: 12px;
}
.footer-bottom img{
    max-width: 100%;
}
.footer-top .media{
    padding: 9px 0;
}
.footer-top .media > a{
    margin-bottom: 10px;
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 18px;
    margin-right: 8px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.footer-top .media > a:nth-of-type(1){
    background: #04C102;
}
.footer-top .media > a:nth-of-type(2){
    background: #D52929;
}
.footer-top .media > a:nth-of-type(3){
    background: #1AB2E8;
}
.footer-top .media > a:nth-of-type(4){
    background: #3B589C;
}
.footer-top .media > a:nth-of-type(5){
    background: #D04E42;
}
.footer-top .media > a:nth-of-type(6){
    background: #006A9A;
}
.footer-top .media > a:hover{
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .footer-top .qrcode{
        text-align: center;
    }
}

/*banner*/
.banner{
    /*min-height: 600px;*/
    padding-top: 36px;
    position: relative;
}
.banner .swiper-container {
    width: 100%;
    height: 100%;
}
.banner .swiper-slide {
    text-align: center;
    background: #fff;
    position: relative;
}
.banner img{
    width: 100%;
}
@media screen and (max-width:991px) {
    .banner{
        padding-top: 82px;
    }
}

@media screen and (max-width: 767px) {
    .banner{
        padding-top: 62px;
        /*height: 500px;
        min-height: 0;*/
    }
}
@media screen and (max-width: 591px) {
    .banner .swiper-slide{
        width: 100%;
        height: 240px;
        overflow: hidden;
    }
    .banner img{
        height: 100%;
        position: absolute;
        min-width: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-height: 100%;
        width: auto;
    }
}

/*swiper-pagination-bullet*/
.swiper-pagination-bullet {
    opacity: .8;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    position: relative;
}
.swiper-button-prev,.swiper-button-next{
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #9E2038;
}
.swiper-pagination-bullet-active:after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    left: -6px;
    top: -6px;
    border-radius: 50%;

}
@media screen and (max-width: 767px) {
    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    .swiper-pagination-bullet-active:after{
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        border: 1px solid #fff;
        left: -4px;
        top: -4px;
        border-radius: 50%;

    }
}

.bottom-nav{
    /*background: #9A0038;*/
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 20px;
    z-index: 2;
}
.bottom-nav .container{
    position: relative;
}

.banner .swiper-pagination-bullet{
    margin: 0 5px;
}
.banner .swiper-pagination-bullet-active{
    background: #fff;
}

/*.banner .swiper-button-prev,.banner .swiper-button-next{
    background-image: none;
    font-size: 64px;
    color: #fff;
    left: 15px;
    margin-top: -2px;
}
.banner .swiper-button-next{
    right: 15px;
    left: auto;
}*/
.banner .swiper-button-prev{
    left: -27px;
}
.banner .swiper-button-next{
    right: -27px;
}
.banner .swiper-container:hover .swiper-button-prev{
    left: 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.banner .swiper-container:hover .swiper-button-next{
    right: 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slide-headline{
    position: absolute;
    top: 0;
    left: 0px;
    right: 0px;
    bottom: 0px;
    color: white;
    text-align: left;
    font-size: 14px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.text-box{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    background: rgba(154,0,56,.75);
    padding: 25px 0;
    color: #fff;
    text-align: left;
    display: inline-block;
}
.text-box .title{
    font-size: 24px;
    height: 36px;
    line-height: 36px;
    margin-bottom: 0;
    padding-right: 130px;
}
.text-box .title a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.text-box a:hover{
    text-decoration: underline;
}
.text-box .con{
    position: relative;
    padding-right: 130px;
}
.text-box .con h6{
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 0;
}
.text-box .container{
    position: relative;
}
.text-box .more-btn{
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -19px;
}
.banner .swiper-container-horizontal>.swiper-pagination-bullets, .banner .swiper-pagination{
    bottom: 79px;
}
@media screen and (min-width: 1400px) {
    .text-box{
        padding: 25px 0;
    }
    .text-box .more-btn{
        right: 6%;
    }
    .banner .swiper-container-horizontal>.swiper-pagination-bullets, .banner .swiper-pagination{
        bottom: 79px;
    }
}
@media screen and (max-width: 991px){
    .text-box .title{
        font-size: 20px;
        height: 22px;
        line-height: 22px;
    }
    .banner .swiper-container-horizontal>.swiper-pagination-bullets, .banner .swiper-pagination{
        bottom: 65px;
    }
}
@media screen and (max-width: 767px){
    .text-box {
        min-width: 0;
        padding: 15px 0;
    }
    .slide-headline .container{
        display: block;
        width: 100%;
    }
    .text-box .title{
        font-size: 14px;
        padding-right: 0;
        height: 16px;
        line-height: 16px;
    }
    .text-box .con{
        padding-right: 0;
    }
    .text-box .con h6{
        font-size: 12px;
    }
    .text-box .more-btn{
        position: relative;
        margin-top: 0px;
    }
    .banner .swiper-container-horizontal>.swiper-pagination-bullets, .banner .swiper-pagination{
        bottom: 39px;
    }
}


/*block*/
.block{
    padding: 40px 0;
    position: relative;
}
.block.wide{
    padding: 0;
}
.block .main-title{
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 8px;
}
.block .sub-title{
    margin-bottom: 15px;
}
.block.grey{
    background: #f0f0f0;
}
.block.darkGrey{
    background: #707A7A;
    color: #fff;
}
.block.black{
    background: #202020;
    color: #fff;
}
.block.bg{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99;
}
.block.bg:before{
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background: rgba(63, 63, 63,.8);
}
.block.bg .container{
    z-index: 2;
    position: relative;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .block .main-title{
        margin-top: 2px!important;
        font-size: 24px;
        margin-bottom: 30px;
    }
}
.block.black a,.block.darkGrey a,
.block.black p,.block.darkGrey p,
.block.black .single-link:before,.block.darkGrey .single-link:before{
    color: #fff;
}
.block p{
    color: #444;
}


/*fieldset*/
fieldset {
    padding: 0;
    margin: 0;
    border-top: 1px solid silver;
    position: relative;
}
fieldset legend{
    width: auto;
    padding: 0 10px;
    border: none;
    margin-bottom: 0;
    color: inherit;
}

/*index-title*/
.index_title h2{
    font-size: 24px;
    margin-bottom: 5px;
    position: relative;
    color: #9A0038;
    font-weight: 300;
}
.index_title{
    margin-bottom: 20px;
}

.index_title fieldset{
    margin-right: 30px;
}
.index_title legend{
    padding-left: 0;
}
.line-cross{
    width: 26px;
    height: 26px;
    float: right;
    position: relative;
    top: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
fieldset .line-cross{
    position: absolute;
    top: 1px;
    right: -30px;
}
.line-cross:after{
    content: "";
    position: absolute;
    width: 35px;
}
.line-cross:before, .line-cross:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #9A0038;
    width: 1px;
    height: 17px;
    margin-top: -8px;
}
.line-cross:after {
    width: 17px;
    height: 1px;
    margin-top: 0px;
    margin-left: -8px;
}
.line-cross:hover{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.block.bg .line-cross:before, .block.bg .line-cross:after{
    background: #fff;
}

/*slide*/
.slide {
    margin-bottom: 20px;
}
.slide .img-box{
    height: 0;
    padding-bottom: 66.666666%;
    overflow: hidden;
    position: relative;
}
.slide .img-box:after{
    content: "";
    position: absolute;
    height: 5px;
    width: 0;
    left: 0;
    bottom: 0;
    background: #9A0038;
    /*opacity: .8;*/
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.slide:hover .img-box:after{
    width: 100%;
}
.slide .img-box img{
    width: 100%;
}
.thumbnail-hoverlay.main-color-1-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .4s;
}
.thumbnail-hoverlay-cross {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transform: scale(3) rotate(90deg);
    transform: scale(3) rotate(90deg);
    transition: all .45s;
}
.thumbnail-hoverlay-cross:before, .thumbnail-hoverlay-cross:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    width: 1px;
    height: 43px;
    margin-top: -21px;
}
.thumbnail-hoverlay-cross:after {
    width: 43px;
    height: 1px;
    margin-top: 0px;
    margin-left: -21px;
}
@media screen and (min-width: 991px) {
    .slide:hover .thumbnail-hoverlay.main-color-1-bg {
        opacity: .95;
        background-color: #a32a45;
    }
    .slide:hover .thumbnail-hoverlay-cross {
        opacity: 1;
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}
.slide .text{
    padding: 20px;
    background: #f0f0f0;
}
.slide .text.noDesc{
    padding: 10px 0 20px;
    background: none!important;
}
.slide .text h4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    height: 27px;
    /*line-height: 1;*/
}
.slide .text .title{
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    line-height: 150%;
    height: 44px;
}
.slide .text.noDesc .title{
    margin-bottom: 5px;
}
.slide .text .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    font-size: 13px;
    height: 55px;
    color: #777;
}

.slide .text .ul-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    height: 84px;
    color: #666;
}
.slide .text p.ul-desc{
    -webkit-line-clamp: 4;
}
.slide .text .single-link{
    margin-top: 30px;
}
@media screen and (max-width: 567px) {
    .slide .text .desc{
        height: auto;
        max-height: 55px;
    }
    .slide .text .ul-desc{
        height: auto;
        max-height: 84px;
    }
}
ul.ul-desc li{
    line-height: 200%;
}
.slide .text .time{
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    padding-top: 5px;
    /*border-top: 1px solid #ccc;*/
}
.slide .text.noDesc .time{
    margin-top: 0;
}
.block.grey .slide .text,.block.bg .slide .text{
    background: #fff;
}

/*slide-grid*/
.slide-grid{
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    top: 0;
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .slide-grid:hover{
        top: -5px;
        box-shadow: 3px 3px 8px #ccc,
                    -3px 3px 8px #ccc;
    }
}
@media screen and (max-width: 767px) {
    .slide-grid{
        margin-bottom: 10px;
    }
}
.slide-grid img{
    width: 100%;
}
.slide-grid .img-box{
    position: relative;
    overflow: hidden;
}
.slide-grid .img-box:after{
    content: "";
    position: absolute;
    height: 5px;
    width: 0;
    left: 0;
    bottom: 0;
    background: #9A0038;
    /*opacity: .8;*/
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.slide-grid:hover .img-box:after{
    width: 100%;
}
.slide-grid .text {
    padding: 15px;
    background: #fff;
}
.block.grey .slide-grid .text, .block.bg .slide-grid .text {
    background: #fff;
}
.slide-grid .text .title {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 150%;
}
.slide-grid .text .desc {
    margin-bottom: 0;
    font-size: 13px;
    color: #777;
}
.slide-grid .text .time {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    padding-top: 5px;
    position: relative;
    padding-left: 18px;
}
.slide-grid .text .time:before{
    content: "\f017";
    position: absolute;
    left: 0;
    font-family: FontAwesome;
    color: #666;
    top: 5px;
}
.grid-box{
    margin-left: -15px;
    margin-right: -15px;
}
@media screen and (max-width: 767px) {
    .grid-box{
        margin-left: 0;
        margin-right: 0;
    }
}

/*responsive*/
.responsive-box{
    overflow: hidden;
}
.responsive{
    padding-bottom: 30px;
    position: relative;
}
.responsive .swiper-button-next,.responsive .swiper-button-prev{
    right: 0;
    top: -34px;
    background: none;
    color: #9a0038;
    z-index: 88;
    width: 16px;
}
.responsive .swiper-button-prev{
    left: auto;
    right: 16px;
}
.responsive .swiper-button-prev:before,.responsive .swiper-button-next:before{
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    margin-left: -2px;
    top: 50%;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    font-size: 24px;
}
.responsive .swiper-button-prev:before{
    content: '\f104';
}
.responsive .swiper-button-next:before{
    content: '\f105';
}
.responsive .swiper-button-next.swiper-button-disabled, 
.responsive .swiper-button-prev.swiper-button-disabled{
    opacity: .55;
}

/*column-inner*/
.column-inner{
    color: #fff;
}
.column-inner .index_title{
    margin-bottom: 40px;
}
.column-inner .index_title h2{
    color: #fff;
}
.column-inner .more{
    margin-top: 20px;
}


/*index-slide*/ 
.index-slide{
    padding: 60px 0 40px;
}
.index-slide .index_title h2{
    color: #9A0038;
}
.index-slide .img-box{
    margin-bottom: 10px;
}
.index-slide .slide .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 40px;
    font-size: 15px;
    line-height: 20px;
}
.index-slide .slide .time{
    color: #888;
    margin-top: 10px;
}
.index-slide .more a{
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .index-slide{
        padding: 40px 0;
    }
    .index-slide .slide .title{
        height: auto;
        max-height: 40px;
    }
    .index-slide .more{
        position: absolute;
        bottom: -10px;
        right: 15px;
        z-index: 99;
    }
}
@media screen and (max-width: 991px) {
    .index-slide .responsive-box,.index-slide .notice-box,.index-slide .event-box {
        margin-bottom: 30px;
    }
}
.index-slide .swiper-container-horizontal>.swiper-pagination-bullets{
    text-align: left;
}
.index-slide .more{
    margin-top: 0;
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .index-slide .responsive{
        padding-bottom: 0;
    }
}

/*index-info*/
.index-info{
    padding: 60px 0;
}
.index-info .index_title{
    margin-bottom: 30px;
}


/*pre-box*/
.pre-box{
    text-align: center;
    padding: 0 30px;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #aaa;
    border-left: 5px solid #9A0038;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    height: 60px;
    line-height: 60px;
}
.pre-box:before{
    content: "";
    position: absolute;
    left: 0;
    width: 0px;
    top: 0;
    bottom: 0;
    background: #9A0038;
    color: #fff;
    z-index: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.pre-box .icon{
    color: #fff;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    line-height: 30px;
    text-align: center;
}
.pre-box .icon em{
    font-style: normal;
    z-index: 1;
    position: relative;
    /*font-size: 14px;*/
}
.pre-box .icon:before{
    content: "";
    position: absolute;
    border: 30px solid transparent;
    border-bottom-color: #9A0038;
    left: -30px;
    top: -30px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: 0;
}
.pre-box>*{
    position: relative;
    z-index: 1;
}
.pre-box:hover{
    color: #fff;
    border-color: #9A0038;
}
.pre-box:hover:before{
    width: 100%;
}
/*.pre-box:after{
    content: ' →';
    position: absolute;
    right: 40px;
    font-size: 18px;
}*/
/*.pre-box:hover{
    background: #414143;
}*/


/*下拉多选*/
.filter {
    padding: 60px 0;
}
.filter select[multiple]+.layui-form-select dd{ padding:0;}
.filter select[multiple]+.layui-form-select .layui-form-checkbox[lay-skin=primary]{ margin:0 !important; display:block; line-height:36px !important; position:relative; padding-left:26px;}
.filter select[multiple]+.layui-form-select .layui-form-checkbox[lay-skin=primary] span{line-height:36px !important; float:none;}
.filter select[multiple]+.layui-form-select .layui-form-checkbox[lay-skin=primary] i{ position:absolute; left:10px; top:0; margin-top:9px;}
.multiSelect{ line-height:normal; height:auto; padding:0px 10px; overflow:hidden;height:38px; margin-top:-38px; left:0; z-index:99;position:relative;background:none;}
/*.multiSelect span{ padding:2px 0px; display:block; background: #fff; line-height:20px; margin:6px 5px 6px 0; float:left;}*/
/*.multiSelect a span{ float:left;}*/
.multiSelect span{
    background: #fff;
}
.multiSelect{
    height: 38px;
    line-height: 38px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.multiSelect a i{ float:left; display:block; margin:2px 0 0 2px; border-radius:2px; width:16px; height:16px; background:url(../images/close.png) no-repeat center; background-size:65%; padding:4px;}
.multiSelect a i:hover{ background-color:#545556;}
.filter .filter-item{
    margin: 10px 0;
    /*padding: 0 5px;*/
}
.filter-box{
    padding-right: 157px;
    position: relative;
}
.filter-box .filter-submit{
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    padding: 0;
}
/*.filter .row{
    margin-left: -5px;
    margin-right: -5px;
}
.filter .row .col-md-10{
    padding: 0 5px;
}*/
.filter .layui-btn+.layui-btn{
    margin-left: 5px;
}
@media screen and (max-width: 767px) {
    .filter .filter-item{
        margin: 15px 0;
    }
}
@media screen and (max-width: 991px) {
    .filter-box{
        padding-right: 0;
    }
    .filter-box .filter-submit{
        position: static;
        text-align: right;
    }
}


.layui-form-danger+.layui-form-select .layui-input, .layui-form-danger:focus{
    border: 1px solid #9A0038!important;
}
.layui-form-checked[lay-skin=primary] i{
    border-color: #9A0038;
    background-color: #9A0038;
}
.layui-form-checkbox[lay-skin=primary]:hover i{
    border-color: #9A0038;
}
.layui-form-select dl dd.layui-this{
    background-color: #9A0038;
}

/*.layui-btn*/
.layui-btn{
    background-color: #9A0038;
    border-radius: 19px;
    padding: 0 20px;
}
.layui-btn-primary{
    background-color: #fff;
}
.layui-btn-primary:hover{
    border-color: #9A0038;
}
.layui-form-select .layui-edge{
    /*border-top-color: #9A0038;*/
}


/*screen >1400*/
@media screen and (min-width: 1400px){
    .container {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        max-width: 1700px;
        margin: 0 auto;
    }
    /*.banner .swiper-button-prev, .banner .swiper-button-next{
        left: 5%;
        margin-left: 15px;
    }
    .banner .swiper-button-next {
        margin-left: 50px;
    }*/
    .search-form{
        right: 5%;
    }
    .header-nav .nav>li>a{
        padding: 15px 0;
    }
}


.search-box{
    position: relative;
}
.search-box .search-btn{
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    padding: 0 10px;
}
.search-box .search-btn:hover{
    color: #9A0038;
}
.search-page .second{
    border-top: 5px solid #f0f0f0;
}
.search-page .search-info{
    font-size: 16px;
    margin-top: 20px;
}
.search-page .search-info span{
    color: #9A0038;
    font-weight: bold;
    display: inline-block;
    padding: 0 5px;
}
.search-page .media{
    max-width: 800px;
}
.search-page .media a{
    color: #000;
}
.search-page .media a:hover{
    color: #9a0038;
}

.search-page  .item-title{
    font-size: 18px;
    color: #9A0038;
}
.search-page .lists li:nth-of-type(odd){
    background: none;
}

.search-page .category-name{
    color: #9A0038;
}
.search-page .page-content li{
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    margin-bottom: 10px;
}
.search-page .page-content li .title{
    font-size: 16px;
    margin-bottom: 5px;
}
.search-page .page-content li .title a{
    color: #000;
}
.search-page .page-content li .title a:hover{
    color: #9A0038;
}
.search-page .page-content li .time{
    padding-top: 5px;
}
.search-page .page-content li .fa{
    margin-right: 5px;
}

/*index-notice*/
/*.index-notice ul li{
    padding-left: 15px;
    position: relative;
}
.index-notice ul li:after{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9A0038;
}*/


.index-notice .item{
    margin-bottom: 10px;
}
.index-notice ul li:last-child .item{
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .index-notice .item{
        margin-bottom: 10px;
    }
    .index-notice ul li{
        padding-left: 15px;
        position: relative;
    }
    .index-notice ul li:after{
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #9A0038;
    }
}
.index-notice .item .notice-time{
    color: #888;
}
.index-notice .item .time{
    color: #888;
    margin-top: 5px;
    position: relative;
}
@media screen and (min-width: 768px) {
    .index-notice .item .time:after{
        content: "";
        position: absolute;
        bottom: -4px;
        width: 40px;
        height: 1px;
        background: #9A0038;
        left: 0;
    }
}
.index-notice .item .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 39px;
}
@media screen and (min-width: 991px) {
    .index-notice .item{
        height: 65px;
    }
}
@media screen and (min-width: 1200px) {
    .index-notice .item{
        height: 0;
        padding-bottom: 22%;
    }
}
@media screen and (min-width: 1500px) {
    .index-notice .item{
        padding-bottom: 20%;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .index-notice .item .title{
        line-height: 130%;
        max-height: 35px;
    }
}





/*index-event*/
.index-event .media{
    margin-bottom: 10px;
}
.index-event ul li:last-child .media{
    margin-bottom: 0;
}
.index-event .media .event-title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 39px;
}
@media screen and (min-width: 991px) {
    .index-event .media{
        height: 65px;
    }
}
@media screen and (min-width: 1200px) {
    .index-event .media{
        height: 0;
        padding-bottom: 22%;
    }
    .index-slide .more{
        margin-top: 10px;
    }
}
@media screen and (min-width: 1500px) {
    .index-event .media{
        height: 0;
        padding-bottom: 20%;
    }
    .index-slide .more{
        margin-top: 0;
    }
}
.index-event .media .event-location{
    margin-top: 5px;
    color: #888;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 21px;
}
.index-event .media .event-time{
    border: 1px solid #9A0038;
    padding: 5px;
    color: #9A0038;
    text-align: center;
    width: 50px;
    margin-top: 3px;
    line-height: 130%;
}
.index-event .media .event-time .day{
    font-size: 20px;
}
.index-event .media .event-time .month{
    font-size: 12px;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .index-event .media .event-title{
        line-height: 130%;
        max-height: 35px;
    }
}



@media screen and (max-width: 767px) {
    .index-slide .notice-box .more,.index-slide .event-box .more{
        /*position: absolute;
        right: 15px;
        top: 5px;
        bottom: auto;
        margin-bottom: 0;*/
        position: static;
        text-align: right;
    }
}
.index-slide .notice-box .more,.index-slide .event-box .more{
    margin-top: 20px;
}
.index-slide .index_title h2{
    font-weight: 400;
}

.block-btn {
    padding: 5px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    position: relative;
    margin: 15px 0;
}
.logo-container{
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    overflow: hidden;
}
.logo-container [class*='col-']{
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: #fff;
    padding: 15px;
}
.logo-container [class*='col-'] img{
    width: 100%;
}
.logo-container .logo-btn{
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}






