* {
    margin: 0;
    padding: 0;
}

div,
address,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
dl,
dt,
em,
fieldset,
font,
form,
b,
b,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
label,
legend,
li,
ol,
p,
pre,
small,
span,
strong,
u,
ul,
var,
th,
td,
input {
    margin: 0;
    padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
button,
textarea,
p,
ul,
li,
ol,
table,
tr,
td,
header,
footer,
aside,
nav,
b,
b,
h3,
h4,
h5,
h6,
section {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    color: #333;
    padding: 0px;
    margin: 0px;
}

button:foucs {
    border: none !important;
    outline: none !important;
}

button::-moz-focus-inner {
    border-color: transparent;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

i {
    font-style: normal;
}

a {
    color: #333;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

img {
    border: none !important;
    vertical-align: middle
}

input {
    outline: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
select {
    -webkit-appearance: none;
    outline: none;
}

textarea {
    -webkit-appearance: none;
    outline: none
}

.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.clearfix {
    /*兼容 IE*/
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*t图片样式*/
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto
}

img {
    border: 0px;
    vertical-align: middle;
}

.img-responsive {
    display: block;
    height: auto;
    max-width: 100%
}

.avatar {
    display: block;
    overflow: hidden;
    width: 100%;
}

/*文字超出隐藏*/
.dot {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dot2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------

# 头部Header

--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 999;
    transition: all 0.5s;
    height: 90px;
    width: 100%;
}

#header.header-transparent {}

#header.header-scrolled {
    box-shadow: 0 0 18px rgb(0 0 0 / 10%);
    transition: all 0.3s;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 999;
    background: #fff;
}

.top-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-box .logo {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 90px;
}

.top-box .logo img {
    padding: 0;
    margin: 0;
    max-height: 80px;
}

.top-box .logo .logo-tu2 {
    display: none;
}

/*导航菜单 */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu {
    flex: 3;
    height: 90px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu ul li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    display: block;
    color: #333;
    padding: 0 5px;
    height: 90px;
    line-height: 90px;
    transition: 0.3s;
    font-size: 18px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #A40A09;
    text-decoration: none;
}

.nav-menu li:hover>a::before {
    width: 50%;
    background: #A40A09;
}

.nav-menu .active>a::before {
    width: 50%;
    background: #A40A09;
}

.nav-menu a:hover::before,
.nav-menu .active a:hover:before {
    width: 50%;
    background: #A40A09;
}

.nav-menu ul li a:before {
    content: '';
    width: 0;
    height: 5px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: transparent;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-menu .drop-down .nav_sub {
    width: 100%;
    opacity: 0;
    max-height: 0;
    height: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    margin: auto;
    background: rgba(255, 255, 255, 1);
    overflow: hidden;
}

.nav-menu .drop-down:hover .nav_sub {
    opacity: 1;
    top: 90px;
    visibility: visible;
    height: 300px;
    max-height: 300px;
}

.nav-menu .drop-down .nav_sub .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: stretch;
}

.nav_sub .nav_l {
    width: 40%;
    padding: 40px 40px 40px 0;
    background-color: #f8f8f8;
    height: 300px;
}

.nav_sub .nav_l b {
    font-size: 30px;
    line-height: 48px;
    display: block;
    color: #333;
    font-weight: normal;
    text-align: left;
    margin-bottom: 20px;
}

.nav_sub .nav_l div {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.nav_sub .nav_l a {
    background-color: #A40A09;
    width: 150px;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    margin-top: 40px;
}

.nav_sub .nav_l ::before {
    content: '';
    width: 1920px;
    height: 100%;
    position: absolute;
    background: #f8f8f8;
    left: -1920px;
    top: 0;
}

.nav_sub .nav_l a:hover {
    color: #fff;
}

.nav_sub .nav_l a::before {
    width: 100%;
}

.nav_r {
    width: 60%;
    background-color: #ffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.nav_sub .nav_r .l {
    width: 50%;
    padding-left: 25px;
    padding-top: 50px;
}

.nav_sub .nav_r .l a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    width: 100%;
    white-space: nowrap;
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    color: #333;
}

.nav_sub .nav_r .l a:hover {
    color: #A40A09;
}

.nav_sub .nav_r .l a::before {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    margin: auto;
    background: transparent;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav_sub .nav_r .l a:hover::before {
    width: 50%;
    background: #A40A09;
}

.nav_sub .nav_r.nav_pro .l {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav_sub .nav_r.nav_pro .l ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.nav_sub .nav_r.nav_pro .l ul li {
    width: auto;
    display: block;
    margin-right: 30px;
    margin-bottom: 15px;
}

.nav_sub .nav_r.nav_pro .l ul li a {
    width: auto;
    white-space: nowrap;
}

.nav_sub .nav_r.nav_pro .l ul li ul {
    display: flex;
    flex-direction: row;
}

.nav_sub .nav_r.nav_pro .l ul li ul li a {
    height: 35px;
    line-height: 35px;
}

.nav_sub .nav_r.nav_pro .l ul li ul li a {
    color: #999;
    font-size: 16px;
    width: auto;
    background: url(../images/sanjiaoyou.png) no-repeat center left;
    padding-left: 20px;
    margin-left: 10px;
}

.nav_sub .nav_r.nav_pro .l ul li ul li ul {
    display: flex;
    flex-direction: row !important;
    margin-left: 60px;
}

.nav_sub .nav_r.nav_pro .l ul li ul li ul a {
    background: url(../images/shuangjiantou.png) no-repeat center left;
}

.nav_sub .nav_r.nav_pro .l ul li:first-child ul {
    flex-direction: column;
}

.nav_sub .nav_r.nav_pro .l a {
    width: 100%;
}

.nav_sub .nav_r .r {
    width: 40%;
    padding-top: 20px;
    padding-right: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.nav-menu .drop-down a i {
    display: none;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 90px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 45%;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.nav-menu .mob-language {
    display: none;
}

.mobile-nav .mob-language {
    display: block;
}

#header.header-scrolled .nav-menu a {
    color: #333;
}

#header.header-scrolled .language {
    color: #333;
}

#header.header-scrolled .language a {
    color: #333;
}

#header.header-scrolled .language a:hover {
    color: #A40A09;
}

#header.header-scrolled .nav-menu a:hover,
#header.header-scrolled .nav-menu .active>a,
#header.header-scrolled .nav-menu li:hover>a {
    color: #A40A09;
}

#header.header-scrolled .nav_sub .nav_r.nav_pro .l ul li ul li a {
    color: #999;
}

#header.header-scrolled .h_language .icon {
    color: #333;
}

