/*.flexslider{
  height: 560px;
}
.flexslider .slides li{
  height: 560px;
  background-size: auto 100% !important;
}*/
.flexslider .slides li img {
  display: block;
  width: 100%;
  height: 560px;
  -o-object-fit: cover;
  object-fit: cover;
}

/*head*/
.head {
  position: fixed;
  top: 0px;
  z-index: 9;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--head-height);
  background-color: #fff;
}
.head .mob_nav_btn {
  display: none;
}
.menu {
  display: none;
}
.head .logo {
  display: flex;
  align-items: center;
}
.head .logo a {
  display: block;
}
.head .logo a img {
  display: block;
  height: 60px;
}
.head .search_btn {
  float: right;
}
.head .search_btn a {
  display: block;
  width: 78px;
  height: 100px;
  border: 0px;
  font-size: 0px;
  line-height: 120px;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
}
.head .search_btn img {
  display: inline-block;
  width: 22px;
}
.head_search {
  display: none;
  position: fixed;
  z-index: 19;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 45px;
  width: 768px;
  height: 140px;
}
.head_search form {
  position: relative;
}
.head_search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #666;
}
.head_search button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border: 0px;
  cursor: pointer;
  background: url(../images/search_ico.png) no-repeat center;
  -o-background-size: 22px;
  background-size: 22px;
}
.head_search .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.head_search .close:after,
.head_search .close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  line-height: 20px;
  background-color: #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_search .close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search_bg {
  display: none;
  position: fixed;
  z-index: 18;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.head .nav {
  float: right;
  width: 45%;
}
.head .nav ul {
  display: flex;
}
.head .nav li {
  width: 16.66%;
  position: relative;
}
.head .nav li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #222;
  line-height: 100px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li > a:hover,
