@charset "utf-8";
/* CSS Document */

 /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            z-index: 1000;
            transition: all 0.4s ease;
            background-color: rgba(0, 0, 0, 0.3);
			border-bottom:rgba(255, 255, 255, 0.1) 1px solid;
        }
        
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 12px 5%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
			border-bottom:rgba(255, 255, 255, 0.2) 0px solid;
        }
        
        /* 左侧LOGO */
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
            color: #4dabf7;
        }
		 .logo img {
            width:auto;
			height:58px;
        }
        
        /* 中间导航菜单 */
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
            margin: 0 22px;
        }
        
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            color: #4dabf7;
        }
        
        /* 下拉箭头样式 */
        .dropdown-arrow {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        /* 二级、三级菜单 */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(0, 0, 0, 0.95);
            min-width: 220px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            position: relative;
            padding: 10px 20px;
			list-style-type: none;
        }
        
        .dropdown-link {
            color: #fff;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .dropdown-link:hover {
            color: #4dabf7;
            background-color: rgba(255, 255, 255, 0.05);
            padding-left: 25px;
        }
        
        /* 三级菜单箭头 */
        .submenu-arrow {
            transform: rotate(-90deg);
        }
        
        /* 三级菜单 */
        .submenu {
            position: absolute;
            top: 0;
            left: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            border-radius: 5px;
			line-height:28px;
			list-style-type: none;
			padding: 10px 20px;
        }
		
		  .dropdown-link {
            color: #fff;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        /* 右侧区域 */
        .nav-right {
            display: flex;
			justify-content: center; /* 水平居中 */
            align-items: center;
        }
        
        /* 语言选择 */
        .language-selector {
            position: relative;
            margin-right: 20px;
        }
        
        .language-btn {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .language-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .language-btn i {
            margin-right: 8px;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: rgba(0, 0, 0, 0.95);
            min-width: 150px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border-radius: 5px;
            list-style: none;
        }
        
        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .language-option {
            padding: 10px 20px;
            transition: background 0.3s ease;
        }
        
        .language-option:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .language-option a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .language-option a i {
            margin-right: 10px;
        }
        
        /* 地图图标 */
        .map-icon {
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        
        .map-icon:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* 移动端汉堡菜单按钮 */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* 移动端菜单 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.98);
            padding: 100px 30px 30px;
            transition: right 0.5s ease;
            overflow-y: auto;
            z-index: 999;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-nav-menu {
            list-style: none;
        }
        
        .mobile-nav-item {
            margin-bottom: 15px;
        }
        
        .mobile-nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 12px 0;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-dropdown-menu {
            padding-left: 20px;
            display: none;
        }
        
        .mobile-dropdown-menu.active {
            display: block;
        }
        
        .mobile-dropdown-link {
            color: #ddd;
            text-decoration: none;
            font-size: 1rem;
            padding: 10px 0;
            display: block;
        }
        
        .mobile-submenu {
            padding-left: 20px;
        }
        
        .mobile-dropdown-toggle {
            display: flex;

            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-arrow {
            transition: transform 0.3s ease;
        }
        
        .mobile-arrow.active {
            transform: rotate(90deg);
        }
        
        .mobile-language-selector {
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }
        
        .mobile-language-selector h3 {
            margin-bottom: 15px;
            color: #4dabf7;
        }
        
        .mobile-language-options {
            list-style: none;
        }
        
        .mobile-language-option {
            margin-bottom: 10px;
        }
        
        .mobile-language-option a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 8px 0;
        }
        
        .mobile-language-option a i {
            margin-right: 10px;
        }
        
        /* 遮罩层 */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 998;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
		
		.footerdown{/*border-top:1px solid #ededed;*/
		padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;color:#fff; background:#000; text-align:center;}
		
		.footerlxfs{
			    background-image: url(../images/lxfsbg.jpg);
    padding: 67px 0px 93px 0px;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;

		}
		
		.footerlxfs .lxfs-text{
			  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	background:#000
		}
        
        /* 响应式设计 */
        @media screen and (max-width: 1024px) {
			
			 .slide-content {
        
            left: 0;}
			
			 .logo img {
            width:auto;
			height:34px;
        }
		
            .nav-menu {
                display: none;
            }
            
            .language-selector {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
			.footerdown{ margin-bottom:60px;}
        }
        
        @media screen and (min-width: 1025px) {
			
			.slide-content {
        padding: 40px 50px;
            left: 25%;}
            .mobile-menu {
                display: none;
            }
            
            .overlay {
                display: none !important;
            }
        }
        
        /* 页脚 */
        .footer {
            background-color: #111;
            color: #aaa;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

.fotbox {
  background-color: #14181a;
}
.fotbox .fotbox-sec1{ }

@media (min-width: 992px) {
  .fotbox .container {
    width: 96%;
  }
}
@media (min-width: 1200px) {
  .fotbox .container {
    width: 86.18%;
  }
}
.fotbox-sec1 .cont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 0 80px;
  /* border-bottom: 1px solid #999; */
}
@media (max-width: 1440px) {
  .fotbox-sec1 .cont {
    padding: 70px 0 40px;
  }
}
@media (max-width: 767px) {
  .hdbox{position:fixed!important}
  .hdbox .hdbox-sec1{background:#fff;}
  .hdbox3 {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
  .hdbox .hdbox-sec1 .logo .bai{display:none!important}
  .hdbox .hdbox-sec1 .logo .hong{display:block!important}
  .fotbox-sec1 .cont {
    padding: 60px 0 40px;
    flex-wrap: wrap;
  }
}
.fotbox-sec1 .cont .lt .logo {
  display: block;
  /* width: 160px; */
  overflow: hidden;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .fotbox-sec1 .cont .lt .logo {

    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .fotbox-sec1 .cont .lt .logo {
    /* width: 120px; */
  }
}
.fotbox-sec1 .cont .lt .logo img {
  /* width: 100%; */
  /* float: left; */
  height: 45px;
}
.fotbox-sec1 .cont .lt .font .tit {
  color: #fff;
  font-size: 22px;
  line-height: 35px;
  margin-bottom: 0.2rem;
}
.fotbox-sec1 .cont .lt .font .tit span{color:#fff;font-size: 20px;letter-spacing:5px;font-weight: bold;}

@media (max-width: 1199px) {
  .fotbox-sec1 .cont .lt .font .tit {
    font-size: 19px;
  }
  .fotbox-sec1 .cont .lt .font .tit span{font-size:16px;}
}

.fotbox-sec1 .cont .gt {
  width: 74%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .fotbox-sec1 .cont .gt {
    width: 75%;
  }
}
.fotbox-sec1 .cont .gt .f_item {
  margin-right: 50px;
}
.fotbox-sec1 .cont .gt .f_item p{
  color: #cecdcd;
  text-align:center;
}
.fotbox-sec1 .cont .gt .f_item p img {
  width:150px; margin-bottom:15px;
}
@media (max-width: 1919px) {
  .fotbox-sec1 .cont .gt .f_item {
    margin-right: 0.4rem;
  }
}
@media (max-width: 1199px) {
  .fotbox-sec1 .cont .gt .f_item {
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .fotbox-sec1 .cont .gt .f_item {
    margin-right: 0;
  }
}
.fotbox-sec1 .cont .gt .f_item:last-child {
  margin-right: 0;
}
.fotbox-sec1 .cont .gt .f_item .tit {
  display: flex;
  color: #fff;
  font-size: 18px;
  /* opacity: 0.9; */
  font-weight: 600;
}
@media (max-width: 1440px) {
  .fotbox-sec1 .cont .gt .f_item .tit {
    font-size: 16px;
  }
}
.fotbox-sec1 .cont .gt .f_item .tit i {
  display: none;
  width: 6px;
  overflow: hidden;
  /* -webkit-transition: all 0.3s linear; */
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  /* transition: all 0.3s linear; */
}
.fotbox-sec1 .cont .gt .f_item .tit i img {
  width: 100%;
  float: left;
  margin-top: 6px;
}
.fotbox-sec1 .cont .gt .f_item .f_jut {
  padding-top: 24px;
}
@media (max-width: 1440px) {
  .fotbox-sec1 .cont .gt .f_item .f_jut {
    padding-top: 20px;
  }
}
.fotbox-sec1 .cont .gt .f_item .f_jut a {
  display: block;
  width: 100%;
  color: #cecdcd;
  font-size: 16px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 1440px) {
  .fotbox-sec1 .cont .gt .f_item .f_jut a {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.fotbox-sec1 .cont .gt .f_item .f_jut a:last-child {
  margin-bottom: 0;
}
.fotbox-sec1 .cont .gt .f_item .f_jut a:hover {
  color: #fff;
}
.fotbox-sec1 .cont .gt .f_item.active .tit i img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  /* width: 15px; */
  /* right: 0; */
  /* margin-top: -5px; */
  /* height: 30px; */
  margin-right: 5px;
  /* height: 15px; */
  /* width: 8.07px; */
}
.fotbox-sec1 .cont .gt .f_item.active .tit i img{}
@media (max-width: 767px) {
  .fotbox-sec1 .cont .gt {
    width: 100%;
    margin-top: 26px;
    flex-wrap: wrap;
    /* display: none; */
  }
  .fotbox-sec1 .cont .gt .f_item {
    width: 100%;
    margin-bottom: 24px;
  }
  .fotbox-sec1 .cont .gt .f_item:last-child {
    margin-bottom: 0;
  }
  .fotbox-sec1 .cont .gt .f_item .tit {
    width: 100%;
    display: block;
    justify-content: space-between;
    align-content: center;
    position: relative;
  }
  .fotbox-sec1 .cont .gt .f_item .tit i {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 21px;
    position: absolute;
    top: 0;
  }
  .fotbox-sec1 .cont .gt .f_item .tit i img {
    float: right;
    height: 15px;
    width: auto;
    /* margin-top: 0; */
  }
  .fotbox-sec1 .cont .gt .f_item .f_jut {
    display: none;
  }
}
.fotbox-sec2 {
  padding: 60px 0 50px;
  border-bottom: 1px solid #202022;
}
@media (max-width: 1440px) {
  .fotbox-sec2 {
    padding: 40px 0 30px;
  }
}
.fotbox-sec2 .cont {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .fotbox-sec2 .cont {
    flex-wrap: wrap;
  }
}
.fotbox-sec2 .cont .lt {
  display: flex;
  flex-wrap: wrap;
}
.fotbox-sec2 .cont .lt .li {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fotbox-sec2 .cont .lt .li:last-child {
  margin-right: 0;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .lt .li {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .fotbox-sec2 .cont .lt .li {
    margin-bottom: 18px;
  }
}
.fotbox-sec2 .cont .lt .li img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.5;
  height: 18px;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .lt .li img {
    height: 12px;
  }
}
.fotbox-sec2 .cont .lt .li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.fotbox-sec2 .cont .lt .li:hover img {
  opacity: 0.8;
}
.fotbox-sec2 .cont .lt .er {
  position: relative;
}
.fotbox-sec2 .cont .lt .er .hover {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 20px;
  width: 120px;
  padding: 5px;
  background-color: #fff;
  display: none;
}
@media (min-width: 1200px) {
  .fotbox-sec2 .cont .lt .er .hover {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .fotbox-sec2 .cont .lt .er .hover {
    width: 100px;
  }
}
.fotbox-sec2 .cont .lt .er .hover img {
  width: 100%;
  height: auto;
}
.fotbox-sec2 .cont .lt .er:hover .hover {
  display: block;
}
.fotbox-sec2 .cont .gt {
  width: 70%;
  max-width: 890px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .fotbox-sec2 .cont .gt {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .fotbox-sec2 .cont .gt {
    width: 100%;
    flex-wrap: wrap;
  }
}
.fotbox-sec2 .cont .gt .f_jut .tel {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .gt .f_jut .tel {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .fotbox-sec2 .cont .gt .f_jut .tel {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .fotbox-sec2 .cont .gt .f_jut .tel {
    margin-bottom: 10px;
  }
}
.fotbox-sec2 .cont .gt .f_jut .text {
  color: #999999;
  font-size: 16px;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .gt .f_jut .text {
    font-size: 14px;
  }
}
.fotbox-sec2 .cont .gt .f_jut .text p {
  margin-bottom: 8px;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .gt .f_jut .text p {
    margin-bottom: 4px;
  }
}
.fotbox-sec2 .cont .gt .f_jut .text p:last-child {
  margin-bottom: 0;
}
.fotbox-sec2 .cont .gt .font {
  color: #999999;
  font-size: 16px;
  line-height: 26px;
  max-width: 60%;
  max-height: 156px;
  overflow: auto;
  padding-right: 10px;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .gt .font {
    line-height: 24px;
    font-size: 14px;
    max-height: 144px;
  }
}
@media (max-width: 767px) {
  .fotbox-sec2 .cont .gt .font {
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
  }
}
.fotbox-sec2 .cont .gt .font::-webkit-scrollbar {
  
  width: 2px;
  
  height: 1px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fotbox-sec2 .cont .gt .font::-webkit-scrollbar-thumb {
  
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #999;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fotbox-sec2 .cont .gt .font::-webkit-scrollbar-track {
  
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.fotbox-sec2 .cont .gt .font p {
  margin-bottom: 12px;
}
@media (max-width: 1440px) {
  .fotbox-sec2 .cont .gt .font p {
    margin-bottom: 6px;
  }
}
.fotbox-sec2 .cont .gt .font p:last-child {
  margin-bottom: 0;
}
.fotbox-sec3 {
  padding: 28px 0;
  
}
.fotbox-sec3 .container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #999;
  padding-top:20px;
}
.fotbox-sec3 .container .gt {
  flex-wrap: wrap;
  display: none;
}
@media (max-width: 767px) {
}
.fotbox-sec3 .container .gt .name {
  opacity: 0.2;
  color: #fff;
}
.fotbox-sec3 .container .gt a {
  display: block;
  margin-right: 10px;
  opacity: 0.2;
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.fotbox-sec3 .container .gt a:last-child {
  margin-right: 0;
}
.fotbox-sec3 .container .gt a:hover {
  opacity: 1;
}
.fotbox-sec3 .font {
  flex-wrap: wrap;
  display: contents;
}
@media (max-width: 767px) {
  .fotbox-sec3 .font {
    text-align: center;
    display: block;
    width: 100%;
  }
}
.fotbox-sec3 .font p,
.fotbox-sec3 .font a {
  color: #ffffff;
  /* opacity: 0.5; */
  font-size: 14px;
}
.fotbox-sec3 .font a {
  display: inline-block;
  margin-left: 26px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  .fotbox-sec3 .font a {
    margin-left: 0;
  }
}
.fotbox-sec3 .font a:hover {
  opacity: 1;
}	

#botright{text-align:right;}
#botright .tit{display:block;text-align: right;}
#botright p {text-align:right;}


.float-box {
	position:fixed;
	right: 10px;
	bottom: 90px;
	z-index:999;
	font-size:16px;
}
.float-box:hover .contact-box {
	/* display:block; */
	right: 42px;
}
.float-box .float-main {
	position:relative
}
.float-box .contact-us {
	display:inline-block;
	background: #a51404;
	color:#fff;
	width: 72px;
	height: 72px;
	box-sizing:border-box;
	border-radius:50%;
	position:relative;
	line-height:22px;
	justify-content:center;
	align-items:center;
	text-align:center;
	z-index:88888;
	box-shadow: 0 0 5px 2px rgba(255,255,255,.4);
}
.float-box i {
	font-size:20px;
	margin-top:12px;
	/* color: #f60; */
}
.float-box .contact-us:hover {
	background-color: #031d2f;
}
.float-box .contact-us .contact-text {
	font-size:12px;
	line-height: 15px;
}
.float-box .contact-box {
	width:270px;
	position:absolute;
	bottom:35px;
	right: -500px;
	background-color:#F4F7FC;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	border-radius: 10px;
overflow:hidden;
	transition: .5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
}
.float-box .contact-box .cbox .item-box {
	text-align:left;
	padding:12px 22px 0;
	background: #fff;
}
.float-box .contact-box .cbox .item-box.item-box2 {
	padding-bottom:15px;
	background: #f6f7ff;
	border-top: 1px dotted #ccc;
}
.float-box .contact-box .cbox .item-box .c-head {
	height:20px;
	color: #000;
	margin-bottom:16px;
	border-bottom:1px solid #C2C8EA;
	padding:20px;
	font-size:16px;
	line-height: 0;
	font-weight: bold;
}
.float-box .contact-box .cbox .item-box .c-head span {
	margin-left:6px
}
.float-box .contact-box .cbox .item-box .contact-detail {
	display:inline-flex;
	width:100%;
	padding-bottom:15px;
	font-size:14px
}
.float-box .contact-box .cbox .item-box .contact-detail.detail1 {
	border-bottom:1px dashed #D6DAF3
}
.float-box .contact-box .cbox .item-box .contact-detail.detail2 {
	padding-bottom:0
}
.float-box .contact-box .cbox .item-box .contact-detail i {
	margin-top:16px;
	margin-right:15px;
	color: #a51404;
}
.float-box .contact-box .cbox .item-box .contact-detail .con1 {
	/* display:inline-flex; */
	width:100%;
	color: #333;
	line-height: 15px;
}
.float-box .contact-box .cbox .item-box .contact-detail .con1 a{display:block;}
.float-box .contact-box .cbox .item-box .contact-detail .con2 {
	display:inline-flex;
	padding:15px 0;
	width:100%
}
.float-box .contact-box .cbox .item-box .contact-detail .con2 a:hover {
	text-decoration:underline
}
.float-box .contact-box .cbox .item-box p {
	color:#333;
	font-size:15px;
	margin:0 auto;
	line-height:24px
}
.float-box .contact-box .cbox .item-box .con-btn {
	width:86%;
	height:40px;
	color:#fff;
	text-align:center;
	background-color:#6876CA;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:10px;
	margin:20px auto 0;
	border-radius:3px
}
.float-box .contact-box .cbox .item-box .con-btn:hover {
	background-color:#55639A
}
.float-box .contact-box .cbox .c-line {
	width:1px;
	height:158px;
	background-color:#ccc
}	
.weizhi{
	    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	}
.weizhi-nr{
	margin: 0 auto;
	width:1200PX;
    padding: 20px 10px;
   /* border-bottom: #CCC 1px solid;*/
}
.weizhi-nr-link {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 1);
	padding:0 10px;
}
.weizhi-nr-link:hover {

    color: #4dabf7;
}

/*页码*/
/*CSS green-black style pagination*/
#green-black {
	text-align:center; padding:30px 0px;text-indent:0;
}
#green-black A {
	display:inline-block;padding:0 20px; background:#ffffff;height:36px; line-height:36px; font-size:14px; border:1px solid #e5e5e5; text-decoration:none; color:#333; outline:none;margin-left:8px;cursor:pointer;border-radius:4px;transition:all .2s;
}
#green-black A:hover {
	display:inline-block;padding:0 20px; background:#fe5d13; color:#FFF;height:36px; line-height:36px; font-size:14px; text-decoration:none;  outline:none;border:#e5e5e5 1px solid;margin-left:8px;cursor:pointer;border-radius:4px;transition:all .2s;
}

#green-black SPAN.current {
	display:inline-block;padding:0 20px; background:#fe5d13; color:#FFF;height:36px; line-height:36px; font-size:14px;  text-decoration:none; color:#FFF; outline:none;border:#fe5d13 1px solid;margin-left:8px;cursor:pointer;border-radius:4px;transition:all .2s;
}
#green-black a.disabled {
	display:inline-block;padding:0 20px; background:#FFF;  height:36px; line-height:36px; font-size:14px; text-decoration:none; color:#333; outline:none; border:#BDBDBD 1px solid; margin-left:8px;cursor:pointer;border-radius:4px;transition:all .2s;
}
.lanyun-prevnext a{ color:#979797;}
.lanyun-prevnext a:hover{color:#da1b1d}

.unit-social-list__icon{ line-height:32px;}