.width1500 {
  max-width: 100%;
  min-width: 1500px;
  margin: 0px auto;
  box-sizing: border-box;
}

.width1440 {
  width: 1440px;
  margin: 0px auto;
}

.width1200 {
  width: 1200px;
  margin: 0px auto;
}
.paddingTop95 {
  padding-top: 95px;
}
.paddingBottom95 {
  padding-bottom: 95px;
}


.marginTop15 {
  margin-top: 15px;
}
.marginTop20 {
  margin-top: 20px;
}

.marginTop30 {
  margin-top: 30px;
}
.marginTop45 {
  margin-top: 45px;
}

/* ===== flex布局  start =====*/
.flex_spaceAround {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.flex_spaceBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex_spaceBetweenStart {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex_spaceBetweenEnd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flex_spaceBetweenBaseline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex_start2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.flex_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex_baseline {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.flex_column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.flex_columnStart {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.flex_columnSpaceBetween {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
/* ===== flex布局  end =====*/
/* ====== 鼠标hover效果 start ======*/

.hover_style {
  transition: all 0.6s;
  cursor: pointer;
}

/* 放大效果 */

.hover_magnify:hover {
  transform: scale(1.05);
}

/* 向上移动效果 */

.hover_top:hover {
  transform: translateY(-20px);
}

/* ====== 鼠标hover效果 end ======*/

/* ====== 优化滚动条样式 start ====== */


.scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 90px;
}

.scrollbar::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
  width: 4px;
  height: 10px;
  background-color: #e5e5e5;
  border-radius: 4px;
}

/* ====== 优化滚动条样式 end ====== */

/* ===== 富文本 start ======*/

.richText {
  overflow: hidden;
  padding-bottom: 60px;
}

.richText img {
  max-width: 100%;
  height: auto;
}

/* ===== 富文本 end ======*/

/* ====== 公共的类 ====== */

.fl {
  float: left;
}

.fr {
  float: right;
}

.fontWeightBold {
  font-weight: bold;
}

.public_boxShadow {
  box-shadow: 0px 10px 20px 0px rgba(201, 221, 241, 0.3);
}

/* ====== 公共的类 end ====== */

/* ====== 上一条 start =====*/
.newsDetail_footer,
.newsDetail_footer ul {
  width: 100%;
  overflow: hidden;
}

.newsDetail_footer ul li {
  display: inline-block;
  text-align: left;
  padding: 20px 30px;
  width: 49%;
  box-sizing: border-box;
  background-color: #f8f8f8;
  height: 60px;
}

.newsDetail_footerNone {
  color: #999999;
}

.newsDetail_footer ul li span,
.newsDetail_footer ul li a {
  display: inline-block;
  height: 20px;
  line-height: 20px;
}

.newsDetail_footerNext,
.newsDetail_footer ul li a {
  color: #333333;
}

.newsDetail_footer ul li a {
  width: 86%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.newsDetail_footer ul li:hover {
  background: #cea368;
  color: #fff;
}
.newsDetail_footer ul li:hover .newsDetail_footerNext,
.newsDetail_footer ul li:hover .newsDetail_footerNone,
.newsDetail_footer ul li:hover a {
  color: #fff;
}
/* ====== 上一条 end =====*/


/* ====== 分页 start ====== */
.pages {
  margin: 40px auto 0px;
  width: 100%;
  text-align: center;
}
.pages a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-right: 5px;
  color: #666;
  background-color: transparent;
  background-color: #f5f5f5;
  display: inline-block;
}
.pages a.on:hover,
.pages a.on {
  color: #fff;
  background-color: #cea368;
}
.hoverEffect a:hover {
  color: #cea368;
}

.pre_red,
.next_red {
  display: none;
}

.prev_pre:hover .pre_gray {
  display: none;
}

.prev_pre:hover .pre_red {
  display: inline;
}

.next_nex:hover .next_gray {
  display: none;
}

.next_nex:hover .next_red {
  display: inline;
}

.pages_mobile > a {
  display: block;
  width: 48%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #cea368;
  float: left;
  color: #fff;
  border-radius: 4px;
}

.pages_mobile > a + a {
  margin-left: 4%;
}

/* ====== 分页 end ====== */

/* ====== 公共的头部 start ====== */

.public_header {
  position: relative;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
}

.public_top {
  background-color: #fff;
  font-size: 0px;
}

.public_top_nav {
  width: 100%;
  margin: 0px auto;
  position: relative;
}

.public_top_nav_left {
  width: 209px;
  height: 64px;
}

.public_top_nav_left a {
  display: inline-block;
}

.public_top_nav_left img {
  max-width: 100%;
  height: auto;
}

.public_top_nav_right {
  box-sizing: border-box;
}

.public_topHeader {
  padding: 18px 0px;
  height: 100px;
}

.public_top_nav_right ul {
  height: 48px;
  margin-top: 8px;
}

.public_top_nav_right ul li {
  color: #ffffff;
  cursor: pointer;
  float: left;
  position: relative;
}
.pubFooterTitle > span::after,
.index_dynamicNews_tab.index_dynamicNews_active::after,
.index_dynamicNews_tab:hover::after,
.public_top_nav_right ul li.public_level_menu_li_active::after,
.public_top_nav_right ul li:hover:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: #cea368;
}

.public_top_nav_right ul li.public_topTel:hover:after {
background-color: transparent
}
.public_topTel img {
  width:20px;
  height:20px;
  margin-right: 5px;
}
.public_top_nav_right ul li + li {
  margin-left: 45px;
}

.public_top_nav_right ul li a {
  display: inline-block;
  color: #333333;
  height: 48px;
  line-height: 48px;
  min-width: 50px;
  text-align: center;
}

.public_top_nav_right ul li a:hover {
  position: relative;
}

.public_top_nav_right
  ul.public_top_nav_rightNavigate
  li.public_contact_phone:hover::before {
  background-color: transparent;
}

.public_contact_phone {
  width: 220px;
  height: 48px;
  background-image: linear-gradient(90deg, #ff5021 0%, #ed283c 100%),
    linear-gradient(#282828, #282828);
  background-blend-mode: normal, normal;
  border-radius: 27px;
  padding: 0px 26px;
  box-sizing: border-box;
  font-family: 'BAHNSCHRIFT';
}

.public_contact_phone img {
  margin-right: 10px;
}

.public_top_nav_rightControl {
  margin-left: 213px;
}

.public_top_nav_rightControl a img {
  margin-right: 10px;
}

.nav_logo {
  width: 23px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  margin-right: 15px;
}

.nav_logo img {
  display: inline-block;
  max-width: 23px;
  max-height: 19px;
}

.public_header_searchParents {
  position: absolute;
  top: 50px;
  right: 0px;
  padding-top: 20px;
  display: none;
}

.public_header_search {
  background-color: #ffffff;
  border-radius: 8px;
  height: 50px;
  line-height: 50px;
  width: 430px;
  box-shadow: 0px 15px 30px 0px rgba(151, 151, 151, 0.3);
}

.public_top_nav_rightControl > li:hover .public_header_searchParents {
  display: block;
}

.public_header_search button {
  border: none;
  background-color: ef2222;
  border-radius: 0px 8px 8px 0px;
  width: 74px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
}

.search_header {
  margin-top: 60px;
  width: 900px;
  height: 60px;
  margin-left: 150px;
  border-radius: 8px;
  border: solid 1px #e5e5e5;
  margin-bottom: 20px;
}

.public_search_select {
  text-align: left;
  width: 150px;
  box-sizing: border-box;
  line-height: 30px;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  color: #333;
  border-right: 1px solid #e5e5e5;
  height: 50px;
}

.search_selects {
  position: absolute;
  right: 20px;
  top: 26px;
}

.public_search_select ul {
  position: absolute;
  top: 44px;
  width: 100%;
  box-sizing: border-box;
  left: 0px;
  height: 0px;
  overflow-y: auto;
  z-index: 1;
  background-color: #fff;
  text-align: left;
  padding: 10px 10px 0px;
  opacity: 0;
}

.public_search_select ul li {
  line-height: 20px;
  padding: 12px 10px;
  border-top: solid 1px #e5e5e5;
}

.public_search_select ul li:hover + li {
  border-top: solid 1px #ef2222;
}

.public_search_select ul li:hover a {
  color: ef2222;
}

.public_search_select ul::-webkit-scrollbar {
  width: 4px;
  height: 90px;
}

.public_search_select ul::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.public_search_select ul::-webkit-scrollbar-thumb {
  width: 4px;
  height: 10px;
  background-color: transparent;
}

.public_search_select ul li a {
  color: #333;
}

.public_search_select:hover .public_search {
  display: block;
  height: 240px;
  border: solid 1px #e5e5e5;
  border-top: none;
  opacity: 1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.public_search_select .public_search li {
  width: 100%;
}

.public_search_select .public_search li + li {
  margin-left: 0px;
}

.public_search_input {
  width: calc(100% - 150px);
}

.public_search_input input {
  width: calc(100% - 140px);
  height: 50px;
  margin-left: 10px;
  color: #333;
}

.public_search_input button {
  width: 100px;
  height: 50px;
  background-color: #ef2222;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border: none;
}

.public_search_selects {
  position: absolute;
  right: 20px;
  top: 21px;
}

/* ====== 公共的头部 end ====== */
/* ====== 查看更多 start ======*/

.public_more {
  min-width: 140px;
  max-width: min-content;
  overflow: hidden;
  height: 45px;
  line-height: 45px;
  border-radius: 22px;
}
.public_moreDefault2:hover,
.public_more_cea368 {
  border: 1px solid #cea368;
  background-color: #cea368;
  color: #fff;
}

.right_arrowHover,
.right_arrowDefault {
  width: 9px;
  height: 13px;
  margin-left: 11px;
}
.public_moreDefault2,
.public_moreDefault:hover {
  background-color: #ffff;
  color: #cea368;
}
.public_moreDefault2:hover .right_arrowDefault,
.public_moreDefault2 .right_arrowHover,
.public_moreDefault:hover .right_arrowHover,
.public_moreDefault .right_arrowDefault {
  display: block;
}

.public_moreDefault2:hover .right_arrowHover,
.public_moreDefault2 .right_arrowDefault,
.public_moreDefault:hover .right_arrowDefault,
.public_moreDefault .right_arrowHover {
  display: none;
}
/* ====== 查看更多 end ======*/

/* ====== 内部的banner start ====== */

.public_innerBanner {
  object-fit: cover;
  height: 240px;
  position: relative;
}

.public_innerBanner img {
  width: 100%;
  height: 240px;
}

/* ====== 内部的banner end ====== */

/* ====== 内页面包屑 start ====== */

.crumbs_tabs {
  border-bottom: 1px solid #e6e6e6;
}

.crumbs {
  margin: 0px auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 50px;
  height: 50px;
  vertical-align: middle;
  text-align: left;
}

.crumbs_link {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.crumbs a,
.crumbs span {
  vertical-align: middle;
  margin-right: 3px;
  font-size: 16px;
  line-height: 20px;
  color: #666;
}

.crumbs > span {
  font-size: 22px;
}

.crumbs a:hover,
.crumbs a:hover span {
  color: #cea368;
}

.crumbs a img {
  width: 17px;
  height: 18px;
  margin-right: 5px;
  margin-top: -4px;
}

/* ====== 内页面包屑 end ====== */

/* ====== 公共的底部 start ====== */

.footerSlide {
  background: #3c4249;
  color: #fff;
}

.publicFooter a {
  display: block;
  color: inherit;
}

.publicFooter {
  padding: 60px 0px 60px 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.publicFooter_contact + .publicFooter_contact {
  margin-top: 20px;
}
.publicFooter_contact a + a {
  margin-top: 10px;
}

/* 联系我们 */

.pubFooterTitle {
  margin-bottom: 20px;
  position: relative;
}
.pubFooterTitle > span {
  position: relative;
  padding-bottom: 20px;
  display: block;
}

.pubFooterTitle > span::after {
  height: 1px;
  width: 40px;
}


.pubFooter_tel {
  width: 21px;
  height: 21px;
}

.pubFooter_email {
  width: 23px;
  height: 17px;
}

.pubFooter_address {
  width: 21px;
  height: 21px;
  margin-right: 10px;
}

.contactInfo_phoneDetail,
.lis1 a .pulic_rightTel,
.public_popupPhone,
.pubFooter_telNum {
  font-family: 'BAHNSCHRIFT';
}

.pubFooter_qrcode {
  width: 122px;
  height: 122px;
}

/* 快速导航 */

.publicFooter3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 180px;
}

.publicFooter3 li {
  margin-bottom: 14px;
}

.publicFooter3 li:hover a,
.publicFooter4 li:hover a {
  opacity: 1;
}

/* 友情链接 */

.publicFooter4 li {
  width: 160px;
  margin-bottom: 14px;
}

.publicFooter4 li a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 关注我们 */

.publicFooter5 img {
  display: block;
  width: 110px;
  height: auto;
}

/* 底部版权信息 */

.copyright > .width1440 {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright > div a,
.copyright > div {
  color: rgba(255, 255, 255, 0.4);
}

.copyright > div:hover a,
.copyright > div:hover {
  color: #fff;
}

/* ====== 公共的底部 end ====== */

/* ====== 公共的弹窗 start ======*/
.public_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 106;
  /* display: none; */
}

.public_popupBg {
  background-color: #fff;
  width: 1100px;
	height: 700px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -550px;
  margin-top: -350px;
  padding: 40px;
  overflow-y: auto;
}

.public_popupClose {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 230px;
    margin-top: -290px;
   width: 40px;
   height: 40px;
   line-height: 40px;
    border-radius: 50%;
    border: 1PX solid #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.public_popupOkBtn {
  width: 269px;
	height: 58px;
	background-color: #cea368;
	border-radius: 29px;
	border: solid 1px #d9d9d9;
  color: #ffffff;
  text-align: center;
  line-height: 58px;
  margin: 20px auto 0px;
  cursor: pointer;
}
.public_popupFl p {
  color: #333;
}
.public_popupH2 {
  font-weight: 600;
  margin-top: 5px;
}
.public_popupForm {
  margin-top: 25px;
  width: 380px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
}
.public_popupForm input {
  color: #333;
  height: 54px;
  line-height: 54px;
  width: calc(100% - 130px);
  padding-left: 10px;
  box-sizing: border-box;
}
.public_popupForm button {
  width: 120px;
  height: 54px;
  background-color: #ef2222;
  border-radius: 10px;
  border: none;
  color: #fff;
}
.public_popupPhone {
  margin-top: 30px;
  font-weight: 600;
  display: block;
}
.public_popupFr {
  width: 128px;
  color: #fff;
  text-align: center;
}
.public_popupFr img {
  width: 128px;
  height: 128px;
  margin-top: 25px;
}
.public_popupFr a {
  width: 128px;
  height: 58px;
  border-radius: 10px;
  border: solid 2px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.public_popupTitle {
  text-align: center;
}
.public_popupContent {
  line-height: 30px;
	color: #333333;
  margin-top: 25px;
  text-indent: 32px;
}


.public_popupClose {
    color: #fff;
}

.public_popupLoginImg {
    width: 162px;
    height: 58px;
}
.public_popupLoginTitle {
  color: #333333;
  margin-top: 18px;
}

.public_popupLoginBg {
  background-color: #fff;
 	width: 540px;
	height: 470px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  overflow-y: auto;
}

.public_popupLoginForm {
  width: 400px;
  overflow: hidden;
  margin-top: 40px;
}
.public_popupLoginForm > div {
  height: 60px;
  width: 100%;
  border-radius: 8px;
	border: solid 1px #d9d9d9;
  padding: 17px 20px;
}
.public_popupLoginForm > div:focus {
  border: solid 1px #cea368;
}
.public_popupLoginForm > div + div {
  margin-top: 24px;
}
.public_popupLoginForm_icon {
  width: 24px;
	height: 26px;
}
.public_popupLoginForm_input {
  width: calc(100% - 24px);
  height: 100%;
  padding-left: 30px;
  display: block;
}
.public_popupLoginBtn {
  width: 100%;
	height: 64px;
	background-color: #cea368;
	border-radius: 8px;
	border: solid 1px #cea368;
  color: #fff;
  margin-top:30px;
}
/* ====== 公共的弹窗 start ======*/


/* ====== tab切换 start ====== */

.public_header.public_header_inner {
  position: relative;
}

.product_tabs {
  height: 66px;
  background-color: transparent;
  /* box-shadow: 0px 10px 20px 0px rgba(158, 168, 181, 0.2); */
}

.product_tabs_list {
  overflow: hidden;
}

.product_tabs_list li {
  float: left;
  width: 33.33%;
  height: 66px;
  line-height: 66px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 2px;
}

.product_tabs_list li a {
  width: 100%;
  display: block;
  color: #333333;
}

.product_tabs_list li.product_tabsActive a,
.product_tabs_list li:hover a {
  background-color: ef2222;
  color: #ffffff;
  font-weight: bold;
}

/* ====== tab切换 end ====== */



/*====== 内页 banner  ======*/

.public_banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
}

.public_banner image {
  width: 100%;
  height: auto;
  display: inline-block;
}

.public_bannerContent {
  position: absolute;
  height: 100%;
  top: 0px;
  left: 50%;
  margin-left: -750px;
  color: #fff;
}

.case_bannerSlogn {
  margin-top: 200px;
}

.case_bannerSlogn_desc {
  margin-top: 30px;
  line-height: 32px;
  max-width: 850px;
}

.public_bannerRightNow {
  width: 180px;
  height: 54px;
  background-image: linear-gradient(90deg, #ed283c 0%, #ed4828 100%),
    linear-gradient(#ff343a, #ff343a);
  background-blend-mode: normal, normal;
  border-radius: 27px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.public_bannerRightNow:hover {
  color: #ed283c;
  background-image: none;
  background-color: #fff;
}

/*====== 内页 banner end  ======*/

/* ====== 内页每个模块的标题 start ======*/

.public_module_title {
  text-align: center;
  width: 100%;
}

.public_module_title p  {
  color: #333;
  font-weight: bold;
  margin-bottom: 35px;
  position:relative;
  padding-bottom: 20px;
}
.public_module_title p.white {
  color: #fff;
}
.public_module_title p::after {
  content: '';
  width: 80px;
	height: 5px;
	background-color: #cea368;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}

/* ====== 内页每个模块的标题 end ======*/

/* ====== 关于双安的数据  start ======*/
.index_aboutData {
  width: 100%;
  height: 240px;
  background: url('../../images/index_aboutData.png') 50% 50% no-repeat;
  background-size: contain;
}
.index_aboutData_content {
  color: #fff;
}
.index_aboutData_content {
  width: 100%;
  overflow: hidden;
  height: 240px;
}
.index_aboutData_number {
  font-family: 'OPPOSANS-M';
}
.index_aboutData_number i {
  font-style: normal;
}
/* ====== 关于双安的数据  end ======*/

/* =======首页、关于我们页面的公司相关数据 start====== */
.index_serviceNum {
  width: 100%;
  margin-top: 100px;
}

.index_coreServices,
.index_serviceNum {
  display: flex;
  justify-content: space-between;
}

.index_serviceNumChild {
  color: #333333;
}

.index_serviceNumChild > div {
  overflow: hidden;
}

.index_serviceNumChild > div > span {
  display: block;
  float: left;
}

.index_serviceNumber {
  font-family: 'BAHNSCHRIFT';
  color: #fe4f22;
  height: 90px;
  line-height: 90px;
}

/* =======首页、关于我们页面的公司相关数据 end====== */

/* ===== 首页、关于我们页面的核心服务 start ====== */
.index_coreServices {
  padding: 20px;
}

.index_service,
.index_coreServicesLabel,
.index_coreServices li {
  position: relative;
}

.index_coreServices li img,
.index_coreServices li {
  width: 324px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.index_coreServices li {
  box-shadow: 0px 10px 20px 0px rgba(201, 221, 241, 0.5);
}

.index_coreServicesContent {
  position: absolute;
  bottom: 0px;
  top: 340px;
  width: 100%;
  padding: 30px;
  transition: all 0.6s;
  box-sizing: border-box;
}

.index_coreServicesLabel {
  color: #1a1a1a;
  text-align: center;
  padding-bottom: 20px;
  transition: all 0.6s;
  font-weight: 500;
}

.index_coreServicesLabel::after {
  content: '';
  width: 70px;
  height: 4px;
  background-color: #ed2d39;
  border-radius: 1px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -35px;
}

.index_coreServicesDesc {
  opacity: 0;
  transition: all 0.3s;
  font-stretch: normal;
  line-height: 28px;
  letter-spacing: 1px;
  color: #666666;
  margin-top: 20px;
}

.index_coreServices li:hover .index_coreServicesContent {
  transition: all 0.6s;
  top: 280px;
}

.index_coreServices li:hover .index_coreServicesDesc {
  opacity: 1;
  transition: all 1s;
}

.index_coreServices li:hover .index_coreServicesLabel {
  transition: all 0.6s;
  font-weight: 600;
}

/* ===== 首页、关于我们页面的核心服务 end ====== */

/* ====== 服务、关于我们页面的服务客户 start ====== */
.customer {
  padding-bottom: 70px;
}

.service_customers {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
  margin-top: 50px;
}

.service_customers li {
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
  color: #666666;
  padding-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.service_customers li.service_customersTab_active,
.service_customers li:hover {
  font-weight: 600;
  color: #333333;
}

.service_customers li.service_customersTab_active::after,
.service_customers li:hover::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -50px;
  content: '';
  width: 100px;
  height: 3px;
  background-color: #ef2222;
}

.service_customers li + li {
  margin-left: 70px;
}

.service_customersList {
  width: 100%;
  overflow: hidden;
  padding-top: 70px;
}

.service_customersList > div {
  width: 264px;
  height: 100px;
  background-color: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(142, 142, 142, 0.2);
  border-radius: 8px;
  text-align: center;
  line-height: 100px;
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.service_customersList > div:nth-child(5n) {
  margin-right: 0px;
}

.service_customersList > div img {
  max-width: 264px;
  max-height: 100px;
  display: inline-block;
}

.serviceCustomer_list {
  width: 100%;
  height: 140px;
  margin-top: 50px;
}
.serviceCustomer_img {
  float: left;
  width: 340px;
  height: 140px;
  text-align: center;
  line-height: 140px;
  background-color: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(166, 166, 166, 0.2);
  border-radius: 12px;
}
.serviceCustomer_img + .serviceCustomer_img {
  margin-left: 26px;
}
.serviceCustomer_img img {
  max-width: 340px;
  max-height: 140px;
  display: inline-block;
}
.serviceCustomer .public_bannerRightNow {
  margin: 50px auto 120px;
}

/* ====== 服务、关于我们页面的服务客户 end ====== */

/* ===== 方案、关于我们页面的合作伙伴 start ====== */
.partner .public_innerTitle > p,
.pageShow .public_innerTitle > p {
  color: #fff;
}

.partner {
  height: 730px;
  background: url(../images/project_partnerBg.png) 50% 50% no-repeat;
  background-size: 100% 100%;
}

.partner .public_innerTitle {
  padding-top: 140px;
}

.project_partnerImg img,
.project_partnerImg {
  width: 1804px;
  height: 310px;
}

.project_partnerImg {
  margin-top: 110px;
}

/* ===== 方案、关于我们页面的合作伙伴 end ====== */

@media (max-width: 767px) {
  .width1200 {
    width: 100%;
  }
  .marginTop15 {
    margin-top: 8px;
  }
  .marginTop20 {
    margin-top:10px;
  }
  .marginTop30 {
    margin-top: 15px;
  }
  .marginTop45 {
    margin-top:20px
  }
  .paddingTop95 {
    padding-top:20px;
  }
  .paddingBottom95 {
    padding-bottom: 20px;
  }

  .width1500 {
    padding: 0px;
    max-width: 100%;
    width: 100%;
    min-width: auto;
    overflow: hidden;
  }
  .width1440,
  .service_customersList,
  .project_partnerImg img,
  .project_partnerImg {
    width: 100%;
    padding: 0px 4%;
  }
  .public_popupFr,
  .public_popupFl,
  .public_popupForm,
  .serviceCustomer_list {
    width: 100%;
  }

  .service_customersList,
  .partner .public_innerTitle {
    padding-top: 20px;
  }

  .service_customersList,
  .service_customers li {
    padding-bottom: 10px;
  }

  .public_popupFr a {
    margin-top: -20px;
  }
  .public_popupFr img,
  .public_popupPhone,
  .service_customers {
    margin-top: 0px;
  }

  .public_popupFr p {
    margin-top: 10px;
  }
  .public_popupFr,
  .public_popupPhoneParent,
  .public_popupForm,
  .project_partnerImg {
    margin-top: 20px;
  }

  .service_customers {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }

  .serviceCustomer_list {
    height: auto;
    overflow: hidden;
  }
  .partner,
  .project_partnerImg img,
  .project_partnerImg,
  .pageShow_list > div {
    height: auto;
    line-height: inherit;
  }

  /* ====== 公共的底部 start ====== */

  .publicFooter {
    flex-wrap: wrap;
    padding-bottom: 10px;
    padding-top: 20px;
  }
  .copyright {
    padding: 10px 4%;
  }
  .copyright > .width1440,
  .publicFooter > div {
    width: 100%;
    flex-direction: column;
  }
  .pubFooterTitle {
    margin-bottom: 20px;
  }
  .publicFooter4,
  .publicFooter2 {
    margin-top: 20px;
  }
  .publicFooter_contact > span {
    display: inline-block;
    width: 55px;
  }
  .publicFooter_contact > div {
    width: calc(100% - 86px);
  }
  .publicFooter > div:nth-child(2n) {
    margin-right: 0px;
  }
   .copyright > .width1440 {
    padding: 10px 0px;s;
   }
   .pubFooterTitle > span {
    padding-bottom:10px;
   }
  /* ====== 公共的底部 end ====== */

  /* ====== 移动端头部 start ======*/
  #base_header {
    width: 100%;
    align-items: center;
    height: 50px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 900;
    background-color: #fff;
  }

  /* logo */

  #base_header #logo {
    display: inline-block;
    width: 120px;
    height: auto;
    margin-left: 20px;
  }

  .base_headerFixed {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* 菜单按钮 */

  #base_header #menu {
    width: 50px;
    height: 50px;
    background-color: #cea368;
    background-repeat: no-repeat;
    background-position: center center;
  }

  #base_header #menu.menu {
    background-image: url('../images/menu.png');
    background-size: 25px 20px;
  }

  #base_header #menu.cha {
    background-image: url('../images/cha.png');
    background-size: 20px 20px;
  }

  .ovfHidden {
    overflow: hidden;
    height: 100%;
  }

  /* 下拉菜单 */

  #base_header #dropDownList {
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    z-index: 800;
    overflow: auto;
  }

  #base_header #dropDownList::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  #base_header #dropDownList li {
    padding: 12px 4%;
    background-color: #fff;
    color: #333;
    border-top: 1px solid #d2d2d2;
  }

  #base_header #dropDownList li > a {
    color: #333;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }

  #base_header #dropDownList li .base_headerDown {
    width: 10px;
    height: 13px;
  }

  #base_header #dropDownList li a.dropDownList_service {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .public_contact_phone {
    width: 150px;
    padding: 0px 10px;
    height: 30px;
    line-height: 30px;
  }

  .public_contact_phone img {
    width: 18px;
    height: auto;
    margin-right: 0px;
  }

  .public_contact_phone a {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .public_header_subtitle {
    display: none;
    position: relative;
    width: 100%;
    top: 0px;
    padding: 0px;
    left: 0px;
  }

  .public_header_subtitle > div {
    padding: 0px;
    margin-top: 10px;
  }

  .public_header_subtitle > div a {
    border-top: 1px solid #d2d2d2;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    color: #333;
  }

  #base_header #dropDownList li.dropDownList_serviceLi {
    padding-bottom: 0px;
  }
  .public_topTel img {
  width:16px;
  height:16px;
  margin-right: 5px;
}

  /* ====== 移动端头部 end ======*/

  /* ====== banner start ======*/
  .public_banner,
  .index_banner {
    padding-top: 50px;
  }

  /* ====== banner end======*/

  /* ===== 首页、关于我们页面的核心服务 start ====== */
  .index_coreServicesContent {
    padding: 0px;
  }

  .project_partnerImg,
  .index_coreServices li img {
    width: 100%;
    height: auto;
  }

  .index_coreServices {
    width: 100%;
    flex-wrap: wrap;
    padding: 20px 0px;
  }

  .index_coreServices li {
    width: 47.5%;
    height: auto;
    margin-right: 5%;
    margin-bottom: 10px;
    padding: 0px 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
  }

  .index_coreServices li:nth-child(2n) {
    margin-right: 0%;
  }

  .index_coreServices li:hover .index_coreServicesContent,
  .index_coreServicesContent {
    top: inherit;
    bottom: 15px;
    width: auto;
  }

  .index_coreServicesDesc {
    opacity: 1;
    line-height: 20px;
    margin-top: 10px;
  }

  .index_coreServicesLabel {
    padding-bottom: 5px;
  }

  .index_coreServicesLabel.fontSize_36 {
    font-size: 18px;
  }

  /* ===== 首页、关于我们页面的核心服务 end ====== */

  /*====== 内页 banner start ======*/
  .public_bannerContent {
    height: calc(100% - 50px);
    padding: 0px 4%;
    left: 0px;
    margin-left: 0px;
    margin-top: 50px;
  }
  .public_bannerContent > div {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: calc(100%);
  }
  .website_bannerSlogn,
  .case_bannerSlogn {
    margin-top: 0px;
  }
  .case_bannerSlogn_desc {
    margin-top: 10px;
    line-height: 26px;
    max-width: 100%;
  }
  .public_bannerRightNow {
    margin-top: 16px;
    width: 45%;
    height: 40px;
    line-height: 40px;
  }

  /*====== 内页 banner  end ======*/

  .caseDetail_contentBody_rich {
    padding-bottom: 20px;
  }

  .public_innerTitle {
    width: 100%;
    padding: 20px 4% 0px;
    box-sizing: border-box;
  }

  /* ====== 服务、关于我们页面的服务客户 start ====== */

  /* ====== 服务、关于我们页面的服务客户 end ====== */
  .serviceCustomer_img {
    width: 47.5%;
    height: 70px;
    line-height: 70px;
    margin-right: 5%;
    margin-bottom: 10px;
  }
  .serviceCustomer_img + .serviceCustomer_img {
    margin-left: 0%;
  }
  .serviceCustomer_img:nth-child(2n) {
    margin-right: 0%;
  }
  .serviceCustomer_img img {
    max-width: 100%;
    max-height: 70px;
  }

  /* ===== 方案、关于我们页面的合作伙伴 start ====== */
  .project_partnerImg {
    padding-bottom: 20px;
  }
  .public_innerTitle > p.public_innerTitleDesc {
    margin-top: 0px;
  }

  /* ===== 方案、关于我们页面的合作伙伴 end ====== */

  .index_serviceNumber {
    height: 75px;
    line-height: 75px;
  }

  /* ====== 服务、关于我们页面的服务客户 start ====== */

  .service_customers {
    overflow-x: auto;
    white-space: nowrap;
  }

  .service_customers li + li {
    margin-left: 10px;
  }

  .service_customers li.service_customersTab_active::after,
  .service_customers li:hover::after {
    width: 50px;
    margin-left: -25px;
  }
  .service_customersList > div:nth-child(5n),
  .service_customersList > div {
    width: 47.5%;
    height: 80px;
    line-height: 80px;
    margin-right: 5%;
    margin-bottom: 10px;
    padding: 10px;
  }
  .service_customersList > div img {
    max-width: 100%;
    max-height: 80px;
  }

  .service_customersList > div:nth-child(2n) {
    margin-right: 0%;
  }

  .service_customersList > div:nth-child(15) {
    display: none;
  }

  /* ====== 服务、关于我们页面的服务客户 end ====== */

  .service_customers::-webkit-scrollbar {
    width: 0px;
  }

  /* ====== 公共的弹窗 start ======*/
  .public_popupLoginBg,
  .public_popupBg {
    width: 92%;
    left: 0px;
    margin-left: 4%;
    margin-right: 4%;
    padding: 20px;
    height: 80%;
    margin-top:-70%;
    }

    .public_popupLoginBg{
      transform: translate(0%, 0%);
      height: 55%;
      margin-top:-50%;
    }
    .public_popupLoginBtn,
    .public_popupLoginForm {
      width: 100%;
      margin-top: 20px;
    }

  .public_popupFl {
    flex-direction: column;
    justify-self: center;
  }
  .public_popupFr,
  .public_popupPhoneParent,
  .public_popupFl {
    display: flex;
    align-items: center;
  }
  .public_popupPhoneParent,
  .public_popupFr {
    justify-content: space-between;
  }

  .public_popupOkBtn {
    width: 100%;
    height: 45px;
    line-height: 46px;
  }
  .public_popupLoginBtn,
  .public_popupLoginForm > div {
    height: 50px;
    padding: 10px 20px;
  }
  .public_popupLoginForm_icon {
    width: 18px;
    height: auto;
  }
  .public_popupLoginForm_input {
    padding-left: 15px;
  }
  .public_popupClose {
        right: 0px;
        top: 50%;
        right: 0px;
        left: inherit;
        margin-top: -250px;
        margin-left: 80%;
    }



  /* ====== 公共的弹窗 end ======*/

    .public_module_title p {
    padding-bottom: 20px;
    margin-bottom: 20px;

  }
  .newsDetail_footer ul li {
    padding: 20px 10px;
    width:100%
  }
  .newsDetail_footer ul li a {
    width: calc(100% - 60px);
  }
  .newsDetail_footer ul li + li {
    margin-top: 20px;
  }
}