#header.header-scrolled .h_language .lanimg1 {
    display: none;
}

#header.header-scrolled .h_language .lanimg {
    display: block;
}

#header.header-scrolled .top-box .logo .logo-tu1 {
    display: none;
}

#header.header-scrolled .top-box .logo .logo-tu2 {
    display: block !important;
}

#header.header-scrolled .nav_sub .nav_l a {
    color: #fff;
}

#header.header-scrolled .nav-menu li:hover>a::before {
    width: 50%;
    background: #A40A09;
}

#header.header-scrolled .nav-menu .active>a::before {
    width: 50%;
    background: #A40A09;
}

#header.header-scrolled .nav-menu a:hover::before,
#header.header-scrolled .nav-menu .active a:hover:before {
    width: 50%;
    background: #A40A09;
}

/*  */
.nav_fr {
    height: 90px;
    display: flex;
    align-items: center;
}

.h_language {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 15px;
}

.h_language .icon {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.h_language .icon img {
    margin-right: 8px;
    height: 20px;
}

.h_language .icon i {
    padding-left: 5px;
}

.h_language .lan_down {
    position: absolute;
    width: 100%;
    left: 0;
    top: 45px;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 3px 5px #d6d6d7;
    padding: 10px;
    display: none;
}

.h_language .lan_down dl {
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.h_language .lan_down dl a {
    display: block;
}

.h_language .lanimg {
    display: none;
}

.h_language .lan_down dl a:hover {
    color: #A40A09;
}

.h_language .lan_down::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #fff;
}

/* 手机导航 */
.mobile-menu-hamburger {
    display: none;
}

.mobile-menu-hamburger a {
    color: #333;
    font-size: 28px;
}

#header.header-scrolled .mobile-menu-hamburger a {
    color: #333;
    font-size: 28px;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
    z-index: 9999;
}