.head .nav li.on > a {
  color: var(--main-color);
}
.head .nav li > a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 5px;
  background-color: var(--main-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.head .nav li.on a:after {
  width: 100%;
}
.head .nav li dl.xl {
  position: absolute;
  min-width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  /*opacity: 0;
  transition: all 0.3s;*/
}
.head .nav li dl dd a {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 40px;
  padding: 0 5px;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px dashed #e4e4e4;
}
/*.head .nav li:hover dl.xl{
  opacity: 1;
  transition: all 0.3s;
}*/
.head .nav li dl dd a:hover {
  color: #fff;
  background-color: var(--main-color);
  border-bottom-color: transparent;
}

.head.on{
  background-color: rgba(255, 255, 255, .9);
}

/*index*/

.inbanner .swiper-slide {
  /*height: 940px;
  background-size: cover !important;*/
}
.inbanner .swiper-slide a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.inbanner .swiper-slide img {
  display: block;
}
.inbanner .swiper-slide .text {
  position: absolute;
  top: 35%;
  left: 10%;
}
.inbanner .swiper-slide .text h5 {
  font-size: 56px;
  line-height: 100px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Times New Roman";
  font-weight: bold;
}
.inbanner .swiper-slide .text p {
  font-size: 40px;
  line-height: 100px;
  color: #fff;
}
.inbanner .swiper-slide .text span {
  font-size: 15px;
  display: block;
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 4px;
  margin-top: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#0067ff), to(#2c82ff));
  background: -webkit-linear-gradient(left, #0067ff, #2c82ff);
  background: -moz-linear-gradient(left, #0067ff, #2c82ff);
  background: -o-linear-gradient(left, #0067ff, #2c82ff);
  background: linear-gradient(90deg, #0067ff, #2c82ff);
  background: -webkit-linear-gradient(-90deg #0067ff, #2c82ff);
  color: #fff;
}
.inbanner .swiper-pagination {
  bottom: 30px !important;
}
.inbanner .swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  border-radius: 0;
  opacity: 0.6;
  background: #fff;
  position: relative;
  margin: 0 3px;
}
.inbanner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  position: relative;
}

.intl {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.intl h3 {
  position: relative;
  margin: 0 auto 10px;
  padding: 0 10px;
  font-size: 34px;
  color: #274082;
  font-weight: bold;
}

.intl h5 {
  position: absolute;
  top: -30px;
  font-size: 48px;
  color: #666;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  /*-webkit-mask-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0)));*/
  margin-bottom: 20px;
}
.intl span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto 20px;
}
.intl p {
  font-size: 16px;
  line-height: 20px;
  color: #666;
  margin-bottom: 20px;
}

.inabout {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.inabout font {
  position: absolute;
  top: 80px;
  left: 0px;
  font-size: 148px;
  line-height: 148px;
  color: transparent;
  font-weight: bold;
  -webkit-text-stroke: 2px var(--main-color2);
  opacity: 0.05;
}
.inabout .img {
  float: right;
  width: 50%;
  height: 500px;
  overflow: hidden;
  /* padding-bottom: 30%; */
}
.inabout .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.inabout .text {
  float: left;
  width: 46%;
}
.inabout .text h3 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
.inabout .text h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
.inabout .text h5 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}
.inabout .text p {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  margin-bottom: 40px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.inabout .text a {
  position: relative;
  display: block;
  float: right;
  width: 150px;
  font-size: 14px;
  color: #fff;
  line-height: 48px;
  /*background-color: #2881da;*/
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0px;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: var(--main-color);
  opacity: .8;
}
.inabout .text a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a i {
  font-size: 14px;
  margin-left: 10px;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .text a:hover i {
  margin-left: 20px;
}
.inabout .text a:hover:after {
  width: 100%;
}

.inpro {
  position: relative;
  padding: 90px 0 110px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.inpro .w80 {
  position: relative;
} 
.inpro .intl {
  position: absolute;
  width: 90%;
  top: 30px;
  margin-bottom: 40px;
}
.inpro .intl h3 {
  padding: 0px;
  color: #333;
}
.inpro .intl h5 {
  font-size: 128px;
  top: -60px;
  left: -10px;
  color: transparent;
  -webkit-text-stroke: 1px var(--main-color2);
  opacity: 0.1;
}
.inpro .intl span {
  /* margin: 0px; */
  background-color: var(--main-color);
}
.inpro .content {
  position: relative;
  padding-top: 150px;
}
.inpro .content li a {
  display: block;
  background-color: #fff;
}
.inpro .content li .img {
  position: relative;
  border-bottom: 3px solid #ddd;
}
.inpro .content li .img:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0%;
  height: 3px;
  background-color: var(--main-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inpro .content li .img img {
  display: block;
}
.inpro .content li .text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 15px 20px 30px;
}
.inpro .content li .text h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content li .text h5 {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.inpro .content li .text span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 14px;
  color: #fff;
  width: 120px;
  line-height: 32px;
  background-color: rgb(230 0 18 / 65%);
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content li a:hover .img:after {
  opacity: 1;
  width: 100%;
}
.inpro .content li a:hover .text span {
  background-color: var(--main-color);
}
.inpro .content .inpro_nav {
  position: absolute;
  top: 35px;
  right: 0px;
}
.inpro .content .inpro_nav div {
  float: left;
  border: 1px solid #666;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content .inpro_nav .inpro_prev {
  margin-right: 5px;
}
.inpro .content .inpro_nav i {
  display: block;
  font-size: 16px;
  line-height: 32px;
  width: 40px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content .inpro_nav .inpro_prev i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.inpro .content .inpro_nav div:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.inpro .content .inpro_nav div:hover i {
  color: #fff;
}

.incase {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.incase font {
  position: absolute;
  top: 80px;
  left: 0px;
  font-size: 148px;
  line-height: 148px;
  color: transparent;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-text-stroke: 2px var(--main-color2);
  opacity: 0.05;
}
.incase .w80{
  position: relative;
}
.incase .intl2{
  position: absolute;
  top: 0;
  left: 0;
}
.incase .intl2 h3 {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.incase .intl2 h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
.incase .content{
  position: relative;
  display: flex;
  align-items: flex-end;
}
.incase .content .incase_nav{
  width: 35%;
}
.incase .content .incase_nav ul{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #F3F4F8;
}
.incase .content .incase_nav ul:after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.incase .content .incase_nav ul::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.incase .content .incase_nav ul li{
  width: 50%;
  padding: 6% 5%;
  background-position: right -50px bottom;
  background-size: 80% auto;
  transition: all .5s;
}
.incase .content .incase_nav ul li i{
  display: block;
  font-size: 48px;
  color: #555;
  margin-bottom: 15px;
  transition: all .5s;
}
.incase .content .incase_nav ul li h5{
  font-size: 12px;
  color: #555;
  margin-bottom: 3px;
  transition: all .5s;
}
.incase .content .incase_nav ul li h3{
  font-size: 18px;
  color: #555;
  font-weight: bold;
  transition: all .5s;
}
.incase .content .incase_nav ul li.cur{
  background: url(../images/incase_ico.png) no-repeat rgb(230 0 15 / 80%);
  background-position: right -50px bottom;
  background-size: 80% auto;
}
.incase .content .incase_nav ul li.cur i,.incase .content .incase_nav ul li.cur h5,.incase .content .incase_nav ul li.cur h3{
  color: #fff;
}

.incase .content .incase_img{
  position: relative;
  width: 65%;
}
.incase .content .incase_img li{
  position: relative;
  display: none;
}
.incase .content .incase_img li .img{
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
  background-color: #0e0001;
}
.incase .content .incase_img li .img img{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}
.incase .content .incase_img li .text{
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.incase .content .incase_img li h5{
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}
.incase .content .incase_img li h3{
  font-size: 32px;
  color: #fff;
}
.incase .content .incase_img li p{
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
.incase .content .incase_img li span{
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: .2;
  margin: 20px 0;
}
.incase .content .incase_img li a{
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  opacity: .6;
  transition: all .3s;
}
.incase .content .incase_img li a:hover{
  opacity: 1;
}
.incase .content .incase_img li.cur{
  display: block;
}


.innews {
  padding: 80px 0;
  background-color: #f5f5f5;
}
.innews .intl {
  margin-bottom: 80px;
}
.innews .intl h3 {
  color: #333;
}
.innews .intl h5 {
  font-size: 168px;
  top: -80px;
  color: transparent;
  -webkit-text-stroke: 1px var(--main-color2);
  opacity: 0.1;
}
.innews .intl span {
  margin-bottom: 15px;
}

.innews .left {
  float: left;
  width: 48%;
}
.innews .right {
  float: right;
  width: 48%;
}
.innews .left a {
  display: block;
  background-color: #fff;
}
.innews .left .img {
  overflow: hidden;
}
.innews .left img {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  height: 490px;
  -o-object-fit: cover;
  object-fit: cover;
}
.innews .left .text {
  position: relative;
  padding: 20px 20px 50px 120px;
}
.innews .left .text .date {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  font-size: 42px;
  line-height: 48px;
  font-weight: bold;
  color: var(--main-color2);
  text-align: center;
}
.innews .left .text .date:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0px;
  width: 1px;
  height: 68px;
  background-color: #ccc;
}
.innews .left .text .date span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}
.innews .left .text h3 {
  font-size: 24px;
  line-height: 48px;
  color: #333;
  /*font-weight: bold;*/
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.innews .left .text p {
  font-size: 14px;
  line-height: 32px;
  height: 96px;
  color: #888;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.innews .left a:hover .img img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.innews .left a:hover .text h3 {
  color: var(--main-color2);
}
.innews .right li {
  margin-bottom: 35px;
}
.innews .right li:last-child {
  margin-bottom: 0px;
}
.innews .right li a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 30px 140px 30px 20px;
  background-color: #fff;
}
.innews .right li a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  background-color: var(--main-color2);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .right li h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.innews .right li p {
  font-size: 14px;
  line-height: 25px;
  color: #888;
  height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .right li .date {
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .right li .date:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -25px;
  width: 1px;
  height: 94px;
  background-color: #ccc;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .right li .date span {
  display: block;
  font-size: 16px;
  line-height: 30px;
}

.innews .right li a:hover:after {
  opacity: 1;
  width: 100%;
}
.innews .right li a:hover h3 {
  color: #fff;
}
.innews .right li a:hover p {
  color: #fff;
}
.innews .right li a:hover .date {
  color: #fff;
}

.foot .foot1 {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background: #212529;
}
.foot .foot1 .foot_logo {
  width: 30%;
  float: left;
  color: #999;
}
.foot .foot1 .foot_logo img {
  display: block;
  height: 60px;
  /*margin-left: 40px;*/
  margin-bottom: 10px;
  opacity: .9;
}
.foot .foot1 .foot_logo h3 {
  font-size: 21px;
  line-height: 24px;
  margin: 5px 0;
  letter-spacing: 3px;
}
.foot .foot1 .foot_logo h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.foot .foot1 .foot_nav {
  float: left;
  width: 58%;
  margin-left: 2%;
}
.foot .foot1 .foot_nav ul {
  float: left;
  width: 40%;
}
.foot .foot1 .foot_nav li {
  width: 50%;
  height: 35px;
  line-height: 35px;
  float: left;
}
.foot .foot1 .foot_nav li a {
  font-size: 16px;
  color: #999;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.foot .foot1 .foot_nav li a:hover {
  color: #eee;
}
.foot .foot1 .foot_nav .text {
  float: right;
  width: 55%;
}
.foot .foot1 .foot_nav .text h3 {
  color: #999;
  font-size: 16px;
  line-height: 30px;
  display: block;
}
.foot .foot1 .foot_nav .text p {
  color: #999;
  font-size: 14px;
  line-height: 30px;
  display: block;
}
.foot .foot1 .foot_code {
  float: right;
  width: 10%;
}
.foot .foot1 .foot_code img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.foot .foot1 .foot_code p {
  color: #999;
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
}
.foot .foot2 {
  width: 100%;
  overflow: hidden;
  background: #14171a;
  height: 50px;
}
.foot .foot2 p {
  line-height: 50px;
  color: #939494;
  text-align: center;
  font-size: 14px;
}
.foot .foot2 p a {
  display: inline-block;
  color: #939494;
}

/*右侧悬浮*/
.floot_left {
  position: fixed;
  z-index: 999;
  bottom: 30%;
  right: 0px;
}
.floot_left ul {
  width: 73px;
}
.floot_left ul li {
  position: relative;
  width: 100%;
  height: 73px;
  border-radius: 3px;
  background-color: var(--main-color2);
  margin-bottom: 5px;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.floot_left ul li:last-child {
  margin-bottom: 0px;
}
.floot_left ul li.gotop {
  background-color: #333;
  overflow: hidden;
  height: 0px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
/*.floot_left ul li:hover{
  background-color: #f34f24 !important;
}*/
.floot_left ul li .con i {
  display: block;
  font-size: 40px;
  margin: 0 auto;
  padding: 8px 0 0;
  text-align: center;
  color: #fff;
}
.floot_left ul li .con h5 {
  font-size: 12px;
  color: #fff;
  line-height: 23px;
  text-align: center;
}
.floot_left ul li .fl_tc {
  position: absolute;
  top: 50%;
  right: 110px;
  background-color: var(--main-color2);
  padding: 10px;
  border-radius: 3px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.floot_left ul li .fl_tc h4 {
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_left ul li .fl_tc img {
  display: block;
  width: 105px;
  height: 105px;
  max-width: none;
}
.floot_left ul li .fl_tc a {
  display: block;
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_left ul li:hover .fl_tc {
  opacity: 1;
  right: 90px;
  visibility: visible;
}
.floot_left ul li .fl_tc:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  border: 5px solid transparent;
  border-left: 5px solid var(--main-color);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.floot_left ul li .fl_tc:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  height: 100%;
  width: 10px;
}
