@charset "utf-8";
.banner {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: relative;
}

.banner>.swiper-container {
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 20px;
}

.banner>.swiper-container,
.banner>.swiper-container .swiper-slide,
.banner>.swiper-container .pic {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.banner>.swiper-container .swiper-pagination {
    bottom: 40px;
    font-size: 0;
}

.banner>.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #fff;
    width: 12px;
    height: 12px;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 0 5px;
    opacity: .5;
}

.banner>.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}

.banner>.swiper-container .pic {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner .content img {
    position: absolute;
}

@-webkit-keyframes slide_on1 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide_on1 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.slide_on1 {
    -webkit-animation-name: slide_on1;
    animation-name: slide_on1;
}

.banner .swiper-slide-active .pic {
    animation: slide_on1 5.5s linear;
    -webkit-animation: slide_on1 5.5s linear;
    -ms-animation: slide_on1 5.5s linear;
    -moz-animation: slide_on1 5.5s linear;
    -o-animation: slide_on1 5.5s linear;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    color: #fff;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 66px;
    height: 66px;
    background: rgba(0, 0, 0, .5);
}

.banner .swiper-button-next:after {
    margin-left: 5px;
}

.banner .swiper-button-prev:after {
    margin-right: 5px;
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
    opacity: 1;
}

.banner .slides {
    position: absolute;
    bottom: 36px;
    text-align: center;
    width: 100px;
    left: 50%;
    margin-left: -50px;
    z-index: 1;
}

.banner .slides p {
    color: #fff;
    font-size: 12px;
    margin-top: 6px;
}

.banner .slides i {
    display: block;
    margin: 0 auto;
    width: 2px;
    height: 30px;
    background: #fff;
    animation: a_banner_s_line 3s 0.3s linear both infinite;
    -webkit-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -ms-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -moz-animation: a_banner_s_line 3s 0.3s linear both infinite;
    -o-animation: a_banner_s_line 3s 0.3s linear both infinite;
}

@-webkit-keyframes a_banner_s_line {
    0% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    20% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    30% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 0;
    }
    31% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 0;
    }
    50% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
}

@keyframes a_banner_s_line {
    0% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    20% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
    30% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 0;
    }
    31% {
        transform: scale(1, 0.01);
        -webkit-transform: scale(1, 0.01);
        -ms-transform: scale(1, 0.01);
        -moz-transform: scale(1, 0.01);
        -o-transform: scale(1, 0.01);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 0;
    }
    50% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -moz-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform-origin: 50% 100%;
        -webkit-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        opacity: 1;
    }
}

.banner-flow {
    position: absolute;
    bottom: 110px;
    right: 60px;
    z-index: 2;
    width: 250px;
}

.banner-news {
    background: rgba(255, 255, 255, .58);
    padding-top: 24px;
}

.banner-news .tit {
    position: relative;
    font-size: 16px;
    color: #000;
    padding-left: 11px;
    line-height: 20px;
    margin: 0 18px;
    font-weight: bold;
}

.banner-news .tit:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d40000;
}

.banner-news .swiper-container {
    width: 214px;
    margin: 22px auto 0;
}

.banner-news .swiper-container a {
    display: block;
    color: #000;
}

.banner-news .name {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: bold;
}

.banner-news .date {
    font-size: 12px;
    margin-top: 10px;
    opacity: .8;
}

.banner-news .more {
    margin-top: 26px;
}

.banner-news .txt a:hover .name {
    color: #d40000;
}

.banner-news .more a {
    display: block;
    color: #fff;
    background: #d40000;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

.news {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 400px;
}

.news-pic {
    width: calc(50% - 310px);
}

.news-pic a {
    display: block;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.news-pic img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transition: all .6s;
    transition: all .6s;
}

.news-pic a:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.02);
    transform: translate(-50%, -50%) scale(1.02);
}

.news-pic .txt {
    position: absolute;
    top: 32px;
    right: 30%;
}

.news-pic .txt .en {
    font-size: 22px;
    color: #d40000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.news-pic .txt .ch {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
}

.news-txt {
    background: #fff;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.news-head {
    background: #f5f7fa;
}

.news-head a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 910px;
    height: 170px;
}

.news-head .date {
    width: 110px;
    text-align: center;
    padding-top: 18px;
}