.mobile-menu-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper.open .mobile-menu-inner {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.mobile-menu-inner {
    width: 100%;
    height: 100%;
    width: 350px;
    background-color: #fff;
    -webkit-box-shadow: -1px 0px 20px -5px #aaa;
    box-shadow: -1px 0px 20px -5px #aaa;
    position: relative;
    -webkit-transform: translateX(calc(100% - 50px));
    -ms-transform: translateX(calc(100% - 50px));
    transform: translateX(calc(100% - 50px));
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
    margin-left: auto;
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto;
}

.mobile-menu-inner .mobile-menu-inner-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
}

.mobile-menu-inner .offcanvas-btn-close {
    font-size: 40px;
    color: #000000;
    opacity: 1;
}

.mobile-menu-inner .offcanvas-btn-close i {
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-size: 20px;
    font-weight: normal;
}

.mobile-menu-inner .offcanvas-btn-close i:hover {
    color: #A40A09;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.mobile-menu-inner .widget-social {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu {
    text-align: start;
    padding: 10px 0px 30px;
}

.mobile-menu>.has-children>a i {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
    padding: 3px 0;
    text-align: right;
}

.mobile-menu>.has-children>a i.expanded {
    transform: rotate(90deg);
    color: #A40A09;
}

.mobile-menu>.has-children .dropdown {
    padding-left: 10px;
}

.mobile-menu>.has-children .dropdown li a {
    font-size: 14px;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
}

.mobile-menu>.has-children .dropdown li a i {
    width: 50px;
    padding: 3px 0;
}

.mobile-menu>.has-children .dropdown li a:hover {
    color: #A40A09;
}

.mobile-menu>.has-children.active>a {
    color: #A40A09;
}

.mobile-menu>.has-children.active>a i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.mobile-menu>li {
    border-bottom: 1px solid #ebebeb;
    padding: 15px 20px;
}

.mobile-menu>li>a {
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

.mobile-menu>li>a:hover {
    color: #A40A09;
}

.mobile-menu>li:first-child {
    border-top: 1px solid #ebebeb;
}

/*首页banner图*/
#banner {
    position: relative;
}

#banner .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

#banner .swiper-slide {
    position: relative;
    overflow: hidden;
}

#banner .swiper-slide img {
    width: 100%;
    position: relative;
}

#banner .swiper-slide .scalePic {
    display: block;
    width: 100%;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition-property: all;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    transition-delay: .2s;
}

#banner .swiper-slide-active .scalePic {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

#banner .swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    z-index: 999;
    width: 60px;
    font-size: 20px;
    line-height: 60px;
    height: 60px;
    transition: all .5s ease;
    outline: none;
}

#banner .swiper-button:hover {
    background: #A40A09;
}

.btn-prev {
    left: 5%;
}

.btn-prev img,
.btn-next img {
    width: 80%;
}

.btn-next {
    right: 5%;
}

/* #banner .swiper-pagination-bullet {

  width: 13px;

  height: 10px;

  display: inline-block;

  background: #fff;

  opacity: .9;

  margin: 0 5px;

  border-radius: 20px;

  transition: opacity .5s, background-color .5s, width .5s;

  transition-delay: .5s, .5s, 0s;

}



#banner .swiper-pagination-bullet-active {

  opacity: 1;

  background: #A40A09;

  width: 40px;

  transition-delay: 0s;

} */
#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 20px;
    left: 0;
    width: 100%;
}

