/*
* @Author: peng
* @Date:   2019-04-09 17:18:38
* @Last Modified by:   peng
* @Last Modified time: 2019-04-12 13:17:17
*/
@charset "UTF-8";

/* ====== 重置CSS 2018-09-04 ====== */
* {
    box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
small,
strong,
dl,
dt,
dd,
ol,
ul,
li {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1.5;
}

body {
    font-size: 14px;
    line-height: 1.75;
    font-family: 'PingFang SC', "Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
    color: #666;
    background: #fff;
    overflow-x: hidden;
}

ul,
ol,
li {
    list-style: none;
}

a {
    color: #666;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

a:hover {
    outline: none;
    color: #0073b6;
}

a:focus {
    outline: none;
}

input,
button,
textarea {
    border-radius: 0;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    font-family: 'PingFang SC', "微软雅黑", Arial, Helvetica;
}

button {
    outline: none;
}

table {
    border-collapse: collapse;
    word-wrap: break-all;
    border-spacing: 0;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

img {
    vertical-align: middle;
    border: none;
    max-width: 100%;
}

/*HTML5 Fix*/
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details,
summary,
picture {
    display: block;
}

/*去除苹果默认样式*/
input,
textarea {
    -webkit-appearance: none;
}

/* ====== 通用样式 ====== */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.clear {
    clear: both;
}

.center {
    text-align: center;
}

.box {
    display: block;
    width: 100%;
    height: 100%;
}

.icon {
    display: inline-block;
    font-style: normal;
    vertical-align: middle;
}

/*垂直居中*/
.com-table {
    display: table;
    width: 100%;
    height: 100%;
}

.com-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

/*定宽布局*/
.com-width {
    margin-right: auto;
    margin-left: auto;
    width: 1200px;
}

/*背景色*/
.bg-gray {
    background: #f5f5f5 !important;
}

/*简易栅格化*/
.col {
    margin-left: -10px;
    margin-right: -10px;
    zoom: 1;
}

.col:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.col>li,
.col .item {
    float: left;
    padding: 0 10px;
}

.col li img,
.col .item img {
    max-width: 100%;
}

.col-2 li,
.col-2 .item {
    width: 50%;
}

.col-3 li,
.col-3 .item {
    width: 33.3333%;
}

.col-4>li,
.col-4 .item {
    width: 25%;
}

.col-5 li,
.col-5 .item {
    width: 20%;
}

.col-6 li,
.col-6 .item {
    width: 16.6666%;
}

.col-8 li,
.col-8 .item {
    width: 12.5%;
}

/*浏览器更新提示*/
.browserupgrade {
    margin: 0;
    padding: 50px 0;
    background: #ccc;
    text-align: center;
    font-size: 18px;
}

.browserupgrade a {
    font-weight: 600;
    color: red;
    text-decoration: underline;
}

/*图片放大*/
.pic-scale .pic,
.img-scale {
    position: relative;
    overflow: hidden;
}

.img-scale img,
.pic-scale img {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.img-scale:hover img,
.pic-scale:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

/*图片去色*/
.img-gray {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

/*三角形*/
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    margin-top: -1px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    -webkit-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

.pt-40 {
    padding-top: 40px;
}

.pt-60 {
    padding-top: 60px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-100 {
    padding-bottom: 100px;
}

.c-default {
    color: #0073b6;
}

.com-tit-36 {
    font-size: 36px;
    color: #333;
    line-height: 34px;
    height: 34px;
}

.com-tit-36.white {
    color: #fff;
}

.com-des-16 {
    font-size: 16px;
    line-height: 30px;
}

.com-des-14 {
    font-size: 14px;
    color: #717171;
    line-height: 30px;
}


.c-333 {
    color: #333;
}

/*字体*/
@font-face {
  font-family: "Roboto Bold";
  src: url("../fonts/Roboto Bold.woff2") format("woff2"),
       url("../fonts/Roboto Bold.woff") format("woff"),
       url("../fonts/Roboto Bold.ttf") format("truetype"),
       url("../fonts/Roboto Bold.eot") format("embedded-opentype"),
       url("../fonts/Roboto Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}


/*内页栏目图*/
.page-banner {
    position: relative;
    overflow: hidden;
}

.page-banner .pb-pic {
    overflow: hidden;
}

.page-banner .pb-pic img {
    max-width: 100%;
    -webkit-animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
    animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
}

@-webkit-keyframes SlickIn {
    0% {
        -webkit-transform: scale(1.1, 1.1)
    }

    100% {
        -webkit-transform: scale(1, 1)
    }
}

@-webkit-keyframes SlickOut {
    0% {
        -webkit-transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(.9, .9)
    }
}

@keyframes SlickIn {
    0% {
        transform: scale(1.1, 1.1)
    }

    100% {
        transform: scale(1, 1)
    }
}

@keyframes SlickOut {
    0% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(.9, .9)
    }
}

/*子栏目栏*/
.page-cate-wrap {
    height: 60px;
}
.page-cate {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 59px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.page-cate .com-width>a,
.page-cate li {
    position: relative;
    display: inline-block;
    position: relative;
    vertical-align: top;
    color: #333;
    font-size: 16px;
    margin-right: 50px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-cate li {
    position: static;
}

.page-cate li>a {
    position: relative;
    display: inline-block;
    margin-right: 0;
    /*padding: 0 5px;*/
}
.page-cate li>a span {
    position: relative;
    color: #666;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.page-cate li>a:hover span,
.page-cate li.on>a span,
.page-cate li:hover>a span  {
    color: #0073B6;
}
.page-cate .com-width>a:before,
.page-cate li>a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #0073b6;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-cate .com-width>a.on:before,
.page-cate .com-width>a:hover:before,
.page-cate li:hover>a:before,
.page-cate li.on>a:before {
    left: 0;
    width: 100%;
    opacity: 1;
}

.page-cate .com-width>a.on,
.page-cate .com-width>a:hover,
.page-cate li>a:hover,
.page-cate li.on>a:hover {
    color: #0073b6;
}

.page-sub-cate {
    height: 0;
    line-height: 50px;
    position: absolute;
    z-index: 1;
    top: 60px;
    width: 100%;
    left: 0;
    background-color: #efefef;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.page-sub-cate.forR {
    text-align: right;
    right: 0;
    left: auto;
}

.page-sub-cate.forR .sub-a {
    margin-right: 0;
    margin-left: 30px;
}

.page-sub-cate .sub-a {
    font-size: 16px;
    margin-right: 50px;
    color: #666;
    position: relative;
    display: inline-block;
}

.page-sub-cate .sub-a:hover,
.page-sub-cate .sub-a.on {
    color: #0073b6;
}

.page-cate li:hover .page-sub-cate {
    height: 50px;
}

.page-cate li .page-sub-cate .ps {
    position: absolute;
}

/*栏目标题*/
.page-title {
    margin-top: 30px;
    text-align: center;
}

.page-title h3 {
    font-size: 32px;
    color: #333;
    line-height: 130px;
}

/*分页*/
.pages {
    text-align: center
}

.pages a,
.pages span {
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    line-height: 30px;
    color: #666;
    font-size: 14px;
    border: 1px solid #ededed;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
}

.pages .prev,
.pages .prev_disabled,
.pages .next,
.pages .next_disabled {
    padding: 0 12px;
    width: auto;
    color: #666;
}

.pages .pre:hover,
.pages .next:hover {
    background-color: #0073b6;
    color: #fff;
}

.pages .current,
.pages a:hover {
    background-color: #0073b6;
    border-color: #0073b6;
    color: #fff !important;
}

.pages a.prev:before,
.pages a.prev_disabled:before {
    content: "上一页";
}

.pages a.next:before,
.pages a.next_disabled:before {
    content: "下一页";
}


/*标题*/
.com-title {
    text-align: center;
}
.com-title .cn {
    font-size: 28px;
    color: #333;
    line-height: 1;
}
.com-title .en {
    margin-top: 10px;
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
}


/*数字滚动 风格2*/
.num-scroll-two {
    text-align: center;
    font-size: 0;
    padding: 60px 0;
}

.num-scroll-two li {
    display: inline-block;
    padding: 0 50px;
    color: #aaa;
    font-size: 16px;
    min-width: 162px;
    vertical-align: middle;
}


.num-scroll-two li .num {
    margin-right: 5px;
    font-size: 66px;
    font-family: "Roboto Bold";
    line-height: 1;
    display: inline-block;
    color: #fff;
    font-weight: bold;
}
.num-scroll-two li .num-cont i {
    font-size: 66px;
    font-family: "Roboto Bold";
    color: #fff;
    line-height: 1;
    font-style: normal;
    font-weight: bold;
    display: inline-block;
    position: relative;
    top: -2px;
}
.num-scroll-two li .cont {
    display: inline-block;
}
.num-scroll-two li .num-tit {
    color: #e9e9e9;
}
.num-scroll-two.inner li .num-tit {
    color: #666;
}


/*悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#0073b6;background-color: rgba(0, 115, 182, .8); margin-bottom:4px;cursor:pointer;outline:none;transition: .3s;}
.suspension .a.active,
.suspension .a:hover{background:#0073b6;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../images/kf02/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kf02/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/kf02/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#8c8d90;background: rgba(140, 141, 144, .8); display:none;}
.suspension .a-top:hover{background:#8c8d90;}
.suspension .d{display:none;width:200px;background:#fff;position:absolute;right:67px;/* min-height:90px; */border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../images/kf02/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:-15px;}
.suspension .d-service-wechat{top:34px;}
.suspension .d-service-phone{top:130px;}
.suspension .d-qrcode{top:83px;}
.suspension .d .inner-box{padding: 5px 15px 5px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding: 10px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../images/kf02/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item .i-kf{width:44px;height:44px;background:url(../images/kf02/en_3.png) no-repeat center;background-size: 44px; display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../images/kf02/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:14px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../images/kf02/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding: 10px 0;}
.suspension .d-qrcode p{font-size:16px;color:#93959c;/* line-height: 1; */}


/* 案例 */
.ind-case{width: 100%;overflow: hidden;padding: 80px 0 50px 0;}
.case-list{width: 100%;margin-top: 40px;overflow: hidden;}
.case-list ul{margin-left: -1.6%;}
.case-list ul li{width: 23.4%;margin-left: 1.6%;position: relative;float: left;margin-bottom: 1%;overflow: hidden;height: 280px;}
.case-list ul li img{width: 100%;height: 100%;object-fit: cover;transition: all .4s;min-height: 150px;}
.case-list ul li:hover img{transform: scale(1.06);}
.case-list ul li p{position: absolute;bottom: 0;left: 0;width: 100%;padding: 0 20px;background-color: #f5f5f5;height: 60px;font-size: 18px;color: #333;line-height: 60px;font-family: 'Microsoft YaHei';white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
.case-list ul li:first-child{width: 48.4%;height: 573px;}
.case-more{width: 100%;margin: 20px 0 10px;overflow: hidden;position: relative;}
.case-more::after{content: '';width: 100%;height: 1px;background-color: #e5e8f6;top: 50%;left: 0;z-index: -1;position: absolute;}
.case-more a{display: block;width: 180px;height: 44px;border-radius: 30px;font-size: 16px;color: #133f97;line-height: 44px;text-align: center;background-color: #fff;margin: 0 auto;position: relative;padding-right: 20px;transition: all .4s;}
.case-more a::after{content: '';width: 20px;height: 44px;background: url('../images/index/ind-ico2.png') no-repeat center center;position: absolute;top: 0;right: 28px;}
.case-more a:hover::after{background: url('../images/index/ind-ico5.png') no-repeat center center;}
.case-more a:hover{color: #fff;background-color: #133f97;}

/*新闻和活动*/
.content-box {
    text-align: center;
    position: relative;
}

.content-box h1 {
    max-width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    margin: 0 auto;
    font-size: 2.4em;
    color: #fff;
    padding-bottom: 0;
}

.content-box h2 {
    color: #333;
    text-align: center;
    position: relative;
    padding: 0;
    padding-bottom: 8px;
    display: inline-block;
    margin: 0;
    float: none !important;
    max-width: 80%;
}

.content-box h2:after {
    content: '';
    width: 30%;
    height: 2px;
    background-color: #c7000b;
    position: absolute;
    left: 50%;
    margin-left: -15%;
    bottom: 0;
    min-width: 35px;
}


.col-item {
    position: relative;
    margin-bottom: 30px;
}

.col-item a {
    display: block;
    overflow: hidden;
}

.col-item .imgbox {
    overflow: hidden;
    position: relative;
}

@media (min-width: 1920px) {
    .col-item .imgbox {
        height:280px;
    }
    .media-news{
        height: 503.39px
    }

}

@media (max-width: 1920px) {
    .col-item .imgbox {
        height:280px;
    }
    .media-news{
        height: 503.39px
    }
}

@media (max-width: 1680px) {
    .col-item .imgbox {
        height:240px;
    }
    .media-news{
        height: 463.39px
    }
}

@media (max-width: 1440px) {
    .col-item .imgbox {
        height:220px;
    }
    .media-news{
        height:443.39px
    }
}

@media (max-width: 1366px) {
    .col-item .imgbox {
        height:200px;
    }
    .media-news{
        height:423.39px
    }
}

@media (max-width: 1200px) {
    .col-item .imgbox {
        height:180px;
    }
    .media-news{
        height:388px
    }
}

@media (max-width: 992px) {
    .col-item .imgbox {
        height:180px;
    }
    .media-news{
        height:388px
    }
}

.col-item .imgbox img {
    float: none;
    height: auto;
    width: 100%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.col-item .photo {
    width: 100%;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.col-item .type {
    top: 0;
    left: 15px;
    position: absolute;
    padding: 7px 20px;
    text-align: center;
    max-width: 90%;
    z-index: 8;
}

.col-item .type span {
    color: #fff;
    font-size: 13px;
    display: block;
    width: 100%;
    height: 100%;
}

.col-item .textbox {
    background: #f8f8f8;
    text-align: left;
    padding: 32px 28px 36px 28px;
}

.col-item .textbox .overtext {
    height: 10.6em;
    overflow: hidden;
}

@media (min-width: 1366px) and (max-width:1700px) {
    .col-item .textbox .overtext {
        height:11.1em;
    }
}

@media (min-width: 992px) and (max-width:1365px) {
    .col-item .textbox .overtext {
        height:10em;
    }
}

@media (max-width: 992px) {
    .col-item .textbox .overtext {
        height:6em;
    }

    .index-service .col-item .textbox .overtext {
        height: auto;
    }
}

.event-card .col-item .textbox .overtext {
    height: 6.7em;
}

.event-card .col-item .textbox .overtext .title {
    max-height: 62px;
}

.col-item .textbox .overtext .title {
    height: auto;
    display: block;
}

.col-item .textbox .overtext .text {
    height: auto;
    display: block;
}

.index-service .col-item .textbox .overtext .text {
    display: block;
    overflow: hidden;
}

.col-item .textbox .title {
    font-weight: bold;
    font-size: 1em;
    line-height: 1.625em;
    height: 62px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;
}

.col-item .textbox .info {
    font-size: 0.875em;
    height: auto;
    overflow: hidden;
    margin-bottom: 0px;
}

.index-service .col-item .textbox .info {
    height: 46px;
}

.col-item .textbox .info .address {
    display: inline-block;
    margin-right: 18px;
}

.col-item .textbox .info .address span {
    margin-top: -3px;
    display: inline-block;
    font-weight: bold;
}

.col-item .textbox .info .time {
    display: inline-block;
}

.col-item .textbox .info .time span {
    margin-top: -3px;
    display: inline-block;
    font-weight: normal;
}

.col-item .textbox .info span {
    vertical-align: middle;
    margin-right: 6px;
    font-family: "myiconfont" !important;
}

.col-item .textbox .text {
    font-size: 0.875em;
    line-height: 1.6875em;
    color: #666;
    clear: both;
    height: 60px;
}

.col-item .textbox .reg-more {
    font-size: 0.875em;
    color: #666;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    margin-top: 20px;
}

.col-item .textbox .reg-more span {
    float: left;
}

.col-item .textbox .reg-more .iconfont {
    color: #c7000b;
    font-weight: bold;
    float: left;
    margin-left: 4px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
}

.col-item .textbox .reg-more:hover .iconfont {
    -webkit-transform: translate3d(4px,0,0);
    transform: translate3d(4px,0,0);
}

@media (min-width: 992px) {
    .type1 a:hover .imgbox img,.type2 a:hover .imgbox img {
        -webkit-transform:translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        top: 50%;
        width: 105%;
    }

    .type1 a:hover .photo,.type2 a:hover .photo {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.type1 a:hover .textbox,.type2 a:hover .textbox {
    background-color: #f2f2f2;
}

.col-item.type1 .type {
    background: url(/upload/image/type2.png);
}

.col-item.type2 .type {
    background: url(/upload/image/type2.png);
}

.col-item.type3 .type {
    background: url(/upload/image/type2.png);
}

.col-item.news-item .type {
    background: url(/upload/image/type2.png);
}

@media (max-width: 992px) {
    .col-item.type3 .reg-more {
        display:none;
    }

    .col-item {
        margin-bottom: 15px;
    }

    .col-item .textbox {
        padding: 20px 15px !important;
    }

    .col-item .textbox .info {
        font-size: 14px;
        margin-top: 0;
    }

    .col-item .textbox .info .address {
        margin-bottom: 6px;
    }

    .col-item .textbox .info .time {
        margin-bottom: 6px;
    }

    .col-item .textbox .text {
        margin: 9px 0 25px 0;
    }

    .col-item .textbox a:hover .iconfont {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@media (max-width: 768px) {
    .col-item .textbox .title {
        height:auto;
        font-size: 1.1em;
    }

    .col-item .textbox .text {
        height: auto;
    }

}

@media (max-width: 767px) {
    .tab-content .events-top .col-item .imgbox img {
        height:100%;
        width: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: auto;
        left: 50%;
    }
    .event-card .col-item .textbox .overtext{
        height: auto;
    }
}

.col-item .textbox .overtext .title {
    height: auto;
    display: block;
}

.col-item .textbox .overtext .text {
    height: auto;
    display: block;
}

.index-service .col-item .textbox .overtext .text {
    display: block;
    overflow: hidden;
}

.col-item .textbox .title {
    font-weight: bold;
    font-size: 1em;
    line-height: 1.625em;
    height: 62px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;
}

.col-item .textbox .info {
    font-size: 0.875em;
    height: auto;
    overflow: hidden;
    margin-bottom: 0px;
}

.content-box h2 {
    color: #333;
    text-align: center;
    position: relative;
    padding: 0;
    padding-bottom: 8px;
    display: inline-block;
    margin: 0;
    float: none !important;
    max-width: 80%;
}

.content-box h2:after {
    content: '';
    width: 30%;
    height: 2px;
    background-color: #c7000b;
    position: absolute;
    left: 50%;
    margin-left: -15%;
    bottom: 0;
    min-width: 35px;
}

@media (min-width: 992px) {
    .content-box h2.pull-right {
        float:right !important;
    }

    .content-box h2.pull-right:after {
        right: 0;
        margin-left: auto;
    }

    .content-box h2.pull-left {
        float: left !important;
        text-align: left;
        max-width: none;
    }

    .content-box h2.pull-left:after {
        left: 0;
        margin-left: auto;
    }
}

.btn-group {
    margin-top: 20px;
}

.btn-group a {
    margin: 0 15px;
}

@media (max-width: 320px) {
    .btn-group a {
        margin:0;
    }
}

.btn-rect {
    padding: 0 30px;
    min-width: 140px;
    height: 32px !important;
    line-height: 30px !important;
    text-align: center;
    border: 1px solid #111;
    display: inline-block;
    color: #111;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.875em;
}

.news-item {
    overflow: hidden;
    position: relative;
    text-align: left;
}

.news-item .list-box {
    width: 100%;
    background: #f8f8f8;
    padding: 20px 20px 0 28px;
}

.news-item #wrapper:before {
    content: "";
    height: 80px;
    right: 15px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(rgba(248,248,248,0) 0%,rgba(248,248,248,1) 80%);
    left: 15px;
}

.news-item #wrapper::after {
    content: "";
    height: 32px;
    right: 15px;
    position: absolute;
    top: 0;
    background: linear-gradient(rgba(248,248,248,1) 0%,rgba(248,248,248,1) 80%);
    left: 15px;
}

.news-item #wrapper.ended:before {
    display: none !important;
}

@media (max-width: 1200px) {
    .news-item .list-box {
        padding:20px 15px 0 15px;
    }
}

@media (max-width: 992px) {
    .news-item .list-box {
        padding:20px 15px 10px 15px;
    }

    .news-item #wrapper:before {
        display: none;
    }
}

.news-item a {
    margin: 7% 0;
}

.news-item a h4 {
    font-size: 1em;
    line-height: 1.625em;
}

@media (max-width: 767px) {
    .news-item a h4 {
        font-size:1.1em;
    }
}

.news-item a .time {
    font-size: 0.875em;
    color: #666;
}

.news-item a:hover h4 {
    color: #c7000b;
}

.news-item a:hover .time {
    color: #c7000b;
}

@media (min-width: 992px) {
    footer .top-line {
        height:65px;
        overflow: visible;
    }
}

.col-item .textbox .title {
    font-weight: bold;
    font-size: 1em;
    line-height: 1.625em;
    height: 62px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 10px;
}

.col-item .textbox .info {
    font-size: 0.875em;
    height: auto;
    overflow: hidden;
    margin-bottom: 0px;
}

.index-service .col-item .textbox .info {
    height: 46px;
}

.col-item .textbox .info .address {
    display: inline-block;
    margin-right: 18px;
}

.col-item .textbox .info .address span {
    margin-top: -3px;
    display: inline-block;
    font-weight: bold;
}

.col-item .textbox .info .time {
    display: inline-block;
}

.col-item .textbox .info .time span {
    margin-top: -3px;
    display: inline-block;
    font-weight: normal;
}

.col-item .textbox .info span {
    vertical-align: middle;
    margin-right: 6px;
    font-family: "myiconfont" !important;
}

.col-item .textbox .text {
    font-size: 0.875em;
    line-height: 1.6875em;
    color: #666;
    clear: both;
    height: 60px;
}

.col-item .textbox .reg-more {
    font-size: 0.875em;
    color: #666;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    margin-top: 20px;
}

.col-item .textbox .reg-more span {
    float: left;
}

.col-item .textbox .reg-more .iconfont {
    color: #c7000b;
    font-weight: bold;
    float: left;
    margin-left: 4px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
}

.news-item a {
    margin: 7% 0;
}

.news-item a h4 {
    font-size: 1em;
    line-height: 1.625em;
}

@media (max-width: 767px) {
    .news-item a h4 {
        font-size:1.1em;
    }
}

.news-item a .time {
    font-size: 0.875em;
    color: #666;
}

.news-item a:hover h4 {
    color: #c7000b;
}

.news-item a:hover .time {
    color: #c7000b;
}
