/* 头部样式 */
.head-top {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: solid 1px #515255;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 8;
}
.head-top ul {
  display: flex;
  justify-content: flex-end;
  width: 94%;
  margin: auto;
}
.head-top ul li {
  color: #f9f9f9;
  font-size: .8rem;
  height:100%;
}
.head-top ul li a { 
  color: #f9f9f9;
  border-right:solid 1px #515255;
  padding-right: 10px;
}
.head-top ul li span {
  padding-right: 5px;
  font-size: 1.2rem;
  padding-left: 10px;
}
.head-top ul .media {
  margin-left: 5px;
  display: flex;
}
.head-top ul .media a {
  border:none;
  padding: 0 5px;
}
.head-top ul .media a span {
  color: #fff;
}
/* 内页头部样式 */
.nei-top ul li {
  color: #333;
}
.nei-top ul li a { 
  color: #333;
  border-right:solid 1px #515255;
}
.nei-top ul .media a span {
  font-size: 1.5em;
  color: #333;
}

/* logo变化样式 */
.index_head .logo .cai { 
  display: none;
}

header.hover .logo .bai { 
  display: none;
}
header.hover .logo .cai { 
  display: block;
}

header.hover-sub .logo .bai { 
  display: none;
}
header.hover-sub .logo .cai { 
  display: block;
}

/* 头部logo导航样式 */

:root {
    --main-color: #da291c;
    --dark--blue: #8a180f;
}

header {
    height: 100px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
}

header .logo {
    width: 250px;
    position: relative;
}