.news-head .date .day {
    font-size: 36px;
    font-weight: bold;
    color: #d40000;
    line-height: 1.1;
}

.news-head .date .mon {
    font-size: 12px;
    color: #000;
    line-height: 1.1;
    margin-top: -3px;
}

.news-head .txt {
    padding-top: 25px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.news-head .tit {
    font-size: 16px;
    color: #d40000;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.4;
}

.news-head .info {
    font-size: 14px;
    color: #565656;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 8px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.news-head .iconfont {
    color: #d40000;
    font-size: 22px;
    margin-top: 20px;
    line-height: 1.1;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.news-head a:hover .iconfont {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.news-head a:hover .info {
    color: #d40000;
}

.news-list {
    margin-top: 15px;
    width: 910px;
}

.news-list a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    line-height: 30px;
}

.news-list .date {
    width: 110px;
    text-align: center;
    color: #565656;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.news-list li {
    padding: 5px 0;
}

.news-list .info {
    color: #000;
    -webkit-transition: all .4s;
    transition: all .4s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.news-list a:hover .date,
.news-list a:hover .info {
    color: #d40000;
}

.business-pic {
    position: relative;
}

.business-pic .swiper-slide {
    width: 1200px;
    height: 700px;
    overflow: hidden;
}

.business-pic .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    -webkit-transition: all .6s;
    transition: all .6s;
}

.business-pic .pic {
    position: relative;
    width: 100%;
    height: 100%;
}

.business-pic .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #434343;
    z-index: 0;
}

.business-pic .swiper-button-next,
.business-pic .swiper-button-prev {
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    height: 100%;
    width: calc((100vw - 1204px) / 2);
    margin: 0;
    color: #fff;
}

.business-pic .swiper-button-next {
    right: 0;
    text-indent: 40px;
}

.business-pic .swiper-button-prev {
    left: 0;
    text-indent: -40px;
}

.business-pic .swiper-button-next:after,
.business-pic .swiper-button-prev:after {
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    font-size: 60px;
    text-align: center;
}

.business-pic:hover .swiper-button-next:after,
.business-pic:hover .swiper-button-prev:after {
    opacity: .95;
}

.business-tab {
    position: relative;
    height: 150px;
    background: #f6f6f6;
    z-index: 2;
}

.business-tab .swiper-container {
    width: 1200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -600px;
    height: 227px;
    z-index: 2;
}

.business-tab .swiper-slide {
    width: 200px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.business-tab .btn {
    background: #fff;
    height: 120px;
    text-align: center;
    position: absolute;
    top: 57px;
    width: 100%;
}

.business-tab .iconfont {
    font-size: 31px;
    color: #ababab;
    line-height: 66px;
    position: relative;
}

.business-tab .tit {
    font-size: 16px;
    color: #000;
    line-height: 1.1;
    width: 100%;
}

.business-tab .swiper-slide-thumb-active .btn {
    top: 47px;
    background: #d40000;
    height: 140px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    z-index: 2;
}

.business-tab .swiper-slide-thumb-active .icon {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.business-tab .swiper-slide-thumb-active .icon .iconfont {
    position: relative;
    z-index: 2;
    color: #000;
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    border: 9px solid #d40000;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.business-tab .swiper-slide-thumb-active .icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 94px;
    height: 94px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #d40000;
    opacity: .49;
    border-radius: 100%;
    z-index: 0;
}

.business-tab .swiper-slide-thumb-active .tit {
    color: #fff;
    position: absolute;
    top: 76px;
}

.business-float {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -135px 0 0 -170px;
    z-index: 2;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    width: 340px;
    height: 250px;
    text-align: center;
    padding-top: 32px;
}

.business-float .en {
    font-size: 22px;
    color: #d40000;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: bold;
}

.business-float .ch {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 2px;
}

.business-float .name {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 25px;
}

.business-float .link {
    display: block;
    width: 202px;
    height: 50px;
    border: 1px solid #fff;
    line-height: 48px;
    margin: 35px auto 0;
    font-size: 14px;
    color: #fff;
}

.about {
    background: url(../images/about_bg.jpg) no-repeat center;
    background-size: cover;
    height: 460px;
    color: #fff;
    text-align: center;
    padding-top: 42px;
}

.about .ch {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 2px;
}

.about .en {
    font-size: 22px;
    color: #d40000;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: bold;
}

.about .tit {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 40px;
}

.about .txt {
    font-size: 14px;
    line-height: 2.1;
    margin-top: 15px;
}

.about ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: 70px;
}

.about li {
    width: 240px;
}

.about li .num {
    font-size: 52px;
    color: #c79738;
    font-weight: bold;
    position: relative;
}

.about li .num.add:after {
    content: '+';
    font-size: 36px;
    margin-left: 10px;
    font-weight: normal;
    vertical-align: 4px;
    margin-right: -24px;
}

.about li .name {
    font-size: 16px;
    color: #bfbfbf;
    line-height: 30px;
    margin-top: 22px;
    position: relative;
    display: inline-block;
    padding: 0 13px;
    border-radius: 16px;
    height: 33px;
    transition: all .3s;
    min-width: 92px;
}

.about li .name:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #bfbfbf;
    position: absolute;
    left: 50%;
    top: -17px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    transition: all .3s;
}

.banner-video {
    position: relative;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.banner-video img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-video .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    line-height: 40px;
    height: 40px;
}

.banner-video .tit {
    position: absolute;
    top: calc(50% + 25px);
    left: 0;
    width: 100%;
    font-size: 16px;
}

.banner-video .icon:before {
    content: '\e665';
    font-family: 'iconfont';
    font-size: 40px;
}

.video-poppup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 9;
    display: none;
}

