/*
*@Description: 公共CSS及首页CSS
*@Author:      Hanli 
*@Update:      Hanli(2019-04-29)  
*/

@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #333333;
    background: #fff;
}

/* 内外边距重置 */
* {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif,"Microsoft Yahei";
    font-size: 14px;
    word-wrap: break-word;
    color: #333333;
    line-height: 1.5;
    /*font-weight: 200;*/
}

/*表单元素*/
input,
select,
textarea {
    font-size: 100%;
}

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;
}

div:focus {
    outline: none;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

i {
    font-style: normal;
}

ol,
ul {
    padding-left: 18px;
}


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;
}

/* 让标题都自定义 */
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: inherit;
}

a,
a:hover {
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #333;
}

a:hover {
    color: #D6000F;
}

/* button的cursor属性 */
button,
a {
    outline: none;
    cursor: pointer;
}

/*  页面布局  */
p {
    margin-bottom: 10px;
}

img {
    max-width: 100%;
}

.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;
    }
}

/*颜色定义*/
.color_red{
    color: #D6000F!important;
}
.color_yellow{
    color: #FFE100!important;
}
.bg-grey{
    background: #f2f2f2;
}
@media screen and (max-width: 991px) {
    .bg-grey{
        background: #fff;
    }
}

#button-to-top {
    background: rgba(251,80,73, .8);
    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;
}

/*header*/
header {
    height: 80px;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 998;
    border-bottom: 1px solid #E5E5E5;
}
header .container {
    position: relative;
}

header .logo {
    float: left;
    padding: 10px 0;
}
header .logo img{
    height: 60px;
}