header .logo img {
    width: 100%;
 
}
.index_head {
    width: 100%;
    height: 100px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index_head .menu {
    flex: 1;
    text-align: right;
    padding-left: 30px;
    float: right;
    display: flex;
    justify-content: flex-end;
}

.index_head.sticky, .index_head.hehover {
    background: #FFF;
}

.index_head.hehover .logo_white, .sticky .logo_white {
    display: none;
}

.hehover .logo_blue, .sticky  .logo_blue {
    display: block;
}

/* 头部搜索 导航图标样式 */
.index_head .menu .icon {
  margin-left: 20px;
}
.index_head .menu .icon a { margin-left: 10px;}
.index_head .menu .icon a span {
  font-size: 1.5rem;
  color: #f2f2f2;
}

/*head right*/
.header_button_wrap {
    padding-top: 23px;
}
.header_language_wrap {
    margin-right: 20px;
}
.header_button_box {
    display: flex;
    justify-content: flex-end;
}
.header_language_box {
    position: relative;
}
.header_language_current {
  display: flex;
  height: 54px;
  width: 132px;
  padding: 0px 15px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.20);
  cursor: pointer;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  position: relative;
  z-index: 99;
}
.header_language_icon {
    width: 14px;
    height: 14px;
    position: relative;
    margin-left: 5px;
}
.header_language_icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/xl_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.header_language_text {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}
.header_language_tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 54px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}
.header_language_tab:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.8125vw;
    background: rgba(255, 255, 255, 0.20);
    opacity: 0;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_language_content {
    position: relative;
    z-index: 2;
    padding: 0.5208333vw 0 1.041666vw 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.header_language_item_box {
    padding: 5px 0;
}
.header_language_item_box a {
    color: #fff;
    line-height: 1.5;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_language_box:hover .header_language_tab {
    pointer-events: auto;
}
.header_language_box:hover .header_language_tab:after {
    height: 100%;
    opacity: 1;
}

.header_language_box:hover .header_language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.header_search_wrap {
    margin-right: 20px;
}
.header_search_box {
    position: relative;
    width: 54px;
    height: 54px;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border-radius:50%;
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_svg {
    width:54px;
    height: 100%;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_input_box {
    width: 54px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* width: 0; */
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    z-index: 999;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_input_box form {
    width: 200px;
}
.header_search_input_box #header_search_input {
    float: left;
    line-height: 54px;
    background: transparent;
    color: #333;
    width: calc(100% - 54px);
    display: block;
    padding: 0 10px;
}
.header_search_svg svg {
    fill: #fff;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}
.header_search_active .header_search_svg {
    opacity: 0;

}
.header_search_active .header_search_input_box {
    width: 200px;
}
.header_search_input_box .button {
float: left;
width: 54px;
height: 54px;
 background: transparent;
 background-image: url(../images/search_b.svg);
 background-position: center;
 background-repeat: no-repeat;
}


.header_wap_menu_wrap {
    width: 54px;
    height: 54px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    position: relative;
    z-index: 9999;
}
.flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* 内容页导航logo样式 */
/* .nei-header {
    height: 100px;
    position: static;
    z-index: 30;
} */
.nei-header .index_head .logo .cai {
 display: block;
}
.nei-header .menu li a font {
  color: #333;
}
.nei-header .menu .icon a span{
  color: #333;
}
/*弹出导航*/
.menu_content_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
}
.menu_content_wrap .logo_menu {
  width: 250px;
}
.menu_content_wrap .logo_menu img {
  width: 100%;
}
.menu_content_active {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
}
.menu_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}
.menu_content_box {
    width: 100%;
    position: relative;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(4vw);
    transform: translateY(4vw);
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}
.menu_logo {
    position: absolute;
    left: 60px;
    top: 24px;
    z-index: 99;
}
.menu_close {
    position: absolute;
    right: 80px;
    top:50px;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: all 1s cubic-bezier(.4, 0, .2, 1);
    transition: all 1s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.menu_close span {
    font-size: 2.5rem;
    color: #5e5e5e;
}
.menu_content_tab {
  display: flex;
  justify-content: space-between;
}
.menu_content_item_box {
    width: 18%;
}
.menu_content_item_title {
    padding-bottom:20px;
    position: relative;
}
.menu_content_item_title:before {
    content: "";
    width: 40px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    z-index: 9;
}
.menu_content_item_title:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.menu_content_item_title a {
    font-size: 20px;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
}
.menu_content_item_ul {
    margin-top: 20px;
}
.menu_content_item_li {
    padding: 15px 0;
}
.menu_content_item_li a {
    color: rgba(0, 0, 0, 0.8);
    max-width: 100%;
    overflow: hidden;
    transition: all .6s ease;
}
.menu_content_item_li a:hover {
color: #333;
}

.menu_content_active .menu_close {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}
.menu_content_active .menu_content_box {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}



/* 头部搜索样式 */
.search-head {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 0;
  max-height: 70%;
  top:0;
  left:0;
  overflow: hidden;
  z-index: 999;
}
.search-head .box { 
  width: 70%;
  height: 100%;
  margin: auto;
  border: solid 1px #f7f7f7;
}
.search-head .box .colse {
  position: absolute;
  right: 80px;
  top:50px;
}
.search-head .box .colse span {
  font-size: 2.5rem;
  color: #5e5e5e;
  cursor: pointer;
}
.search-head .box h3 { 
  text-align: center;
  font-size: 3rem;
  padding: 30px 0;
  font-family: GoldenRichhorn;
  letter-spacing: 2px;
  color: #000;
  border-bottom: solid 1px #f7f7f7;
}
.search-head .box .search {
  width: 80%;
  margin: 80px auto 0;
}
.search-head .box .search form {
  display: flex;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  border-bottom: solid 2px #141414;
}
.search-head .box .search form input {
  width: 100%; 
  border: none;
  font-size: 1rem;
  outline: none;
}
.search-head .box .search form button {
  background: none;
  border: none;
}
.search-head .box .search form button span {
  color: #5b5b5b;
  font-size: 1.3rem;
}
.search-head .box .link-search {
  width: 80%;
  margin: auto;
}
.search-head .box .link-search .title {
  font-size: .75rem;
  color: #000;
  margin-top: 90px;
}
.search-head .box .link-search ul li {
  margin-top: 20px;
}
.search-head .box .link-search ul li a {
  font-size: 1rem;
  color: #757575;
}

/* banner样式 */
.index-banner-box {
  width: 100%;
  height: 100vh;
}
.index-banner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: min(100%, 100vh);
  z-index: -1;
}
.index-banner .swiper-slide {
  width: 100%;
  background-size: cover !important;
}

.index-banner .swiper-pagination { 
  position: absolute;
  bottom: 30px;
  font-size: 0;
  z-index: 9;
}
.index-banner .swiper-pagination-bullet {
  width: 50px;
  height: 2px;
  background: #fff;
  border-radius: 0;
}
.index-banner .content {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
}
.index-banner .content h3 {
  font-size: 5rem;
  color: #f2f2f2;
  font-family: GoldenRichhorn;
  letter-spacing: 2px;
  font-weight: normal;
  margin-bottom: 20px;
  -webkit-text-stroke: 3px black; /* 黑色描边3px */
  text-stroke: 3px black; /* 一些浏览器也支持无前缀 */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.index-banner .content p {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  -webkit-text-stroke: 1px white; /* 黑色描边2px */
  text-stroke: 1px white; /* 一些浏览器也支持无前缀 */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.index-banner .pro { 
  position: absolute;
  bottom: 3%;
  width: 100%;
}
.index-banner .pro ul {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto;
}
.index-banner .pro ul li {
  width: 40%;
}
.index-banner .pro ul li img {
  width: 100%;
}
.index-banner .banner3 .content {
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
}
/* 分页器 */
.index-banner .autoplay .firsrCurrent i{
	transition:transform 2.9s linear;
	transform:scaleX(1);
}
.index-banner .autoplay .current i{
	transition:transform 4s linear;
	transform:scaleX(1);
}
.index-banner  .autoplay .replace span{
  background:gray;
}
/* 市场样式 */
.market {
  width: 100%;
}
.market .title {
  width: 100%;
  margin-top: 100px;
}
.market .title h3 {
  font-size: 3rem;
  font-family: GoldenRichhorn;
  color: #000;
  letter-spacing: 2px;
  width: 25%;
  border-top:solid 3px #000;
  padding-top: 30px;
}
.market .title p {
  font-size: 1.2rem;
  padding: 50px 0 100px;
  width: 40%;
}
.market .index-market {
  position: relative;
  width: 100%;
  padding: 0 16px;
}
.market .index-market .swiper {
  width: 100%;
}
.market .index-market .swiper .swiper-pagination {
  display: none;
}
.market .custom-prev {
  background: none;
  position: absolute;
  top:calc(50% - 25px);
  left: 10%;
  width: 50px;
  height: 50px;
  border: solid 1px rgba(169, 168, 166);
  border-radius: 50%;
  transform: scale(-1);
}
.market .custom-prev:hover {
  transform:scale(-1.3);
  transition: all .5s ease;
}
.market .custom-next {
  background: none;
  position: absolute;
  top:calc(50% - 25px);
  right: 10%;
  width: 50px;
  height: 50px;
  border: solid 1px rgba(169, 168, 166);
  border-radius: 50%;
}
.market .custom-next:hover {
 transform:scale(1.3);
 transition: all .5s ease;
}
.market .iconfont {
  color: #000;
  font-weight: bold;
}

.market .index-market .swiper-slide {
  width: 100%;
  background: #000;
}
.market .index-market .swiper-slide a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market .index-market .swiper-slide img {
  width: 100%;
  opacity: 0.5;
}
.market .index-market .swiper-slide h3 {
  position: absolute;
  color: #f2f2f2;
  font-family: GoldenRichhorn;
  font-size: 3rem;

}
.market .index-market .swiper-slide:hover h3 {
  font-size: 4rem;
  transition: all 0.6s;  
}
.market .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

/* 首页公司简介样式 */
.index-about { 
  width: 100%;
  margin: 150px 0;
  background: #000;
  position: relative;

}
.index-about img {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.index-about .about {
  position: absolute;
  top: 20%;
  width: 100%;
}
.index-about .about h3 {
  font-size: 3rem;
  font-family: GoldenRichhorn;
  color: #f2f2f2;
  letter-spacing: 2px;
}
.index-about .about .text {
  width: 100%;
}
.index-about .about .text p {
  font-size: 1rem;
  color: #f2f2f2;
  padding: 80px 0;
  line-height: 2rem;
  text-indent: 2em;
}
.index-about .about .more {
  border: solid 1px #f2f2f2;
}
.index-about .about .more a {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
.index-about .about .more span {
  color: #f2f2f2;
}
.index-about .about .more:hover {
  background: #f2f2f2;
}
.index-about .about .more:hover span {
  color: #333;
}
.index-about .strength {
  width: 100%;
  margin-top: 150px;
}
.index-about .strength ul {
  display: flex;
  justify-content: center;
}
.index-about .strength ul li {
  margin: 0 10%;
}
.index-about .strength ul li .number {
  font-size: 5rem;
  font-family: GoldenRichhorn;
  color: #f2f2f2;
  position: relative;
}
.index-about .strength ul li .jia {
  font-size: 2rem;
  position: absolute;
  top: 0;
  margin-left: 20px;
}
.index-about .strength ul li .text {
  color: #cacaca;
  font-size: 1.1rem;
  padding: 10px 0;
}
.index-about .strength ul li .heng {
  width: 0;
  height: 3px;
  background: #da291c;
  margin-top: 15px;
  transition: width 1s ease;
}

/* 首页产品解决方案样式 */
.Solutions {
  position: relative;
}
.Solutions .title h3 {
  font-family: GoldenRichhorn;
  font-size: 3rem;
  letter-spacing: 2px;
  color: #000;
}
.Solutions .title p {
  font-size: 1rem;
  color: #646464;
  margin: 15px 0 150px;
}
.Solutions .more {
  border: solid 1px #333;
}

.Solutions .tab-header {
  position: relative;
  width: 50%;
  margin-top: 100px;
}
.Solutions .tab-header img {
  width: 70%;
}
.Solutions .tab-swiper .swiper-slide {
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.Solutions .tab-swiper .swiper-slide p {
  font-size: 1rem;
  margin-top: 10px;
  text-transform:capitalize;
}
.Solutions .tab-swiper .swiper-slide.active {
  opacity: 0.5;
}

.Solutions .swiper-button-prev, .swiper-button-next {
  top: 50%;
  color: #333;
}
.Solutions .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  font-size: 2rem;
}
.Solutions .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after { 
  font-size: 2rem;
}
.Solutions .content-swiper {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}
.Solutions .content-swiper .swiper-slide img { 
  width: 100%;
}
.Solutions .content-swiper .swiper-slide .name {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
}
.Solutions .content-swiper .swiper-slide h3 {
  font-size: 2rem;
  color: #333;
  font-family: GoldenRichhorn;
  text-align: right;
  text-transform:capitalize;
  width: 100%;
}
.Solutions .content-swiper .more {
  margin-top: 15px;
}

/* 首页产品分类 */
.product-classification {
  margin-top: 150px;
  position: relative;
}
.product-classification .header-classification {
  position: relative;
  z-index: 2;
}
.product-classification .header-classification .swiper-wrapper .swiper-slide {
  text-align: center;
  padding: 50px 0;
}
.product-classification .header-classification .swiper-slide span {
  font-size: 3rem;
}
.product-classification .header-classification .swiper-slide p {
  font-size: 1rem;
  padding-top: 10px;
  text-transform: uppercase;
}
.product-classification .header-classification .swiper-slide-thumb-active {
  background: #da291c;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
}
.product-classification .classification-prev {
  position: absolute;
  top: 60px;
  left: 10%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  transform: scale(-1);
  display: flex;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
  z-index: 99;
}
.product-classification .classification-prev span {
  font-size: 1.3rem;
  font-weight: bold;
}
.product-classification .classification-next {
  position: absolute;
  top: 60px;
  right: 10%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
  z-index: 2;
}
.product-classification .classification-next span {
  font-size: 1.3rem;
  font-weight: bold;
}
.product-classification .swiper-button-disabled {
  opacity: 0.3;
}
.product-classification .content-section {
  margin-top: -20px;
  width: 100%;
  background: #000;
  color: #fff;
  position: relative;
}
.product-classification .content-section .slide-content img {
  width: 100%;
  opacity: 0.4;
}
.product-classification .content-section .slide-content .slide-text {
  position: absolute;
  top: 0;
  width: 100%;
}
.product-classification .content-section .slide-content .slide-text h2 {
  font-size: 2rem;
  margin-top: 180px;
}
.product-classification .content-section .slide-content .slide-text p {
  width: 50%;
  font-size: 1rem;
  line-height: 2;
  padding: 30px 0 80px;
  color: #f2f2f2;
}
.product-classification .content-section .slide-content .slide-text .more {
  border: solid 1px #fff;
  position: relative;
  z-index: 999;
}
.product-classification .content-section .slide-content .slide-text .more a {
  color: #fff;
}

/* 首页留言样式 */
.message {
  width: 100%;
  background: #f2f2f2;
  margin-top: 80px;
  color: #000;
  padding: 150px 0;
}

.message .title h3 {
  font-family: GoldenRichhorn;
  font-size: 3rem;
  letter-spacing: 2px;
  padding-bottom: 15px;
}
.message .title p {
  font-size: 1rem;
}
.message .box {
  padding-top: 80px;
}
.message .box .item {
  margin-bottom: 50px;
}
.message .box .item label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
   box-sizing: content-box;
}
.message .box .item input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 1.2rem;
  padding: 0 10px;
  border-radius: 5px;
  box-sizing: border-box;
}
.message .box .submit {
  background: #da291c;
  color: #fff;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  width: 250px;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
.message .box .submit span {
  text-transform: uppercase;
  font-size: 1.1rem;
}
.message .box .submit:hover .iconfont {
  padding-right: 30px;
  transition: all 0.6s; 
}

/* 首页support样式 */
.support {
  display: flex;
  justify-content: space-between;
  margin: 150px auto;
}
.support .left {
  width: 43%;
}
.support .left h3 {
  font-family: GoldenRichhorn;
  font-size: 2rem;
  color: #000;
  padding-top: 100px;
}
.support .left p {
  font-size: 1rem;
  padding: 50px 0;
  line-height: 1.8;
}
.support .left .more {
  width: 250px;
  height: 50px;
  line-height: 50px;
  background: #da291c;
  border-radius: 5px;
}
.support .left .more span {
  color: #fff;
  font-size: 1rem;
}
.support .right {
  width: 40%;
}
.support .right img {
  width: 100%;
  border-radius: 5px;
}

/* 首页新闻样式 */
.news {
  position: relative;
}
.news .title {
  display: flex;
  justify-content: space-between;
   align-items:baseline;
   margin-bottom: 50px;
}
.news .title h3 {
  font-size: 3rem;
  font-family: GoldenRichhorn;
  color: #000;
}
.news .title .more {
 height: 100%;

}
.news .swiper-slide .img img {
  width: 100%;
  height: 280px;
}
.news .swiper-slide .item {
  border: solid 1px #f7f7f7;
  padding: 25px;
}
.news .swiper-slide .item .time {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #000;
  font-size: .8rem;
}
.news .swiper-slide .item .text {
  width: 100%;
}
.news .swiper-slide .item .text h3 {
  font-size: 1.2rem;
  padding: 20px 0;
}
.news .swiper-slide .item .text p {
  font-size: .8rem;
}
.news .news-prev {
  position: absolute;
  top:50%;
  left: 10%;
  transform: scale(-1);
  width: 50px;
  height: 50px;
  border: solid 1px rgba(169, 168, 166);
  border-radius: 50%;
  background: none;
}
.news .news-prev:hover {
 transform:scale(-1.3);
 transition: all .5s ease;
}
.news .news-next {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 50px;
  height: 50px;
  border: solid 1px rgba(169, 168, 166);
  border-radius: 50%;
  background: none;
}
.news .news-next:hover {
 transform:scale(1.3);
 transition: all .5s ease;
}
.news .mySwiperNews .swiper-pagination {
  display: none;
}

/* 首页合作伙伴样式 */
.partner {
  margin: 150px 0;
  position: relative;
}
.partner .box {
  display: flex;
  justify-content: space-between;
}
.partner .title {
  width: 20%;
  font-family: GoldenRichhorn;
  color: #000;
  font-size: 3rem;
}
.partner .list {
   width: 70%;
   margin-top: 20px;
}
.partner .list .swiper-slide {
  width: 100%;
  border: solid 1px #f7f7f7;
  text-align: center;
}
.partner .list .swiper-slide img {
  width: 80%;
}
.partner .partner-next {
  position: absolute;
  top: calc(50% - 25px);;
  right: 10%;
  width: 50px;
  height: 50px;
  border: solid 1px rgba(169, 168, 166);
  border-radius: 50%;
  background: none;
}
.partner .swiper-pagination {
  display: none;
}

/* 底部样式 */
.footer {
  width: 100%;
  background: #000;
}
.footer .contact {
  width: 100%;
  padding: 100px 0;
}
.footer .contact ul {
  display: flex;
  justify-content: space-between;
}
.footer .contact ul li {
  text-align: center;
   border-right: 1px solid #333333;
   width: 33.3333%;
}
.footer .contact ul li:last-child {
  border: none;
}
.footer .contact ul li .iconfont {
  font-size: 3rem;
  color: #fff;
}
.footer .contact ul li p {
  font-size: 1rem;
  color: #f7f7f7;
  padding: 20px 0 10px;
}
.footer .contact ul li .heng {
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 0 auto 20px;
}
.footer .contact ul li h3 {
  font-size: 2rem;
  color: #fff;
  font-family: GoldenRichhorn;
  letter-spacing: 2px;
}
.footer .contact ul li a {
    color: #f7f7f7;
}
.footer  .navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer  .navigation .menu ul {
  display: flex;
}
.footer  .navigation .menu ul li {
  margin-right: 10px;
}
.footer  .navigation .menu ul li a {
  color: #f7f7f7;
  padding-left: 10px;
}
.footer .navigation .media a {
  color: #f7f7f7;
  padding-left: 5px;
} 
.footer .copyright {
  width: 100%;
  border-top: #333 solid 1px;
}
.footer .copyright p {
  font-size: .8rem;
  height: 60px;
  line-height: 60px;
}

/* 返回顶部样式 */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #da291c;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 99999999999;
}

#scrollToTopBtn:hover {
  background-color: #000;
  border: solid 1px #fff;
}

/* 语言切换 */
.gt_switcher_wrapper {
  right: 500px !important;
  display: none;
}