#banner .swiper-slide .container {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    bottom: 0;
    margin: 0 auto;
}

.banner-slide-content {
    position: relative;
    z-index: 9;
}

.banner-slide-content span {
    color: #fff;
    display: block;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.banner-slide-content .title {
    font-size: 40px;
    line-height: 56px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.banner-slide-content p {
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

#banner_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    margin: 0 15px;
    background: #fff;
    opacity: 0.5;
}

#banner_pagination .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

#banner_pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

#banner_pagination .swiper-pagination-bullet {
    position: relative;
}

#banner_pagination .swiper-pagination-bullet .left {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    left: -7px;
    margin: auto;
    width: 12px;
    height: 30px;
    opacity: 0;
    overflow: hidden;
}

#banner_pagination .swiper-pagination-bullet .left:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 99;
    margin: auto;
    width: 12px;
    height: 24px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 20px 0 0 20px;
    border-right: 0;
}

#banner_pagination .swiper-pagination-bullet .right {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    right: -7px;
    margin: auto;
    width: 15px;
    height: 30px;
    opacity: 0;
    overflow: hidden;
}

#banner_pagination .swiper-pagination-bullet .right:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    margin: auto;
    width: 12px;
    height: 24px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 0 20px 20px 0;
    border-left: 0;
}

#banner_pagination .swiper-pagination-bullet-active .left {
    opacity: 1;
}

#banner_pagination .swiper-pagination-bullet-active .right {
    opacity: 1;
}

#banner_pagination .swiper-pagination-bullet-active .left:after {
    transform-origin: right center;
    /* animation-iteration-count: infinite; */
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-name: gyrateleft;
}

#banner_pagination .swiper-pagination-bullet-active .right:after {
    transform-origin: left center;
    /* animation-iteration-count: infinite; */
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-name: gyrateright;
}

@keyframes gyrateright {
    0% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes gyrateleft {
    0% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner_txt {
    position: absolute;
    top: 36%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    color: #333;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner_txt p {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: none;
}

.banner_txt b {
    display: block;
    font-size: 55px;
    color: #ffffff;
    margin: 30px 0;
    text-shadow: none;
}

.banner_txt span {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    display: block;
    text-shadow: none;
}

.banner-more {
    display: block;
    width: 130px;
    letter-spacing: 1px;
    margin-top: 20px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #999;
    border: 1px solid #999;
    border-radius: 38px;
    text-shadow: none;
}

.banner-more:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.banner-more::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: -1px;
    margin-left: 7px;
    -webkit-transition: .6s ease;
    transition: .6s ease;
}

.banner-more:hover::after {
    margin-left: 13px;
}

.indexXian {
    position: absolute;
    left: 8%;
    top: auto;
    z-index: 1;
    bottom: 40px;
    display: flex;
}

.indexXian span {
    font-size: 14px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-right: 12px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    position: relative;
}

.indexXian i {
    width: 2px;
    height: 80px;
    background: #EFEFEF;
    display: block;
    position: relative;
    overflow: hidden;
}

.indexXian i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background: #A40A09;
    opacity: 1;
    animation: aline 3s infinite linear;
}

@keyframes aline {
    from {
        bottom: 100%;
    }

    to {
        bottom: -100%;
    }
}

.yuan {
    position: relative;
    margin-top: 60px;
}

.yuan span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    bottom: 0;
}

.yuan span:nth-child(1) {
    animation: cross-1 1.5s infinite linear;
}

.yuan span:nth-child(2) {
    background: #A40A09;
    animation: cross-2 1.5s infinite linear;
}

@keyframes cross-1 {
    0% {
        transform: translateX(0);
        opacity: 0.8;
    }

    50% {
        transform: translateX(200%);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.8;
    }
}

@keyframes cross-2 {
    0% {
        transform: translateX(200%);
        opacity: 0.8;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(200%);
        opacity: 0.8;
    }
}

/*关于我们*/
.xiwnen {
    margin-top: 160px
}