.video-poppup video {
    width: 1000px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: .8;
}

.close-video:hover {
    opacity: 1;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.close-video:before {
    content: '\e639';
    font-family: 'iconfont';
    color: #fff;
    font-size: 36px;
    font-style: normal;
}

.bone .ch {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 2px;
    color: #000;
}

.bone .en {
    font-size: 22px;
    color: #d40000;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: bold;
}

.bone {
    padding: 50px 0 80px;
    text-align: center;
}

.bone-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin: 35px 0 60px;
}

.bone-tab li {
    width: 25%;
}

.bone-tab .iconfont {
    font-size: 53px;
    line-height: 116px;
    height: 116px;
    width: 116px;
    margin: 0 auto 14px;
    background-image: -webkit-linear-gradient(right, #d40000, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 100%;
}

.bone-tab .tit {
    font-style: 16px;
    color: #000;
    line-height: 1.5;
}

.bone-tab .iconfont,
.bone-tab .tit {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.bone-tab a {
    display: inline-block;
}

.bone-tab li.on .iconfont {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .18);
}

.bone-tab li.on .tit {
    font-weight: bold;
}

.bone-wrapper {
    height: 240px;
    position: relative;
    margin-top: 40px;
}

.bone-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
}

.bone-swiper .pic {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.bone-swiper .pic,
.bone-swiper .pic img {
    width: 200px;
    height: 240px;
    display: block;
}

.bone-swiper .tit,
.bone-swiper .sub,
.bone-swiper .txt {
    position: absolute;
    width: 100%;
    padding: 0 17px;
    text-align: justify;
    left: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.bone-swiper .tit {
    bottom: 35px;
}

.bone-swiper .sub {
    bottom: 14px;
    color: #c79738;
}

.bone-swiper .txt {
    bottom: 26px;
    overflow: hidden;
    -webkit-transform: translateY(105px);
    transform: translateY(105px);
    font-weight: normal;
}

.bone-swiper .pic:hover .tit,
.bone-swiper .pic:hover .sub {
    -webkit-transform: translateY(-102px);
    transform: translateY(-102px);
}

.bone-swiper .pic:hover .txt {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.bone-swiper .swiper-slide {
    width: auto;
}

.bone-swiper .swiper-button-prev {
    left: -40px;
}

.bone-swiper .swiper-button-next {
    right: -40px;
}

.bone-swiper .swiper-button-next,
.bone-swiper .swiper-button-prev {
    color: #d40000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bone-swiper .swiper-button-prev:after,
.bone-swiper .swiper-button-next:after {
    font-size: 32px;
    font-weight: bold;
}

.bone-swiper .swiper-button-disabled {
    color: #888;
}

.news-pic .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.news-pic .icon i {
    display: block;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 100%;
    line-height: 80px;
    background: rgba(255, 255, 255, .4);
    font-size: 38px;
}

.news-pic .icon p {
    width: 80px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}