.header-top{
    position: absolute;
    right: 99px;
    top: 0;
    height: 80px;
}
header .menu{
    padding: 10px 0;
    display: inline-block;
}
header .menu ul,
header .menu ul li{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
header .menu ul{
    display: table;
    width: 100%;
    max-width: 100%;
}
header .menu ul li{
    display: table-cell;
    position: relative;
}
header .menu ul li a{
    display: block;
    padding: 19px 12px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
header .menu ul li a:hover{
    color: #FB5049;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
    header .menu ul li a{
        padding: 19px 5px;
    }
}

header .search{
    background: #E4E3E1;
    height: 80px;
    display: inline-block;
    vertical-align: top;
}
header .search .form-submit{
    display: inline-block;
    width: 85px;
    font-size: 22px;
    line-height: 80px;
    text-align: center;
    color: #FB5049;
    font-weight: bold;
}
header .search input{
    border: none;
    height: 80px;
    line-height: 80px;
    outline: none;
    border: 0;
    background: #E4E3E1;
    /*color: #929293;*/
    padding-left: 0;
    float: left;
    width: 0;
    opacity: 0;
    -webkit-transition: width .3s, padding-left .3s,opacity .3s;
    -o-transition: width .3s, padding-left .3s,opacity .3s;
    transition: width .3s, padding-left .3s,opacity .3s;
}
header .search:hover input{
    width: 130px;
    opacity: 1;
    padding-left: 28px;
}
header .search input:focus{
    outline: none;
}
header .header-toggle{
    position: absolute;
    right: 15px;
    top: 0;
    background: #FB5049;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    height: 80px;
    line-height: 80px;
    width: 85px;
    text-align: center;
    cursor: pointer;
    z-index: 999;

}
header .header-toggle .site-tree {
    padding: 27px 20px;
    line-height: 2px;
}
.site-tree .icon-reorder{
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    display: inline-block;
}

.menu-nav-container{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -410px;
    width: 400px;
    background: #fff;
    z-index: 999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.menu-nav-container ul,
.menu-nav-container ul li{
    padding-left: 0;
    list-style: none;
}
.menu-nav-container .menu-top{
    height: 80px;
    line-height: 80px;
    background: #FB5049;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.menu-nav-container .menu-top .menu-logo{
    display: inline-block;
    padding: 15px 20px;
    line-height: 1;
}
.menu-nav-container .menu-top .menu-logo img{
    height: 50px;
}
.menu-nav-container .menu-top a{
    color: #fff;
    display: inline-block;
    width: 80px;
    text-align: center;
    font-weight: bold;
}
.menu-nav-container .menu-top li{
    display: inline-block;
    background: #D5282B;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.menu-nav-container .menu-top li:hover,
.menu-nav-container .menu-top .active{
    background: #B70F14;
}
.menu-nav-container .menu-top .menu-close{
    font-size: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.menu-nav-container .menu-nav{
    padding: 0px 30px;
    margin-bottom: 0;
    position: absolute;
    top: 110px;
    left: 0;
    bottom: 10px;
    overflow: auto;
    right: 0;
}
.menu-nav-container .menu-nav>li{
    margin-bottom: 10px;
}
.menu-nav-container .menu-nav>li>a{
    font-size: 15px;
    color: #FB5049;
    font-weight: bold;
    display: block;
    padding-bottom: 5px;
}
.menu-nav-container .dropdownMenu li{
    margin-right: 12px;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
}
.menu-nav-container .dropdownMenu li a{
    color: #808080;
}
.menu-nav-container .dropdownMenu li a:hover{
    color: #FB5049;
}
.menu-show .menu-nav-container{
    right: 0;
}
.menu-show .site-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;
}
@media screen and (max-width: 991px) {
    header .menu{
        display: none;
    }
}
@media screen and (max-width: 767px) {
    header .logo{
        padding: 18px 0;
        margin-left: -10px;
    }
    header .logo img{
        height: 44px;
    }
    .menu-nav-container{
        width: 320px;
        right: -330px;
    }
    .menu-nav-container .menu-nav{
        padding: 0px 20px;
        top: 100px;
    }
    .menu-nav-container .menu-top .menu-logo{
        padding: 20px 10px;
    }
    .menu-nav-container .menu-top .menu-logo img{
        height: 40px;
    }
    header .header-toggle{
        right: 0;
        width: 80px;
    }
    header .header-top{
        right: 80px;
    }
    header .search{
        background: none;
    }
    header .search .form-submit{
        width: 50px;
        position: absolute;
        top: 0;
        right: 0;
        color: #FB5049;
    }
    header .search input{
        background: #FFE100;
        padding-right: 78px;
        float: right;
    }
    header .search:hover{
        left: 0;
    }
    header .search:hover input{
        width: 100%;
    }
}

/*footer*/
footer{
    background: #444;
}
footer,footer a{
    color: #aaa;
    font-size: 13px;
}
footer a:hover{
    color: #fff;
}
.footer-top{
    padding: 30px 0;
}
.footer-top img{
    max-width: 100%;
}
.footer-top .footer-logo{
    margin-bottom: 15px;
}
.footer-top .footer-logo img{
    max-height: 60px;
}
.footer-top ul,
.footer-top ul li{
    list-style: none;
    padding-left: 0;
}

.footer-top li{
    margin-bottom: 5px;
    line-height: 150%;
    position: relative;
}
.footer-top .quick-link{
    padding-left: 15px;
}
.footer-top .quick-link li:after{
    content: "\e609";
    font-family: "iconfont";
    position: absolute;
    left: -20px;
    font-size: 12px;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    transform: scale(.7);
    font-weight: bold;
}
.footer-top p{
    margin-bottom: 5px;
}
footer .title{
    color: #c4c4c4;
    margin-bottom: 10px;
    font-size: 16px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
}
@media screen and (max-width: 991px) {
    footer .title{
        margin: 20px 0 15px;
    }
}
.footer-qrcode {
    width: 100%;
    font-size: 12px;
}
.footer-qrcode .qrcode-item{
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}
.footer-qrcode .qrcode-box{
    width: 110px;
    height: 110px;
    /*border-radius: 10px;*/
    overflow: hidden;
    margin: 0 auto;
    /*padding: 3px;*/
    /*background: #fff;*/
    margin-bottom: 5px;
}
.footer-qrcode img{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .footer .footer-top p{
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .footer-top .qrcode{
        text-align: center;
    }
}
.footer-top .footer-contact{
    text-align: center;
    padding: 10px 0;
}
.footer-top .footer-contact .icon{
    font-size: 40px;
    margin-bottom: 10px;
}


.footer-copyright,
.footer-copyright a{
    padding: 10px 0;
    font-size: 12px;
    background: #2e2e2e;
}

/*slide*/
.slide {
    margin-bottom: 20px;
    background: #F9F9F9;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    overflow: hidden;
}
.slide .img-box{
    height: 0;
    padding-bottom: 66.666666%;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slide .img-box img{
    width: 100%;
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.slide .text{
    padding: 20px 15px;
}
.slide .text h4{
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}
.slide .text .title{
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    line-height: 150%;
    height: 44px;
}
.slide .text .menu-title{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
.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: 69px;
    color: #666;
    line-height: 1.8;
}
.slide .text .desc li a{
    color: #666;
}
.slide .text .desc li a:hover{
    color: #FB5049;
}
@media screen and (max-width: 567px) {
    .slide .text .desc{
        height: auto;
        max-height:69px;
    }
    .slide .text .title{
        height: auto;
        max-height: 44px;
    }
}
.slide .text .time{
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    padding-top: 5px;
}
.slide .text .time .iconfont{
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
}
.block.grey .slide,.block.bg .slide{
    background: #fff;
}

.slide .news-tag{
    padding: 10px 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    background-color: #FB5049;
}
.slide .news-tag .iconfont{
    color: #FFE100;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: inline-block;
}
.slide:hover .news-tag .iconfont{
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    margin-left: 10px;
}
.slide:hover{
    -webkit-box-shadow: 0px 20px 40px -17px rgba(50,50,50,0.2);
    box-shadow: 0px 20px 40px -17px rgba(50,50,50,0.2);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.slide:hover .img-box img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


/*slide-grid*/
.slide-grid{
    text-align: center;
    color: #eee;
    height: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 10px 0;
}   
.row-flex .slide-grid{
    height: 100%;
    margin: 0;
}
.row-flex [class^='col-']{
    margin: 10px 0;
}
.slide-grid .img-box .iconfont{
    font-size: 50px;
    color: #eee;
    display: inline-block;
    line-height: 1;
}
.slide-grid .text-box .title{
    font-size: 15px;
    position: relative;
    margin: 15px 0 8px;
}
.slide-grid .text-box .sub-title{
    margin-bottom: 15px;
}
.slide-grid .text-box .desc {
    font-size: 13px;
    color: #eee;
}
.slide-grid .img-box img{
    width: 70px;
    height: 70px;
}
/*slide-grid END*/

/*slide-hide*/
.slide-hide a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.slide-hide a:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 50px;
    background: rgba(251,80,73, .85);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}
.slide-hide .text-box{
    position: absolute;
    padding: 0 10px;
    bottom: 0;
    right: 0;
    left: 0;
    top: 100%;
    color: #fff;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 2;
    margin-top: -50px;
}
.slide-hide .title{
    font-size: 16px;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
.slide-hide .icon{
    text-align: center;
    font-size: 20px;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.slide-hide a:hover:after{
    height: 100%;
}
.slide-hide a:hover .text-box{
    top: 50%;
    margin-top: -35px;
}
.slide-hide a:hover .icon{
    opacity: 1;
}
.slide-hide:hover{
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}



/*slide end*/


/*more-btn*/
.more-btn{
    display: inline-block;
    padding: 8px 30px;
    color: #fff!important;
    background-color: #FB5049;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    vertical-align: middle;
}

.more-btn.has-arrow:after{
    content: "";
    position: absolute;
    right: 70px;
    background-image: url(../images/icon_enter.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    width: 18px;
    height: 14px;
    margin-top: -7px;
    top: 50%;
    right: 50%;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
@media screen and (min-width: 992px) {
    .more-btn.has-arrow:hover{
        padding-left: 38px;
        padding-right: 62px;
    }
    .more-btn.has-arrow:hover:after{
        opacity: 1;
        right: 38px;
    }
}
.more-btn:hover,.more-btn:focus{
    color: #fff!important;
    opacity: .9;
    text-decoration: none!important;
}

/*more-link*/
.more-link{
    padding-top: 0;
    margin-top: 20px;
    display: block;
}
.more-link{
    color: #666;
    font-size: 12px;
}
.more-link:hover{
    color: #666;
}
.more-link .iconfont{
    margin-right: 5px;
    font-weight: bold;
}
.more-link .icon-right:before{
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    display: inline-block;
}
.arrow-right{
    border: 5px solid transparent;
    border-left: 5px solid #999;
    height: 0;
    width: 0;
    display: inline-block;
    margin-right: 5px;
}

/*banner*/
.banner{
    padding-top: 80px;
    position: relative;
    max-height: 100vh;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}
.banner .swiper-slide {
    text-align: center;
    background: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.banner .swiper-slide .bg{
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(25, 70, 133, 0.85);
}
.banner img{
    width: 100%;
}
@media screen and (max-width: 591px) {
    .banner {
        height: 320px;
    }
    .banner .swiper-slide{
        overflow: hidden;
    }
    .banner .swiper-container 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;
        max-width: 1000%;
    }
}
/*swiper-pagination*/
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 10px;
}
.swiper-pagination-bullet {
    opacity: .8;
    position: relative;
    border-radius: 0;
}
.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 4px;
    width: 24px;
    height: 2px;
    display: inline-block;
    border-radius: 0;
    background: rgba(255,255,255,.5);
    opacity: 1;
    cursor: pointer;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1;
    background: #FB5049;
}
/*swiper-pagination END*/


/*swiper-button*/
.swiper-button-container{
    position: absolute;
    height: 30px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99;
    top: 30%;
    margin-top: 220px;
}

.banner .swiper-button-next, 
.banner .swiper-button-prev {
    color: #fff;
    z-index: 88;
    width: 30px;
    height: 30px;
    background: #fb5049;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    -webkit-transform: all .3s;
    -ms-transform: all .3s;
    -o-transform: all .3s;
    transform: all .3s;
}
.banner .swiper-button-next:hover, 
.banner .swiper-button-prev:hover {
    background: rgba(69,74,77,0.95);
}
.banner .swiper-button-next{
    right: auto;
    left: 60px;
}
.banner .swiper-button-prev{
    left: 15px;
}
.banner .swiper-button-prev:before,
.banner .swiper-button-next:before{
    font-family: iconfont;
    font-size: 14px;
    font-weight: bold;
}
.banner .swiper-button-prev:before{
    content: '\e602';
    margin-right: 2px;
}
.banner .swiper-button-next:before{
    content: '\e609';
    margin-left: 2px;
}
.banner .swiper-button-next.swiper-button-disabled, 
.banner .swiper-button-prev.swiper-button-disabled{
    opacity: .25;
}
.banner .swiper-slide>.container{
    position: absolute;
    top: 35%;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /*bottom: 120px;*/
    z-index: 5;

}
@media screen and (max-width: 767px) {
    .banner .swiper-slide>.container{
        left: 0px;
        right: 0px;
        margin-left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .swiper-button-container{
        width: 100%;
        margin-left: 0;
        text-align: center;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .banner .swiper-button-prev{
        left: 50%;
        margin-left: -40px;
    }
    .banner .swiper-button-next{
        right: 50%;
        margin-right: -40px;
        left: auto;
    }
    .banner .swiper-pagination-container{
        bottom: 10px;
    }
}
/*swiper-button END*/


@media screen and (min-width: 768px) and (max-width: 992px) {
    .banner .swiper-pagination-container{
        bottom: 80px;
    }
}
@media screen and (max-width: 767px) {
    .banner .swiper-pagination-container{
        bottom: 10px;
    }
}

/*banner-text*/
.banner .banner-text{
    position: absolute;
    left: 0;
    right: 0;
    top: 35%;
}

.banner-text{
    text-align: left;
    width: 100%;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all .5s .3s ease-in;
    -o-transition: all .5s .3s ease-in;
    transition: all .5s .3s ease-in;
}
.swiper-slide-active .banner-text{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.banner-text .box{
    margin: 0 auto;
    color: #fff;
}
.banner-text .box .title{
    position: relative;
    padding: 10px 0;
    line-height: 150%;
    padding-bottom: 0;
    font-size: 40px;
}
.banner-text .box .desc{
    font-size: 16px;
    font-weight: 100;
    font-family: "Microsoft Yahei Light"
    max-width: 50%;
}
.banner-text .box .title, .banner-text .box .desc {
    text-shadow: 3px 3px 7px rgba(6,4,60,.4);
    display: inline-block;
}
.banner-text .box .more-btn{
    margin-top: 40px;
}
.banner-text .box .more-btn a{
    color: #eee;
}
@media screen and (max-width: 1199px) and (min-width: 991px) {
    .swiper-slide-active .banner-text{
        top: 30%;
    }
    .swiper-button-container{
        top: auto;
        margin-top: 0;
        bottom: 130px;
    }
}
@media screen and (max-width: 991px){
    .banner-text .box .title{
        font-size: 36px;
    }
    .banner{
        padding-top: 80px;
    }
    .swiper-slide-active .banner-text{
        top: 25%;
    }
    .swiper-button-container{
        bottom: 50px;
        top: auto;
        margin-top: 0;
    }
}
@media screen and (max-width: 767px){
    .banner-text .box{
        width: 100%;
    }
    .banner-text .box .title{
        font-size: 18px;
    }
    .banner-text .box .desc{
        font-size: 10px;
        width: 50%;
    }
}

@media screen and (max-width: 591px) {
    .swiper-button-container{
        bottom: 10px;
    }
}
/*banner-text END*/
/*banner end*/


/*.user-items*/
@media screen and (min-width: 992px) {
    .user-box{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0px;
        z-index: 99;
    }
    .user-items{
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .user-box .user-item{
        background: rgba(251,80,73,.9);
        width: 10%;
        text-align: center;
        padding: 10px 5px;
        color: #fff;
        border-left: 1px solid #FB5049;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .user-box .user-item.user-notice{
        color: #fff;
    }
    .user-box .user-item:hover{
        background: rgba(251,80,73,1);
    }
    .user-box .user-item.notice{
        flex: 1;
        text-align: left;
        background: #f2f2f2;
        color: #FB5049;
        border-right: 0;
        position: relative;
        border-left: 0;
        margin-left: -6px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .user-box .user-item .iconfont{
        font-size: 28px;
        display: block;
    }
    .notice-box{
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 10px;
        left: 0px;
        padding: 0 15px;
    }
    .notice-box ul{
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        margin-bottom: 0;
    }
    .notice-box ul li{
        list-style: none;
        position: relative;
        padding-left: 15px;
        font-size: 14px;
    }
    .notice-box ul li:before{
        content: "\e609";
        font-family: 'iconfont';
        color: #FB5049;
        left: 0px;
        top: 50%;
        margin-top: -9px;
        font-size: 12px;
        font-weight: bold;
        position: absolute;
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8);
    }
    .notice-box ul li .title{
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 60px;
        color: #444;
        font-size: 13px;
    }
    .notice-box ul li a:hover .title{
        color: #FB5049;
    }
    .notice-box ul li .time{
        position: absolute;
        right: 0;
        top: 0;
        color: #666;
        font-size: 13px;
    }
}
@media screen and (max-width: 991px) {
    .notice .notice-title{
        margin-bottom: 15px;
    }
    .notice .notice-title .iconfont{
        font-weight: bold;
        font-size: 18px;
        color: #FB5049;
    }
    .notice-box ul,
    .notice-box ul li{
        padding-left: 0;
        list-style: none;
    }
    .notice-box ul li a{
        display: block;
        padding: 15px 0;
        border-bottom: 1px dashed #e0e0e0;
        position: relative;
    }
    .notice-box ul li a:after{
        content: "\e609";
        position: absolute;
        right: 0;
        font-family: 'iconfont';
        font-weight: bold;
        font-size: 12px;
        color: #FB5049;
        top: 50%;
        margin-top: -9px;
    }
    .notice-box .time{
        color: #666;
        font-size: 12px;
    }
    .notice-box .time .day{
        display: block;
        font-size: 20px;
        color: #FB5049;
        line-height: 1;
        padding-bottom: 5px;
        font-family: DINCond-Medium;
    }
    .notice-box .time {
        display: inline-block;
        width: 60px;
    }
    .notice-box .title{
        padding-right: 25px;
    }

}
@media screen and (max-width: 991px) {
    .user-items{
        overflow: hidden;
    }
    .user-items .user-item{
        float: left;
        width: 20%;
        text-align: center;
        padding: 25px 15px;
        position: relative;
    }
    .user-items .user-item:before{
        content: "";
        position: absolute;
        top: 5px;
        right: 5px;
        left: 5px;
        bottom: 5px;
        background: #f0f0f0;
    }
    .user-items .user-item .iconfont{
        display: block;
        font-size: 40px;
        line-height: 100%;
        margin-bottom: 15px;
        border-radius: 50%;
        width: 100%;
        position: relative;
        color: grey;
        z-index: 2;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .user-items .user-item span{
        color: #666;
        position: relative;
        z-index: 2;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .user-items .user-item:hover .iconfont,
    .user-items .user-item:hover span{
        color: #FB5049;
    }
    .user-box .notice{
        padding: 60px 0;
        background: #f2f2f2;
    }
    .user-items-box{
        margin-left: -5px;
        margin-right: -5px;
    }
}
@media screen and (max-width: 767px) {
    .user-box .notice {
        background: #f2f2f2;
        padding: 40px 0;
    }
    .user-items .user-item{
        width: 50%;
    }
    .index-news .row [class^='col-']:nth-of-type(3),
    .index-news .row [class^='col-']:nth-of-type(4),
    .index-topList .row [class^='col-']:nth-of-type(3),
    .index-topList .row [class^='col-']:nth-of-type(4){
        display: none;
    }
}


/*block*/
.block{
    padding: 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.block.white{
    background: #fff;
}
.block.grey{
    background: #f9f9f9;
}
.block.bg{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99;
    background-attachment: fixed;
}
.block.bg:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(65,65,67,.9);
}
.block.bg .container{
    z-index: 2;
    position: relative;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .block{
        padding: 40px 0;
    }
}
.block.bg .slide:hover{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.block.no-padding{
    padding: 0;
}

/*index-title*/
.index_title{
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    border-bottom: 1px dashed #ccc;
}
.index_title:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 5px;
    background: #FB5049;
    width: 60px;
}
.index_title h2{
    font-size: 28px;
    margin-bottom: 0px;
    color: #333;
}
.block.bg .index_title h2{
    color: #fff;
}
.index_title .small_title{
    font-size: 24px;
    color: #666;
}
.index_title .more-btn{
    float: right;
    font-weight: normal;
    line-height: 26px;
    border-radius: 0;
    position: absolute;
    right: 0;
    bottom: -1px;
    padding: 0px 30px;
    height: 50px;
    line-height: 50px;
    background: #FB5049;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
@media screen and (min-width: 992px) {
    .index_title .more-btn:hover{
        padding: 0 42px 0 18px;
    }
    .index_title .more-btn:hover:after{
        opacity: 1;
        right: 18px;
    }
}
@media screen and (max-width: 767px) {
    .index_title h2{
        font-size: 24px;
    }
    .index_title .more-btn{
        padding: 0 20px;
    }
}
/*index_title END*/
/*.index-news*/
/*.index-news .slide{
    background: none;
}
.index-news .slide .text{
    padding: 15px 0;
}
.index-news .slide .text .title{
    margin-bottom: 10px;
}
.index-news .slide .text .time{
    margin-top: 0px;
}
.index-news .slide:hover{
    -webkit-box-shadow: none;
    box-shadow: none;
}*/
/*.index-news END*/

/*index-faculty*/
/*index-faculty*/
.index-faculty{
    background: #fff;
    padding: 30px 20px;
    position: relative;
}
.index-faculty .swiper-container {
    width: 100%;
    height: 410px;
    margin-left: auto;
    margin-right: auto;
}
.index-faculty .swiper-slide {
    background-size: cover;
    background-position: center;
}
.faculty-top {
    text-align: center;
}
.faculty-top .swiper-pagination-bullets .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
}
.faculty-top .swiper-pagination-bullets .swiper-pagination-bullet-active{
    background: #FB5049;
}
.faculty-top .faculty-img{
    width: 140px;
    height: 140px;
    background: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 10px;
    position: relative;
}
.faculty-top .faculty-img img{
    height: 100%;
    position: absolute;
    min-width: 100%;
    max-width: none!important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: none;
    max-height: 100%;
    width: auto;
}
.faculty-top .faculty-name{
    font-size: 18px;
    margin: 20px 0 10px;
    position: relative;
    padding-bottom: 8px;
}
.faculty-top .faculty-name:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 1px;
    background: #FB5049;
    margin-left: -15px;
}
.faculty-top .faculty-title{
    display: inline-block;
    margin-bottom: 30px;
}
.faculty-top .faculty-desc-box{
    padding: 0 30px;
    position: relative;
}
.faculty-top .faculty-desc{
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    max-height: 100px;
    -webkit-box-orient: vertical;
    line-height: 1.8;
    color: #666;
}
@media screen and (min-width: 768px) {
    .faculty-top .faculty-desc-box:before{
        content: url(../images/icon_quote_lt.png);
        margin-right: 5px;
        position: absolute;
        left: 2px;
        top: 0;
    }
    .faculty-top .faculty-desc-box:after{
        content: url(../images/icon_quote_rt.png);
        margin-left: 5px;
        position: absolute;
        right: 2px;
        bottom: 0;
    }
}
.faculty-top .swiper-button-next, 
.faculty-top .swiper-button-prev {
    background: rgba(0,0,0,.75);
    width: 48px;
    height: 40px;
    margin-top: 0px;
    bottom: 0;
    top: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.faculty-top .swiper-button-next:hover,
.faculty-top .swiper-button-prev:hover{
    background: rgba(0,0,0,.9);
}
.faculty-top .swiper-button-prev:before, 
.faculty-top .swiper-button-next:before {
    font-family: iconfont;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}
.faculty-top .swiper-button-next{
    right: 48px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.faculty-top .swiper-button-next:before {
    content: '\e602';
    margin-left: 2px;
}
.faculty-top .swiper-button-prev{
    right: 0px;
    left: auto;
}
.faculty-top .swiper-button-prev:before {
    content: '\e609';
    margin-right: 2px;
}
.faculty-thumbs{
    background: #F2F2F2;
    box-sizing: border-box;
}
.faculty-thumbs .swiper-slide {
    height: 100%;
    position: relative;
    padding: 10px;
    padding-left: 100px;
    cursor: pointer;
    min-height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.faculty-thumbs .swiper-slide-active {
    background: #E7E7E7;
}
.faculty-thumbs .faculty-thumb-img{
    position: absolute;
    top: 50%;
    margin-top: -40px;
    left: 10px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}

.faculty-thumbs .faculty-thumb-img img{
    height: 100%;
    position: absolute;
    min-width: 100%;
    max-width: none!important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: none;
    max-height: 100%;
    width: auto;
}
.faculty-thumbs .faculty-thumb-name{
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 38px;
    color: #333;
}
@media screen and (max-width: 991px) {
    .index-faculty .swiper-container{
        height: 380px;
    }
}
@media screen and (max-width: 767px) {
    .index-faculty{
        padding: 20px 10px;
    }
    .index-faculty .swiper-container{
        height: auto;
        padding-bottom: 60px;
    }
    .faculty-top .faculty-desc-box{
        padding: 0;
    }
}
/*index-faculty END*/
/*index-faculty END*/


/*.special-column */
.special-column {
    position: relative;
    font-size: 16px;
    padding: 30px 0;
}
.special-column .row-flex [class^='col-']{
    margin: 30px 0;
    border-right: 1px solid rgba(53,53,53,.2);
}
@media screen and (max-width: 767px) {
    .special-column .row-flex [class^='col-']:nth-of-type(2n){
        border-right: 0;
    }
}
@media screen and (min-width: 768px){
    .special-column .row-flex [class^='col-']:nth-of-type(4n){
        border-right: 0;
    }
}
/*@media screen and (min-width: 1200px) {
    .special-column .col-lg-2{
        width: 20%;
    }
    .special-column .row-flex [class^='col-']:nth-of-type(5n){
        border-right: 0;
    }
}*/
.special-column .slide-grid .desc{
    font-size: 13px;
}
.slide-grid .text-box .title{
    margin-bottom: 5px;
}
/*.special-column END*/


/*inner-style*/
.inner-banner {
    padding-top: 80px;
}
.inner-banner .inner-bg{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 190px;
    overflow: hidden;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;

}
.inner-banner .inner-bg h4{
    font-size: 36px;
    position: relative;
    padding-bottom: 10px;
}
/*.inner-banner .inner-bg h4:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    background: #FB5049;
    width: 80px;
    margin-left: -40px;
}*/
/*.filter-item*/
.filter-item{
    margin-top: -60px;
}
.filter-item.fixed{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    margin-top: 0;
    background: rgba(0,48,75,1);
}
.filter-item .swiper-container{
    background: rgba(0,0,0,0.1);
}
.filter-item .swiper-container,.filter-item .swiper-wrapper{
    width: 100%;
}
.filter-item .swiper-slide {
    width: auto!important;
    position: relative;
    padding: 0!important;
}
.filter-item .swiper-slide a{
    display: block;
    padding: 0 20px;
    height: 60px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    -ms-align-items: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}
.filter-item .swiper-slide a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FB5049;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.filter-item .swiper-slide a:hover:after,.filter-item .swiper-slide a.active:after{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
@media screen and (max-width: 991px) {
    .filter-item{
        background: rgba(0,0,0,0.1);
    }
    .filter-item .swiper-container{
        background: none;
    }
}
@media screen and (max-width: 767px) {
    .filter-item .swiper-slide a{
        padding: 0 10px;
        font-size: 14px;
    }
}

/*breadCrumb*/
.breadCrumb{
    padding: 20px 0;
    text-align: right;
}
.breadCrumb.grey{
    background: #F2F2F2;
}
.breadCrumb ul,.breadCrumb li{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.breadCrumb li{
    display: inline-block;
    position: relative;
    font-size: 12px;
}
.breadCrumb li a{
    font-weight: bold;
}
.breadCrumb li a,.breadCrumb li.last{
    padding: 0 12px;
}
.breadCrumb li:after{
    content: "\e736";
    position: absolute;
    right: -8px;
    font-family: "iconfont";
    font-size: 12px;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    transform: scale(.7);
    color: #FB5049;
}
.breadCrumb li.last{
    color: #55524f;
}
.breadCrumb li.last:after{
    content: "";
}

.breadCrumb+.block{
    padding-top: 0;
}


.filter-item .breadCrumb{
    text-align: left;
    background: rgba(0,0,0,.1);
}


/*hp*/
.news-category{
    margin-bottom: 30px;
}
.news-category ul,.news-category li{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.news-category li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.news-category li a{
    display: block;
    padding: 5px 10px;
    border-radius: 2px;
}
.news-category li:hover a,
.news-category li.active a{
    background: #FB5049;
    color: #fff;
}

.ph_item{
    background: #f2f2f2;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
}
.ph_item .ph_title{
    font-size: 18px;
    margin-bottom: 15px;
    padding-right: 35px;
}
@media screen and (min-width: 992px) {
    .ph_item .ph_title{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
.ph_item .ph_desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    max-height: 75px;
}
.ph_item .media-right {
    width: 40%;
    padding-left: 20px;
}
.media-right .img-box{
    width: 100%;
    height: 0;
    padding-bottom: 66.66666%;
    overflow: hidden;
}
.media-right img{
    width: 100%;
}

.ph_item .more-btn{
    margin-top: 20px;
    background: #FB5049;
}
.ph_item .status{
    position: absolute;
    top: -4px;
    right: -4px;
    width: 84px;
    height: 84px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ph_item .status.ongoing{
    background-image: url(../images/icon_ongoing.png);
}
.ph_item .status.ended{
    background-image: url(../images/icon_ended.png);
}

@media screen and (max-width: 991px) {
    .ph_item{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .ph_item .media-right{
        padding-left: 15px;
    }
    .ph_item{
        padding: 20px 10px;
    }
    .ph_item .status{
        width: 63px;
        height: 63px;
        top: -3px;
        right: -3px;
    }
    .ph_item .ph_title{
        padding-right: 25px;
    }
}
/*ph END*/


/*news-list*/
.news-list{
    margin-bottom: 30px;
}
.news-list .news-item .media-left{
    padding-right: 15px;
}
.news-list .news-item a{
    display: block;
    border-bottom: 1px dashed #e2dfdc;
    padding: 20px 0;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}
.news-list .news-item .news-date{
    color: grey;
    width: 80px;
    background: #F5F5F5;
    text-align: center;
    padding: 8px 5px 10px;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}
.news-list .news-item .news-date .day{
    color: #666;
    font-size: 28px;
    font-weight: bold;
}
.news-list .news-item .news-title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-list .news-item .news-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.6;
    color: #666;
    max-height: 45px;
}
@media screen and (min-width: 768px) {
    .news-list .news-item .news-title{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .news-list .news-item .news-go{
        position: absolute;
        top: 0;
        bottom: 0;
        right: -125px;
        width: 125px;
        background: rgba(251,80,73,.85);
        color: #fff;
        font-size: 32px;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    .news-list .news-item .news-go .iconfont{
        position: absolute;
        top: 50%;
        margin-top: -16px;
        line-height: 1;
        left: 50%;
        margin-left: -16px;
    }
    .news-list .news-item a:hover{
        background: #eee;
    }
    .news-list .news-item a:hover .news-go{
        right: 0;
    }
    .news-list .news-item a:hover .news-date{
        background: #eee;
    }
}
@media screen and (max-width: 767px) {
    .news-list .news-item .news-date{
        margin-bottom: 10px;
    }
    .news-list .news-item .news-go{
        display: none;
    }
}

.sidebar{
    padding-bottom: 60px;
}

/*news-list END*/

/*news-view*/
.news-view .news-title{
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}
.news-view .news-info{
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-size: 13px
}
.news-view .news-info span{
    display: inline-block;
    margin-right: 15px;
}
.news-view .news-info .iconfont{
    margin-right: 5px;
}
@media screen and (max-width: 767px) {
    .news-view .news-title{
        font-size: 24px;
    }
    .news-view .news-info span{
        margin-bottom: 5px;
    }
    .news-view .news-title,.news-view .news-info{
        text-align: left;
    }
    .news-view .news-info{
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
}
.news-view.page-content{
    font-size: 16px;
    font-family: 'SongTi SC';
}
.news-view.page-content p{
    text-indent: 2em;
}
@media screen and (max-width: 767px) {
    .news-view.page-content img{
        width: auto!important;
        height: auto!important;
        max-width: 100%;
    }
    .news-view.page-content p{
        text-indent: 0;
    }
}
.page-content p,.page-content li,
.ke-content p,.ke-content li{
    margin: 15px 0;
}
.news-view img{
    width: 600px;
    max-width: 100%;
}

/*news-view END*/

/*download-list*/
.download-list .news-item a{
    padding: 15px 10px;
}
.download-list .news-item .news-title{
    font-size: 16px;
    padding: 5px 0;
}
.download-list .news-item .news-date{
    font-size: 16px;
    width: auto;
    width: 85px;
}
.download-list .news-item .file-type,
.download-list .news-item img{
    height: 34px;
    width: 26px;
}
@media screen and (min-width: 768px) {
    .download-list.news-list .news-item .news-go{
        width: 65px;
    }
    .download-list.news-list .news-item .news-go .iconfont{
        font-size: 28px;
        margin-left: -14px;
        margin-top: -14px;
    }
}
/*download-list END

/*contact-view*/
.contact-view{
    background: #fff;
    overflow: hidden;
}
.contact-view img{
    width: 100%;
}
.contact-view [class^='col-']{
    padding: 0;
    position: relative;
}
.contact-view .contact-title{
    font-size: 18px;
    color: #D6000F;
    margin-bottom: 20px;
}
.contact-view .contact-info,.contact-view .contact-info a{
    color: grey;
}
.contact-view .contact-info p{
    margin-bottom: 5px;
}
.contact-view .contact-info p:last-child{
    margin-bottom: 0;
}

.contact-view .contact-info a:hover{
    text-decoration: underline;
}
.contact-departments{
    background: #FB5049;
    padding: 50px;
}
.contact-departments .contact-title,
.contact-departments .contact-info,
.contact-departments .contact-info a{
    color: #fff;
}

.contact-view .contact-items{
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
    display: -webkit-flex;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
.contact-view .contact-item{
    padding: 35px 30px;
    width: 33.33333%;
    position: relative;
}
@media screen and (min-width: 767px) {
    .contact-view .contact-item:after{
        content: "";
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        border-bottom: 5px solid #f2f2f2;
    }
    .contact-view .contact-items:before{
        content: "";
        position: absolute;
        right: 33.33333%;
        top: 0;
        bottom: 0;
        border-right: 1px solid #eee;
    }
    .contact-view .contact-items:after{
        content: "";
        position: absolute;
        left: 33.33333%;
        top: 0;
        bottom: 0;
        border-right: 1px solid #eee;
    }
    .contact-view .contact-items .contact-item:nth-last-of-type(1):after,
    .contact-view .contact-items .contact-item:nth-last-of-type(2):after,
    .contact-view .contact-items .contact-item:nth-last-of-type(3):after{
        border: 0;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px){
    .contact-departments{
        padding: 40px 20px;
    }
    .contact-view .contact-items{
        padding-top: 10px;
    }
    .contact-view .contact-item{
        padding: 30px 20px;
    }
    .contact-view .contact-item:after{
        left: 20px;
        right: 20px;
    }
}
@media screen and (max-width: 767px) {
    .contact-view .contact-items{
        padding-top: 10px;
    }
    .contact-departments{
        padding: 40px 15px;
    }
    .contact-view{
        margin-left: -15px;
        margin-right: -15px;
    }
    .contact-view .contact-item{
        width: 100%;
        padding: 30px 15px;
        border-bottom: 5px solid #f2f2f2;
    }
    .contact-view .contact-items .contact-item:nth-last-of-type(1){
        border: 0;
    }
}

/*contact-view END*/


/*develop-item*/
.develop{
    padding: 0 30px;
}
.develop-item{
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin: 30px 0;
}
.develop-item .develop-year{
    font: 20px/1 "AvenirLTStd";
    color: #D6000F;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    padding-bottom: 30px;
}
.develop-item .develop-year:after{
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    bottom: 0px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #F9F9F9;
    border: 2px solid #b2b2b2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.develop-item .develop-year:before{
    content: "";
    position: absolute;
    left: 0px;
    right: -30px;
    bottom: 7px;
    border-bottom: 1px solid #B2B2B2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.develop .swiper-button-next,.develop .swiper-button-prev{
    top: 150px;
    margin-top: 0;
}
.develop .develop-item .develop-text{
    color: grey;
    line-height: 1.8;
}
.develop .develop-item .develop-text p:last-child{
    margin-bottom: 0;
}
.develop .develop-item.active .develop-text{
    height: auto;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.develop-item .icon-circle{
    position: absolute;
    left: 3px;
    bottom: -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #b2b2b2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.develop-item .toggle{
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: grey;
    font-size: 20px;
}
.develop-item.active .toggle{
    bottom: -10px;
}
.develop-item.active .toggle .icon-plus:before {
    content: "\e8c3";
}
/*develop-item END*/

/*responsive*/
.responsive {
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.responsive-box{
    position: relative;
}
.responsive-box .swiper-button-next,.responsive-box .swiper-button-prev{
    background: none;
    color: #b2b2b2;
    z-index: 88;
    width: auto;
    height: auto;
    top: 58px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #B2B2B2;
    text-align: center;
    background: #f9f9f9;
}
.responsive-box .swiper-button-next:hover,.responsive-box .swiper-button-prev:hover{
    background: #FB5049;
    color: #fff;
    border-color: #FB5049;
}
.responsive-box .swiper-button-prev{
    left: -30px;
}
.responsive-box .swiper-button-next{
    right: -30px;
}
.responsive-box .swiper-button-prev:before,
.responsive-box .swiper-button-next:before{
    font-family: iconfont;
    font-size: 18px;
    font-weight: bold;
}
.responsive-box .swiper-button-prev:before{
    content: '\e602';
}
.responsive-box .swiper-button-next:before{
    content: '\e609';
}
.responsive-box .swiper-button-next.swiper-button-disabled, 
.responsive-box .swiper-button-prev.swiper-button-disabled{
    opacity: .25;
}
.responsive-box .swiper-pagination{
    text-align: center;
    left: 0;
    right: 0;
}
.responsive-box .swiper-pagination-bullets .swiper-pagination-bullet{
    background: #bbb;
}
.responsive-box .swiper-pagination-bullets .swiper-pagination-bullet-active, 
.responsive-box .swiper-pagination-bullets .swiper-pagination-bullet:hover{
    background: #FB5049;
}
/*responsive END*/

/*association-item*/
.association{
    overflow: hidden;
}
.association-item {
    height: 0;
    background: #fff;
    padding: 0;
    position: relative;
}
.association-box{
    padding: 20px;
}
.association-box .association-title{
    font-size: 18px;
    color: #D6000F;
    margin-bottom: 10px;
}
.association-box .association-info{
    /*font-size: 12px;*/
    color: grey;
}
.association-box .association-info p{
    margin-bottom: 5px;
}
.association-box .association-icon{
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 26%;
    max-height: 26%;
    max-width: 26%;
}
.association-box .association-icon img{
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.association-item:hover .association-icon img{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
@media screen and (min-width: 992px) {
    .association-item{
        padding-bottom: 25%;
    }
    .association .association-item:nth-of-type(8n+2),
    .association .association-item:nth-of-type(8n+4),
    .association .association-item:nth-of-type(8n+5),
    .association .association-item:nth-of-type(8n+7){
        background: #E9E5E3;
    }
}
@media screen and (max-width: 991px) and (min-width: 768px){
    .association-item{
        padding-bottom: 33.33333%;
        background: #f2f2f2;
    }
    .association .association-item:nth-of-type(6n+1),
    .association .association-item:nth-of-type(6n+3),
    .association .association-item:nth-of-type(6n+5){
        background: #E9E5E3;
    }
}
@media screen and (max-width: 767px) and (min-width: 481px) {
    .association-item{
        padding-bottom: 50%;
        background: #f2f2f2;
    }
    .association .association-item:nth-of-type(4n+2),
    .association .association-item:nth-of-type(4n+3){
        background: #E9E5E3;
    }
}
@media screen and (max-width: 480px) {
    .association{
        margin-left: -15px;
        margin-right: -15px;
    }
    .association-item{
        width: 100%;
        height: auto;
        background: #f2f2f2;
    }
    .association-box{
        padding: 30px 15px;
        padding-bottom: 20%;
    }
    .association .association-item:nth-of-type(2n){
        background: #E9E5E3;
    }
    .association-box .association-icon{
        width: 20%;
        max-height: 100%;
        bottom: 15px;
        right: 15px;
    }
}

/*association-item END*/

.pages{
    text-align: center;
    margin: 40px 0 20px;
}
.pages a{
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    padding: 0 15px;
    margin-left: -1px;
    background-color: #fff;
    color: #333;
    
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    font-size: 14px;
    border: 1px solid #e2e2e2;
}
.pages a.current{
    background-color: #FB5049;
    color: #fff;
    border-color: #FB5049;
    margin-left: -5px;
}
.pages a:first-child{
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
.pages a:last-child{
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}



/************************ page style ************************/

/*page-content*/
.page-content,
.ke-content{
    color: #4a4a4a;
    line-height: 1.8;
    padding: 30px;
    background: #fff;
}
.page-content.no-padding,
.ke-content.no-padding{
    padding: 0;
    background: none;
}
@media screen and (max-width: 991px) {
    .page-content{
        padding: 10px 0 30px 0;
    }
    .ke-content{
        padding: 15px;
    }
}
.page-content img,
.ke-content img{
    display: block;
    width: auto;
    max-width: 600px;
    height: auto !important; 
    margin: auto;
}
.page-content a,
.ke-content a{
    color: #D6000F;
}
.page-content a:hover,
.ke-content a:hover{
    color: #D6000F;
    text-decoration: underline;
}
.page-content>*:first-child,
.ke-content>*:first-child{
    margin-top: 0;
}
.page-content h3,.h3,
.ke-content h3,.h3{
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 6px;
    /*border-bottom: 1px dashed #e2e2e2;*/
    font-weight: 300;
    position: relative;
}
.h3{
    margin-top: 0;
}
.page-content h3:after,
.ke-content h3:after,
.h3:after{
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 4px;
    background: #FB5049;
    bottom: -2px;
}
.page-content h3+h4,
.ke-content h3+h4{
    margin-top: 0;
    color: grey;
}
.page-content ol, .page-content ul,
.ke-content ol, .ke-content ul{
    padding-left: 25px;
}
.page-content p,.page-content li,
.ke-content p,.ke-content li{
    margin: 10px 0;
}

/*page-content END*/



.page-leader .media .media-left .media-img, 
.page-leader .media .media-left .media-img:before{
    width: 200px;
}
@media screen and (min-width: 992px) {
    .page-leader .media .media-left .media-img:before{
        background: #e2e2e2;
    }
}
@media screen and (max-width: 767px){
    .page-leader .media .media-left .media-img {
        width: 150px;
    }
}



/*news-swiper*/
.news-swiper{
    position: relative;
}
.news-swiper .swiper-button-next,.news-swiper .swiper-button-prev{
    background: none;
    color: #FB5049;
    z-index: 88;
    width: auto;
    height: auto;
    top: 25%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    /*border: 1px solid #B2B2B2;*/
    text-align: center;
    background: #fff;
}
.news-swiper .swiper-button-next:hover,.news-swiper .swiper-button-prev:hover{
    background: #FB5049;
    color: #fff;
    border-color: #FB5049;
}
.news-swiper .swiper-button-prev{
    left: -20px;
}
.news-swiper .swiper-button-next{
    right: -20px;
}
.news-swiper .swiper-button-prev:before,
.news-swiper .swiper-button-next:before{
    font-family: iconfont;
    font-size: 18px;
    font-weight: bold;
}
.news-swiper .swiper-button-prev:before{
    content: '\e602';
}
.news-swiper .swiper-button-next:before{
    content: '\e609';
}
.news-swiper .swiper-button-next.swiper-button-disabled, 
.news-swiper .swiper-button-prev.swiper-button-disabled{
    opacity: 0;
    pointer-events: auto;
    color: #d2d2d2;
}
.news-swiper .swiper-button-next.swiper-button-disabled:hover, 
.news-swiper .swiper-button-prev.swiper-button-disabled:hover{
    background: #fff;
    color: #d2d2d2;
}
/*news-swiper END*/




/*new-home*/

/*index-column*/
.index-column{
    position: relative;
}
.index-column:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    background: rgba(251,80,73,.5);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(/public/images/column-bg.jpg);
}
.column-container{
    position: relative;
    z-index: 2;
    margin: 40px 0;
}
.index-column .column-item{
    background: #fff;
    text-align: center;
    padding: 30px 10px;
    border-radius: 5px;
    margin: 10px 0;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(50,50,50,0.2);
    -moz-box-shadow: 0px 10px 25px 0px rgba(50,50,50,0.2);
    box-shadow: 0px 10px 25px 0px rgba(50,50,50,0.2)
}
.index-column .column-item .title{
    font-size: 16px;
    margin-bottom: 20px;
}
.index-column .column-item .icon-box img,
.index-column .column-item .icon-box .iconfont{
    width: 60px;
    height: 60px;
    font-size: 42px;
    color: #FB5049;
}
.index-column .column-item .more-link{
    color: #999;
}
@media screen and (max-width: 991px) {
    .index-column:after{
        top: 0;
    }
    .index-column .row{
        margin-left: -10px;
        margin-right: -10px;
    }
    .index-column .row [class^='col-']{
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .index-column .column-item{
        padding: 20px 10px;
    }
    .index-column .column-item .title{
        margin-bottom: 10px;
    }
    .index-column .column-item .more-link{
        margin-top: 10px;
    }
    .column-container{
        margin: 0;
    }
}
/*index-column END*/

/*index-announcement*/
.index-announcement {
    position: relative;
}
.index-announcement .index_title{
    margin-bottom: 15px;
}
.index-announcement .slide-announcement a{
    border-bottom: 1px solid #eee; 
    padding: 20px 40px 20px 0px;
    display: block;
    position: relative;
    margin-top: -1px;
    -webkit-transition: all .4s cubic-bezier(.165,.84,.44,1);
    -o-transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition: all .4s cubic-bezier(.165,.84,.44,1);
}
.index-announcement .slide-announcement a:hover{
    background: #f5f5f5;
}
.index-announcement .slide-announcement .title{
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index-announcement .slide-announcement .other{
    font-size: 13px;
    padding-top: 8px;
    color: #888;
}
.index-announcement .slide-announcement .iconfont{
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: -8px;
    color: #FB5049;
    font-weight: bold;
}
.index-announcement .slide-announcement .time{
    padding-right: 5px;
    color: #888;
}
.index-announcement .row-flex [class^='col-'] {
    margin: 0;
}
/*index-announcement END*/

/*index-quickLink*/
.index-quickLink .row-flex [class^='col-']{
    margin: 0;
    margin-bottom: 32px;
}
.index-quickLink .link-item .iconfont {
    font-size: 30px;
    display: block;
    margin-bottom: 5px;
}
.index-quickLink .link-item{
    display: block;
    height: 100%;
    background: rgba(251,80,73,.5);
    text-align: center;
    padding: 15px 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #fff;
}
.index-quickLink .link-item:hover{
    -webkit-box-shadow: 0px 20px 40px -17px rgba(50,50,50,0.2);
    box-shadow: 0px 20px 40px -17px rgba(50,50,50,0.2);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
/*index-quickLink END*/

/*new-home END*/


/*search-page*/

.search-header {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 40px 0 80px;
    background: #F9F9F9;
}
.search-header .container{
    overflow: visible;
}
.search-header .form-text {
    width: 100%;
    border: none;
    border: 1px solid #eee;
    font-style: italic;
    height: 50px;
    font-size: 16px;
    padding: 0 100px 0 15px;
}
.search-header .form-text:focus{
    font-style: normal;
    border-color: #FB5049;
}

.search-header .form-submit{
    position: absolute;
    right: 15px;
    top: 0px;
    width: 100px;
    height: 50px;
    line-height: 50px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    background: #FB5049;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.search-header .form-submit:hover{
    background: #FB5049;
    color: #fff;
}
.search-num{
    color: #666;
    padding: 0 20px;
    height: 60px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    -ms-align-items: center;
    align-items: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*search-result*/
.search-results{
    padding-bottom: 40px;
}
.search-results .layui-tab{
    margin: 0;
    margin-top: -40px;
}
.search-results .layui-tab-brief>.layui-tab-title .layui-this{
    color: #FB5049;
}
.search-results .layui-tab-brief>.layui-tab-title .layui-this:after{
    border-bottom: 2px solid #FB5049;
}
.search-results .layui-tab-title{
    padding-left: 0;
    border-bottom: 0;
}
.search-results .layui-tab-content{
    padding: 20px 0;
}

.search-results .search-result-item{
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    margin-bottom: 15px;
}
.search-results .search-result-item .title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.search-results .search-result-item .desc{
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 75px;
    line-height: 1.8;
}
.search-results .other{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
}
.search-results .link{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}
.search-results .link,
.search-results .link a{
    color: grey;
}
.search-results a:hover{
    text-decoration: underline;
}
.search-results .time{
    width: 90px;
    text-align: right;
    color: grey;
}

/*search-result END*/
/*search-page END

/*tag*/
.page-content .tag{
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}
.page-content  .tag-link{
    display: inline-block;
    padding: 6px 12px;
    border-radius: 3px;
    border: 1px solid #aaa;
    color: #777;
    margin-right: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 13px;
    margin-bottom: 10px;
}
.page-content  .tag-link:hover{
    background: #FB5049;
    border-color: #FB5049;
    color: #fff;
}
/*tag END*/


/*process-list*/
.process-list{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
}
.process-list .process-item{
    width: 20%;
    text-align: center;
    position: relative;
}

/*@media screen and (min-width: 768px) {*/
.process-list .process-item:not(:last-child):after{
    content: "\e65b";
    position: absolute;
    font-size: 24px;
    color: rgba(189, 159, 104, .65);
    top: 36px;
    font-weight: bold;
    right: -12px;
    font-family: layui-icon!important;
}
/*}*/
.process-list .process-item .img-box{
    display: inline-block;
    padding: 30px;
    background-color: #BD9F68;
    border-radius: 50%;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.process-list .process-item .img-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #BD9F68;
    z-index: 1;
}  
.process-list .process-item:hover .img-box:before{
    -webkit-animation: circle .7s linear;
    animation: circle .7s linear;
} 
@-webkit-keyframes circle{
    0%{
        -webkit-transform:scale3d(1, 1, 1);
        transform:scale3d(1, 1, 1);
        opacity:0;
    }
    50%{
        opacity:.3
    }
    100%{
        -webkit-transform:scale3d(1.2, 1.2, 1);
        transform:scale3d(1.2, 1.2, 1);
        opacity:0
    }
}
@keyframes circle{
    0%{
        -webkit-transform:scale3d(1, 1, 1);
        transform:scale3d(1, 1, 1);
        opacity:0;
    }
    50%{
        opacity:.3
    }
    100%{
        -webkit-transform:scale3d(1.2, 1.2, 1);
        transform:scale3d(1.2, 1.2, 1);
        opacity:0
    }
}
.process-list .process-item .iconfont{
    font-size: 40px;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    color: #eee;
    position: relative;
    z-index: 2;
    font-weight: lighter;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.process-list .process-item:hover .iconfont{
    color: #fff;
}
.process-list .process-item .text-box{
    font-size: 16px;
    color: #4d4d4f;
    margin: 20px 5px 30px;
}
.process-list .layui-icon{
    font-size: 24px;
    color: grey;
    margin-top: 46px;
    font-weight: bold;
}
.process-list .process-item .num-box{
    position: absolute;
    width: 44px;
    height: 44px;
    background: #BD9F68;
    color: #fff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    font-size: 14px;
}
.process-list .process-item .num-box span{
    display: block;
    line-height: 1.2;
}
.process-list .process-item .process-step{
    font-size: 12px;
    margin-top: 6px;
    font-style: italic;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .process-list .process-item .img-box{
        padding: 25px;
    }
    .process-list .process-item:not(:last-child):after{
        top: 31px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .process-list .process-item:not(:last-child):after{
        font-size: 16px;
        top: 31px;
        right: -8px;
    }
    .process-list .process-item .text-box{
        font-size: 14px;
    }
    .process-list .process-item .img-box{
        padding: 18px;
    }
    .process-list .process-item .iconfont{
        font-size: 32px;
    }
    .process-list .process-item .num-box{
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    .process-list .process-item .process-step{
        margin-top: 5px;
    }
}
@media screen and (max-width: 767px) {
    .process-list{
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }
    .process-list .process-item{
        width: 33.33333%;
    }
    .process-list .process-item .img-box{
        padding: 18px;
    }
    .process-list .process-item .iconfont{
        font-size: 36px;
    }
    .process-list .process-item:not(:last-child):after{
        font-size: 18px;
        right: -9px;
        top: 28px;
    }
    .process-list .process-item:nth-of-type(3):after{
        display: none;
    }
    .process-list .process-item .text-box{
        font-size: 14px;
        margin: 10px 5px 30px
    }
}

/*process-list END*/



.page-container{
    max-width: 940px;
    margin: 0 auto;
}