.main_title {
    text-align: center;
    margin-bottom: 10px;
}

.main_title .m_p1 {
    font-size: 40px;
    display: flex;
    font-weight: bold;
    color: #A40A09;
    align-items: center;
    justify-content: flex-start;
}

.main_title .m_p2 {
    font-size: 28px;
    margin-top: 20px;
    color: #000;
}

.main_title .m_p3 {
    font-size: 46px;
    margin-top: 10px;
    color: #333;
}

.main_title .m_p4 {
    font-size: 26px;
    margin-top: 10px;
    color: #999;
}

.pad80 {
    padding: 80px 0;
}

.pad50 {
    padding: 50px 0;
}

.about {
    position: relative;
}

.bg_box {
    position: relative;
    overflow: hidden;
}

.about-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.about_fr {
    width: 48%;
}

.ab_txt {
    line-height: 32px;
    color: #666;
    font-size: 16px;
    text-align: justify;
    margin-top: 50px;
}

.ab_txt span {
    color: #666;
}

.about_fl {
    width: 53%;
    overflow: hidden;
    padding-left: 5%;
}

.more {
    border-radius: 23px;
    height: 46px;
    display: inline-block;
    font-size: 14px;
    line-height: 46px;
    color: #FFF;
    font-family: Arial;
    text-align: center;
    width: 160px;
    background: #A40A09;
    border: 1px solid #A40A09;
    margin-top: 45px;
    box-shadow: 0 0 10px #A40A09;
    position: relative;
    transition: all .3s;
}

.more:hover {
    background: #A40A09;
    border: 1px solid #A40A09;
    box-shadow: 0 0 10px #F56F6F;
}

/*  */
.xcal .swiper-wrapper {
    padding-top: 20px;
}

.xcal .swiper-slide {
    transition: all 0.5s ease;
    position: relative;
}

.xcal .swiper-slide a {
    margin: 10px;
    display: block;
}

.xcal .swiper-slide a:hover {
    box-shadow: 0 0 10px #dedede;
}

.xcal .swiper-slide .inner-con {
    position: relative;
    z-index: 1;
}

.xcal .swiper-slide .inner-con p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.xcal .swiper-slide .inner-con p i {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background: #A40A09;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 16px;
}

.xcal .swiper-slide img {
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.xcal .swiper-slide p {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 20px 10px;
    line-height: 28px;
    font-size: 16px;
}

.sl .swiper-button-next {
    position: absolute;
    top: 50%;
    right: 50px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    z-index: 99;
    width: 50px;
    border-radius: 100%;
    border: 1px solid #dedede;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    height: 50px;
    transition: all .5s ease;
    outline: none;
    background: #A40A09;
    border: 1px solid #A40A09;
}

.sl .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 50px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    z-index: 99;
    width: 50px;
    border-radius: 100%;
    background: #A40A09;
    border: 1px solid #A40A09;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    height: 50px;
    transition: all .5s ease;
    outline: none;
}

.sl .swiper-button-prev:hover,
.sl .swiper-button-next:hover {
    background: #A40A09;
    color: #fff;
}

.xcal .swiper-slide:hover p {
    background: #A40A09;
    color: #fff;
}

.xcal .swiper-slide:hover p i {
    background: #fff;
    color: #A40A09;
}

/*  优势 */
.service_box {
    position: relative;
    background: #F7F9FD;
}

.service_fl {
    width: 15%;
    background: #A40A09;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.Solution {
    width: 100%;
    margin-top: 20px;
}

.Solution .swiper-num {
    position: absolute;
    bottom: 28%;
    left: -13%;
    color: rgba(255, 255, 255, .7);
    font-size: 26px;
    z-index: 9;
}

.Solution .swiper-num .active {
    color: #fff;
    padding-right: 4px;
    font-size: 40px;
    font-weight: bold;
}

#sol_top .swiper-slide {
    position: relative;
    background: #F7F9FD;
}

#sol_top .swiper-slide .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#sol_top .swiper-slide .product-box {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

#sol_top .swiper-slide .product-box a {
    width: calc(20% - 20px);
    padding: 15px 0;
    text-align: center;
    margin: 10px;
    font-size: 18px;
    background: #fff;
}

#sol_top .swiper-slide .product-box a:hover {
    color: #fff;
    background: #A40A09;
}

#sol_top .swiper-slide .product-box b {
    color: #000;
    font-size: 38px;
    line-height: 52px;
    width: 100%;
    text-align: center;
    display: block;
}

#sol_top .swiper-slide .product-box p {
    font-size: 18px;
    margin: 10px auto;
    line-height: 36px;
    text-align: center;
    width: 70%;
}

.Solution {
    position: relative;
}

.Solution img {
    width: 100%;
}

#sol_bot {
    width: 100%;
    margin-top: 30px;
    height: 200px;
}

.Solution .swiper-container-thumbs {
    position: relative;
    margin-top: 20px;
}

#sol_bot .swiper-wrapper {
    flex-wrap: wrap;
    background: #fff;
}

.Solution .swiper-container-thumbs .swiper-slide span {
    position: relative;
    z-index: 1;
}

.Solution .swiper-container-thumbs .swiper-slide {
    cursor: pointer;
    color: #000;
    position: relative;
    overflow: hidden;
    width: 25% !important;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    transition: all 0.8s;
    border: 1px solid #f1f1f1;
    margin-left: -1px;
}

.Solution .swiper-container-thumbs .swiper-slide a {
    display: block;
    text-align: center;
}

.Solution .swiper-container-thumbs .swiper-slide p {
    font-size: 24px;
    text-align: center;
    z-index: 2;
    width: 100%;
    font-weight: 600;
}

.Solution .swiper-container-thumbs .swiper-slide .num {
    font-size: 50px;
    color: #dedede;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.Solution .swiper-container-thumbs .swiper-slide .num img {
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
}

.Solution .swiper-container-thumbs .swiper-slide-thumb-active {
    background: #A40A09 !important;
    color: #fff !important;
}

.Solution .swiper-container-thumbs .swiper-slide-thumb-active a {
    color: #fff;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: " ";
}

/* 优势 */
.jspt {
    background: url(../images/bg.jpg) no-repeat bottom;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.jspt ul {
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.jspt ul li {
    font-size: 16px;
    color: #333;
    padding-bottom: 30px;
    background: rgba(255, 255, 255, .7);
    padding-top: 20px;
    border-radius: 10px;
    margin-left: -1px;
    width: 23.55555%;
    font-weight: bold;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
    margin-top: -1px;
    z-index: 9;
    position: relative;
    margin-right: 2%;
    backdrop-filter: blur(4px);
}

.jspt ul li a {
    display: block;
    color: #fff;
}

.jspt ul li p {
    border-radius: 50%;
    padding: 30px 10px;
    margin: 0 auto;
    text-align: center;
    color: #333;
    font-weight: normal;
}

.jspt ul li span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: normal;
    padding: 10px;
}

.jspt ul li i {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    font-style: normal;
    margin-top: 5px;
    color: #000;
}

.jspt ul li em {
    font-weight: normal;
    margin-top: 10px;
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #000;
}

.jspt ul li p img {
    height: 70px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.jspt ul li::before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #A40A09;
    border-radius: 10px;
    transition: 0.5s;
}

.jspt ul li:hover:before {
    width: 100%;
    left: 0;
}

.jspt ul li a:hover i,
.jspt ul li a:hover em,
.jspt ul li a:hover p {
    color: #fff;
}

.jspt ul li a:hover img {
    filter: brightness(2);
}

/* 产品资料 */
.news {
    width: 100%;
    overflow: hidden;
    background: url(../images/newsbg.jpg) no-repeat top center;
    background-size: cover;
}

.news .news_con {
    display: flex;
    justify-content: space-between;
}

.news .news_con .newsfl {
    width: 30%;
    overflow: hidden;
}

.news .news_con .newsfr {
    width: 70%;
    padding-left: 4%;
    overflow: hidden;
    border-left: solid 1px #dedede;
}

.newsmore {
    width: 100%;
    overflow: hidden;
    margin-top: 92px;
}

.newsmore a {
    display: block;
    width: 212px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-size: 16px;
    padding-left: 22px;
    background: #A40A09;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.newsmore a:hover,
.ysmore a:hover,
.procont .procontlf .promore2 a:hover {
    background: #A40A09;
}

.news .news_con .newsfr dl {
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.news .news_con .newsfr dl dt {
    overflow: hidden;
    font-size: 16px;
    color: #a8a8a8;
    font-weight: normal;
}

.news .news_con .newsfr dl dt span {
    display: block;
    font-size: 16px;
    color: #a8a8a8;
}

.news .news_con .newsfr dl dd {
    overflow: hidden;
}

.news .news_con .newsfr dl dd b {
    width: 100%;
    overflow: hidden;
    font-size: 23px;
    color: #A40A09;
    line-height: 30px;
    font-weight: bold;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news .news_con .newsfr dl dd .newsms {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #575757;
    line-height: 30px;
    margin-top: 36px;
}

.news .news_con .newsfr dl dd .newsmore2 {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #A40A09;
    line-height: 30px;
    padding-bottom: 10px;
    margin-top: 40px;
}

.news .news_con .newsfr ul {
    width: 100%;
    overflow: hidden;
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
}

.news .news_con .newsfr ul li {
    width: 33.33%;
    padding: 30px;
    background: #fff;
    border-right: solid 1px #e7e7e8;
    border-bottom: solid 1px #e7e7e8;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

.news .news_con .newsfr ul li:last-child,
.news .news_con .newsfr ul li:nth-child(3) {
    border-right: none;
}

.news .news_con .newsfr ul li .newsdate {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #a8a8a8;
    line-height: 30px;
    margin-bottom: 6px;
}

.news .news_con .newsfr ul li .newstit {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #343434;
    line-height: 30px;
    margin-top: 8px;
}

.news .news_con .newsfr ul li .newsdes {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    color: #666;
}

.news .news_con .newsfr ul li .newsmore2 {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #A40A09;
    line-height: 30px;
    background: url(../images/icon6.png) no-repeat left bottom;
    padding-bottom: 10px;
    margin-top: 23px;
}

.news .news_con .newsfr ul li:hover {
    background: #A40A09;
}

.news .news_con .newsfr ul li:hover .newstit,
.news .news_con .newsfr ul li:hover .newsdes,
.news .news_con .newsfr ul li:hover .newsdate {
    color: #fff;
}

.news .news_con .newsfr ul li:hover .newsmore2 {
    background: url(../images/iconh6.png) no-repeat left bottom;
    color: #fff;
}

/*底部footer*/
.footer-main {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background: url(../images/ftbg.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0 0px 0;
}

.footer-main .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-list1 .info {
    margin-top: 30px;
    text-align: justify;
}

.footer-list2 {
    width: 16%;
}

.footer-list3 {
    width: 35%;
}

.footer-list3 .con_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-list1 p i,
.footer-list2 p i {
    padding-right: 6px;
}

.footer-list1 span,
.footer-list2 span,
.footer-list3 span {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    display: block;
}

.footer-list1 {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 2%;
}

.footer-list1 .socials {
    margin-bottom: 30px;
    display: flex;
}

.footer-list1 p img {
    margin-right: 8px;
}

.footer-list1 .socials li {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    width: 45px;
    line-height: 45px;
    text-align: center;
    height: 45px;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 0 10px #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-list1 .socials li:hover {
    background: #3C69C4;
}

.footer-list1 .socials li:hover img {
    filter: brightness(100);
}

.footer-list1 p,
.footer-list2 p,
.footer-list3 p {
    color: #fff;
    font-size: 16px;
    line-height: 32px;
}

.footer-list1 p a,
.footer-list2 p a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-list1 p a:hover,
.footer-list2 p a:hover {
    color: #ffffff;
}

.address-content {
    display: inline-block;
    position: relative;
    padding-left: 52px;
    padding-bottom: 10px;
    text-align: left;
}

.address-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    position: absolute;
    left: 0px;
    top: 5px;
    display: inline-block;
    width: 30px;
    height: 37px;
    line-height: 37px;
    text-align: center;
}

.address-content i {
    font-size: 15px;
    color: #3C69C4;
    display: block;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 5px;
}

.address-content p {
    color: #fff;
    font-size: 13px;
}

.foot_con {
    display: flex;
}

.foot_con div {
    margin-right: 20px;
}

.footer-copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-align: center;
    text-align: center;
    margin-bottom: 0;
}

.footer-copyright span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p span {
    padding-left: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
}

/*返回顶部*/
.scroll {
    position: fixed;
    right: 30px;
    bottom: 70px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    z-index: 99999;
    color: #fff;
}

.scroll a p {
    color: #fff;
    margin-top: 5px;
}

.scroll .return {
    transform: scaleY(0);
    transition: 0.5s;
    background-color: #A40A09;
    width: 80px;
    height: 80px;
    padding-top: 10px;
    border-radius: 5px;
}

.scroll i {
    font-size: 20px;
    color: #fff;
}

.scroll .active {
    transform: scale(1);
}

.ab_view {
    background-color: #A40A09;
    border: 2px solid #A40A09;
    position: fixed;
    width: 80px;
    top: 40%;
    right: 10px;
    text-align: center;
    display: block;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    z-index: 999;
}

.ab_view ul {
    margin: 0;
    padding-top: 45px;
    color: #fff;
}

.ab_view ul li {
    position: relative;
}

.ab_view ul li:nth-of-type(1),
.ab_view ul li:nth-of-type(4) {
    display: none;
}

.ab_view ul li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    height: auto;
    width: 100%;
    padding: 43px 0 12px;
    background: url(/skin/images/kefu-tb.png) no-repeat top center;
}

.ab_view ul li a:hover {
    background-color: #6a0505;
}

.ab_view a.kefu-lx {
    background-image: url(/skin/images/kefu.png);
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: -40px;
    text-indent: -9999px;
    height: 80px;
    width: 80px;
    z-index: 999999;
    left: 0px;
    border-width: 0;
    overflow: hidden;
}

.ab_view a.kefu-lx:hover {
    background-color: rgba(255, 255, 255, 0);
}

.ab_view ul li a.kefu-tel {
    background-position: center -79px;
}

.ab_view ul li a.kefu-qq {
    background-position: center -150px;
}

.ab_view ul li a.kefu-wx {
    background-position: center -220px;
}

.ab_view ul li a.kefu-dy {
    background-position: center -338px;
}

.ab_view ul li a.kefu_bottom {
    background-position: center -288px;
    padding: 30px 0 10px 0;
    border-radius: 0 0 8px 8px;
}

.ab_view ul li a.kefu_top {
    background-position: center -15px;
    padding: 30px 0 10px 0;
}

.ab_view:hover ul li a {
    display: block;
}

.ab_view ul li p {
    position: absolute;
    top: 0;
    right: 82px;
    width: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #fff;
    background: #A40A09;
    display: block;
    opacity: 0;
    transition: all .4s ease-in-out .1s;
    overflow: hidden;
    z-index: 201;
}

.ab_view ul li:nth-of-type(3) p {
    top: 0;
}

.ab_view ul li:hover p {
    width: 150px;
    padding: 15px;
    opacity: 1;
}

@media (max-width:800px) {
    .ab_view {
        width: 60px;
        border-radius: 8px;
        right: 2px;
    }

    .ab_view a.kefu-lx {
        display: none;
    }

    .ab_view ul {
        padding: 0;
    }

    .ab_view ul li a {
        font-size: 12px;
    }
}